/* roulang page: index */
:root{
      --primary:#f05a7e;
      --primary-2:#f27996;
      --primary-soft:#fff0f4;
      --purple:#8b7cf6;
      --purple-soft:#f2efff;
      --orange:#ffb86b;
      --green:#5cc8b2;
      --bg:#fff8fa;
      --bg-2:#f8fafc;
      --surface:#ffffff;
      --ink:#252733;
      --muted:#5b6070;
      --light:#8a8f9e;
      --border:#ece5ef;
      --border-2:#e7eaf0;
      --shadow:0 18px 50px rgba(76,44,76,.09);
      --shadow-sm:0 10px 28px rgba(76,44,76,.07);
      --radius-xl:30px;
      --radius-lg:24px;
      --radius-md:18px;
      --radius-pill:999px;
      --container:1160px;
    }
    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      font-family:-apple-system,BlinkMacSystemFont,"Segoe UI","PingFang SC","Microsoft YaHei","Noto Sans SC",sans-serif;
      color:var(--ink);
      background:
        radial-gradient(circle at 10% 0%, rgba(240,90,126,.13), transparent 30%),
        radial-gradient(circle at 90% 8%, rgba(139,124,246,.12), transparent 34%),
        linear-gradient(180deg,#fff8fa 0%,#fff 42%,#f8fafc 100%);
      line-height:1.75;
      overflow-x:hidden;
    }
    a{color:inherit;text-decoration:none;transition:.22s ease}
    a:hover{color:var(--primary)}
    img{max-width:100%;display:block}
    button,input,select,textarea{font:inherit}
    .container{max-width:var(--container)}
    .section{padding:78px 0}
    .section.compact{padding:56px 0}
    .section-head{
      display:flex;
      align-items:flex-end;
      justify-content:space-between;
      gap:28px;
      margin-bottom:30px;
    }
    .section-kicker{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:7px 13px;
      border-radius:var(--radius-pill);
      background:var(--primary-soft);
      color:var(--primary);
      font-size:13px;
      font-weight:700;
      margin-bottom:12px;
    }
    .section-title{
      font-size:clamp(25px,3vw,34px);
      line-height:1.25;
      font-weight:800;
      letter-spacing:-.02em;
      margin:0 0 10px;
    }
    .section-desc{
      color:var(--muted);
      font-size:16px;
      max-width:720px;
      margin:0;
    }
    .site-header{
      position:sticky;
      top:0;
      z-index:1000;
      background:rgba(255,255,255,.9);
      backdrop-filter:blur(18px);
      border-bottom:1px solid rgba(236,229,239,.88);
      box-shadow:0 8px 28px rgba(95,62,96,.04);
    }
    .brand-row{
      padding:14px 0;
      border-bottom:1px solid rgba(236,229,239,.75);
    }
    .brand-wrap{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:18px;
    }
    .brand-logo{
      display:flex;
      align-items:center;
      gap:12px;
      min-width:0;
    }
    .logo-mark{
      width:42px;
      height:42px;
      border-radius:16px;
      display:grid;
      place-items:center;
      background:linear-gradient(135deg,var(--primary),var(--purple));
      color:#fff;
      font-weight:900;
      box-shadow:0 10px 24px rgba(240,90,126,.24);
      flex:0 0 auto;
    }
    .brand-name{
      font-weight:850;
      font-size:20px;
      letter-spacing:-.03em;
      white-space:nowrap;
      overflow:hidden;
      text-overflow:ellipsis;
    }
    .brand-sub{
      display:block;
      color:var(--light);
      font-size:12px;
      font-weight:600;
      margin-top:-2px;
    }
    .top-actions{
      display:flex;
      align-items:center;
      gap:10px;
      flex-wrap:wrap;
      justify-content:flex-end;
    }
    .top-chip{
      display:inline-flex;
      align-items:center;
      gap:7px;
      border:1px solid var(--border);
      background:#fff;
      padding:8px 12px;
      border-radius:var(--radius-pill);
      color:var(--muted);
      font-size:13px;
      font-weight:650;
    }
    .top-chip.strong{
      color:var(--primary);
      background:var(--primary-soft);
      border-color:#ffd7e1;
    }
    .channel-row{padding:11px 0}
    .channel-scroll{
      display:flex;
      align-items:center;
      gap:10px;
      overflow-x:auto;
      scrollbar-width:none;
      -webkit-overflow-scrolling:touch;
      padding-bottom:1px;
    }
    .channel-scroll::-webkit-scrollbar{display:none}
    .channel-link{
      display:inline-flex;
      align-items:center;
      gap:7px;
      white-space:nowrap;
      padding:9px 15px;
      border-radius:var(--radius-pill);
      border:1px solid var(--border);
      background:rgba(255,255,255,.82);
      color:var(--muted);
      font-weight:700;
      font-size:14px;
    }
    .channel-link:hover{
      transform:translateY(-2px);
      background:#fff;
      border-color:#ffd0dc;
      box-shadow:var(--shadow-sm);
      color:var(--primary);
    }
    .channel-link.active{
      background:var(--primary-soft);
      border-color:#ffc9d7;
      color:var(--primary);
      box-shadow:0 10px 24px rgba(240,90,126,.10);
    }
    .btn-rou{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:8px;
      min-height:46px;
      padding:12px 20px;
      border-radius:var(--radius-pill);
      font-weight:800;
      border:1px solid transparent;
      transition:.22s ease;
      cursor:pointer;
    }
    .btn-primary-rou{
      background:linear-gradient(135deg,var(--primary),var(--primary-2));
      color:#fff;
      box-shadow:0 14px 30px rgba(240,90,126,.23);
    }
    .btn-primary-rou:hover,.btn-primary-rou:focus{
      color:#fff;
      transform:translateY(-2px);
      box-shadow:0 18px 38px rgba(240,90,126,.30);
    }
    .btn-soft-rou{
      background:#fff;
      color:var(--primary);
      border-color:#ffd2dd;
    }
    .btn-soft-rou:hover,.btn-soft-rou:focus{
      background:var(--primary-soft);
      color:var(--primary);
      transform:translateY(-2px);
      box-shadow:var(--shadow-sm);
    }
    .hero{
      padding:70px 0 58px;
      position:relative;
    }
    .hero-panel{
      position:relative;
      overflow:hidden;
      border:1px solid rgba(236,229,239,.92);
      border-radius:36px;
      background:
        radial-gradient(circle at 8% 18%,rgba(240,90,126,.16),transparent 25%),
        radial-gradient(circle at 92% 12%,rgba(139,124,246,.16),transparent 28%),
        linear-gradient(135deg,#fff 0%,#fff7fa 48%,#f7f4ff 100%);
      box-shadow:var(--shadow);
      padding:34px;
    }
    .hero-panel:before{
      content:"";
      position:absolute;
      right:-80px;
      bottom:-120px;
      width:310px;
      height:310px;
      border-radius:50%;
      background:rgba(255,184,107,.16);
    }
    .hero-grid{
      position:relative;
      display:grid;
      grid-template-columns:minmax(0,1fr) 430px;
      gap:32px;
      align-items:center;
    }
    .hero-copy{
      padding:18px 4px 18px 10px;
    }
    .hero-badge{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:8px 14px;
      border-radius:var(--radius-pill);
      background:#fff;
      color:var(--primary);
      font-size:13px;
      font-weight:800;
      border:1px solid #ffd5df;
      box-shadow:0 8px 20px rgba(240,90,126,.09);
      margin-bottom:18px;
    }
    h1{
      font-size:clamp(30px,4.2vw,46px);
      line-height:1.18;
      font-weight:900;
      letter-spacing:-.04em;
      margin:0 0 18px;
      color:var(--ink);
    }
    .hero-intro{
      font-size:17px;
      color:var(--muted);
      max-width:680px;
      margin:0 0 24px;
    }
    .hero-actions{
      display:flex;
      align-items:center;
      flex-wrap:wrap;
      gap:12px;
      margin-bottom:20px;
    }
    .hero-points{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
      margin-top:10px;
    }
    .point-tag{
      display:inline-flex;
      align-items:center;
      gap:7px;
      padding:8px 12px;
      border-radius:var(--radius-pill);
      background:rgba(255,255,255,.82);
      border:1px solid var(--border);
      color:var(--muted);
      font-size:13px;
      font-weight:650;
    }
    .lead-cover{
      background:rgba(255,255,255,.86);
      border:1px solid rgba(236,229,239,.95);
      border-radius:30px;
      padding:22px;
      box-shadow:var(--shadow);
    }
    .cover-top{
      display:flex;
      justify-content:space-between;
      align-items:center;
      margin-bottom:16px;
    }
    .cover-label{
      padding:7px 11px;
      border-radius:var(--radius-pill);
      background:var(--purple-soft);
      color:var(--purple);
      font-size:12px;
      font-weight:850;
    }
    .cover-art{
      min-height:185px;
      border-radius:24px;
      padding:20px;
      background:
        linear-gradient(135deg,rgba(240,90,126,.12),rgba(139,124,246,.12)),
        repeating-linear-gradient(135deg,rgba(255,255,255,.65) 0 12px,rgba(255,255,255,.28) 12px 24px);
      border:1px solid rgba(236,229,239,.85);
      display:flex;
      flex-direction:column;
      justify-content:space-between;
    }
    .cover-title{
      font-size:22px;
      line-height:1.25;
      font-weight:900;
      margin:0;
    }
    .cover-list{
      display:grid;
      gap:10px;
      margin-top:16px;
    }
    .cover-item{
      display:flex;
      gap:10px;
      align-items:flex-start;
      padding:12px;
      border-radius:18px;
      background:#fff;
      border:1px solid var(--border);
    }
    .num{
      width:30px;
      height:30px;
      flex:0 0 auto;
      border-radius:12px;
      display:grid;
      place-items:center;
      background:var(--primary-soft);
      color:var(--primary);
      font-size:12px;
      font-weight:900;
    }
    .cover-item strong{
      display:block;
      font-size:15px;
      line-height:1.35;
      margin-bottom:2px;
    }
    .cover-item span{
      color:var(--muted);
      font-size:13px;
      line-height:1.55;
    }
    .notice-bar{
      margin-top:16px;
      display:flex;
      align-items:flex-start;
      gap:10px;
      border-radius:18px;
      background:#fff7ed;
      border:1px solid #ffe2bd;
      padding:13px 14px;
      color:#86603a;
      font-size:13px;
      font-weight:650;
    }
    .news-shell{
      display:grid;
      grid-template-columns:minmax(0,1.5fr) minmax(290px,.8fr);
      gap:22px;
    }
    .news-list,.side-reco,.tier-card,.compare-wrap,.campaign-card,.guide-card,.form-card,.step-panel,.triple-card,.about-card{
      background:var(--surface);
      border:1px solid var(--border);
      border-radius:var(--radius-lg);
      box-shadow:var(--shadow-sm);
    }
    .news-list{padding:10px}
    .news-link{
      display:grid;
      grid-template-columns:88px 1fr auto;
      align-items:center;
      gap:16px;
      padding:17px;
      border-radius:18px;
      border:1px solid transparent;
    }
    .news-link:hover{
      background:var(--bg);
      border-color:#ffd7e1;
      transform:translateX(3px);
    }
    .news-date{
      color:var(--primary);
      font-weight:900;
      font-size:13px;
      background:var(--primary-soft);
      border-radius:14px;
      padding:8px 10px;
      text-align:center;
    }
    .news-title{
      font-weight:800;
      margin:0 0 3px;
      line-height:1.35;
    }
    .news-desc{
      color:var(--muted);
      font-size:14px;
      margin:0;
      line-height:1.55;
    }
    .arrow{
      color:var(--light);
      font-weight:900;
    }
    .side-reco{padding:24px}
    .reco-card{
      padding:18px;
      border-radius:20px;
      background:linear-gradient(135deg,var(--primary-soft),#fff);
      border:1px solid #ffd7e1;
      margin-top:16px;
    }
    .reco-card strong{display:block;font-size:20px;margin-bottom:8px}
    .reco-card p{color:var(--muted);margin:0 0 14px;font-size:14px}
    .tier-grid{
      display:grid;
      grid-template-columns:repeat(4,1fr);
      gap:18px;
    }
    .tier-card{
      padding:24px;
      position:relative;
      overflow:hidden;
      transition:.22s ease;
    }
    .tier-card:hover{
      transform:translateY(-5px);
      box-shadow:var(--shadow);
      border-color:#ffd0dc;
    }
    .tier-card.featured{
      background:linear-gradient(180deg,#fff,#fff2f6);
      border-color:#ffc9d7;
    }
    .badge-reco{
      position:absolute;
      top:18px;
      right:18px;
      padding:6px 10px;
      border-radius:var(--radius-pill);
      background:var(--primary);
      color:#fff;
      font-size:12px;
      font-weight:850;
    }
    .tier-no{
      width:42px;
      height:42px;
      display:grid;
      place-items:center;
      border-radius:16px;
      background:var(--primary-soft);
      color:var(--primary);
      font-weight:950;
      margin-bottom:18px;
    }
    .tier-card h3{
      font-size:20px;
      font-weight:850;
      margin:0 0 10px;
    }
    .tier-card p{
      color:var(--muted);
      margin:0 0 16px;
      font-size:15px;
      line-height:1.65;
    }
    .mini-list{
      list-style:none;
      padding:0;
      margin:0 0 18px;
      display:grid;
      gap:9px;
    }
    .mini-list li{
      display:flex;
      gap:8px;
      align-items:flex-start;
      color:var(--muted);
      font-size:14px;
    }
    .mini-list li:before{
      content:"✓";
      color:var(--green);
      font-weight:900;
      flex:0 0 auto;
    }
    .compare-wrap{
      overflow:hidden;
      padding:0;
    }
    .compare-table{
      width:100%;
      border-collapse:separate;
      border-spacing:0;
      margin:0;
      overflow:hidden;
    }
    .compare-table th{
      padding:20px 18px;
      background:linear-gradient(135deg,#fff3f7,#f4f1ff);
      color:var(--ink);
      font-size:15px;
      border-bottom:1px solid var(--border);
    }
    .compare-table td{
      padding:18px;
      color:var(--muted);
      border-bottom:1px solid var(--border-2);
      vertical-align:middle;
      background:#fff;
      font-size:14px;
    }
    .compare-table tr:last-child td{border-bottom:0}
    .compare-table .key{
      color:var(--ink);
      font-weight:850;
      background:#fffafb;
    }
    .mark{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      padding:5px 10px;
      border-radius:var(--radius-pill);
      background:#eefaf7;
      color:#2f9c89;
      font-weight:800;
      font-size:12px;
    }
    .mark.pink{background:var(--primary-soft);color:var(--primary)}
    .mark.gray{background:#f3f4f6;color:var(--muted)}
    .campaign-card{
      padding:34px;
      position:relative;
      overflow:hidden;
      background:
        radial-gradient(circle at 90% 20%,rgba(255,184,107,.25),transparent 24%),
        linear-gradient(135deg,#fff0f4 0%,#f3f0ff 100%);
      display:grid;
      grid-template-columns:minmax(0,1fr) 350px;
      gap:24px;
      align-items:center;
    }
    .count-boxes{
      display:grid;
      grid-template-columns:repeat(3,1fr);
      gap:12px;
    }
    .count-box{
      border-radius:20px;
      background:rgba(255,255,255,.76);
      border:1px solid rgba(255,255,255,.88);
      padding:18px 12px;
      text-align:center;
      box-shadow:0 10px 24px rgba(76,44,76,.06);
    }
    .count-box strong{
      display:block;
      font-size:26px;
      color:var(--primary);
      line-height:1;
      margin-bottom:6px;
    }
    .count-box span{
      color:var(--muted);
      font-size:13px;
      font-weight:700;
    }
    .guide-grid{
      display:grid;
      grid-template-columns:.82fr 1.18fr;
      gap:20px;
      align-items:stretch;
    }
    .guide-card{padding:26px}
    .guide-card.highlight{
      background:linear-gradient(180deg,#fff,#f7f4ff);
    }
    .guide-steps{
      display:grid;
      gap:14px;
    }
    .guide-step{
      display:flex;
      gap:14px;
      padding:16px;
      border-radius:20px;
      background:#fff;
      border:1px solid var(--border);
      transition:.22s ease;
    }
    .guide-step:hover{
      border-color:#ffd0dc;
      transform:translateY(-2px);
      box-shadow:var(--shadow-sm);
    }
    .guide-step p{margin:0;color:var(--muted);font-size:14px}
    .triple-grid{
      display:grid;
      grid-template-columns:repeat(3,1fr);
      gap:18px;
    }
    .triple-card{
      padding:26px;
      background:#fff;
      transition:.22s ease;
    }
    .triple-card:hover{
      transform:translateY(-5px);
      box-shadow:var(--shadow);
    }
    .icon-bubble{
      width:50px;
      height:50px;
      border-radius:18px;
      display:grid;
      place-items:center;
      font-size:22px;
      background:var(--primary-soft);
      margin-bottom:16px;
    }
    .triple-card:nth-child(2) .icon-bubble{background:var(--purple-soft)}
    .triple-card:nth-child(3) .icon-bubble{background:#effbf8}
    .triple-card h3{
      font-size:20px;
      font-weight:850;
      margin:0 0 10px;
    }
    .triple-card p{color:var(--muted);margin:0;font-size:15px}
    .form-area{
      display:grid;
      grid-template-columns:minmax(0,1fr) 360px;
      gap:22px;
      align-items:start;
    }
    .form-card{padding:28px}
    .form-label{
      font-weight:750;
      color:var(--ink);
      font-size:14px;
      margin-bottom:8px;
    }
    .form-control,.form-select{
      min-height:50px;
      border-radius:16px;
      border:1px solid var(--border);
      background:#fff;
      color:var(--ink);
      padding:12px 14px;
      box-shadow:none!important;
    }
    textarea.form-control{min-height:132px}
    .form-control:focus,.form-select:focus{
      border-color:#ffb4c6;
      box-shadow:0 0 0 4px rgba(240,90,126,.12)!important;
    }
    .form-check-input{
      border-color:#ffc9d7;
      box-shadow:none!important;
    }
    .form-check-input:checked{
      background-color:var(--primary);
      border-color:var(--primary);
    }
    .step-panel{
      padding:24px;
      position:sticky;
      top:132px;
    }
    .side-step{
      display:flex;
      gap:12px;
      padding:16px 0;
      border-bottom:1px dashed var(--border);
    }
    .side-step:last-child{border-bottom:0}
    .side-step strong{display:block;margin-bottom:2px}
    .side-step span{color:var(--muted);font-size:14px}
    .accordion{
      display:grid;
      gap:14px;
    }
    .accordion-item{
      border:1px solid var(--border)!important;
      border-radius:20px!important;
      overflow:hidden;
      box-shadow:var(--shadow-sm);
      background:#fff;
    }
    .accordion-button{
      font-weight:800;
      color:var(--ink);
      background:#fff!important;
      padding:20px 22px;
      box-shadow:none!important;
    }
    .accordion-button:not(.collapsed){
      color:var(--primary);
      background:var(--primary-soft)!important;
      border-left:4px solid var(--primary);
    }
    .accordion-button:focus{
      box-shadow:0 0 0 4px rgba(240,90,126,.12)!important;
    }
    .accordion-button::after{
      filter:hue-rotate(130deg) saturate(.7);
    }
    .accordion-body{
      color:var(--muted);
      padding:20px 24px 24px;
      background:#fff;
    }
    .about-card{
      padding:30px;
      background:
        radial-gradient(circle at 8% 20%,rgba(92,200,178,.13),transparent 23%),
        #fff;
    }
    .trust-row{
      display:grid;
      grid-template-columns:repeat(4,1fr);
      gap:14px;
      margin-top:20px;
    }
    .trust-item{
      padding:16px;
      border-radius:18px;
      background:var(--bg-2);
      border:1px solid var(--border-2);
    }
    .trust-item strong{
      display:block;
      color:var(--primary);
      font-size:22px;
      line-height:1.1;
      margin-bottom:6px;
    }
    .trust-item span{
      color:var(--muted);
      font-size:13px;
      font-weight:650;
    }
    .site-footer{
      padding:54px 0 28px;
      background:#272432;
      color:#fff;
      margin-top:40px;
    }
    .footer-grid{
      display:grid;
      grid-template-columns:1.4fr .8fr 1fr;
      gap:32px;
      padding-bottom:30px;
      border-bottom:1px solid rgba(255,255,255,.12);
    }
    .footer-brand{
      font-size:22px;
      font-weight:900;
      margin-bottom:10px;
    }
    .footer-text{
      color:rgba(255,255,255,.68);
      margin:0;
      max-width:520px;
      font-size:14px;
    }
    .footer-title{
      font-weight:850;
      margin-bottom:12px;
    }
    .footer-links{
      display:grid;
      gap:9px;
    }
    .footer-links a{
      color:rgba(255,255,255,.70);
      font-size:14px;
    }
    .footer-links a:hover{
      color:#fff;
      transform:translateX(3px);
    }
    .footer-note{
      color:rgba(255,255,255,.62);
      font-size:13px;
      margin-top:18px;
      line-height:1.75;
    }
    .copyright{
      display:flex;
      justify-content:space-between;
      gap:16px;
      flex-wrap:wrap;
      color:rgba(255,255,255,.55);
      font-size:13px;
      padding-top:24px;
    }
    @media (max-width: 992px){
      .hero-grid,.campaign-card,.guide-grid,.form-area,.news-shell{
        grid-template-columns:1fr;
      }
      .tier-grid{grid-template-columns:repeat(2,1fr)}
      .step-panel{position:static}
      .footer-grid{grid-template-columns:1fr 1fr}
      .trust-row{grid-template-columns:repeat(2,1fr)}
    }
    @media (max-width: 768px){
      .section{padding:58px 0}
      .hero{padding:38px 0 34px}
      .hero-panel{padding:22px;border-radius:28px}
      .hero-copy{padding:4px}
      .brand-wrap{align-items:flex-start}
      .top-actions{display:none}
      .news-link{grid-template-columns:1fr;gap:8px}
      .news-date{width:max-content}
      .tier-grid,.triple-grid{grid-template-columns:1fr}
      .compare-wrap{overflow-x:auto}
      .compare-table{min-width:760px}
      .count-boxes{grid-template-columns:1fr}
      .footer-grid{grid-template-columns:1fr}
    }
    @media (max-width: 576px){
      .brand-name{font-size:17px;max-width:260px}
      .logo-mark{width:38px;height:38px;border-radius:14px}
      .channel-link{padding:8px 12px;font-size:13px}
      .hero-actions .btn-rou{width:100%}
      .hero-intro{font-size:15px}
      .cover-art{min-height:150px}
      .section-head{display:block}
      .campaign-card,.form-card,.side-reco,.guide-card,.about-card{padding:22px}
      .trust-row{grid-template-columns:1fr}
      .copyright{display:block}
    }

/* roulang page: category1 */
:root{
      --primary:#F05A7E;
      --primary-2:#F26B8A;
      --primary-soft:#FFF0F4;
      --purple:#8B7CF6;
      --peach:#FFB86B;
      --mint:#5CC8B2;
      --bg:#FFF8FA;
      --bg-2:#F7F4FF;
      --surface:#FFFFFF;
      --surface-soft:#FFFDFE;
      --text:#252733;
      --muted:#5B6070;
      --light-muted:#7A8191;
      --border:#ECE5EF;
      --border-2:#E7EAF0;
      --shadow:0 16px 45px rgba(60,40,80,.08);
      --shadow-hover:0 22px 60px rgba(240,90,126,.16);
      --radius-xl:30px;
      --radius-lg:24px;
      --radius-md:18px;
      --radius-sm:14px;
      --container:1160px;
      --focus:0 0 0 .24rem rgba(240,90,126,.16);
    }
    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      font-family:-apple-system,BlinkMacSystemFont,"Segoe UI","PingFang SC","Microsoft YaHei","Noto Sans SC",sans-serif;
      color:var(--text);
      background:
        radial-gradient(circle at 12% 8%, rgba(240,90,126,.10), transparent 28%),
        radial-gradient(circle at 90% 12%, rgba(139,124,246,.10), transparent 30%),
        linear-gradient(180deg,var(--bg),#fff 42%,var(--bg-2));
      line-height:1.75;
      overflow-x:hidden;
    }
    a{color:inherit;text-decoration:none;transition:all .22s ease}
    a:hover{color:var(--primary)}
    button,input,select,textarea{font:inherit}
    img{max-width:100%;display:block}
    ::selection{background:rgba(240,90,126,.18)}
    .container{max-width:var(--container)}
    .site-header{
      position:sticky;
      top:0;
      z-index:50;
      background:rgba(255,248,250,.88);
      backdrop-filter:blur(18px);
      border-bottom:1px solid rgba(236,229,239,.78);
      box-shadow:0 8px 28px rgba(60,40,80,.04);
    }
    .brand-row{
      background:rgba(255,255,255,.78);
      border-bottom:1px solid rgba(236,229,239,.72);
    }
    .brand-wrap{
      min-height:76px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:24px;
    }
    .brand-logo{
      display:flex;
      align-items:center;
      gap:13px;
      min-width:0;
    }
    .logo-mark{
      width:46px;
      height:46px;
      border-radius:16px;
      display:inline-flex;
      align-items:center;
      justify-content:center;
      color:#fff;
      font-weight:800;
      font-size:22px;
      background:linear-gradient(135deg,var(--primary),var(--purple));
      box-shadow:0 14px 28px rgba(240,90,126,.20);
      flex:0 0 auto;
    }
    .brand-name{
      display:block;
      font-size:19px;
      line-height:1.2;
      font-weight:800;
      letter-spacing:-.02em;
      color:var(--text);
      white-space:nowrap;
      overflow:hidden;
      text-overflow:ellipsis;
      max-width:520px;
    }
    .brand-sub{
      display:block;
      color:var(--light-muted);
      font-size:13px;
      margin-top:2px;
    }
    .top-actions{
      display:flex;
      align-items:center;
      justify-content:flex-end;
      gap:10px;
      flex-wrap:wrap;
    }
    .top-chip{
      border:1px solid var(--border);
      background:rgba(255,255,255,.78);
      color:var(--muted);
      border-radius:999px;
      padding:8px 13px;
      font-size:13px;
      font-weight:650;
      box-shadow:0 8px 22px rgba(60,40,80,.04);
    }
    .top-chip.strong{
      color:var(--primary);
      background:var(--primary-soft);
      border-color:rgba(240,90,126,.22);
    }
    a.top-chip:hover{
      color:#fff;
      background:var(--primary);
      border-color:var(--primary);
      transform:translateY(-1px);
    }
    .channel-row{
      background:rgba(255,255,255,.60);
    }
    .channel-scroll{
      display:flex;
      align-items:center;
      gap:12px;
      min-height:62px;
      overflow-x:auto;
      padding:10px 0;
      scrollbar-width:none;
    }
    .channel-scroll::-webkit-scrollbar{display:none}
    .channel-link{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      white-space:nowrap;
      min-height:40px;
      padding:9px 17px;
      border:1px solid var(--border);
      border-radius:999px;
      color:var(--muted);
      font-size:14px;
      font-weight:700;
      background:rgba(255,255,255,.72);
    }
    .channel-link:hover{
      transform:translateY(-2px);
      border-color:rgba(240,90,126,.32);
      background:var(--primary-soft);
      color:var(--primary);
      box-shadow:0 10px 26px rgba(240,90,126,.10);
    }
    .channel-link.active{
      color:var(--primary);
      background:linear-gradient(180deg,#fff,var(--primary-soft));
      border-color:rgba(240,90,126,.28);
      box-shadow:0 12px 30px rgba(240,90,126,.14);
    }
    main{position:relative}
    .section{
      padding:78px 0;
      position:relative;
    }
    .section-sm{padding:58px 0}
    .section-head{
      display:flex;
      align-items:flex-end;
      justify-content:space-between;
      gap:28px;
      margin-bottom:30px;
    }
    .section-kicker{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:7px 12px;
      border-radius:999px;
      background:rgba(240,90,126,.10);
      color:var(--primary);
      border:1px solid rgba(240,90,126,.18);
      font-size:13px;
      font-weight:800;
      margin-bottom:12px;
    }
    h1,h2,h3,p{margin-top:0}
    h1{
      font-size:clamp(30px,4.2vw,44px);
      line-height:1.2;
      letter-spacing:-.045em;
      font-weight:850;
      margin-bottom:18px;
    }
    h2{
      font-size:clamp(24px,3vw,32px);
      line-height:1.24;
      letter-spacing:-.03em;
      font-weight:820;
      margin-bottom:10px;
    }
    h3{
      font-size:20px;
      line-height:1.35;
      font-weight:780;
      margin-bottom:10px;
    }
    .lead{
      color:var(--muted);
      font-size:17px;
      line-height:1.85;
      margin-bottom:0;
    }
    .muted{color:var(--muted)}
    .page-hero{
      padding:66px 0 42px;
      overflow:hidden;
    }
    .hero-shell{
      position:relative;
      border:1px solid rgba(236,229,239,.9);
      border-radius:36px;
      background:
        radial-gradient(circle at 86% 16%, rgba(139,124,246,.16), transparent 28%),
        radial-gradient(circle at 8% 92%, rgba(255,184,107,.16), transparent 24%),
        linear-gradient(135deg,rgba(255,255,255,.92),rgba(255,240,244,.88));
      box-shadow:var(--shadow);
      padding:34px;
      overflow:hidden;
    }
    .hero-shell:before{
      content:"";
      position:absolute;
      width:260px;
      height:260px;
      border-radius:999px;
      right:-80px;
      bottom:-110px;
      background:linear-gradient(135deg,rgba(240,90,126,.18),rgba(92,200,178,.12));
      filter:blur(2px);
    }
    .breadcrumb-soft{
      display:flex;
      flex-wrap:wrap;
      gap:8px;
      align-items:center;
      margin-bottom:18px;
      font-size:13px;
      color:var(--light-muted);
      font-weight:700;
    }
    .breadcrumb-soft a{color:var(--primary)}
    .hero-actions{
      display:flex;
      gap:12px;
      flex-wrap:wrap;
      margin-top:25px;
    }
    .btn-brand{
      --bs-btn-padding-x:22px;
      --bs-btn-padding-y:12px;
      --bs-btn-border-radius:999px;
      border:0;
      color:#fff!important;
      font-weight:800;
      background:linear-gradient(135deg,var(--primary),var(--primary-2));
      box-shadow:0 14px 28px rgba(240,90,126,.20);
      transition:all .22s ease;
    }
    .btn-brand:hover,.btn-brand:focus{
      transform:translateY(-2px);
      box-shadow:var(--shadow-hover);
      background:linear-gradient(135deg,#eb4f75,var(--primary));
    }
    .btn-soft{
      --bs-btn-padding-x:21px;
      --bs-btn-padding-y:11px;
      --bs-btn-border-radius:999px;
      color:var(--primary)!important;
      font-weight:800;
      background:rgba(255,255,255,.76);
      border:1px solid rgba(240,90,126,.24);
      transition:all .22s ease;
    }
    .btn-soft:hover,.btn-soft:focus{
      background:var(--primary-soft);
      border-color:rgba(240,90,126,.38);
      transform:translateY(-2px);
      box-shadow:0 14px 34px rgba(240,90,126,.12);
    }
    .btn-text{
      display:inline-flex;
      align-items:center;
      gap:7px;
      font-weight:800;
      color:var(--primary);
    }
    .btn-text:hover{gap:11px;color:#e84d72}
    .tag-row{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
      margin-top:22px;
    }
    .tag{
      display:inline-flex;
      align-items:center;
      gap:7px;
      padding:8px 12px;
      border-radius:999px;
      border:1px solid var(--border);
      background:rgba(255,255,255,.72);
      color:var(--muted);
      font-size:13px;
      font-weight:750;
    }
    .tag.primary{background:var(--primary-soft);color:var(--primary);border-color:rgba(240,90,126,.22)}
    .tag.purple{background:rgba(139,124,246,.10);color:#6f61df;border-color:rgba(139,124,246,.18)}
    .tag.mint{background:rgba(92,200,178,.12);color:#279983;border-color:rgba(92,200,178,.20)}
    .hero-panel{
      position:relative;
      z-index:1;
      background:rgba(255,255,255,.84);
      border:1px solid rgba(236,229,239,.9);
      border-radius:30px;
      padding:22px;
      box-shadow:0 18px 44px rgba(60,40,80,.08);
    }
    .launch-card{
      display:grid;
      grid-template-columns:116px 1fr;
      gap:18px;
      align-items:center;
      padding:18px;
      border-radius:24px;
      background:linear-gradient(135deg,#fff,var(--bg-2));
      border:1px solid var(--border);
      margin-bottom:16px;
    }
    .count-ring{
      width:108px;
      height:108px;
      border-radius:999px;
      display:flex;
      flex-direction:column;
      align-items:center;
      justify-content:center;
      background:
        radial-gradient(circle at center,#fff 56%,transparent 58%),
        conic-gradient(var(--primary) 0 76%, rgba(240,90,126,.13) 76% 100%);
      box-shadow:inset 0 0 0 1px rgba(236,229,239,.9), 0 12px 30px rgba(240,90,126,.10);
      text-align:center;
    }
    .count-ring strong{font-size:24px;line-height:1;color:var(--primary)}
    .count-ring span{font-size:12px;color:var(--muted);font-weight:750;margin-top:5px}
    .dot-list{
      display:grid;
      gap:10px;
      margin:0;
      padding:0;
      list-style:none;
    }
    .dot-list li{
      display:flex;
      align-items:flex-start;
      gap:10px;
      color:var(--muted);
      font-weight:650;
      font-size:14px;
    }
    .dot-list li:before{
      content:"";
      width:9px;
      height:9px;
      border-radius:999px;
      margin-top:8px;
      background:linear-gradient(135deg,var(--primary),var(--peach));
      flex:0 0 auto;
    }
    .filter-strip{
      padding:18px;
      border-radius:24px;
      border:1px solid var(--border);
      background:rgba(255,255,255,.72);
      display:flex;
      flex-wrap:wrap;
      gap:10px;
      box-shadow:0 12px 32px rgba(60,40,80,.05);
    }
    .filter-pill{
      border:1px solid var(--border);
      background:#fff;
      color:var(--muted);
      border-radius:999px;
      padding:10px 14px;
      font-size:14px;
      font-weight:800;
      cursor:pointer;
      transition:all .22s ease;
    }
    .filter-pill:hover,.filter-pill.active{
      color:var(--primary);
      background:var(--primary-soft);
      border-color:rgba(240,90,126,.24);
      transform:translateY(-1px);
    }
    .content-layout{
      display:grid;
      grid-template-columns:1.1fr .9fr;
      gap:22px;
      align-items:stretch;
    }
    .entry-card{
      position:relative;
      border:1px solid var(--border);
      border-radius:var(--radius-lg);
      background:rgba(255,255,255,.86);
      box-shadow:var(--shadow);
      padding:26px;
      overflow:hidden;
      transition:all .22s ease;
      min-height:100%;
    }
    .entry-card:hover{
      transform:translateY(-4px);
      box-shadow:var(--shadow-hover);
      border-color:rgba(240,90,126,.24);
    }
    .entry-card.featured{
      border-radius:30px;
      background:
        radial-gradient(circle at 95% 15%, rgba(255,184,107,.16), transparent 26%),
        linear-gradient(135deg,#fff,#fff6f8);
      padding:30px;
    }
    .entry-card .num{
      width:42px;
      height:42px;
      border-radius:15px;
      display:inline-flex;
      align-items:center;
      justify-content:center;
      color:#fff;
      background:linear-gradient(135deg,var(--primary),var(--purple));
      font-weight:850;
      box-shadow:0 12px 24px rgba(240,90,126,.18);
      margin-bottom:18px;
    }
    .card-tags{
      display:flex;
      flex-wrap:wrap;
      gap:8px;
      margin:14px 0 16px;
    }
    .mini-tag{
      padding:6px 10px;
      border-radius:999px;
      font-size:12px;
      font-weight:800;
      background:var(--primary-soft);
      color:var(--primary);
      border:1px solid rgba(240,90,126,.16);
    }
    .mini-tag.alt{background:rgba(139,124,246,.10);color:#6f61df;border-color:rgba(139,124,246,.16)}
    .mini-tag.green{background:rgba(92,200,178,.12);color:#24947e;border-color:rgba(92,200,178,.18)}
    .card-meta{
      margin-top:18px;
      padding-top:16px;
      border-top:1px dashed var(--border);
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:12px;
      color:var(--light-muted);
      font-size:13px;
      font-weight:700;
    }
    .small-grid{
      display:grid;
      grid-template-columns:1fr;
      gap:22px;
    }
    .wide-card{
      margin-top:22px;
      display:grid;
      grid-template-columns:.86fr 1.14fr;
      gap:22px;
      align-items:center;
      border:1px solid var(--border);
      border-radius:30px;
      padding:28px;
      background:linear-gradient(135deg,#fff,var(--bg-2));
      box-shadow:var(--shadow);
    }
    .summary-box{
      border-radius:24px;
      border:1px solid rgba(240,90,126,.18);
      background:rgba(255,240,244,.7);
      padding:22px;
    }
    .metric-row{
      display:grid;
      grid-template-columns:repeat(3,1fr);
      gap:12px;
      margin-top:18px;
    }
    .metric{
      border-radius:18px;
      background:#fff;
      border:1px solid var(--border);
      padding:14px;
      text-align:center;
    }
    .metric strong{
      display:block;
      color:var(--primary);
      font-size:22px;
      line-height:1.1;
      font-weight:850;
    }
    .metric span{
      display:block;
      margin-top:4px;
      color:var(--muted);
      font-size:12px;
      font-weight:750;
    }
    .steps-wrap{
      display:grid;
      grid-template-columns:repeat(4,1fr);
      gap:16px;
    }
    .step-card{
      border:1px solid var(--border);
      border-radius:var(--radius-lg);
      background:rgba(255,255,255,.88);
      padding:22px;
      box-shadow:var(--shadow);
      transition:all .22s ease;
    }
    .step-card:hover{
      transform:translateY(-3px);
      border-color:rgba(240,90,126,.22);
      box-shadow:var(--shadow-hover);
    }
    .step-index{
      width:38px;
      height:38px;
      border-radius:14px;
      display:inline-flex;
      align-items:center;
      justify-content:center;
      color:var(--primary);
      background:var(--primary-soft);
      border:1px solid rgba(240,90,126,.18);
      font-weight:850;
      margin-bottom:14px;
    }
    .notice-panel{
      border-radius:30px;
      border:1px solid var(--border);
      background:
        radial-gradient(circle at 12% 10%, rgba(92,200,178,.14), transparent 28%),
        linear-gradient(135deg,#fff,#fff8fa);
      box-shadow:var(--shadow);
      padding:30px;
    }
    .notice-list{
      margin:18px 0 0;
      padding:0;
      list-style:none;
      display:grid;
      gap:12px;
    }
    .notice-list li{
      display:flex;
      gap:12px;
      align-items:flex-start;
      color:var(--muted);
      font-weight:650;
    }
    .notice-list .check{
      width:24px;
      height:24px;
      flex:0 0 auto;
      border-radius:999px;
      display:inline-flex;
      align-items:center;
      justify-content:center;
      color:#fff;
      background:linear-gradient(135deg,var(--mint),var(--purple));
      font-size:13px;
      margin-top:2px;
    }
    .consult-card{
      border:1px solid var(--border);
      border-radius:30px;
      background:rgba(255,255,255,.9);
      box-shadow:var(--shadow);
      padding:30px;
    }
    .form-label{
      color:var(--text);
      font-weight:800;
      margin-bottom:8px;
      font-size:14px;
    }
    .form-control,.form-select{
      min-height:52px;
      border-radius:16px;
      border:1px solid var(--border-2);
      background:#fff;
      color:var(--text);
      padding:12px 15px;
      transition:all .18s ease;
    }
    textarea.form-control{min-height:124px}
    .form-control:focus,.form-select:focus{
      border-color:rgba(240,90,126,.48);
      box-shadow:var(--focus);
    }
    .form-check-input{
      border-color:rgba(240,90,126,.35);
      width:1.1em;
      height:1.1em;
      margin-top:.35em;
    }
    .form-check-input:checked{
      background-color:var(--primary);
      border-color:var(--primary);
    }
    .form-check-input:focus{box-shadow:var(--focus)}
    .accordion{
      display:grid;
      gap:14px;
    }
    .accordion-item{
      border:1px solid var(--border)!important;
      border-radius:22px!important;
      overflow:hidden;
      background:#fff;
      box-shadow:0 12px 32px rgba(60,40,80,.05);
    }
    .accordion-button{
      background:#fff;
      color:var(--text);
      font-weight:800;
      padding:20px 22px;
      box-shadow:none!important;
    }
    .accordion-button:not(.collapsed){
      color:var(--primary);
      background:linear-gradient(180deg,#fff,var(--primary-soft));
    }
    .accordion-button:focus{
      border-color:transparent;
      box-shadow:var(--focus)!important;
    }
    .accordion-button::after{
      width:14px;
      height:14px;
      background-size:14px;
      filter:hue-rotate(305deg) saturate(1.5);
    }
    .accordion-body{
      color:var(--muted);
      padding:0 22px 22px 22px;
      border-left:4px solid rgba(240,90,126,.22);
      margin-left:18px;
    }
    .cta-band{
      border-radius:34px;
      border:1px solid rgba(240,90,126,.18);
      background:
        radial-gradient(circle at 18% 12%, rgba(255,184,107,.20), transparent 24%),
        radial-gradient(circle at 92% 82%, rgba(139,124,246,.15), transparent 26%),
        linear-gradient(135deg,#fff,#fff0f4);
      box-shadow:var(--shadow);
      padding:34px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:26px;
      overflow:hidden;
    }
    .cta-actions{
      display:flex;
      gap:12px;
      flex-wrap:wrap;
      flex:0 0 auto;
    }
    .site-footer{
      padding:58px 0 24px;
      background:linear-gradient(180deg,rgba(255,255,255,.35),rgba(255,248,250,.96));
      border-top:1px solid var(--border);
    }
    .footer-grid{
      display:grid;
      grid-template-columns:1.3fr .75fr 1fr;
      gap:34px;
      padding-bottom:28px;
    }
    .footer-brand{
      font-size:20px;
      font-weight:850;
      letter-spacing:-.02em;
      margin-bottom:10px;
    }
    .footer-title{
      font-size:15px;
      font-weight:850;
      margin-bottom:12px;
    }
    .footer-text,.footer-note{
      color:var(--muted);
      margin-bottom:10px;
      font-size:14px;
    }
    .footer-note{
      padding:12px 14px;
      border-radius:18px;
      background:rgba(255,240,244,.72);
      border:1px solid rgba(240,90,126,.14);
    }
    .footer-links{
      display:grid;
      gap:10px;
    }
    .footer-links a{
      color:var(--muted);
      font-weight:700;
    }
    .footer-links a:hover{
      color:var(--primary);
      transform:translateX(3px);
    }
    .copyright{
      border-top:1px solid var(--border);
      padding-top:18px;
      display:flex;
      justify-content:space-between;
      gap:16px;
      flex-wrap:wrap;
      color:var(--light-muted);
      font-size:13px;
      font-weight:700;
    }
    @media (max-width: 991.98px){
      .brand-wrap{align-items:flex-start;flex-direction:column;padding:16px 0;gap:14px}
      .brand-name{max-width:calc(100vw - 110px)}
      .top-actions{justify-content:flex-start}
      .page-hero{padding-top:38px}
      .hero-shell{padding:24px}
      .content-layout,.wide-card{grid-template-columns:1fr}
      .steps-wrap{grid-template-columns:repeat(2,1fr)}
      .section-head{align-items:flex-start;flex-direction:column}
      .footer-grid{grid-template-columns:1fr 1fr}
      .cta-band{align-items:flex-start;flex-direction:column}
    }
    @media (max-width: 767.98px){
      .section{padding:56px 0}
      .section-sm{padding:44px 0}
      .hero-shell{border-radius:26px;padding:20px}
      .launch-card{grid-template-columns:1fr;text-align:left}
      .count-ring{width:96px;height:96px}
      .metric-row{grid-template-columns:1fr}
      .steps-wrap{grid-template-columns:1fr}
      .footer-grid{grid-template-columns:1fr}
      .content-layout{gap:16px}
      .entry-card,.entry-card.featured,.consult-card,.notice-panel,.cta-band{padding:22px;border-radius:24px}
      .wide-card{padding:22px;border-radius:24px}
    }
    @media (max-width: 575.98px){
      .container{padding-left:18px;padding-right:18px}
      .brand-logo{align-items:flex-start}
      .logo-mark{width:42px;height:42px;border-radius:14px}
      .brand-name{font-size:16px;white-space:normal}
      .brand-sub{font-size:12px}
      .top-chip{font-size:12px;padding:7px 10px}
      .channel-link{padding:8px 14px;font-size:13px}
      .hero-actions,.cta-actions{width:100%}
      .hero-actions .btn,.cta-actions .btn{width:100%}
      .filter-strip{flex-wrap:nowrap;overflow-x:auto}
      .filter-pill{white-space:nowrap}
      .card-meta{align-items:flex-start;flex-direction:column}
      .copyright{flex-direction:column}
    }
