/* roulang page: index */
:root{
      --bg:#FFF9F4;
      --bg-soft:#FFFDF8;
      --card:#ffffff;
      --text:#26212E;
      --muted:#6F6877;
      --weak:#A39AAA;
      --primary:#8B5CF6;
      --primary-2:#9B6BFF;
      --accent:#FF8A3D;
      --pink:#FF4FA3;
      --green:#22C55E;
      --yellow:#FFD84D;
      --border:#EEE5F5;
      --border-strong:rgba(139,92,246,.22);
      --shadow:0 18px 46px rgba(86,45,126,.11);
      --shadow-hover:0 24px 60px rgba(86,45,126,.16);
      --radius-xl:34px;
      --radius-lg:26px;
      --radius-md:18px;
      --radius-pill:999px;
      --container:1180px;
      --nav-h:76px;
      --ease:all .28s ease;
    }
    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      font-family:system-ui,-apple-system,BlinkMacSystemFont,"PingFang SC","Microsoft YaHei","Noto Sans SC",sans-serif;
      color:var(--text);
      background:
        radial-gradient(circle at 8% 10%, rgba(255,79,163,.12), transparent 28%),
        radial-gradient(circle at 92% 8%, rgba(255,138,61,.15), transparent 30%),
        linear-gradient(180deg,var(--bg) 0%, #FFFDF8 46%, #FAF7F2 100%);
      line-height:1.75;
      overflow-x:hidden;
    }
    a{color:inherit;text-decoration:none;transition:var(--ease)}
    a:hover{color:var(--primary)}
    img{max-width:100%;height:auto;display:block}
    button,input,textarea,select{font:inherit}
    ::selection{background:rgba(139,92,246,.18);color:var(--text)}
    .site-container{max-width:var(--container);margin:0 auto;padding:0 20px}
    .section{padding:84px 0;position:relative}
    .section-tight{padding:58px 0}
    .eyebrow{
      display:inline-flex;align-items:center;gap:8px;
      padding:8px 14px;border-radius:var(--radius-pill);
      background:rgba(139,92,246,.10);
      color:#6f3de8;font-weight:700;font-size:13px;
      border:1px solid rgba(139,92,246,.16);
    }
    .eyebrow .dot{width:8px;height:8px;border-radius:50%;background:linear-gradient(135deg,var(--pink),var(--accent))}
    .section-title{font-size:34px;line-height:1.22;font-weight:850;letter-spacing:-.02em;margin:14px 0 12px}
    .section-desc{font-size:16px;color:var(--muted);max-width:760px;margin:0;line-height:1.85}
    .btn{
      border-radius:var(--radius-pill);
      padding:12px 20px;
      font-weight:800;
      border:1px solid transparent;
      transition:var(--ease);
      letter-spacing:.01em;
    }
    .btn-primary{
      background:linear-gradient(135deg,var(--primary) 0%,var(--primary-2) 46%,var(--accent) 100%);
      color:#fff!important;
      box-shadow:0 14px 28px rgba(139,92,246,.22);
      border:none;
    }
    .btn-primary:hover,.btn-primary:focus{
      transform:translateY(-2px);
      box-shadow:0 18px 38px rgba(139,92,246,.30);
      background:linear-gradient(145deg,var(--primary-2) 0%,var(--primary) 42%,#ff7a2d 100%);
    }
    .btn-outline-brand{
      background:#fff;
      color:var(--primary)!important;
      border-color:rgba(139,92,246,.22);
    }
    .btn-outline-brand:hover,.btn-outline-brand:focus{
      background:rgba(139,92,246,.09);
      border-color:rgba(139,92,246,.38);
      transform:translateY(-2px);
    }
    .btn-soft{
      background:rgba(255,255,255,.78);
      color:var(--text)!important;
      border-color:rgba(255,255,255,.75);
    }
    .btn-soft:hover{background:#fff;transform:translateY(-2px)}
    .badge-soft{
      display:inline-flex;align-items:center;gap:6px;
      padding:6px 10px;border-radius:var(--radius-pill);
      background:#FFF4EA;color:#a64b12;font-size:12px;font-weight:800;
      border:1px solid rgba(255,138,61,.18);
    }
    .sticker{
      display:inline-grid;place-items:center;
      min-width:38px;height:38px;border-radius:15px;
      background:linear-gradient(135deg,#fff,var(--yellow));
      box-shadow:0 12px 24px rgba(255,138,61,.14);
      font-weight:900;
    }

    .site-header{
      position:sticky;top:0;z-index:1000;
      padding:14px 0;
      transition:var(--ease);
      background:rgba(255,249,244,.76);
      backdrop-filter:blur(16px);
      border-bottom:1px solid rgba(238,229,245,.72);
    }
    .site-header.is-scrolled{background:rgba(255,253,248,.94);box-shadow:0 12px 30px rgba(86,45,126,.08)}
    .navbar{padding:0}
    .brand-logo{display:flex;align-items:center;gap:10px;font-weight:900;color:var(--text);min-width:max-content}
    .brand-mark{
      width:42px;height:42px;border-radius:16px;
      background:
        radial-gradient(circle at 32% 28%, #fff 0 12%, transparent 13%),
        radial-gradient(circle at 70% 70%, rgba(255,216,77,.95) 0 14%, transparent 15%),
        linear-gradient(135deg,var(--primary),var(--pink) 55%,var(--accent));
      box-shadow:0 12px 26px rgba(139,92,246,.22);
      position:relative;
    }
    .brand-mark:after{
      content:"";position:absolute;right:8px;top:8px;width:9px;height:9px;border-radius:50%;background:#fff;
    }
    .brand-name{font-size:16px;letter-spacing:-.01em}
    .navbar-toggler{
      border:1px solid rgba(139,92,246,.18);
      border-radius:16px;
      padding:9px 11px;
      background:#fff;
      box-shadow:0 8px 20px rgba(86,45,126,.08);
    }
    .navbar-toggler:focus{box-shadow:0 0 0 4px rgba(139,92,246,.14)}
    .navbar-nav{gap:6px}
    .nav-link{
      color:var(--muted);
      font-weight:800;
      padding:10px 14px!important;
      border-radius:var(--radius-pill);
      font-size:14px;
    }
    .nav-link:hover,.nav-link.active{
      color:var(--primary)!important;
      background:rgba(139,92,246,.10);
    }
    .nav-actions{display:flex;align-items:center;gap:10px;margin-left:auto}
    .command-search{
      display:flex;align-items:center;gap:8px;
      height:42px;min-width:240px;
      background:#fff;border:1px solid rgba(139,92,246,.15);
      border-radius:var(--radius-pill);
      padding:0 10px 0 14px;
      color:var(--weak);
      box-shadow:0 10px 24px rgba(86,45,126,.06);
    }
    .command-search input{
      border:0;outline:0;background:transparent;width:100%;
      color:var(--text);font-size:13px;
    }
    .command-search input::placeholder{color:var(--weak)}
    .keycap{
      font-size:11px;font-weight:800;color:#8a8094;
      background:#FAF7F2;border:1px solid var(--border);
      padding:2px 7px;border-radius:8px;white-space:nowrap;
    }
    .quick-btn{
      width:42px;height:42px;border-radius:50%;
      display:grid;place-items:center;background:#fff;
      border:1px solid rgba(139,92,246,.15);
      color:var(--primary);
      box-shadow:0 10px 24px rgba(86,45,126,.06);
    }
    .quick-btn:hover{transform:translateY(-2px);background:rgba(139,92,246,.08)}

    .hero{
      padding:54px 0 74px;
    }
    .hero-stage{
      position:relative;
      min-height:560px;
      border-radius:44px;
      overflow:hidden;
      padding:52px;
      background:
        linear-gradient(115deg, rgba(38,33,46,.82), rgba(65,42,92,.54)),
        radial-gradient(circle at 82% 22%, rgba(255,138,61,.66), transparent 30%),
        radial-gradient(circle at 16% 18%, rgba(139,92,246,.70), transparent 34%),
        linear-gradient(135deg,#8B5CF6,#FF8A3D);
      box-shadow:var(--shadow);
      color:#fff;
    }
    .hero-stage:before{
      content:"";position:absolute;inset:0;
      background:
        linear-gradient(90deg,rgba(255,255,255,.08) 1px,transparent 1px),
        linear-gradient(0deg,rgba(255,255,255,.08) 1px,transparent 1px);
      background-size:54px 54px;
      mask-image:linear-gradient(90deg,#000,transparent 80%);
      opacity:.45;
    }
    .hero-stage:after{
      content:"";position:absolute;right:-70px;bottom:-90px;width:360px;height:360px;border-radius:50%;
      background:rgba(255,216,77,.30);filter:blur(4px);
    }
    .hero-content{position:relative;z-index:2;max-width:760px}
    .hero-kicker{
      display:inline-flex;align-items:center;gap:9px;
      padding:9px 14px;border-radius:var(--radius-pill);
      background:rgba(255,255,255,.14);
      border:1px solid rgba(255,255,255,.22);
      font-weight:800;font-size:13px;
      margin-bottom:18px;
    }
    .hero h1{
      font-size:48px;line-height:1.16;font-weight:900;letter-spacing:-.035em;margin:0 0 18px;
      max-width:820px;
    }
    .hero-lead{
      font-size:17px;line-height:1.9;color:rgba(255,255,255,.88);
      max-width:700px;margin:0 0 26px;
    }
    .hero-actions{display:flex;flex-wrap:wrap;gap:12px;margin-bottom:32px}
    .hero-actions .btn-primary{background:linear-gradient(135deg,#fff,#FFE2C9);color:#4a246d!important}
    .hero-actions .btn-primary:hover{background:#fff}
    .hero-metrics{display:flex;flex-wrap:wrap;gap:12px}
    .metric-pill{
      min-width:142px;
      padding:14px 16px;border-radius:20px;
      background:rgba(255,255,255,.13);
      border:1px solid rgba(255,255,255,.20);
    }
    .metric-pill strong{display:block;font-size:24px;line-height:1;font-weight:900}
    .metric-pill span{font-size:13px;color:rgba(255,255,255,.76)}
    .hero-panel{
      position:absolute;right:36px;bottom:34px;z-index:3;
      width:380px;max-width:calc(100% - 72px);
      background:rgba(255,253,248,.96);
      color:var(--text);
      border-radius:30px;
      padding:20px;
      box-shadow:0 22px 60px rgba(38,33,46,.20);
      border:1px solid rgba(255,255,255,.72);
    }
    .entry-grid{display:grid;grid-template-columns:1fr 1fr;gap:10px;margin-top:12px}
    .entry-tile{
      padding:14px;border-radius:20px;
      background:#FFF9F4;border:1px solid var(--border);
      min-height:92px;
    }
    .entry-tile b{display:block;font-size:15px;margin-bottom:5px}
    .entry-tile small{color:var(--muted);line-height:1.55}
    .mini-progress{height:10px;border-radius:999px;background:#F1E9F7;overflow:hidden;margin-top:14px}
    .mini-progress span{display:block;height:100%;width:68%;background:linear-gradient(90deg,var(--primary),var(--accent));border-radius:999px}

    .play-card,.deal-card,.reward-card,.task-panel,.article-card,.faq-card,.cta-card,.proof-card{
      background:var(--card);
      border:1px solid var(--border);
      border-radius:var(--radius-lg);
      box-shadow:var(--shadow);
      transition:var(--ease);
    }
    .play-card:hover,.deal-card:hover,.reward-card:hover,.article-card:hover,.proof-card:hover{
      transform:translateY(-5px);
      box-shadow:var(--shadow-hover);
      border-color:var(--border-strong);
    }
    .play-wrap{display:grid;grid-template-columns:.86fr 1.14fr;gap:26px;align-items:start}
    .play-note{
      position:sticky;top:108px;
      border-radius:var(--radius-xl);
      padding:30px;
      background:linear-gradient(145deg,#fff,#F5EDFF 55%,#FFF0E5);
      border:1px solid rgba(139,92,246,.15);
      box-shadow:var(--shadow);
    }
    .play-list{display:grid;gap:16px}
    .play-card{
      padding:22px;
      display:grid;
      grid-template-columns:auto 1fr;
      gap:16px;
    }
    .step-num{
      width:42px;height:42px;border-radius:16px;
      display:grid;place-items:center;
      color:#fff;font-weight:900;
      background:linear-gradient(135deg,var(--primary),var(--pink));
      box-shadow:0 12px 22px rgba(139,92,246,.20);
    }
    .play-card h3{font-size:20px;font-weight:850;margin:0 0 7px}
    .play-card p{margin:0 0 10px;color:var(--muted);font-size:15px;line-height:1.75}

    .deal-lane{
      display:grid;
      grid-template-columns:1.1fr .9fr;
      gap:18px;
      margin-top:26px;
    }
    .deal-feature{
      border-radius:var(--radius-xl);
      padding:30px;
      background:linear-gradient(135deg,#fff,#FFF2E8);
      border:1px solid rgba(255,138,61,.18);
      box-shadow:var(--shadow);
      min-height:360px;
      display:flex;flex-direction:column;justify-content:space-between;
    }
    .deal-feature h3{font-size:28px;line-height:1.25;font-weight:900;margin:12px 0}
    .deal-feature p{color:var(--muted);margin:0;max-width:560px}
    .deal-stack{display:grid;gap:14px}
    .deal-card{padding:20px}
    .deal-head{display:flex;justify-content:space-between;gap:14px;align-items:flex-start;margin-bottom:12px}
    .deal-head h3{font-size:18px;font-weight:850;margin:0}
    .deal-card p{font-size:14px;color:var(--muted);line-height:1.7;margin:0 0 14px}
    .progress{
      height:12px;border-radius:999px;background:#F1E9F7;overflow:hidden;
    }
    .progress-bar{
      background:linear-gradient(90deg,var(--primary),var(--pink),var(--accent));
      border-radius:999px;
    }

    .reward-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:16px;margin-top:26px}
    .reward-card{padding:22px;min-height:245px;position:relative;overflow:hidden}
    .reward-card:before{
      content:"";position:absolute;right:-36px;top:-36px;width:112px;height:112px;border-radius:50%;
      background:rgba(255,79,163,.12);
    }
    .reward-card:nth-child(2){background:#F8F2FF}
    .reward-card:nth-child(3){background:#FFF3EA}
    .reward-card:nth-child(4){background:#F7FFF9}
    .reward-icon{
      width:48px;height:48px;border-radius:18px;
      display:grid;place-items:center;
      background:#fff;border:1px solid var(--border);
      box-shadow:0 10px 22px rgba(86,45,126,.08);
      margin-bottom:18px;font-weight:900;color:var(--primary);
    }
    .reward-card h3{font-size:19px;font-weight:900;margin:0 0 9px}
    .reward-card p{font-size:14px;color:var(--muted);line-height:1.75;margin:0 0 14px}

    .task-grid{display:grid;grid-template-columns:1fr .82fr;gap:22px;margin-top:26px;align-items:stretch}
    .task-panel{padding:28px;border-radius:var(--radius-xl)}
    .task-panel h3{font-size:24px;font-weight:900;margin:0 0 8px}
    .task-panel p{color:var(--muted);margin:0 0 20px}
    .task-list{list-style:none;padding:0;margin:22px 0 0;display:grid;gap:12px}
    .task-list li{
      display:flex;align-items:flex-start;gap:12px;
      padding:14px;border-radius:18px;background:#FFFDF8;border:1px solid var(--border);
    }
    .check{
      flex:0 0 24px;width:24px;height:24px;border-radius:50%;
      display:grid;place-items:center;
      background:linear-gradient(135deg,var(--green),#8BEA9B);
      color:#fff;font-size:14px;font-weight:900;
    }
    .task-list b{display:block;margin-bottom:2px}
    .task-list span{color:var(--muted);font-size:14px}
    .milestone{
      display:grid;gap:14px;
    }
    .mile-card{
      padding:20px;border-radius:24px;border:1px solid var(--border);
      background:#fff;box-shadow:0 14px 34px rgba(86,45,126,.08);
    }
    .mile-card strong{font-size:20px;font-weight:900;display:block}
    .mile-card span{color:var(--muted);font-size:14px}

    .proof-strip{
      display:grid;grid-template-columns:repeat(3,1fr);gap:16px;margin-top:26px;
    }
    .proof-card{padding:24px;position:relative;overflow:hidden}
    .proof-card h3{font-size:21px;font-weight:900;margin:10px 0 8px}
    .proof-card p{font-size:15px;color:var(--muted);margin:0;line-height:1.75}
    .proof-dot{width:14px;height:14px;border-radius:50%;background:var(--accent);box-shadow:18px 0 0 var(--primary),36px 0 0 var(--pink)}

    .news-layout{display:grid;grid-template-columns:1.35fr .65fr;gap:22px;margin-top:26px}
    .news-list{display:grid;gap:14px}
    .article-card{
      padding:20px;
      display:grid;
      grid-template-columns:auto 1fr auto;
      gap:14px;
      align-items:center;
    }
    .article-index{
      width:42px;height:42px;border-radius:16px;
      display:grid;place-items:center;
      background:#F5EDFF;color:var(--primary);font-weight:900;
    }
    .article-card h3{font-size:18px;font-weight:850;margin:0 0 4px}
    .article-card p{font-size:14px;color:var(--muted);margin:0;line-height:1.65}
    .article-card .read{font-weight:850;color:var(--primary);white-space:nowrap}
    .side-reco{
      border-radius:var(--radius-xl);
      padding:24px;
      background:#241E2E;
      color:#fff;
      box-shadow:var(--shadow);
      position:sticky;top:108px;
    }
    .side-reco p{color:rgba(255,255,255,.72);font-size:14px}
    .tag-cloud{display:flex;flex-wrap:wrap;gap:8px;margin-top:16px}
    .tag-cloud span{
      padding:7px 10px;border-radius:999px;
      background:rgba(255,255,255,.10);
      border:1px solid rgba(255,255,255,.14);
      font-size:12px;font-weight:800;
    }

    .accordion{display:grid;gap:12px}
    .accordion-item{
      border:1px solid var(--border)!important;
      border-radius:22px!important;
      overflow:hidden;
      background:#fff;
      box-shadow:0 10px 26px rgba(86,45,126,.06);
    }
    .accordion-button{
      padding:18px 22px;
      font-weight:850;
      color:var(--text);
      background:#fff;
      box-shadow:none!important;
    }
    .accordion-button:not(.collapsed){
      color:#5f2ed6;
      background:#F8F2FF;
    }
    .accordion-button:focus{box-shadow:0 0 0 4px rgba(139,92,246,.14)!important}
    .accordion-button::after{
      background-size:16px;
      filter:hue-rotate(225deg) saturate(1.4);
    }
    .accordion-body{color:var(--muted);line-height:1.85;padding:4px 22px 20px}

    .cta-card{
      border-radius:40px;
      padding:38px;
      background:
        radial-gradient(circle at 88% 20%, rgba(255,216,77,.34), transparent 26%),
        linear-gradient(135deg,var(--primary),#A978FF 48%,var(--accent));
      color:#fff;
      overflow:hidden;
      position:relative;
    }
    .cta-card:before{
      content:"";position:absolute;left:-80px;bottom:-90px;width:260px;height:260px;border-radius:50%;
      background:rgba(255,255,255,.13);
    }
    .cta-inner{position:relative;z-index:2;display:grid;grid-template-columns:1fr .86fr;gap:28px;align-items:center}
    .cta-card h2{font-size:34px;line-height:1.25;font-weight:900;margin:0 0 12px}
    .cta-card p{color:rgba(255,255,255,.84);margin:0 0 22px}
    .join-form{
      background:rgba(255,255,255,.16);
      border:1px solid rgba(255,255,255,.25);
      border-radius:28px;
      padding:20px;
    }
    .form-label{font-weight:850;font-size:13px;margin-bottom:7px}
    .form-control,.form-select{
      border-radius:18px;
      border:1px solid rgba(139,92,246,.18);
      background:#FFFDF8;
      padding:12px 14px;
      color:var(--text);
    }
    .form-control:focus,.form-select:focus{
      border-color:var(--primary);
      box-shadow:0 0 0 4px rgba(139,92,246,.16);
      background:#fff;
    }

    .site-footer{
      background:#241E2E;
      color:#fff;
      padding:46px 0 26px;
      border-top-left-radius:34px;
      border-top-right-radius:34px;
      margin-top:36px;
    }
    .footer-grid{display:grid;grid-template-columns:1.2fr .8fr .8fr;gap:24px}
    .footer-brand{display:flex;align-items:center;gap:10px;font-weight:900;margin-bottom:12px}
    .footer-brand .brand-mark{width:38px;height:38px}
    .footer-desc{color:rgba(255,255,255,.68);max-width:460px;margin:0;font-size:14px}
    .footer-title{font-weight:900;margin-bottom:12px}
    .footer-links{list-style:none;margin:0;padding:0;display:grid;gap:9px}
    .footer-links a{color:rgba(255,255,255,.70);font-size:14px}
    .footer-links a:hover{color:#fff}
    .copyright{
      margin-top:28px;padding-top:20px;border-top:1px solid rgba(255,255,255,.12);
      color:rgba(255,255,255,.56);font-size:13px;
      display:flex;justify-content:space-between;gap:12px;flex-wrap:wrap;
    }

    @media (max-width:1199px){
      .command-search{min-width:190px}
      .hero h1{font-size:42px}
      .hero-panel{width:340px}
      .reward-grid{grid-template-columns:repeat(2,1fr)}
    }
    @media (max-width:991px){
      .site-header{padding:10px 0}
      .navbar-collapse{
        margin-top:12px;
        padding:14px;
        background:rgba(255,253,248,.98);
        border:1px solid var(--border);
        border-radius:24px;
        box-shadow:var(--shadow);
      }
      .nav-actions{margin-left:0;margin-top:12px;flex-wrap:wrap}
      .command-search{width:100%;min-width:0}
      .hero-stage{padding:34px;min-height:auto}
      .hero-panel{position:relative;right:auto;bottom:auto;margin-top:28px;width:100%;max-width:100%}
      .play-wrap,.deal-lane,.task-grid,.news-layout,.cta-inner{grid-template-columns:1fr}
      .play-note,.side-reco{position:relative;top:auto}
      .proof-strip{grid-template-columns:1fr}
      .footer-grid{grid-template-columns:1fr 1fr}
    }
    @media (max-width:767px){
      .section{padding:56px 0}
      .section-tight{padding:42px 0}
      .hero{padding:28px 0 50px}
      .hero-stage{border-radius:30px;padding:26px}
      .hero h1{font-size:32px;line-height:1.22}
      .hero-lead{font-size:15px}
      .hero-actions{flex-direction:column}
      .hero-actions .btn{width:100%}
      .hero-metrics{display:grid;grid-template-columns:1fr 1fr}
      .metric-pill{min-width:0}
      .entry-grid,.reward-grid{grid-template-columns:1fr}
      .section-title{font-size:27px}
      .article-card{grid-template-columns:auto 1fr}
      .article-card .read{grid-column:2}
      .cta-card{padding:26px;border-radius:30px}
      .cta-card h2{font-size:27px}
      .footer-grid{grid-template-columns:1fr}
    }
    @media (max-width:520px){
      .site-container{padding:0 14px}
      .brand-name{font-size:14px;max-width:210px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
      .hero-stage{padding:22px}
      .hero-metrics{grid-template-columns:1fr}
      .play-card{grid-template-columns:1fr}
      .deal-feature{padding:22px}
      .deal-feature h3{font-size:23px}
      .task-panel{padding:22px}
      .quick-btn{display:none}
    }

/* roulang page: category1 */
:root {
      --bg: #fff9f4;
      --bg-soft: #fffdf8;
      --surface: #ffffff;
      --surface-lilac: #f5efff;
      --surface-orange: #fff1e7;
      --text: #26212e;
      --muted: #6f6877;
      --weak: #a39aaa;
      --primary: #8b5cf6;
      --primary-2: #9b6bff;
      --accent: #ff8a3d;
      --pink: #ff4fa3;
      --green: #22c55e;
      --yellow: #ffd84d;
      --border: rgba(139, 92, 246, .16);
      --border-strong: rgba(139, 92, 246, .28);
      --shadow: 0 16px 40px rgba(86, 45, 126, .10);
      --shadow-hover: 0 22px 54px rgba(86, 45, 126, .16);
      --radius-xl: 34px;
      --radius-lg: 26px;
      --radius-md: 18px;
      --radius-pill: 999px;
      --container: 1180px;
      --ease: all .24s ease;
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      font-family: system-ui, -apple-system, BlinkMacSystemFont, "PingFang SC", "Microsoft YaHei", "Noto Sans SC", sans-serif;
      background:
        radial-gradient(circle at 8% 8%, rgba(255, 79, 163, .12), transparent 26%),
        radial-gradient(circle at 86% 14%, rgba(255, 138, 61, .14), transparent 28%),
        linear-gradient(180deg, var(--bg), #fffdf8 48%, #fff9f4);
      color: var(--text);
      line-height: 1.75;
      overflow-x: hidden;
    }

    a {
      color: inherit;
      text-decoration: none;
      transition: var(--ease);
    }

    img, svg {
      max-width: 100%;
      display: block;
    }

    button, input, textarea, select {
      font: inherit;
    }

    ::selection {
      background: rgba(139, 92, 246, .22);
      color: var(--text);
    }

    .site-container {
      width: min(var(--container), calc(100% - 40px));
      margin: 0 auto;
    }

    .site-header {
      position: sticky;
      top: 0;
      z-index: 1000;
      padding: 14px 0;
      background: rgba(255, 249, 244, .86);
      backdrop-filter: blur(18px);
      border-bottom: 1px solid rgba(238, 229, 245, .75);
      transition: var(--ease);
    }

    .site-header.is-scrolled {
      background: rgba(255, 253, 248, .96);
      box-shadow: 0 12px 32px rgba(86, 45, 126, .08);
    }

    .navbar {
      min-height: 58px;
      padding: 0;
    }

    .brand-logo {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      min-width: max-content;
      font-weight: 900;
      letter-spacing: -.02em;
      color: var(--text);
    }

    .brand-logo:hover {
      color: var(--primary);
      transform: translateY(-1px);
    }

    .brand-mark {
      width: 38px;
      height: 38px;
      border-radius: 14px;
      position: relative;
      display: inline-block;
      flex: 0 0 auto;
      background:
        radial-gradient(circle at 30% 30%, #fff 0 12%, transparent 13%),
        radial-gradient(circle at 72% 70%, rgba(255, 216, 77, .95), transparent 20%),
        linear-gradient(135deg, var(--primary), var(--accent));
      box-shadow: 0 12px 26px rgba(139, 92, 246, .26);
    }

    .brand-mark::after {
      content: "";
      position: absolute;
      width: 14px;
      height: 14px;
      right: 6px;
      top: 7px;
      border-radius: 9px 9px 9px 2px;
      background: rgba(255, 255, 255, .88);
      transform: rotate(28deg);
    }

    .brand-name {
      font-size: 16px;
      line-height: 1.2;
      white-space: nowrap;
    }

    .navbar-nav {
      align-items: center;
      gap: 6px;
      padding: 0 16px;
    }

    .nav-link {
      position: relative;
      color: var(--muted);
      font-weight: 700;
      font-size: 14px;
      padding: 10px 14px !important;
      border-radius: var(--radius-pill);
    }

    .nav-link:hover,
    .nav-link:focus {
      color: var(--primary);
      background: rgba(139, 92, 246, .08);
    }

    .nav-link.active {
      color: #fff;
      background: linear-gradient(135deg, var(--primary), var(--primary-2));
      box-shadow: 0 10px 24px rgba(139, 92, 246, .22);
    }

    .nav-actions {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-left: auto;
    }

    .command-search {
      width: 248px;
      height: 42px;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 0 10px 0 14px;
      border-radius: var(--radius-pill);
      background: rgba(255, 255, 255, .82);
      border: 1px solid var(--border);
      color: var(--weak);
      box-shadow: 0 10px 26px rgba(86, 45, 126, .06);
      transition: var(--ease);
    }

    .command-search:focus-within {
      border-color: var(--primary);
      box-shadow: 0 0 0 4px rgba(139, 92, 246, .13), 0 12px 28px rgba(86, 45, 126, .08);
      background: #fff;
    }

    .command-search input {
      width: 100%;
      border: 0;
      outline: none;
      background: transparent;
      color: var(--text);
      font-size: 13px;
    }

    .command-search input::placeholder {
      color: var(--weak);
    }

    .keycap {
      padding: 2px 7px;
      border-radius: 8px;
      background: #faf3ff;
      border: 1px solid rgba(139, 92, 246, .14);
      color: var(--muted);
      font-size: 11px;
      line-height: 1.4;
      white-space: nowrap;
    }

    .quick-btn {
      width: 42px;
      height: 42px;
      border-radius: 15px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      color: var(--primary);
      background: #fff;
      border: 1px solid var(--border);
      font-weight: 900;
      box-shadow: 0 10px 24px rgba(86, 45, 126, .06);
    }

    .quick-btn:hover {
      color: #fff;
      background: var(--pink);
      border-color: transparent;
      transform: translateY(-2px);
      box-shadow: 0 14px 30px rgba(255, 79, 163, .22);
    }

    .btn {
      border: 0;
      border-radius: var(--radius-pill);
      font-weight: 800;
      letter-spacing: -.01em;
      padding: 11px 18px;
      transition: var(--ease);
    }

    .btn-primary {
      color: #fff;
      background: linear-gradient(135deg, var(--primary), var(--accent));
      box-shadow: 0 14px 30px rgba(139, 92, 246, .22);
    }

    .btn-primary:hover,
    .btn-primary:focus {
      color: #fff;
      transform: translateY(-2px);
      background: linear-gradient(135deg, #7c3aed, #ff7a22);
      box-shadow: 0 18px 38px rgba(139, 92, 246, .28);
    }

    .btn-outline {
      color: var(--primary);
      background: #fff;
      border: 1px solid var(--border-strong);
      box-shadow: 0 10px 22px rgba(86, 45, 126, .06);
    }

    .btn-outline:hover,
    .btn-outline:focus {
      color: var(--primary);
      background: #f7f0ff;
      transform: translateY(-2px);
      border-color: rgba(139, 92, 246, .36);
    }

    .navbar-toggler {
      width: 46px;
      height: 42px;
      border-radius: 16px;
      border: 1px solid var(--border);
      background: #fff;
      box-shadow: 0 10px 22px rgba(86, 45, 126, .06);
    }

    .navbar-toggler:focus {
      box-shadow: 0 0 0 4px rgba(139, 92, 246, .14);
    }

    .navbar-toggler-icon {
      width: 1.15em;
      height: 1.15em;
      background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2838, 33, 46, .82%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2.4' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    }

    main {
      padding-bottom: 0;
    }

    .section {
      padding: 78px 0;
    }

    .section-tight {
      padding: 56px 0;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 7px 12px;
      border-radius: var(--radius-pill);
      background: rgba(255, 255, 255, .86);
      border: 1px solid var(--border);
      color: var(--primary);
      font-size: 13px;
      font-weight: 900;
      box-shadow: 0 10px 24px rgba(86, 45, 126, .06);
    }

    .eyebrow::before {
      content: "";
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--green);
      box-shadow: 0 0 0 5px rgba(34, 197, 94, .14);
    }

    .inner-hero {
      position: relative;
      margin-top: 26px;
      padding: 34px;
      border-radius: var(--radius-xl);
      overflow: hidden;
      border: 1px solid var(--border);
      background:
        radial-gradient(circle at 78% 18%, rgba(255, 216, 77, .28), transparent 24%),
        radial-gradient(circle at 15% 92%, rgba(139, 92, 246, .16), transparent 30%),
        linear-gradient(135deg, #fff, #fff5ee 48%, #f7f0ff);
      box-shadow: var(--shadow);
    }

    .inner-hero::before,
    .inner-hero::after {
      content: "";
      position: absolute;
      border-radius: var(--radius-pill);
      pointer-events: none;
    }

    .inner-hero::before {
      width: 128px;
      height: 44px;
      right: -18px;
      top: 48px;
      background: rgba(255, 79, 163, .12);
      transform: rotate(-18deg);
    }

    .inner-hero::after {
      width: 96px;
      height: 96px;
      right: 18%;
      bottom: -34px;
      background: rgba(139, 92, 246, .10);
    }

    .hero-content {
      position: relative;
      z-index: 1;
    }

    h1 {
      margin: 16px 0 14px;
      font-size: clamp(30px, 4.3vw, 48px);
      line-height: 1.16;
      letter-spacing: -.045em;
      font-weight: 900;
      color: var(--text);
    }

    .hero-lead {
      max-width: 720px;
      margin: 0;
      color: var(--muted);
      font-size: 17px;
      line-height: 1.9;
    }

    .hero-points {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 12px;
      margin: 24px 0 0;
      padding: 0;
      list-style: none;
    }

    .hero-points li {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 13px 14px;
      border-radius: 18px;
      background: rgba(255, 255, 255, .78);
      border: 1px solid rgba(139, 92, 246, .12);
      color: var(--text);
      font-weight: 750;
    }

    .hero-points li span {
      width: 22px;
      height: 22px;
      border-radius: 9px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      flex: 0 0 auto;
      color: #fff;
      background: linear-gradient(135deg, var(--primary), var(--accent));
      font-size: 12px;
      font-weight: 900;
    }

    .hero-side {
      position: relative;
      z-index: 1;
      padding: 22px;
      border-radius: 28px;
      background: rgba(255, 255, 255, .82);
      border: 1px solid rgba(255, 255, 255, .8);
      box-shadow: 0 18px 44px rgba(86, 45, 126, .12);
    }

    .status-top {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      margin-bottom: 18px;
    }

    .status-title {
      font-size: 15px;
      color: var(--muted);
      font-weight: 800;
    }

    .status-num {
      font-size: 34px;
      line-height: 1;
      font-weight: 950;
      color: var(--primary);
      letter-spacing: -.04em;
    }

    .trust-strip {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 10px;
      margin-top: 22px;
      color: var(--muted);
      font-size: 13px;
      font-weight: 700;
    }

    .trust-strip span {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      padding: 8px 11px;
      border-radius: var(--radius-pill);
      background: rgba(255, 255, 255, .72);
      border: 1px solid rgba(139, 92, 246, .12);
    }

    .pill-tabs {
      padding: 12px;
      border-radius: 24px;
      border: 1px solid var(--border);
      background: rgba(255, 255, 255, .76);
      box-shadow: 0 14px 32px rgba(86, 45, 126, .06);
      overflow-x: auto;
      flex-wrap: nowrap;
      scrollbar-width: none;
    }

    .pill-tabs::-webkit-scrollbar {
      display: none;
    }

    .pill-tabs .nav-link {
      white-space: nowrap;
      border: 1px solid rgba(139, 92, 246, .12);
      background: #fff;
      color: var(--muted);
      margin-right: 8px;
    }

    .pill-tabs .nav-link.active {
      color: #fff;
      border-color: transparent;
      background: linear-gradient(135deg, var(--primary), var(--accent));
    }

    .section-head {
      max-width: 760px;
      margin-bottom: 28px;
    }

    .section-kicker {
      display: inline-flex;
      color: var(--pink);
      font-weight: 900;
      font-size: 13px;
      margin-bottom: 9px;
    }

    h2 {
      font-size: clamp(24px, 3.2vw, 34px);
      line-height: 1.25;
      letter-spacing: -.035em;
      font-weight: 900;
      margin: 0 0 12px;
    }

    .section-desc {
      color: var(--muted);
      margin: 0;
      font-size: 16px;
      line-height: 1.85;
    }

    .content-card {
      position: relative;
      padding: 24px;
      border-radius: var(--radius-lg);
      background: var(--surface);
      border: 1px solid rgba(139, 92, 246, .14);
      box-shadow: var(--shadow);
      transition: var(--ease);
      overflow: hidden;
    }

    .content-card::before {
      content: "";
      position: absolute;
      left: 24px;
      right: 24px;
      top: 0;
      height: 5px;
      border-radius: 0 0 999px 999px;
      background: linear-gradient(90deg, var(--primary), var(--accent), var(--pink));
      opacity: .9;
    }

    .content-card:hover {
      transform: translateY(-4px);
      border-color: rgba(139, 92, 246, .34);
      box-shadow: var(--shadow-hover);
    }

    .card-tag {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 6px 10px;
      border-radius: var(--radius-pill);
      color: var(--primary);
      background: #f7f0ff;
      border: 1px solid rgba(139, 92, 246, .14);
      font-size: 12px;
      font-weight: 900;
    }

    .card-tag.orange {
      color: #cc5e16;
      background: #fff1e7;
      border-color: rgba(255, 138, 61, .20);
    }

    .card-tag.green {
      color: #168247;
      background: #ecfdf4;
      border-color: rgba(34, 197, 94, .20);
    }

    .card-title {
      margin: 15px 0 9px;
      font-size: 21px;
      line-height: 1.35;
      font-weight: 900;
      letter-spacing: -.02em;
    }

    .card-text {
      color: var(--muted);
      margin: 0;
      line-height: 1.85;
    }

    .card-meta {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 14px;
      padding-top: 18px;
      margin-top: 18px;
      border-top: 1px dashed rgba(139, 92, 246, .18);
      color: var(--weak);
      font-size: 13px;
      font-weight: 700;
    }

    .mini-link {
      display: inline-flex;
      align-items: center;
      gap: 5px;
      color: var(--primary);
      font-weight: 900;
    }

    .mini-link:hover {
      color: var(--accent);
      transform: translateX(2px);
    }

    .side-panel {
      position: sticky;
      top: 104px;
      display: grid;
      gap: 16px;
    }

    .side-card {
      padding: 22px;
      border-radius: var(--radius-lg);
      background: rgba(255, 255, 255, .82);
      border: 1px solid var(--border);
      box-shadow: 0 14px 34px rgba(86, 45, 126, .08);
    }

    .side-card.hot {
      background:
        radial-gradient(circle at 92% 12%, rgba(255, 216, 77, .26), transparent 30%),
        linear-gradient(135deg, #fff, #fff3ea);
    }

    .side-title {
      margin: 0 0 14px;
      font-size: 18px;
      font-weight: 900;
      letter-spacing: -.02em;
    }

    .check-list {
      padding: 0;
      margin: 0;
      list-style: none;
      display: grid;
      gap: 12px;
    }

    .check-list li {
      display: flex;
      gap: 10px;
      color: var(--muted);
      font-weight: 700;
      line-height: 1.65;
    }

    .check-list li::before {
      content: "✓";
      width: 22px;
      height: 22px;
      border-radius: 9px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      flex: 0 0 auto;
      color: #fff;
      background: linear-gradient(135deg, var(--green), var(--primary));
      font-size: 12px;
      font-weight: 900;
      margin-top: 2px;
    }

    .tag-cloud {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
    }

    .tag-cloud a,
    .tag-cloud span {
      display: inline-flex;
      padding: 7px 10px;
      border-radius: var(--radius-pill);
      background: #fff;
      border: 1px solid var(--border);
      color: var(--muted);
      font-size: 13px;
      font-weight: 800;
    }

    .tag-cloud a:hover {
      color: #fff;
      background: var(--primary);
      border-color: var(--primary);
      transform: translateY(-2px);
    }

    .progress-wrap {
      margin-top: 16px;
    }

    .progress {
      height: 12px;
      border-radius: var(--radius-pill);
      background: rgba(139, 92, 246, .10);
      overflow: hidden;
    }

    .progress-bar {
      border-radius: var(--radius-pill);
      background: linear-gradient(90deg, var(--primary), var(--accent));
      box-shadow: 0 8px 20px rgba(255, 138, 61, .20);
    }

    .process-panel {
      border-radius: var(--radius-xl);
      background:
        radial-gradient(circle at 10% 16%, rgba(255, 79, 163, .10), transparent 28%),
        linear-gradient(135deg, #fff, #f8f1ff);
      border: 1px solid var(--border);
      box-shadow: var(--shadow);
      padding: 30px;
    }

    .timeline {
      position: relative;
      display: grid;
      gap: 16px;
      margin-top: 20px;
    }

    .timeline-item {
      position: relative;
      display: grid;
      grid-template-columns: 54px 1fr;
      gap: 16px;
      align-items: start;
      padding: 18px;
      border-radius: 24px;
      background: rgba(255, 255, 255, .80);
      border: 1px solid rgba(139, 92, 246, .12);
      transition: var(--ease);
    }

    .timeline-item:hover {
      transform: translateX(4px);
      border-color: rgba(139, 92, 246, .28);
      box-shadow: 0 12px 28px rgba(86, 45, 126, .08);
    }

    .step-num {
      width: 48px;
      height: 48px;
      border-radius: 18px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      font-size: 18px;
      font-weight: 950;
      background: linear-gradient(135deg, var(--primary), var(--accent));
      box-shadow: 0 12px 24px rgba(139, 92, 246, .22);
    }

    .timeline-item h3 {
      margin: 0 0 6px;
      font-size: 18px;
      font-weight: 900;
    }

    .timeline-item p {
      margin: 0;
      color: var(--muted);
    }

    .benefit-card {
      height: 100%;
      padding: 24px;
      border-radius: 28px;
      border: 1px solid var(--border);
      box-shadow: 0 14px 34px rgba(86, 45, 126, .08);
      transition: var(--ease);
      overflow: hidden;
    }

    .benefit-card:hover {
      transform: translateY(-4px) rotate(-.3deg);
      box-shadow: var(--shadow-hover);
    }

    .benefit-card.purple {
      background: linear-gradient(160deg, #fff, #f4ecff);
    }

    .benefit-card.orange {
      background: linear-gradient(160deg, #fff, #fff0e5);
    }

    .benefit-card.white {
      background: #fff;
    }

    .benefit-icon {
      width: 48px;
      height: 48px;
      border-radius: 18px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      font-weight: 950;
      background: linear-gradient(135deg, var(--pink), var(--accent));
      box-shadow: 0 12px 28px rgba(255, 79, 163, .18);
      margin-bottom: 16px;
    }

    .benefit-card h3 {
      margin: 0 0 10px;
      font-weight: 900;
      font-size: 20px;
      letter-spacing: -.02em;
    }

    .benefit-card p {
      margin: 0 0 16px;
      color: var(--muted);
    }

    .update-strip {
      padding: 20px;
      border-radius: 26px;
      border: 1px solid var(--border);
      background:
        linear-gradient(90deg, rgba(139, 92, 246, .10), rgba(255, 138, 61, .10)),
        #fff;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
      box-shadow: 0 12px 30px rgba(86, 45, 126, .07);
    }

    .update-strip strong {
      display: block;
      font-size: 18px;
      margin-bottom: 3px;
    }

    .update-strip span {
      color: var(--muted);
    }

    .accordion {
      display: grid;
      gap: 12px;
    }

    .accordion-item {
      border: 1px solid var(--border);
      border-radius: 22px !important;
      background: #fff;
      overflow: hidden;
      box-shadow: 0 10px 26px rgba(86, 45, 126, .05);
    }

    .accordion-button {
      padding: 18px 20px;
      color: var(--text);
      background: #fff;
      font-weight: 900;
      box-shadow: none;
      border: 0;
    }

    .accordion-button:not(.collapsed) {
      color: var(--primary);
      background: #f7f0ff;
      box-shadow: none;
    }

    .accordion-button:focus {
      border-color: transparent;
      box-shadow: 0 0 0 4px rgba(139, 92, 246, .14);
    }

    .accordion-button::after {
      width: 18px;
      height: 18px;
      border-radius: 50%;
      background-color: rgba(139, 92, 246, .10);
      background-size: 12px;
      background-position: center;
      border: 1px solid rgba(139, 92, 246, .16);
    }

    .accordion-body {
      padding: 4px 20px 20px;
      color: var(--muted);
      line-height: 1.85;
      background: #fff;
    }

    .cta-card {
      position: relative;
      overflow: hidden;
      padding: 34px;
      border-radius: var(--radius-xl);
      background:
        radial-gradient(circle at 86% 20%, rgba(255, 216, 77, .30), transparent 26%),
        linear-gradient(135deg, #7c3aed, #ff8a3d);
      color: #fff;
      box-shadow: 0 22px 52px rgba(139, 92, 246, .26);
    }

    .cta-card::after {
      content: "";
      position: absolute;
      right: -48px;
      bottom: -68px;
      width: 190px;
      height: 190px;
      border-radius: 50%;
      background: rgba(255, 255, 255, .12);
    }

    .cta-card h2,
    .cta-card p,
    .cta-card form {
      position: relative;
      z-index: 1;
    }

    .cta-card p {
      max-width: 700px;
      color: rgba(255, 255, 255, .88);
      margin-bottom: 22px;
    }

    .form-control,
    .form-select {
      border-radius: 18px;
      border: 1px solid rgba(139, 92, 246, .18);
      background-color: #fffdf8;
      min-height: 50px;
      color: var(--text);
      padding: 12px 15px;
      box-shadow: none;
      transition: var(--ease);
    }

    .form-control:focus,
    .form-select:focus {
      border-color: var(--primary);
      box-shadow: 0 0 0 4px rgba(139, 92, 246, .16);
      background-color: #fff;
    }

    .cta-card .form-control,
    .cta-card .form-select {
      background: rgba(255, 255, 255, .95);
      border-color: rgba(255, 255, 255, .40);
    }

    .form-label {
      color: rgba(255, 255, 255, .92);
      font-weight: 800;
      font-size: 13px;
      margin-bottom: 8px;
    }

    .site-footer {
      margin-top: 70px;
      padding: 54px 0 26px;
      background: #241e2e;
      color: rgba(255, 255, 255, .82);
    }

    .footer-grid {
      display: grid;
      grid-template-columns: minmax(0, 1.45fr) minmax(160px, .7fr) minmax(160px, .7fr);
      gap: 34px;
      padding-bottom: 34px;
      border-bottom: 1px solid rgba(255, 255, 255, .10);
    }

    .footer-brand {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-weight: 900;
      color: #fff;
      margin-bottom: 14px;
    }

    .footer-desc {
      max-width: 460px;
      margin: 0;
      color: rgba(255, 255, 255, .68);
      line-height: 1.85;
    }

    .footer-title {
      color: #fff;
      font-size: 15px;
      font-weight: 900;
      margin-bottom: 12px;
    }

    .footer-links {
      padding: 0;
      margin: 0;
      list-style: none;
      display: grid;
      gap: 9px;
    }

    .footer-links a {
      color: rgba(255, 255, 255, .68);
      font-weight: 650;
    }

    .footer-links a:hover {
      color: #fff;
      padding-left: 3px;
    }

    .copyright {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
      padding-top: 22px;
      color: rgba(255, 255, 255, .56);
      font-size: 13px;
    }

    @media (max-width: 1199.98px) {
      .command-search {
        width: 210px;
      }

      .inner-hero {
        padding: 30px;
      }
    }

    @media (max-width: 991.98px) {
      .site-header {
        padding: 10px 0;
      }

      .navbar-collapse {
        margin-top: 14px;
        padding: 16px;
        border-radius: 26px;
        background: rgba(255, 255, 255, .96);
        border: 1px solid var(--border);
        box-shadow: var(--shadow);
      }

      .navbar-nav {
        align-items: stretch;
        padding: 0;
        gap: 8px;
      }

      .nav-link {
        display: block;
      }

      .nav-actions {
        margin-left: 0;
        margin-top: 14px;
        flex-wrap: wrap;
      }

      .command-search {
        width: 100%;
      }

      .inner-hero {
        margin-top: 18px;
      }

      .hero-side {
        margin-top: 24px;
      }

      .side-panel {
        position: static;
        margin-top: 18px;
      }

      .footer-grid {
        grid-template-columns: 1fr 1fr;
      }

      .footer-grid > div:first-child {
        grid-column: 1 / -1;
      }
    }

    @media (max-width: 767.98px) {
      .site-container {
        width: min(100% - 28px, var(--container));
      }

      .section {
        padding: 56px 0;
      }

      .section-tight {
        padding: 42px 0;
      }

      .inner-hero,
      .process-panel,
      .cta-card {
        padding: 22px;
        border-radius: 28px;
      }

      .hero-points {
        grid-template-columns: 1fr;
      }

      .status-top {
        align-items: flex-start;
        flex-direction: column;
      }

      .content-card,
      .benefit-card,
      .side-card {
        padding: 20px;
      }

      .update-strip {
        align-items: flex-start;
        flex-direction: column;
      }

      .timeline-item {
        grid-template-columns: 44px 1fr;
        padding: 16px;
      }

      .step-num {
        width: 42px;
        height: 42px;
        border-radius: 15px;
        font-size: 16px;
      }

      .footer-grid,
      .copyright {
        grid-template-columns: 1fr;
        flex-direction: column;
        align-items: flex-start;
      }
    }

    @media (max-width: 575.98px) {
      .brand-name {
        max-width: 190px;
        white-space: normal;
        font-size: 14px;
      }

      .brand-mark {
        width: 35px;
        height: 35px;
        border-radius: 13px;
      }

      h1 {
        font-size: 29px;
      }

      .hero-lead,
      .section-desc {
        font-size: 15px;
      }

      .btn {
        width: 100%;
        justify-content: center;
      }

      .hero-actions {
        display: grid !important;
        gap: 10px !important;
      }

      .card-meta {
        flex-direction: column;
        align-items: flex-start;
      }

      .pill-tabs {
        margin-left: -2px;
        margin-right: -2px;
      }
    }

/* roulang page: category2 */
:root{
      --bg:#fff9f4;
      --bg-soft:#fffdf8;
      --card:#ffffff;
      --mist:#f5efff;
      --mist-2:#fff0e5;
      --text:#26212e;
      --muted:#6f6877;
      --weak:#a39aaa;
      --primary:#8b5cf6;
      --primary-2:#9b6bff;
      --accent:#ff8a3d;
      --pink:#ff4fa3;
      --green:#22c55e;
      --yellow:#ffd84d;
      --border:#eee5f5;
      --border-strong:rgba(139,92,246,.22);
      --shadow:0 16px 40px rgba(86,45,126,.10);
      --shadow-hover:0 22px 56px rgba(86,45,126,.16);
      --radius-xl:34px;
      --radius-lg:26px;
      --radius-md:18px;
      --radius-pill:999px;
      --container:1180px;
    }
    *{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 8% 6%, rgba(255,79,163,.12), transparent 28%),
        radial-gradient(circle at 88% 12%, rgba(255,138,61,.14), transparent 26%),
        linear-gradient(180deg,var(--bg) 0%, var(--bg-soft) 54%, #fff 100%);
      line-height:1.8;
      overflow-x:hidden;
    }
    a{color:inherit;text-decoration:none;transition:all .22s ease}
    img{max-width:100%;display:block}
    button,input,select,textarea{font:inherit}
    input,textarea,select{outline:none}
    ::selection{background:rgba(139,92,246,.18)}
    .site-container{
      width:min(100% - 36px,var(--container));
      margin-inline:auto;
    }
    .site-header{
      position:sticky;
      top:0;
      z-index:1000;
      padding:14px 0;
      background:rgba(255,249,244,.86);
      backdrop-filter:blur(18px);
      border-bottom:1px solid rgba(238,229,245,.78);
      transition:box-shadow .25s ease, background .25s ease, padding .25s ease;
    }
    .site-header.is-scrolled{
      background:rgba(255,253,248,.96);
      box-shadow:0 10px 30px rgba(86,45,126,.08);
      padding:10px 0;
    }
    .navbar{
      min-height:64px;
      padding:0;
    }
    .brand-logo{
      display:inline-flex;
      align-items:center;
      gap:11px;
      font-weight:800;
      letter-spacing:-.02em;
      color:var(--text);
      white-space:nowrap;
    }
    .brand-logo:hover{color:var(--primary)}
    .brand-mark{
      width:42px;
      height:42px;
      flex:0 0 42px;
      border-radius:15px;
      background:
        radial-gradient(circle at 32% 28%, #fff 0 12%, transparent 13%),
        radial-gradient(circle at 68% 32%, rgba(255,216,77,.92) 0 10%, transparent 11%),
        linear-gradient(135deg,var(--primary),var(--pink) 50%,var(--accent));
      box-shadow:0 12px 28px rgba(139,92,246,.24);
      position:relative;
      overflow:hidden;
    }
    .brand-mark:after{
      content:"";
      position:absolute;
      width:18px;
      height:18px;
      border-radius:50% 50% 50% 8px;
      background:rgba(255,255,255,.86);
      right:7px;
      bottom:7px;
      transform:rotate(-18deg);
    }
    .brand-name{font-size:17px}
    .navbar-nav{
      align-items:center;
      gap:6px;
      padding:8px;
      border:1px solid rgba(238,229,245,.8);
      background:rgba(255,255,255,.68);
      border-radius:var(--radius-pill);
    }
    .nav-link{
      border-radius:var(--radius-pill);
      padding:9px 15px!important;
      color:var(--muted);
      font-size:14px;
      font-weight:700;
      line-height:1.2;
    }
    .nav-link:hover{
      color:var(--primary);
      background:rgba(139,92,246,.08);
    }
    .nav-link.active{
      color:#fff!important;
      background:linear-gradient(135deg,var(--primary),var(--primary-2));
      box-shadow:0 10px 22px rgba(139,92,246,.20);
    }
    .nav-actions{
      display:flex;
      align-items:center;
      gap:10px;
      margin-left:18px;
    }
    .command-search{
      height:42px;
      min-width:232px;
      display:flex;
      align-items:center;
      gap:8px;
      padding:0 10px 0 14px;
      border-radius:var(--radius-pill);
      border:1px solid var(--border);
      background:#fff;
      color:var(--weak);
      box-shadow:0 8px 20px rgba(86,45,126,.05);
      cursor:text;
      transition:border-color .2s ease, box-shadow .2s ease;
    }
    .command-search:focus-within{
      border-color:var(--primary);
      box-shadow:0 0 0 4px rgba(139,92,246,.13);
    }
    .command-search input{
      width:100%;
      border:0;
      background:transparent;
      color:var(--text);
      font-size:13px;
      min-width:0;
    }
    .command-search input::placeholder{color:var(--weak)}
    .keycap{
      border:1px solid var(--border);
      background:var(--bg-soft);
      color:var(--muted);
      border-radius:10px;
      padding:2px 7px;
      font-size:11px;
      font-weight:800;
      white-space:nowrap;
      line-height:1.5;
    }
    .quick-btn{
      width:42px;
      height:42px;
      display:grid;
      place-items:center;
      border-radius:14px;
      border:1px solid rgba(255,138,61,.24);
      background:rgba(255,138,61,.10);
      color:#d96016;
      font-weight:900;
    }
    .quick-btn:hover{
      transform:translateY(-2px);
      background:rgba(255,138,61,.16);
      color:#b94c0d;
    }
    .btn{
      border:0;
      border-radius:var(--radius-pill);
      padding:12px 20px;
      font-weight:800;
      letter-spacing:.01em;
      transition:transform .22s ease, box-shadow .22s ease, background .22s ease, border-color .22s ease;
    }
    .btn-primary{
      color:#fff!important;
      background:linear-gradient(135deg,var(--primary),var(--pink) 48%,var(--accent));
      box-shadow:0 14px 28px rgba(139,92,246,.23);
    }
    .btn-primary:hover,.btn-primary:focus{
      transform:translateY(-2px);
      background:linear-gradient(155deg,var(--primary-2),var(--pink) 44%,var(--accent));
      box-shadow:0 18px 34px rgba(139,92,246,.30);
    }
    .btn-outline{
      color:var(--primary);
      background:#fff;
      border:1px solid var(--border-strong);
      box-shadow:0 10px 22px rgba(86,45,126,.06);
    }
    .btn-outline:hover{
      color:var(--primary);
      background:rgba(139,92,246,.08);
      transform:translateY(-2px);
      border-color:rgba(139,92,246,.34);
    }
    .navbar-toggler{
      width:46px;
      height:46px;
      border:1px solid var(--border);
      border-radius:16px;
      background:#fff;
      box-shadow:0 10px 20px rgba(86,45,126,.06);
    }
    .navbar-toggler:focus{box-shadow:0 0 0 4px rgba(139,92,246,.14)}
    .navbar-toggler-icon{
      background-image:none;
      width:20px;
      height:14px;
      position:relative;
      border-top:2px solid var(--primary);
      border-bottom:2px solid var(--primary);
    }
    .navbar-toggler-icon:after{
      content:"";
      position:absolute;
      left:0;
      top:4px;
      width:20px;
      border-top:2px solid var(--primary);
    }

    main{position:relative}
    .section{padding:76px 0}
    .section-tight{padding:54px 0}
    .eyebrow{
      display:inline-flex;
      align-items:center;
      gap:8px;
      color:var(--primary);
      background:rgba(139,92,246,.10);
      border:1px solid rgba(139,92,246,.14);
      border-radius:var(--radius-pill);
      padding:7px 12px;
      font-size:13px;
      font-weight:800;
      line-height:1.2;
    }
    .eyebrow.hot{
      color:#c65311;
      background:rgba(255,138,61,.12);
      border-color:rgba(255,138,61,.20);
    }
    .dot{
      width:8px;
      height:8px;
      border-radius:50%;
      background:linear-gradient(135deg,var(--pink),var(--accent));
      box-shadow:0 0 0 5px rgba(255,79,163,.10);
    }
    .hero{
      padding:58px 0 42px;
      position:relative;
    }
    .hero-wrap{
      border:1px solid rgba(238,229,245,.86);
      border-radius:var(--radius-xl);
      background:
        radial-gradient(circle at 14% 20%, rgba(255,216,77,.22), transparent 22%),
        radial-gradient(circle at 86% 12%, rgba(139,92,246,.16), transparent 30%),
        linear-gradient(135deg,rgba(255,255,255,.94),rgba(255,240,229,.66));
      box-shadow:var(--shadow);
      overflow:hidden;
      position:relative;
      padding:34px;
    }
    .hero-wrap:before{
      content:"";
      position:absolute;
      inset:auto -54px -64px auto;
      width:190px;
      height:190px;
      border-radius:50%;
      background:rgba(255,79,163,.12);
    }
    .hero h1{
      margin:16px 0 18px;
      font-size:clamp(30px,4.4vw,48px);
      line-height:1.16;
      font-weight:900;
      letter-spacing:-.04em;
      color:var(--text);
    }
    .hero-lead{
      max-width:760px;
      margin:0;
      color:var(--muted);
      font-size:17px;
      line-height:1.9;
    }
    .hero-actions{
      display:flex;
      flex-wrap:wrap;
      gap:12px;
      margin-top:26px;
    }
    .group-hint{
      display:flex;
      align-items:center;
      gap:12px;
      flex-wrap:wrap;
      margin-top:22px;
      color:var(--muted);
      font-size:14px;
    }
    .group-pill{
      display:inline-flex;
      align-items:center;
      gap:8px;
      border-radius:var(--radius-pill);
      background:#fff;
      border:1px solid rgba(34,197,94,.20);
      padding:8px 12px;
      color:#15803d;
      font-weight:800;
      box-shadow:0 10px 22px rgba(34,197,94,.08);
    }
    .pulse{
      width:9px;
      height:9px;
      border-radius:50%;
      background:var(--green);
      box-shadow:0 0 0 0 rgba(34,197,94,.44);
      animation:pulse 1.8s infinite;
    }
    @keyframes pulse{
      0%{box-shadow:0 0 0 0 rgba(34,197,94,.44)}
      70%{box-shadow:0 0 0 10px rgba(34,197,94,0)}
      100%{box-shadow:0 0 0 0 rgba(34,197,94,0)}
    }
    .status-board{
      position:relative;
      padding:22px;
      border-radius:30px;
      background:#fff;
      border:1px solid var(--border);
      box-shadow:var(--shadow);
    }
    .status-top{
      display:flex;
      justify-content:space-between;
      gap:14px;
      align-items:flex-start;
      margin-bottom:16px;
    }
    .status-title{
      font-size:20px;
      line-height:1.35;
      margin:0;
      font-weight:900;
    }
    .sticker{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      min-width:54px;
      height:38px;
      padding:0 12px;
      border-radius:16px 16px 16px 4px;
      background:linear-gradient(135deg,var(--yellow),var(--accent));
      color:#7a3508;
      font-weight:900;
      transform:rotate(3deg);
      box-shadow:0 12px 24px rgba(255,138,61,.18);
    }
    .status-grid{
      display:grid;
      grid-template-columns:1fr 1fr;
      gap:12px;
    }
    .mini-stat{
      padding:16px;
      border-radius:22px;
      background:var(--bg-soft);
      border:1px solid var(--border);
    }
    .mini-stat strong{
      display:block;
      font-size:28px;
      line-height:1;
      color:var(--primary);
      font-weight:900;
      margin-bottom:8px;
    }
    .mini-stat span{
      display:block;
      color:var(--muted);
      font-size:13px;
      font-weight:700;
    }
    .status-list{
      margin:16px 0 0;
      padding:0;
      list-style:none;
      display:grid;
      gap:10px;
    }
    .status-list li{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:12px;
      border-radius:18px;
      padding:12px 14px;
      background:linear-gradient(90deg,rgba(139,92,246,.08),rgba(255,138,61,.06));
      color:var(--muted);
      font-size:14px;
      font-weight:700;
    }
    .badge-soft{
      display:inline-flex;
      align-items:center;
      border-radius:var(--radius-pill);
      padding:5px 10px;
      font-size:12px;
      font-weight:900;
      color:var(--primary);
      background:rgba(139,92,246,.10);
    }
    .section-head{
      display:flex;
      align-items:flex-end;
      justify-content:space-between;
      gap:24px;
      margin-bottom:26px;
    }
    .section-head h2{
      margin:12px 0 0;
      font-size:clamp(24px,3vw,34px);
      line-height:1.22;
      font-weight:900;
      letter-spacing:-.03em;
    }
    .section-head p{
      max-width:570px;
      margin:0;
      color:var(--muted);
      font-size:16px;
    }
    .pill-row{
      display:flex;
      gap:10px;
      overflow:auto;
      padding-bottom:8px;
      scrollbar-width:none;
    }
    .pill-row::-webkit-scrollbar{display:none}
    .pill-tab{
      border:1px solid var(--border);
      background:#fff;
      color:var(--muted);
      border-radius:var(--radius-pill);
      padding:9px 14px;
      font-size:13px;
      font-weight:800;
      white-space:nowrap;
    }
    .pill-tab.active{
      color:#fff;
      background:linear-gradient(135deg,var(--primary),var(--accent));
      border-color:transparent;
      box-shadow:0 12px 24px rgba(139,92,246,.18);
    }
    .guide-layout{
      display:grid;
      grid-template-columns:minmax(0,1.08fr) minmax(320px,.72fr);
      gap:24px;
      align-items:start;
    }
    .timeline-card{
      border-radius:var(--radius-xl);
      background:#fff;
      border:1px solid var(--border);
      box-shadow:var(--shadow);
      padding:26px;
    }
    .timeline{
      display:grid;
      gap:18px;
      margin:0;
      padding:0;
      list-style:none;
      position:relative;
    }
    .timeline-item{
      display:grid;
      grid-template-columns:48px minmax(0,1fr);
      gap:15px;
      align-items:start;
      padding-bottom:18px;
      border-bottom:1px dashed rgba(139,92,246,.18);
    }
    .timeline-item:last-child{border-bottom:0;padding-bottom:0}
    .step-num{
      width:48px;
      height:48px;
      display:grid;
      place-items:center;
      border-radius:18px;
      color:#fff;
      font-weight:900;
      background:linear-gradient(135deg,var(--primary),var(--pink));
      box-shadow:0 12px 24px rgba(139,92,246,.20);
    }
    .timeline-item:nth-child(even) .step-num{
      background:linear-gradient(135deg,var(--accent),var(--yellow));
      color:#7a3508;
    }
    .timeline-content h3{
      margin:0 0 7px;
      font-size:20px;
      font-weight:900;
    }
    .timeline-content p{
      margin:0 0 12px;
      color:var(--muted);
      font-size:15px;
    }
    .tag-list{
      display:flex;
      flex-wrap:wrap;
      gap:8px;
    }
    .tag{
      display:inline-flex;
      align-items:center;
      border-radius:var(--radius-pill);
      padding:5px 10px;
      background:rgba(255,138,61,.10);
      color:#c65311;
      font-size:12px;
      font-weight:900;
    }
    .compare-stack{
      display:grid;
      gap:16px;
    }
    .compare-card{
      border-radius:var(--radius-lg);
      border:1px solid var(--border);
      background:#fff;
      box-shadow:0 14px 34px rgba(86,45,126,.08);
      padding:22px;
      transition:transform .22s ease, box-shadow .22s ease, border-color .22s ease;
    }
    .compare-card:hover{
      transform:translateY(-4px);
      box-shadow:var(--shadow-hover);
      border-color:rgba(139,92,246,.30);
    }
    .compare-card.orange{
      background:linear-gradient(145deg,#fff,#fff0e5);
      border-color:rgba(255,138,61,.22);
    }
    .compare-card.purple{
      background:linear-gradient(145deg,#fff,#f5efff);
      border-color:rgba(139,92,246,.20);
    }
    .compare-card h3{
      margin:10px 0 8px;
      font-size:20px;
      font-weight:900;
    }
    .compare-card p{
      margin:0 0 16px;
      color:var(--muted);
      font-size:15px;
    }
    .light-btn{
      display:inline-flex;
      align-items:center;
      gap:8px;
      color:var(--primary);
      font-size:14px;
      font-weight:900;
    }
    .light-btn:hover{color:var(--accent);transform:translateX(3px)}
    .matrix-wrap{
      border-radius:var(--radius-xl);
      overflow:hidden;
      background:#fff;
      border:1px solid var(--border);
      box-shadow:var(--shadow);
    }
    .matrix{
      width:100%;
      margin:0;
      border-collapse:separate;
      border-spacing:0;
    }
    .matrix th{
      background:linear-gradient(135deg,rgba(139,92,246,.12),rgba(255,138,61,.10));
      color:var(--text);
      font-size:14px;
      padding:18px;
      border-bottom:1px solid var(--border);
      font-weight:900;
    }
    .matrix td{
      padding:18px;
      border-bottom:1px solid rgba(238,229,245,.75);
      color:var(--muted);
      font-size:15px;
      vertical-align:top;
    }
    .matrix tr:last-child td{border-bottom:0}
    .mark{
      display:inline-flex;
      align-items:center;
      border-radius:12px;
      padding:4px 9px;
      background:rgba(255,138,61,.12);
      color:#c65311;
      font-weight:900;
      font-size:12px;
      white-space:nowrap;
    }
    .check-list{
      display:grid;
      grid-template-columns:repeat(2,minmax(0,1fr));
      gap:14px;
      margin-top:22px;
    }
    .check-item{
      display:flex;
      gap:12px;
      padding:18px;
      border-radius:22px;
      background:#fff;
      border:1px solid var(--border);
      box-shadow:0 12px 26px rgba(86,45,126,.06);
    }
    .check-icon{
      width:28px;
      height:28px;
      flex:0 0 28px;
      display:grid;
      place-items:center;
      border-radius:50%;
      background:rgba(34,197,94,.12);
      color:#15803d;
      font-weight:900;
    }
    .check-item strong{
      display:block;
      margin-bottom:4px;
      font-weight:900;
    }
    .check-item span{
      display:block;
      color:var(--muted);
      font-size:14px;
      line-height:1.7;
    }
    .progress-panel{
      border-radius:var(--radius-xl);
      background:
        radial-gradient(circle at 80% 0%,rgba(255,216,77,.24),transparent 26%),
        linear-gradient(135deg,#fff,#f5efff);
      border:1px solid rgba(139,92,246,.16);
      box-shadow:var(--shadow);
      padding:28px;
    }
    .progress-title{
      display:flex;
      justify-content:space-between;
      align-items:center;
      gap:16px;
      margin-bottom:18px;
    }
    .progress-title h2{
      margin:0;
      font-size:clamp(24px,3vw,32px);
      font-weight:900;
      letter-spacing:-.03em;
    }
    .progress{
      height:14px;
      background:rgba(139,92,246,.12);
      border-radius:var(--radius-pill);
      overflow:visible;
    }
    .progress-bar{
      background:linear-gradient(90deg,var(--primary),var(--pink),var(--accent));
      border-radius:var(--radius-pill);
      position:relative;
    }
    .progress-bar:after{
      content:"";
      position:absolute;
      right:-5px;
      top:50%;
      width:22px;
      height:22px;
      transform:translateY(-50%);
      border-radius:50%;
      background:#fff;
      border:5px solid var(--accent);
      box-shadow:0 8px 18px rgba(255,138,61,.28);
    }
    .task-grid{
      display:grid;
      grid-template-columns:repeat(3,minmax(0,1fr));
      gap:14px;
      margin-top:24px;
    }
    .task{
      border-radius:22px;
      background:#fff;
      border:1px solid rgba(238,229,245,.9);
      padding:18px;
      min-height:150px;
    }
    .task.done{border-color:rgba(34,197,94,.24);background:rgba(34,197,94,.06)}
    .task.wait{border-color:rgba(255,138,61,.24);background:rgba(255,138,61,.07)}
    .task small{
      display:inline-flex;
      margin-bottom:10px;
      border-radius:var(--radius-pill);
      padding:4px 9px;
      font-weight:900;
      color:var(--primary);
      background:rgba(139,92,246,.10);
    }
    .task h3{
      margin:0 0 8px;
      font-size:17px;
      font-weight:900;
    }
    .task p{
      margin:0;
      color:var(--muted);
      font-size:14px;
      line-height:1.7;
    }
    .masonry-row{
      align-items:stretch;
    }
    .note-card{
      height:100%;
      border-radius:var(--radius-lg);
      border:1px solid var(--border);
      background:#fff;
      box-shadow:0 14px 34px rgba(86,45,126,.07);
      padding:22px;
      position:relative;
      overflow:hidden;
      transition:transform .22s ease, box-shadow .22s ease, border-color .22s ease;
    }
    .note-card:before{
      content:"";
      position:absolute;
      left:22px;
      top:0;
      width:58px;
      height:6px;
      border-radius:0 0 8px 8px;
      background:linear-gradient(90deg,var(--primary),var(--accent));
    }
    .note-card:hover{
      transform:translateY(-4px);
      box-shadow:var(--shadow-hover);
      border-color:rgba(139,92,246,.30);
    }
    .note-card.tall{min-height:280px}
    .note-card h3{
      margin:14px 0 8px;
      font-size:20px;
      font-weight:900;
    }
    .note-card p{
      margin:0 0 16px;
      color:var(--muted);
      font-size:15px;
    }
    .feedback-card{
      border-radius:var(--radius-xl);
      background:#fff;
      border:1px solid var(--border);
      box-shadow:var(--shadow);
      padding:28px;
    }
    .form-label{
      color:var(--text);
      font-weight:900;
      margin-bottom:8px;
    }
    .form-control,.form-select{
      border-radius:18px;
      border:1px solid var(--border);
      background:var(--bg-soft);
      padding:13px 15px;
      color:var(--text);
      box-shadow:none;
    }
    .form-control:focus,.form-select:focus{
      border-color:var(--primary);
      box-shadow:0 0 0 4px rgba(139,92,246,.14);
      background:#fff;
    }
    textarea.form-control{min-height:118px;resize:vertical}
    .accordion{
      display:grid;
      gap:12px;
    }
    .accordion-item{
      border:1px solid var(--border)!important;
      border-radius:22px!important;
      overflow:hidden;
      background:#fff;
      box-shadow:0 10px 24px rgba(86,45,126,.05);
    }
    .accordion-button{
      border-radius:22px!important;
      background:#fff;
      color:var(--text);
      font-weight:900;
      padding:18px 20px;
      box-shadow:none!important;
    }
    .accordion-button:not(.collapsed){
      color:var(--primary);
      background:linear-gradient(135deg,rgba(139,92,246,.10),rgba(255,138,61,.08));
    }
    .accordion-button:focus{
      box-shadow:0 0 0 4px rgba(139,92,246,.12)!important;
      border-color:transparent;
    }
    .accordion-button::after{
      background-image:none;
      content:"+";
      display:grid;
      place-items:center;
      font-size:22px;
      font-weight:900;
      color:var(--primary);
      transform:none!important;
    }
    .accordion-button:not(.collapsed)::after{content:"−"}
    .accordion-body{
      padding:0 20px 20px;
      color:var(--muted);
      font-size:15px;
      line-height:1.85;
    }
    .cta-card{
      border-radius:var(--radius-xl);
      padding:34px;
      color:#fff;
      background:
        radial-gradient(circle at 12% 0%,rgba(255,216,77,.36),transparent 30%),
        linear-gradient(135deg,#7c3aed 0%,#ff4fa3 52%,#ff8a3d 100%);
      box-shadow:0 22px 56px rgba(139,92,246,.24);
      overflow:hidden;
      position:relative;
    }
    .cta-card:after{
      content:"";
      position:absolute;
      right:-45px;
      bottom:-55px;
      width:170px;
      height:170px;
      border-radius:50%;
      background:rgba(255,255,255,.16);
    }
    .cta-card h2{
      margin:0 0 12px;
      font-size:clamp(25px,3.2vw,36px);
      font-weight:900;
      letter-spacing:-.03em;
      position:relative;
      z-index:1;
    }
    .cta-card p{
      margin:0;
      color:rgba(255,255,255,.88);
      max-width:680px;
      position:relative;
      z-index:1;
    }
    .cta-card .btn{
      position:relative;
      z-index:1;
    }
    .cta-white{
      color:var(--primary)!important;
      background:#fff;
      box-shadow:0 14px 28px rgba(38,33,46,.16);
    }
    .cta-white:hover{transform:translateY(-2px);color:var(--accent)!important}
    .cta-ghost{
      color:#fff!important;
      border:1px solid rgba(255,255,255,.52);
      background:rgba(255,255,255,.14);
    }
    .cta-ghost:hover{
      color:#fff!important;
      background:rgba(255,255,255,.22);
      transform:translateY(-2px);
    }
    .site-footer{
      background:#241e2e;
      color:rgba(255,255,255,.78);
      padding:54px 0 24px;
      margin-top:44px;
    }
    .footer-grid{
      display:grid;
      grid-template-columns:1.35fr .75fr .75fr;
      gap:36px;
      padding-bottom:30px;
      border-bottom:1px solid rgba(255,255,255,.10);
    }
    .footer-brand{
      display:flex;
      align-items:center;
      gap:11px;
      color:#fff;
      font-weight:900;
      margin-bottom:14px;
    }
    .footer-desc{
      margin:0;
      max-width:420px;
      color:rgba(255,255,255,.68);
      font-size:14px;
      line-height:1.85;
    }
    .footer-title{
      color:#fff;
      font-weight:900;
      margin-bottom:12px;
    }
    .footer-links{
      list-style:none;
      margin:0;
      padding:0;
      display:grid;
      gap:9px;
    }
    .footer-links a{
      color:rgba(255,255,255,.68);
      font-size:14px;
    }
    .footer-links a:hover{
      color:#fff;
      transform:translateX(3px);
    }
    .copyright{
      display:flex;
      justify-content:space-between;
      gap:18px;
      flex-wrap:wrap;
      padding-top:20px;
      color:rgba(255,255,255,.52);
      font-size:13px;
    }
    .anchor-offset{scroll-margin-top:110px}

    @media (max-width:1199.98px){
      .command-search{min-width:190px}
      .nav-actions{gap:8px;margin-left:12px}
      .nav-link{padding:9px 12px!important}
      .guide-layout{grid-template-columns:1fr .78fr}
      .task-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
    }
    @media (max-width:991.98px){
      .site-header{padding:10px 0}
      .navbar-collapse{
        margin-top:14px;
        padding:16px;
        border:1px solid var(--border);
        border-radius:26px;
        background:#fff;
        box-shadow:var(--shadow);
      }
      .navbar-nav{
        align-items:stretch;
        border-radius:20px;
        background:var(--bg-soft);
        padding:8px;
      }
      .nav-actions{
        margin:14px 0 0;
        display:grid;
        grid-template-columns:1fr auto;
      }
      .command-search{
        grid-column:1 / -1;
        min-width:0;
        width:100%;
      }
      .nav-actions .btn-primary{
        grid-column:auto;
      }
      .hero-wrap{padding:26px}
      .guide-layout{grid-template-columns:1fr}
      .section-head{align-items:flex-start;flex-direction:column}
      .footer-grid{grid-template-columns:1fr 1fr}
      .footer-grid>div:first-child{grid-column:1 / -1}
    }
    @media (max-width:767.98px){
      .site-container{width:min(100% - 26px,var(--container))}
      .section{padding:54px 0}
      .section-tight{padding:42px 0}
      .hero{padding:34px 0 24px}
      .hero-wrap{border-radius:28px;padding:22px}
      .hero-lead{font-size:15px}
      .hero-actions{display:grid}
      .hero-actions .btn{width:100%}
      .status-grid{grid-template-columns:1fr}
      .check-list{grid-template-columns:1fr}
      .task-grid{grid-template-columns:1fr}
      .matrix thead{display:none}
      .matrix,.matrix tbody,.matrix tr,.matrix td{display:block;width:100%}
      .matrix tr{
        border-bottom:1px solid var(--border);
        padding:10px 0;
      }
      .matrix tr:last-child{border-bottom:0}
      .matrix td{
        border-bottom:0;
        padding:10px 16px;
      }
      .matrix td:before{
        content:attr(data-label);
        display:block;
        color:var(--text);
        font-weight:900;
        margin-bottom:4px;
      }
      .timeline-card,.progress-panel,.feedback-card,.cta-card{padding:22px;border-radius:28px}
      .timeline-item{grid-template-columns:40px 1fr;gap:12px}
      .step-num{width:40px;height:40px;border-radius:15px}
      .footer-grid{grid-template-columns:1fr}
      .copyright{display:grid}
    }
    @media (max-width:575.98px){
      .brand-name{font-size:15px;max-width:220px;white-space:normal;line-height:1.25}
      .brand-mark{width:38px;height:38px;flex-basis:38px}
      .nav-actions{grid-template-columns:1fr}
      .quick-btn{width:100%}
      .section-head h2{font-size:24px}
      .status-top{flex-direction:column}
      .group-hint{align-items:flex-start}
      .mini-stat strong{font-size:24px}
      .cta-card .d-flex{display:grid!important}
    }
