/* roulang page: index */
:root{
      --primary:#14A596;
      --primary-2:#22B8A7;
      --primary-soft:#E8F7F5;
      --accent:#FF8A65;
      --accent-soft:#FFF0EA;
      --ink:#17212B;
      --muted:#62717A;
      --weak:#8CA0A6;
      --bg:#F6FAF9;
      --bg-2:#EEF7F5;
      --white:#FFFFFF;
      --line:#DDEBE8;
      --line-2:rgba(20,165,150,.18);
      --shadow:0 18px 50px rgba(25,80,72,.10);
      --shadow-hover:0 24px 62px rgba(25,80,72,.16);
      --radius-lg:28px;
      --radius-md:20px;
      --radius-sm:14px;
      --container:1200px;
      --nav-h:74px;
    }
    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      font-family:-apple-system,BlinkMacSystemFont,"PingFang SC","Microsoft YaHei","Noto Sans SC",Arial,sans-serif;
      color:var(--ink);
      background:
        radial-gradient(circle at 8% 8%, rgba(34,184,167,.12), transparent 28%),
        radial-gradient(circle at 92% 12%, rgba(255,138,101,.10), transparent 26%),
        linear-gradient(180deg,#F9FCFB 0%,var(--bg) 46%,#fff 100%);
      line-height:1.75;
      letter-spacing:0;
      overflow-x:hidden;
    }
    a{color:inherit;text-decoration:none;transition:.22s ease}
    a:hover,a:focus{color:var(--primary)}
    img,svg{max-width:100%;display:block}
    button,input,select,textarea{font:inherit}
    input,select,textarea{
      border:1px solid var(--line);
      border-radius:16px;
      background:#fff;
      min-height:46px;
      box-shadow:none;
      transition:.22s ease;
    }
    input:focus,select:focus,textarea:focus{
      border-color:var(--primary);
      box-shadow:0 0 0 4px rgba(20,165,150,.12);
      outline:none;
    }
    .grid-container{max-width:var(--container)}
    .section{padding:88px 0}
    .section.compact{padding:64px 0}
    .section-head{
      max-width:780px;
      margin:0 0 34px;
    }
    .section-kicker{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:6px 12px;
      border-radius:999px;
      color:var(--primary);
      background:var(--primary-soft);
      border:1px solid var(--line-2);
      font-size:13px;
      font-weight:700;
      margin-bottom:14px;
    }
    .section-kicker:before{
      content:"";
      width:8px;height:8px;border-radius:50%;
      background:var(--primary);
      box-shadow:0 0 0 5px rgba(20,165,150,.12);
    }
    h1,h2,h3,h4,p{margin-top:0}
    h1{
      font-size:clamp(32px,5vw,54px);
      line-height:1.14;
      letter-spacing:0;
      font-weight:850;
      color:var(--ink);
      margin-bottom:18px;
    }
    h2{
      font-size:clamp(28px,3.2vw,36px);
      line-height:1.22;
      font-weight:820;
      margin-bottom:14px;
    }
    h3{font-size:22px;line-height:1.3;font-weight:780;margin-bottom:10px}
    p{color:var(--muted);font-size:16px}
    .lead{font-size:17px;line-height:1.85;color:#4C5E66}
    .site-header{
      position:fixed;
      top:18px;left:0;right:0;
      z-index:1000;
      pointer-events:none;
      transition:.24s ease;
    }
    .nav-shell{
      max-width:var(--container);
      margin:0 auto;
      padding:0 16px;
      pointer-events:auto;
    }
    .glass-nav{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:18px;
      min-height:var(--nav-h);
      padding:12px 14px 12px 20px;
      border:1px solid rgba(255,255,255,.72);
      border-radius:999px;
      background:rgba(255,255,255,.68);
      backdrop-filter:blur(18px);
      -webkit-backdrop-filter:blur(18px);
      box-shadow:0 14px 42px rgba(25,80,72,.10);
      transition:.24s ease;
    }
    .site-header.is-scrolled{top:8px}
    .site-header.is-scrolled .glass-nav{
      background:rgba(255,255,255,.94);
      border-color:var(--line);
      box-shadow:0 14px 36px rgba(25,80,72,.13);
    }
    .brand{
      display:flex;
      align-items:center;
      gap:10px;
      min-width:0;
      font-weight:860;
      color:var(--ink);
      white-space:nowrap;
    }
    .brand-mark{
      width:38px;height:38px;border-radius:14px;
      background:linear-gradient(135deg,var(--primary),#6DD6C9);
      box-shadow:0 10px 24px rgba(20,165,150,.22);
      position:relative;
      flex:0 0 auto;
    }
    .brand-mark:after{
      content:"";
      position:absolute;
      width:15px;height:15px;border-radius:50%;
      right:7px;top:7px;
      background:rgba(255,255,255,.86);
    }
    .brand-text{font-size:15px;overflow:hidden;text-overflow:ellipsis}
    .nav-links{
      display:flex;
      align-items:center;
      gap:6px;
      margin:0;
      list-style:none;
    }
    .nav-links a{
      display:inline-flex;
      align-items:center;
      min-height:42px;
      padding:0 14px;
      border-radius:999px;
      color:#30414A;
      font-size:14px;
      font-weight:700;
    }
    .nav-links a:hover,.nav-links a.active{
      color:var(--primary);
      background:rgba(20,165,150,.10);
    }
    .nav-actions{
      display:flex;
      align-items:center;
      gap:10px;
    }
    .nav-search{
      width:220px;
      height:42px;
      border-radius:999px;
      background:rgba(246,250,249,.92);
      padding:0 16px;
      font-size:14px;
    }
    .btn{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:8px;
      min-height:46px;
      padding:0 20px;
      border-radius:999px;
      border:1px solid transparent;
      font-size:15px;
      font-weight:780;
      cursor:pointer;
      transition:.22s ease;
      white-space:nowrap;
    }
    .btn.primary{
      color:#fff;
      background:linear-gradient(135deg,var(--primary),var(--primary-2));
      box-shadow:0 12px 26px rgba(20,165,150,.24);
    }
    .btn.primary:hover,.btn.primary:focus{
      color:#fff;
      transform:translateY(-2px);
      box-shadow:0 16px 34px rgba(20,165,150,.30);
      background:linear-gradient(135deg,#0D9488,var(--primary));
    }
    .btn.secondary{
      color:var(--primary);
      background:#fff;
      border-color:rgba(20,165,150,.28);
    }
    .btn.secondary:hover,.btn.secondary:focus{
      background:var(--primary-soft);
      transform:translateY(-2px);
    }
    .btn.warn{
      color:#fff;
      background:linear-gradient(135deg,#FF8A65,#FFAA7D);
      box-shadow:0 12px 26px rgba(255,138,101,.22);
    }
    .mobile-title-bar{
      display:none;
      background:transparent;
      padding:0;
    }
    .menu-icon:after{background:var(--ink);box-shadow:0 7px 0 var(--ink),0 14px 0 var(--ink)}
    .mobile-panel{
      display:none;
      margin-top:10px;
      padding:14px;
      border-radius:24px;
      background:rgba(255,255,255,.96);
      border:1px solid var(--line);
      box-shadow:var(--shadow);
    }
    .mobile-panel.is-open{display:block}
    .mobile-panel a{
      display:block;
      padding:12px 14px;
      border-radius:14px;
      font-weight:720;
      color:#30414A;
    }
    .mobile-panel a.active,.mobile-panel a:hover{background:var(--primary-soft);color:var(--primary)}
    .hero{
      position:relative;
      min-height:760px;
      padding:138px 0 80px;
      overflow:hidden;
      background:
        linear-gradient(90deg,rgba(20,165,150,.06) 1px,transparent 1px),
        linear-gradient(0deg,rgba(20,165,150,.06) 1px,transparent 1px),
        linear-gradient(135deg,#F8FCFB 0%,#EEF8F6 58%,#FFF8F4 100%);
      background-size:36px 36px,36px 36px,auto;
    }
    .hero:before{
      content:"";
      position:absolute;
      width:520px;height:520px;
      right:-160px;top:110px;
      border-radius:50%;
      background:radial-gradient(circle,rgba(34,184,167,.20),transparent 68%);
    }
    .hero:after{
      content:"";
      position:absolute;
      width:390px;height:390px;
      left:-140px;bottom:-130px;
      border-radius:50%;
      background:radial-gradient(circle,rgba(255,138,101,.14),transparent 70%);
    }
    .hero-content{position:relative;z-index:2}
    .hero-badge-row{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
      margin-bottom:18px;
    }
    .pill{
      display:inline-flex;
      align-items:center;
      gap:7px;
      padding:7px 12px;
      border-radius:999px;
      border:1px solid var(--line-2);
      color:#31525A;
      background:rgba(255,255,255,.72);
      font-size:13px;
      font-weight:720;
    }
    .pill strong{color:var(--primary)}
    .hero-panel{
      border-radius:var(--radius-lg);
      background:rgba(255,255,255,.78);
      border:1px solid rgba(255,255,255,.8);
      box-shadow:var(--shadow);
      padding:26px;
      backdrop-filter:blur(12px);
      position:relative;
      overflow:hidden;
    }
    .hero-panel:before{
      content:"";
      position:absolute;
      inset:auto -60px -80px auto;
      width:210px;height:210px;
      border-radius:50%;
      background:rgba(20,165,150,.10);
    }
    .entry-stage{
      display:grid;
      grid-template-columns:1fr 1.15fr;
      gap:18px;
      align-items:stretch;
      margin-top:8px;
    }
    .vertical-card{
      min-height:430px;
      border-radius:30px;
      padding:22px;
      background:linear-gradient(180deg,#FFFFFF 0%,#EEF9F7 100%);
      border:1px solid var(--line);
      box-shadow:inset 0 0 0 1px rgba(255,255,255,.55);
      display:flex;
      flex-direction:column;
      justify-content:space-between;
      position:relative;
      overflow:hidden;
    }
    .vertical-card:before{
      content:"";
      position:absolute;
      inset:20px 20px auto auto;
      width:72px;height:72px;
      border-radius:22px;
      background:linear-gradient(135deg,rgba(20,165,150,.20),rgba(255,138,101,.16));
      transform:rotate(8deg);
    }
    .vertical-card h3{font-size:20px;margin-bottom:6px}
    .check-list{margin:0;list-style:none}
    .check-list li{
      display:flex;
      align-items:flex-start;
      gap:10px;
      padding:9px 0;
      color:#4A5B63;
      font-size:14px;
      border-bottom:1px dashed rgba(98,113,122,.18);
    }
    .check-list li:last-child{border-bottom:0}
    .check-list li:before{
      content:"✓";
      flex:0 0 22px;
      height:22px;
      border-radius:50%;
      display:inline-flex;
      align-items:center;
      justify-content:center;
      background:var(--primary-soft);
      color:var(--primary);
      font-weight:850;
      font-size:13px;
      margin-top:2px;
    }
    .kpi-grid{
      display:grid;
      gap:14px;
    }
    .kpi-card{
      padding:18px;
      border-radius:22px;
      background:#fff;
      border:1px solid var(--line);
      box-shadow:0 10px 26px rgba(25,80,72,.07);
    }
    .kpi-num{
      display:block;
      font-size:30px;
      font-weight:880;
      line-height:1;
      color:var(--primary);
      margin-bottom:6px;
    }
    .kpi-card p{font-size:14px;margin:0}
    .hero-ctas{display:flex;flex-wrap:wrap;gap:12px;margin:28px 0 18px}
    .notice-line{
      display:flex;
      gap:10px;
      align-items:flex-start;
      padding:14px 16px;
      border-radius:18px;
      background:rgba(255,138,101,.10);
      border:1px solid rgba(255,138,101,.18);
      color:#6B4A3C;
      font-size:14px;
    }
    .notice-line strong{color:#D8623C}
    .steps-wrap{
      position:relative;
      padding:28px;
      border-radius:var(--radius-lg);
      background:#fff;
      border:1px solid var(--line);
      box-shadow:var(--shadow);
    }
    .timeline{
      display:grid;
      grid-template-columns:repeat(4,1fr);
      gap:20px;
      position:relative;
    }
    .timeline:before{
      content:"";
      position:absolute;
      left:8%;right:8%;top:33px;
      height:2px;
      background:linear-gradient(90deg,var(--primary),rgba(20,165,150,.14));
    }
    .step-card{
      position:relative;
      z-index:1;
      padding:16px;
      border-radius:20px;
      background:#fff;
      border:1px solid var(--line);
      transition:.22s ease;
    }
    .step-card:hover{transform:translateY(-3px);box-shadow:var(--shadow)}
    .step-no{
      width:42px;height:42px;
      display:inline-flex;
      align-items:center;
      justify-content:center;
      border-radius:16px;
      background:linear-gradient(135deg,var(--primary),#65D5CA);
      color:#fff;
      font-weight:880;
      margin-bottom:14px;
      box-shadow:0 12px 22px rgba(20,165,150,.20);
    }
    .step-card h3{font-size:18px}
    .step-card p{font-size:14px;margin:0}
    .bento-grid{
      display:grid;
      grid-template-columns:1.2fr .8fr 1fr;
      gap:22px;
    }
    .bento-card{
      position:relative;
      overflow:hidden;
      padding:24px;
      min-height:210px;
      border-radius:var(--radius-md);
      background:#fff;
      border:1px solid var(--line);
      box-shadow:0 12px 34px rgba(25,80,72,.08);
      transition:.22s ease;
    }
    .bento-card:hover{transform:translateY(-4px);box-shadow:var(--shadow-hover)}
    .bento-card.tall{grid-row:span 2;min-height:450px;background:linear-gradient(180deg,#FFFFFF,#EAF8F6)}
    .bento-card.wide{grid-column:span 2;background:linear-gradient(135deg,#FFFFFF,#F0FAF8)}
    .icon-bubble{
      width:52px;height:52px;
      border-radius:20px;
      background:var(--primary-soft);
      color:var(--primary);
      display:flex;
      align-items:center;
      justify-content:center;
      font-weight:900;
      margin-bottom:18px;
    }
    .tag-row{display:flex;flex-wrap:wrap;gap:8px;margin-top:16px}
    .tag{
      display:inline-flex;
      align-items:center;
      padding:5px 10px;
      border-radius:999px;
      font-size:12px;
      color:#42616A;
      background:#F4FAF9;
      border:1px solid var(--line);
      font-weight:700;
    }
    .reward-strip{
      display:grid;
      grid-template-columns:1fr 1fr 1fr;
      gap:22px;
    }
    .reward-card{
      padding:24px;
      border-radius:24px;
      background:linear-gradient(180deg,#fff,#F7FCFB);
      border:1px solid var(--line);
      box-shadow:0 12px 34px rgba(25,80,72,.08);
      position:relative;
      overflow:hidden;
    }
    .reward-card:after{
      content:"";
      position:absolute;
      width:88px;height:88px;
      right:-22px;top:-22px;
      border-radius:28px;
      background:rgba(255,138,101,.12);
      transform:rotate(18deg);
    }
    .reward-card .level{
      display:inline-flex;
      color:#fff;
      background:var(--accent);
      border-radius:999px;
      padding:5px 10px;
      font-size:12px;
      font-weight:820;
      margin-bottom:14px;
    }
    .compare-grid{
      display:grid;
      grid-template-columns:repeat(3,1fr);
      gap:22px;
      align-items:stretch;
    }
    .plan-card{
      display:flex;
      flex-direction:column;
      padding:28px;
      border-radius:26px;
      background:#fff;
      border:1px solid var(--line);
      box-shadow:0 12px 32px rgba(25,80,72,.07);
      transition:.22s ease;
      position:relative;
    }
    .plan-card.featured{
      border:2px solid rgba(20,165,150,.48);
      background:linear-gradient(180deg,#FFFFFF,#ECF9F7);
      transform:translateY(-8px);
    }
    .plan-card:hover{transform:translateY(-4px);box-shadow:var(--shadow-hover)}
    .plan-card.featured:hover{transform:translateY(-10px)}
    .plan-badge{
      position:absolute;
      top:18px;right:18px;
      padding:5px 10px;
      border-radius:999px;
      color:var(--primary);
      background:var(--primary-soft);
      border:1px solid var(--line-2);
      font-size:12px;
      font-weight:820;
    }
    .plan-name{font-size:21px;font-weight:850;margin-bottom:8px}
    .plan-desc{font-size:14px;margin-bottom:18px}
    .plan-list{list-style:none;margin:0 0 24px;padding:0;flex:1}
    .plan-list li{
      padding:9px 0 9px 26px;
      position:relative;
      color:#465B63;
      font-size:14px;
    }
    .plan-list li:before{
      content:"";
      position:absolute;
      left:0;top:17px;
      width:9px;height:9px;
      border-radius:50%;
      background:var(--primary);
    }
    .guarantee-band{
      padding:26px;
      border-radius:var(--radius-lg);
      background:#17212B;
      color:#fff;
      box-shadow:var(--shadow);
      overflow:hidden;
      position:relative;
    }
    .guarantee-band:before{
      content:"";
      position:absolute;
      inset:-80px -80px auto auto;
      width:260px;height:260px;
      border-radius:50%;
      background:rgba(34,184,167,.20);
    }
    .guarantee-grid{
      display:grid;
      grid-template-columns:repeat(4,1fr);
      gap:16px;
      position:relative;
      z-index:1;
    }
    .guarantee-item{
      padding:18px;
      border-radius:20px;
      background:rgba(255,255,255,.08);
      border:1px solid rgba(255,255,255,.12);
    }
    .guarantee-item strong{
      display:block;
      font-size:26px;
      line-height:1.1;
      color:#78E1D6;
      margin-bottom:8px;
    }
    .guarantee-item span{color:rgba(255,255,255,.78);font-size:14px}
    .news-layout{
      display:grid;
      grid-template-columns:1.35fr .65fr;
      gap:24px;
    }
    .news-list,.side-panel{
      border-radius:var(--radius-lg);
      background:#fff;
      border:1px solid var(--line);
      box-shadow:0 12px 34px rgba(25,80,72,.07);
      padding:22px;
    }
    .news-item{
      display:grid;
      grid-template-columns:80px 1fr auto;
      gap:16px;
      align-items:center;
      padding:16px 0;
      border-bottom:1px solid var(--line);
    }
    .news-item:last-child{border-bottom:0}
    .news-date{
      color:var(--primary);
      background:var(--primary-soft);
      border-radius:16px;
      padding:10px;
      text-align:center;
      font-size:13px;
      font-weight:850;
    }
    .news-item a{font-weight:820;color:#25343A}
    .news-item a:hover{color:var(--primary)}
    .news-item p{font-size:14px;margin:4px 0 0}
    .arrow{
      width:34px;height:34px;
      border-radius:50%;
      display:flex;
      align-items:center;
      justify-content:center;
      background:#F4FAF9;
      color:var(--primary);
      font-weight:900;
    }
    .rank-list{list-style:none;margin:0;padding:0}
    .rank-list li{
      display:flex;
      gap:12px;
      padding:12px 0;
      border-bottom:1px dashed var(--line);
      color:#4B5E66;
      font-size:14px;
    }
    .rank-list li:last-child{border-bottom:0}
    .rank-list b{
      width:28px;height:28px;
      border-radius:10px;
      background:var(--accent-soft);
      color:#D8623C;
      display:inline-flex;
      align-items:center;
      justify-content:center;
      flex:0 0 auto;
    }
    .cta-zone{
      position:relative;
      padding:42px;
      border-radius:32px;
      background:
        linear-gradient(135deg,rgba(20,165,150,.95),rgba(34,184,167,.76)),
        linear-gradient(90deg,rgba(255,255,255,.18) 1px,transparent 1px);
      color:#fff;
      overflow:hidden;
      box-shadow:0 24px 70px rgba(20,165,150,.22);
    }
    .cta-zone:before{
      content:"";
      position:absolute;
      right:-70px;bottom:-90px;
      width:280px;height:280px;
      border-radius:50%;
      background:rgba(255,255,255,.16);
    }
    .cta-zone h2,.cta-zone p{color:#fff}
    .cta-zone p{opacity:.88}
    .cta-checks{
      display:grid;
      grid-template-columns:repeat(3,1fr);
      gap:12px;
      margin:22px 0 26px;
    }
    .cta-check{
      padding:12px 14px;
      border-radius:16px;
      background:rgba(255,255,255,.14);
      border:1px solid rgba(255,255,255,.22);
      font-size:14px;
      font-weight:700;
    }
    .cta-zone .btn.secondary{border-color:rgba(255,255,255,.72)}
    .faq-wrap{
      border-radius:var(--radius-lg);
      padding:10px;
      background:#fff;
      border:1px solid var(--line);
      box-shadow:0 12px 34px rgba(25,80,72,.07);
    }
    .accordion{background:transparent}
    .accordion-item{
      border:1px solid var(--line);
      border-radius:18px;
      overflow:hidden;
      margin:12px;
      background:#fff;
    }
    .accordion-title{
      border:0!important;
      color:#24343B;
      font-weight:820;
      font-size:16px;
      padding:18px 48px 18px 20px;
      min-height:54px;
    }
    .accordion-title:hover,.accordion-title:focus{background:var(--primary-soft);color:var(--primary)}
    .accordion-content{
      border:0!important;
      border-left:4px solid var(--primary)!important;
      padding:0 20px 18px 18px;
      color:var(--muted);
      font-size:15px;
    }
    .site-footer{
      padding:58px 0 28px;
      background:#F4FAF9;
      border-top:1px solid var(--line);
    }
    .footer-brand{
      display:flex;
      align-items:center;
      gap:12px;
      font-weight:860;
      margin-bottom:12px;
    }
    .footer-links{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
      justify-content:flex-end;
      margin-bottom:14px;
    }
    .footer-links a{
      padding:8px 12px;
      border-radius:999px;
      color:#42555E;
      font-size:14px;
      font-weight:720;
    }
    .footer-links a:hover{background:#fff;color:var(--primary)}
    .footer-note{
      padding-top:22px;
      margin-top:22px;
      border-top:1px solid var(--line);
      color:#71848B;
      font-size:13px;
      display:flex;
      justify-content:space-between;
      gap:16px;
      flex-wrap:wrap;
    }
    @media (max-width:1024px){
      .nav-links,.nav-actions{display:none}
      .mobile-title-bar{display:flex;align-items:center}
      .glass-nav{border-radius:28px}
      .entry-stage{grid-template-columns:1fr}
      .vertical-card{min-height:330px}
      .timeline{grid-template-columns:repeat(2,1fr)}
      .timeline:before{display:none}
      .bento-grid{grid-template-columns:1fr 1fr}
      .bento-card.wide{grid-column:span 2}
      .bento-card.tall{grid-row:auto;min-height:260px}
      .compare-grid,.reward-strip{grid-template-columns:1fr}
      .plan-card.featured{transform:none}
      .guarantee-grid{grid-template-columns:repeat(2,1fr)}
      .news-layout{grid-template-columns:1fr}
    }
    @media (max-width:640px){
      .site-header{top:10px}
      .brand-text{max-width:210px;font-size:13px}
      .brand-mark{width:34px;height:34px}
      .glass-nav{min-height:62px;padding:10px 12px;border-radius:22px}
      .hero{padding:110px 0 56px;min-height:auto}
      .section{padding:56px 0}
      .section.compact{padding:44px 0}
      .hero-ctas,.cta-zone .hero-ctas{flex-direction:column}
      .btn{width:100%;white-space:normal;text-align:center}
      .hero-panel{padding:18px;border-radius:24px}
      .timeline,.bento-grid,.guarantee-grid,.cta-checks{grid-template-columns:1fr}
      .bento-card.wide{grid-column:auto}
      .steps-wrap{padding:18px}
      .news-item{grid-template-columns:1fr;gap:8px}
      .news-date{width:max-content}
      .arrow{display:none}
      .cta-zone{padding:28px 20px;border-radius:26px}
      .footer-links{justify-content:flex-start}
      .lead{font-size:16px}
    }

/* roulang page: category1 */
:root{
      --bg: #f6faf9;
      --bg-soft: #eef7f5;
      --surface: #ffffff;
      --surface-2: rgba(255,255,255,.76);
      --text: #17212b;
      --muted: #62717a;
      --line: #ddebe8;
      --primary: #22b8a7;
      --primary-strong: #14a596;
      --primary-soft: rgba(34,184,167,.12);
      --accent: #ff8a65;
      --accent-soft: rgba(255,138,101,.14);
      --shadow: 0 18px 50px rgba(25, 80, 72, .10);
      --shadow-soft: 0 10px 28px rgba(25, 80, 72, .08);
      --radius-xl: 28px;
      --radius-lg: 22px;
      --radius-md: 16px;
      --radius-sm: 14px;
      --container: 1240px;
      --header-h: 88px;
    }

    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      color:var(--text);
      font-family:-apple-system,BlinkMacSystemFont,"PingFang SC","Microsoft YaHei","Noto Sans SC",Arial,sans-serif;
      background:
        linear-gradient(180deg, #f7fbfa 0%, #f5faf9 42%, #eef7f5 100%);
      line-height:1.75;
      letter-spacing:0;
      overflow-x:hidden;
    }
    a{color:inherit;text-decoration:none}
    img{max-width:100%;display:block}
    button,input,select,textarea{font:inherit}
    button{cursor:pointer}
    ::selection{background:rgba(34,184,167,.18)}
    :focus-visible{outline:3px solid rgba(34,184,167,.25);outline-offset:2px}

    .grid-container{
      max-width:var(--container);
      padding-left:18px;
      padding-right:18px;
    }

    .site-header{
      position:fixed;
      inset:0 0 auto 0;
      z-index:1000;
      padding:18px 0 0;
      transition:all .24s ease;
    }
    .nav-shell{max-width:var(--container);margin:0 auto;padding:0 18px}
    .glass-nav{
      display:flex;
      align-items:center;
      gap:18px;
      justify-content:space-between;
      padding:14px 18px;
      border-radius:999px;
      background:rgba(255,255,255,.68);
      border:1px solid rgba(255,255,255,.62);
      box-shadow:0 10px 30px rgba(17,34,32,.08);
      backdrop-filter:blur(18px);
      -webkit-backdrop-filter:blur(18px);
      transition:all .24s ease;
    }
    .site-header.is-scrolled .glass-nav{
      background:rgba(255,255,255,.94);
      border-color:var(--line);
      box-shadow:0 12px 36px rgba(17,34,32,.10);
      border-radius:22px;
    }

    .brand{
      display:inline-flex;
      align-items:center;
      gap:12px;
      min-width:0;
      flex:0 0 auto;
      font-weight:700;
      color:var(--text);
    }
    .brand-text{
      white-space:nowrap;
      overflow:hidden;
      text-overflow:ellipsis;
      font-size:16px;
      letter-spacing:0;
    }
    .brand-mark{
      width:34px;
      height:34px;
      border-radius:12px;
      background:
        radial-gradient(circle at 32% 32%, #fff 0 12%, transparent 13%),
        linear-gradient(145deg, var(--primary) 0%, var(--primary-strong) 100%);
      box-shadow:0 10px 24px rgba(34,184,167,.22);
      position:relative;
      flex:0 0 auto;
    }
    .brand-mark::after{
      content:"";
      position:absolute;
      inset:9px;
      border-radius:9px;
      border:1px solid rgba(255,255,255,.72);
    }

    .nav-links{
      display:flex;
      align-items:center;
      gap:6px;
      list-style:none;
      margin:0;
      padding:0;
      flex:1 1 auto;
      min-width:0;
    }
    .nav-links a{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:10px 14px;
      border-radius:999px;
      color:#374851;
      font-size:15px;
      line-height:1.2;
      transition:background .2s ease,color .2s ease,transform .2s ease;
      white-space:nowrap;
    }
    .nav-links a:hover,
    .nav-links a:focus-visible{
      background:rgba(34,184,167,.08);
      color:var(--primary-strong);
      transform:translateY(-1px);
    }
    .nav-links a.active{
      background:rgba(34,184,167,.13);
      color:var(--primary-strong);
      box-shadow:inset 0 0 0 1px rgba(34,184,167,.16);
    }

    .nav-actions{
      display:flex;
      align-items:center;
      gap:10px;
      flex:0 0 auto;
    }
    .nav-search{
      width:250px;
      max-width:28vw;
      height:42px;
      padding:0 14px;
      border-radius:999px;
      border:1px solid var(--line);
      background:#fff;
      color:var(--text);
      box-shadow:inset 0 1px 0 rgba(255,255,255,.8);
      transition:border-color .2s ease, box-shadow .2s ease, transform .2s ease;
    }
    .nav-search::placeholder{color:#8a97a0}
    .nav-search:focus{
      border-color:rgba(34,184,167,.45);
      box-shadow:0 0 0 4px rgba(34,184,167,.10);
      outline:none;
      transform:translateY(-1px);
    }

    .btn,
    .button{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:8px;
      min-height:44px;
      padding:0 18px;
      border-radius:999px;
      border:1px solid transparent;
      font-weight:700;
      letter-spacing:0;
      line-height:1;
      transition:transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
      white-space:nowrap;
    }
    .btn:hover,
    .button:hover{
      transform:translateY(-2px);
      box-shadow:0 14px 26px rgba(25,80,72,.14);
    }
    .btn.primary,
    .button.primary{
      background:linear-gradient(145deg, var(--primary) 0%, var(--primary-strong) 100%);
      color:#fff;
      box-shadow:0 12px 26px rgba(34,184,167,.18);
    }
    .btn.primary:hover,
    .button.primary:hover{
      color:#fff;
      box-shadow:0 16px 30px rgba(34,184,167,.22);
    }
    .btn.secondary,
    .button.secondary{
      background:#fff;
      color:var(--primary-strong);
      border-color:rgba(34,184,167,.28);
      box-shadow:0 8px 18px rgba(25,80,72,.06);
    }
    .btn.secondary:hover,
    .button.secondary:hover{
      background:rgba(34,184,167,.06);
      border-color:rgba(34,184,167,.36);
    }
    .btn.accent{
      background:linear-gradient(145deg, var(--accent) 0%, #ff7043 100%);
      color:#fff;
    }

    .btn-icon{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      width:18px;
      height:18px;
      font-size:18px;
      line-height:1;
      transform:translateY(-1px);
    }

    .mobile-title-bar{
      display:none;
      align-items:center;
      gap:10px;
      flex:0 0 auto;
    }
    .menu-icon{
      width:44px;
      height:44px;
      border:1px solid var(--line);
      border-radius:14px;
      background:#fff;
      position:relative;
      box-shadow:0 8px 18px rgba(25,80,72,.06);
      color:var(--text);
    }
    .menu-icon::before{
      content:"";
      position:absolute;
      left:11px;
      right:11px;
      top:12px;
      height:2px;
      border-radius:2px;
      background:currentColor;
      box-shadow:0 8px 0 currentColor, 0 16px 0 currentColor;
    }
    .mobile-panel{
      display:none;
      margin-top:12px;
      padding:14px;
      border-radius:22px;
      background:rgba(255,255,255,.95);
      border:1px solid var(--line);
      box-shadow:var(--shadow-soft);
      backdrop-filter:blur(18px);
    }
    .mobile-panel a{
      display:block;
      padding:12px 14px;
      border-radius:14px;
      color:var(--text);
      font-weight:600;
    }
    .mobile-panel a.active{
      background:rgba(34,184,167,.12);
      color:var(--primary-strong);
    }
    .mobile-panel a + a{margin-top:6px}

    main{display:block;padding-top:110px}
    .page-section{
      position:relative;
      padding:76px 0;
      scroll-margin-top:110px;
    }
    .page-section.section-soft{
      background:linear-gradient(180deg, rgba(238,247,245,.72) 0%, rgba(246,250,249,.88) 100%);
    }
    .section-head{
      margin-bottom:28px;
    }
    .section-kicker{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:7px 12px;
      border-radius:999px;
      background:#fff;
      border:1px solid var(--line);
      color:var(--primary-strong);
      font-size:13px;
      font-weight:700;
      box-shadow:0 8px 20px rgba(25,80,72,.05);
      margin-bottom:14px;
    }
    .section-head h2{
      margin:0;
      font-size:clamp(28px, 3vw, 36px);
      line-height:1.22;
      letter-spacing:0;
    }
    .section-head p{
      margin:12px 0 0;
      color:var(--muted);
      font-size:16px;
      max-width:56rem;
    }

    .hero-section{
      position:relative;
      padding:32px 0 26px;
      overflow:hidden;
    }
    .hero-section::before{
      content:"";
      position:absolute;
      inset:0;
      background:
        linear-gradient(180deg, rgba(255,255,255,.48) 0%, rgba(255,255,255,.12) 100%),
        linear-gradient(120deg, rgba(34,184,167,.10) 0%, rgba(34,184,167,0) 42%),
        radial-gradient(circle at 92% 16%, rgba(255,138,101,.10) 0 12%, transparent 13%),
        linear-gradient(90deg, rgba(23,33,43,.04) 1px, transparent 1px),
        linear-gradient(180deg, rgba(23,33,43,.04) 1px, transparent 1px);
      background-size:auto, auto, auto, 30px 30px, 30px 30px;
      background-position:center;
      opacity:.9;
      pointer-events:none;
    }
    .hero-section > .grid-container{
      position:relative;
      z-index:1;
      padding-top:34px;
      padding-bottom:62px;
    }
    .hero-copy{
      padding:54px 0 10px;
    }
    .hero-kicker{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:7px 12px;
      margin-bottom:16px;
      border-radius:999px;
      background:rgba(255,255,255,.74);
      border:1px solid rgba(255,255,255,.72);
      box-shadow:0 8px 20px rgba(25,80,72,.05);
      color:var(--primary-strong);
      font-size:13px;
      font-weight:700;
    }
    .hero-copy h1{
      margin:0;
      max-width:11ch;
      font-size:clamp(32px, 4.8vw, 54px);
      line-height:1.14;
      letter-spacing:0;
    }
    .hero-copy p{
      margin:18px 0 0;
      max-width:40rem;
      color:var(--muted);
      font-size:17px;
      line-height:1.8;
    }
    .hero-actions{
      display:flex;
      gap:12px;
      flex-wrap:wrap;
      margin-top:28px;
    }
    .hero-tags{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
      margin-top:26px;
    }
    .tag{
      display:inline-flex;
      align-items:center;
      gap:8px;
      min-height:34px;
      padding:0 12px;
      border-radius:999px;
      border:1px solid var(--line);
      background:#fff;
      color:#43525a;
      font-size:13px;
      font-weight:600;
      box-shadow:0 8px 18px rgba(25,80,72,.05);
    }
    .tag.primary{
      background:rgba(34,184,167,.10);
      color:var(--primary-strong);
      border-color:rgba(34,184,167,.18);
    }
    .tag.accent{
      background:var(--accent-soft);
      color:#d25c35;
      border-color:rgba(255,138,101,.22);
    }

    .hero-visual{
      padding:18px 0 0;
    }
    .visual-panel{
      position:relative;
      overflow:hidden;
      padding:24px;
      min-height:470px;
      border-radius:var(--radius-xl);
      background:rgba(255,255,255,.88);
      border:1px solid rgba(255,255,255,.7);
      box-shadow:var(--shadow);
    }
    .visual-panel::before{
      content:"";
      position:absolute;
      inset:0;
      background:
        linear-gradient(180deg, rgba(34,184,167,.05) 0%, rgba(34,184,167,0) 35%),
        linear-gradient(90deg, rgba(23,33,43,.03) 1px, transparent 1px),
        linear-gradient(180deg, rgba(23,33,43,.03) 1px, transparent 1px);
      background-size:auto, 28px 28px, 28px 28px;
      opacity:.9;
      pointer-events:none;
    }
    .visual-panel > *{position:relative;z-index:1}
    .ring-wrap{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:18px;
      margin-bottom:20px;
    }
    .ring{
      width:168px;
      height:168px;
      border-radius:50%;
      background:conic-gradient(var(--primary) 0 86%, rgba(34,184,167,.12) 86% 100%);
      padding:14px;
      box-shadow:0 18px 34px rgba(34,184,167,.14);
      flex:0 0 auto;
    }
    .ring-inner{
      width:100%;
      height:100%;
      border-radius:50%;
      background:linear-gradient(180deg, #fefefe 0%, #f6fbfa 100%);
      display:flex;
      flex-direction:column;
      align-items:center;
      justify-content:center;
      text-align:center;
      border:1px solid rgba(221,235,232,.9);
    }
    .ring-value{
      font-size:42px;
      font-weight:800;
      line-height:1;
      color:var(--text);
    }
    .ring-label{
      margin-top:8px;
      font-size:13px;
      color:var(--muted);
      font-weight:600;
    }
    .ring-copy h3{
      margin:0 0 8px;
      font-size:24px;
      line-height:1.22;
    }
    .ring-copy p{
      margin:0;
      color:var(--muted);
      font-size:15px;
      line-height:1.75;
    }
    .mini-status{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
      margin:14px 0 0;
    }
    .mini-status .tag{background:#fff}

    .mode-grid{
      display:grid;
      grid-template-columns:repeat(3, minmax(0,1fr));
      gap:14px;
      margin-top:18px;
    }
    .mode-card{
      background:#fff;
      border:1px solid var(--line);
      border-radius:18px;
      padding:16px;
      box-shadow:0 10px 22px rgba(25,80,72,.05);
      min-height:122px;
    }
    .mode-card strong{
      display:block;
      font-size:15px;
      line-height:1.35;
      margin-bottom:8px;
    }
    .mode-card span{
      display:block;
      color:var(--muted);
      font-size:14px;
      line-height:1.72;
    }
    .panel-actions{
      display:flex;
      gap:10px;
      flex-wrap:wrap;
      margin-top:18px;
    }

    .filter-band{
      position:relative;
      margin-top:-18px;
      z-index:3;
    }
    .filter-box{
      padding:22px;
      border-radius:var(--radius-xl);
      background:rgba(255,255,255,.94);
      border:1px solid var(--line);
      box-shadow:var(--shadow-soft);
    }
    .filter-head{
      display:flex;
      flex-wrap:wrap;
      align-items:flex-end;
      justify-content:space-between;
      gap:16px;
      margin-bottom:18px;
    }
    .filter-head h2{
      margin:0;
      font-size:28px;
      line-height:1.2;
    }
    .filter-head p{
      margin:6px 0 0;
      color:var(--muted);
      max-width:44rem;
      font-size:15px;
    }
    .filter-form{
      margin-top:10px;
    }
    .field-label{
      display:block;
      font-size:13px;
      font-weight:700;
      color:#40515a;
      margin-bottom:8px;
    }
    .filter-input,
    .filter-select{
      width:100%;
      height:48px;
      border-radius:16px;
      border:1px solid var(--line);
      background:#fff;
      padding:0 14px;
      color:var(--text);
      transition:border-color .2s ease, box-shadow .2s ease, transform .2s ease;
    }
    .filter-input::placeholder{color:#8a97a0}
    .filter-input:focus,
    .filter-select:focus{
      outline:none;
      border-color:rgba(34,184,167,.48);
      box-shadow:0 0 0 4px rgba(34,184,167,.10);
      transform:translateY(-1px);
    }
    .option-row{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
      margin:18px 0 6px;
    }
    .chip{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      min-height:38px;
      padding:0 14px;
      border-radius:999px;
      border:1px solid var(--line);
      background:#fff;
      color:#41535c;
      font-size:14px;
      font-weight:600;
      transition:background .2s ease,border-color .2s ease,color .2s ease,transform .2s ease;
    }
    .chip:hover,
    .chip:focus-visible{
      background:rgba(34,184,167,.08);
      border-color:rgba(34,184,167,.24);
      color:var(--primary-strong);
      transform:translateY(-1px);
    }
    .chip.active{
      background:rgba(34,184,167,.14);
      color:var(--primary-strong);
      border-color:rgba(34,184,167,.22);
    }
    .confirm-inline{
      display:flex;
      align-items:center;
      gap:10px;
      flex-wrap:wrap;
      margin-top:16px;
      color:#4a5960;
      font-size:14px;
    }
    .confirm-inline input{
      width:18px;
      height:18px;
      margin:0;
      accent-color:var(--primary);
    }

    .content-grid{
      display:grid;
      grid-template-columns:minmax(0, 2.1fr) minmax(280px, .9fr);
      gap:24px;
      align-items:start;
    }
    .entry-grid{
      display:grid;
      grid-template-columns:repeat(2, minmax(0,1fr));
      gap:18px;
    }
    .entry-card{
      position:relative;
      padding:18px;
      border-radius:22px;
      background:#fff;
      border:1px solid var(--line);
      box-shadow:0 10px 24px rgba(25,80,72,.05);
      transition:transform .2s ease, box-shadow .2s ease, border-color .2s ease;
      min-height:190px;
    }
    .entry-card:hover{
      transform:translateY(-2px);
      box-shadow:0 18px 34px rgba(25,80,72,.10);
      border-color:rgba(34,184,167,.22);
    }
    .entry-card.featured{
      background:linear-gradient(180deg, rgba(34,184,167,.08) 0%, #fff 35%);
      border-color:rgba(34,184,167,.22);
    }
    .entry-top{
      display:flex;
      align-items:flex-start;
      justify-content:space-between;
      gap:12px;
      margin-bottom:14px;
    }
    .entry-index{
      width:40px;
      height:40px;
      border-radius:14px;
      background:rgba(34,184,167,.12);
      color:var(--primary-strong);
      display:flex;
      align-items:center;
      justify-content:center;
      font-weight:800;
      font-size:14px;
      flex:0 0 auto;
    }
    .entry-badge{
      display:inline-flex;
      align-items:center;
      min-height:28px;
      padding:0 10px;
      border-radius:999px;
      background:var(--bg-soft);
      color:var(--primary-strong);
      font-size:12px;
      font-weight:700;
      white-space:nowrap;
    }
    .entry-card h3{
      margin:0 0 8px;
      font-size:20px;
      line-height:1.28;
    }
    .entry-card p{
      margin:0;
      color:var(--muted);
      font-size:15px;
      line-height:1.75;
    }
    .entry-meta{
      display:flex;
      flex-wrap:wrap;
      gap:8px;
      margin:14px 0 16px;
    }
    .entry-cta{
      margin-top:auto;
      display:flex;
      align-items:center;
      gap:10px;
      flex-wrap:wrap;
    }

    .side-stack{
      display:grid;
      gap:18px;
    }
    .side-card{
      padding:20px;
      border-radius:22px;
      background:#fff;
      border:1px solid var(--line);
      box-shadow:0 10px 24px rgba(25,80,72,.05);
    }
    .side-card h3{
      margin:0 0 10px;
      font-size:20px;
      line-height:1.28;
    }
    .side-card p{
      margin:0;
      color:var(--muted);
      font-size:15px;
      line-height:1.75;
    }
    .side-list{
      list-style:none;
      padding:0;
      margin:16px 0 0;
      display:grid;
      gap:10px;
    }
    .side-list li{
      display:flex;
      gap:10px;
      align-items:flex-start;
      color:#41535c;
      font-size:14px;
      line-height:1.7;
    }
    .side-dot{
      width:10px;
      height:10px;
      margin-top:7px;
      border-radius:50%;
      background:var(--primary);
      box-shadow:0 0 0 4px rgba(34,184,167,.10);
      flex:0 0 auto;
    }
    .side-anchor-links{
      display:grid;
      gap:10px;
      margin-top:14px;
    }
    .side-anchor-links a{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:10px;
      padding:12px 14px;
      border-radius:16px;
      background:rgba(34,184,167,.06);
      border:1px solid rgba(34,184,167,.16);
      color:#315059;
      font-weight:600;
      font-size:14px;
    }
    .side-anchor-links a:hover{background:rgba(34,184,167,.10)}

    .timeline-wrap{
      background:linear-gradient(180deg, rgba(238,247,245,.8) 0%, rgba(255,255,255,.8) 100%);
    }
    .timeline-row{
      display:grid;
      grid-template-columns:repeat(4, minmax(0,1fr));
      gap:16px;
    }
    .timeline-step{
      position:relative;
      padding:22px 18px 18px;
      border-radius:22px;
      background:#fff;
      border:1px solid var(--line);
      box-shadow:0 10px 24px rgba(25,80,72,.05);
      min-height:220px;
    }
    .timeline-step::before{
      content:"";
      position:absolute;
      left:20px;
      top:20px;
      width:12px;
      height:12px;
      border-radius:50%;
      background:var(--primary);
      box-shadow:0 0 0 6px rgba(34,184,167,.10);
    }
    .timeline-step::after{
      content:"";
      position:absolute;
      top:26px;
      right:-8px;
      width:16px;
      height:2px;
      background:rgba(34,184,167,.18);
    }
    .timeline-step:last-child::after{display:none}
    .timeline-step .step-number{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      min-width:48px;
      height:30px;
      margin-left:22px;
      padding:0 12px;
      border-radius:999px;
      background:rgba(34,184,167,.10);
      color:var(--primary-strong);
      font-weight:800;
      font-size:13px;
    }
    .timeline-step h3{
      margin:16px 0 8px;
      font-size:20px;
      line-height:1.28;
    }
    .timeline-step p{
      margin:0;
      color:var(--muted);
      font-size:15px;
      line-height:1.75;
    }
    .timeline-note{
      margin-top:18px;
      padding:18px;
      border-radius:20px;
      background:rgba(255,255,255,.88);
      border:1px solid var(--line);
      box-shadow:0 10px 24px rgba(25,80,72,.05);
    }
    .timeline-note strong{
      display:block;
      margin-bottom:8px;
      font-size:16px;
    }
    .timeline-note p{
      margin:0;
      color:var(--muted);
      font-size:14px;
      line-height:1.75;
    }

    .bento-grid{
      display:grid;
      grid-template-columns:repeat(12, minmax(0,1fr));
      gap:18px;
    }
    .bento-card{
      padding:20px;
      border-radius:22px;
      background:#fff;
      border:1px solid var(--line);
      box-shadow:0 10px 24px rgba(25,80,72,.05);
      min-height:170px;
      transition:transform .2s ease, box-shadow .2s ease, border-color .2s ease;
    }
    .bento-card:hover{
      transform:translateY(-2px);
      box-shadow:0 18px 34px rgba(25,80,72,.10);
      border-color:rgba(34,184,167,.22);
    }
    .bento-card.wide{grid-column:span 6}
    .bento-card.mid{grid-column:span 4}
    .bento-card.narrow{grid-column:span 3}
    .bento-card.tall{grid-row:span 2; min-height:calc(100% - 18px)}
    .bento-flag{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      min-width:54px;
      height:30px;
      padding:0 12px;
      border-radius:999px;
      background:rgba(34,184,167,.12);
      color:var(--primary-strong);
      font-size:13px;
      font-weight:800;
      margin-bottom:14px;
    }
    .bento-card h3{
      margin:0 0 8px;
      font-size:22px;
      line-height:1.26;
    }
    .bento-card p{
      margin:0;
      color:var(--muted);
      font-size:15px;
      line-height:1.75;
    }
    .bento-list{
      margin:14px 0 0;
      padding:0;
      list-style:none;
      display:grid;
      gap:10px;
    }
    .bento-list li{
      display:flex;
      gap:10px;
      align-items:flex-start;
      color:#41535c;
      font-size:14px;
      line-height:1.7;
    }
    .bento-list .tick{
      width:18px;
      height:18px;
      border-radius:50%;
      background:rgba(34,184,167,.12);
      color:var(--primary-strong);
      display:inline-flex;
      align-items:center;
      justify-content:center;
      font-size:12px;
      font-weight:800;
      flex:0 0 auto;
      margin-top:2px;
    }

    .compare-grid{
      display:grid;
      grid-template-columns:repeat(3, minmax(0,1fr));
      gap:18px;
      align-items:stretch;
    }
    .compare-card{
      display:flex;
      flex-direction:column;
      padding:22px;
      border-radius:24px;
      background:#fff;
      border:1px solid var(--line);
      box-shadow:0 10px 24px rgba(25,80,72,.05);
      min-height:100%;
    }
    .compare-card.featured{
      background:linear-gradient(180deg, rgba(34,184,167,.08) 0%, #fff 34%);
      border-color:rgba(34,184,167,.22);
      box-shadow:0 16px 34px rgba(34,184,167,.08);
    }
    .compare-head{
      display:flex;
      align-items:flex-start;
      justify-content:space-between;
      gap:10px;
      margin-bottom:12px;
    }
    .compare-card h3{
      margin:0;
      font-size:22px;
      line-height:1.25;
    }
    .compare-badge{
      display:inline-flex;
      align-items:center;
      min-height:30px;
      padding:0 11px;
      border-radius:999px;
      background:rgba(34,184,167,.12);
      color:var(--primary-strong);
      font-size:12px;
      font-weight:800;
      white-space:nowrap;
    }
    .compare-card p{
      margin:0 0 14px;
      color:var(--muted);
      font-size:15px;
      line-height:1.75;
    }
    .compare-list{
      margin:0;
      padding:0;
      list-style:none;
      display:grid;
      gap:10px;
    }
    .compare-list li{
      display:flex;
      gap:10px;
      align-items:flex-start;
      color:#41535c;
      font-size:14px;
      line-height:1.7;
    }
    .compare-list li::before{
      content:"";
      width:8px;
      height:8px;
      margin-top:8px;
      border-radius:50%;
      background:var(--primary);
      box-shadow:0 0 0 4px rgba(34,184,167,.10);
      flex:0 0 auto;
    }
    .compare-actions{
      margin-top:auto;
      padding-top:18px;
      display:flex;
      gap:10px;
      flex-wrap:wrap;
    }

    .cta-band{
      padding:0;
    }
    .cta-panel{
      position:relative;
      overflow:hidden;
      padding:28px;
      border-radius:var(--radius-xl);
      background:
        linear-gradient(145deg, rgba(34,184,167,.12) 0%, rgba(238,247,245,.92) 100%);
      border:1px solid rgba(34,184,167,.18);
      box-shadow:var(--shadow);
    }
    .cta-panel::before{
      content:"";
      position:absolute;
      inset:0;
      background:
        linear-gradient(90deg, rgba(23,33,43,.03) 1px, transparent 1px),
        linear-gradient(180deg, rgba(23,33,43,.03) 1px, transparent 1px);
      background-size:28px 28px;
      opacity:.55;
      pointer-events:none;
    }
    .cta-panel > *{position:relative;z-index:1}
    .cta-grid{
      display:grid;
      grid-template-columns:minmax(0,1.5fr) minmax(320px,.9fr);
      gap:22px;
      align-items:center;
    }
    .cta-copy h2{
      margin:0;
      font-size:clamp(28px, 3vw, 38px);
      line-height:1.18;
    }
    .cta-copy p{
      margin:12px 0 0;
      color:#41535c;
      font-size:16px;
      line-height:1.8;
      max-width:52rem;
    }
    .confirm-list{
      display:grid;
      gap:10px;
      margin:18px 0 0;
      padding:0;
      list-style:none;
    }
    .confirm-list li{
      display:flex;
      gap:10px;
      align-items:flex-start;
      color:#41535c;
      font-size:14px;
      line-height:1.7;
    }
    .confirm-list .confirm-dot{
      width:18px;
      height:18px;
      border-radius:50%;
      background:#fff;
      color:var(--primary-strong);
      display:inline-flex;
      align-items:center;
      justify-content:center;
      font-size:12px;
      font-weight:800;
      flex:0 0 auto;
      margin-top:2px;
      box-shadow:0 0 0 4px rgba(255,255,255,.44);
    }
    .cta-box{
      padding:20px;
      border-radius:24px;
      background:rgba(255,255,255,.88);
      border:1px solid rgba(255,255,255,.7);
      box-shadow:0 12px 28px rgba(25,80,72,.08);
    }
    .cta-box h3{
      margin:0 0 10px;
      font-size:22px;
      line-height:1.24;
    }
    .cta-box p{
      margin:0 0 14px;
      color:var(--muted);
      font-size:15px;
      line-height:1.75;
    }
    .check-stack{
      display:grid;
      gap:10px;
      margin:0 0 16px;
    }
    .check-row{
      display:flex;
      align-items:flex-start;
      gap:10px;
      padding:12px 14px;
      border-radius:16px;
      background:#f8fcfb;
      border:1px solid var(--line);
      color:#41535c;
      font-size:14px;
      line-height:1.65;
    }
    .check-row input{
      width:18px;
      height:18px;
      margin:2px 0 0;
      accent-color:var(--primary);
      flex:0 0 auto;
    }
    .cta-actions{
      display:flex;
      gap:10px;
      flex-wrap:wrap;
    }

    .faq-wrap{
      background:linear-gradient(180deg, rgba(246,250,249,.8) 0%, rgba(238,247,245,.78) 100%);
    }
    .faq-card{
      padding:22px;
      border-radius:24px;
      background:#fff;
      border:1px solid var(--line);
      box-shadow:0 10px 24px rgba(25,80,72,.05);
    }
    .accordion{
      background:transparent;
      margin:0;
    }
    .accordion-item{
      border:1px solid var(--line);
      border-radius:18px;
      overflow:hidden;
      background:#fff;
    }
    .accordion-item + .accordion-item{margin-top:12px}
    .accordion-title{
      position:relative;
      padding:16px 18px;
      color:var(--text);
      font-weight:700;
      font-size:16px;
      background:#fff;
      border:none;
      line-height:1.5;
    }
    .accordion-title::before{
      color:var(--primary-strong);
      margin-top:-12px;
      right:18px;
      font-size:22px;
    }
    .accordion-content{
      border:none;
      padding:0 18px 18px;
      color:var(--muted);
      font-size:15px;
      line-height:1.8;
      background:#fff;
    }
    .accordion-content p{margin:0}

    .site-footer{
      padding:36px 0 24px;
      background:#fbfdfd;
      border-top:1px solid var(--line);
    }
    .footer-brand{
      display:flex;
      align-items:center;
      gap:12px;
      margin-bottom:12px;
      font-size:18px;
      font-weight:800;
      color:var(--text);
    }
    .site-footer p{
      margin:0;
      color:var(--muted);
      font-size:14px;
      line-height:1.8;
      max-width:42rem;
    }
    .footer-links{
      display:flex;
      flex-wrap:wrap;
      justify-content:flex-end;
      gap:10px 14px;
    }
    .footer-links a{
      padding:8px 0;
      color:#41535c;
      font-size:14px;
      font-weight:600;
    }
    .footer-links a:hover{color:var(--primary-strong)}
    .footer-note{
      display:flex;
      flex-wrap:wrap;
      justify-content:space-between;
      gap:12px;
      padding-top:18px;
      margin-top:22px;
      border-top:1px solid var(--line);
      color:#6c7b84;
      font-size:13px;
      line-height:1.7;
    }

    .section-divider{
      height:1px;
      background:linear-gradient(90deg, rgba(34,184,167,0) 0%, rgba(34,184,167,.20) 50%, rgba(34,184,167,0) 100%);
      margin:0;
      border:none;
    }

    @media (max-width: 1024px){
      .nav-search{width:200px}
      .hero-copy h1{max-width:14ch}
      .content-grid,
      .cta-grid{
        grid-template-columns:1fr;
      }
      .timeline-row{grid-template-columns:repeat(2, minmax(0,1fr))}
      .timeline-step::after{display:none}
      .compare-grid{grid-template-columns:1fr}
      .bento-card.wide,
      .bento-card.mid,
      .bento-card.narrow{grid-column:span 6}
    }

    @media (max-width: 768px){
      .site-header{padding-top:10px}
      .glass-nav{
        border-radius:20px;
        padding:12px 14px;
      }
      .nav-links,
      .nav-actions{display:none}
      .mobile-title-bar{display:flex}
      .mobile-panel.is-open{display:block}
      main{padding-top:94px}
      .hero-section{padding-top:16px}
      .hero-section > .grid-container{padding-top:24px;padding-bottom:42px}
      .hero-copy{padding-top:8px}
      .hero-copy h1{
        font-size:clamp(30px, 9vw, 38px);
        max-width:100%;
      }
      .hero-actions .btn,
      .hero-actions .button,
      .cta-actions .btn,
      .cta-actions .button,
      .compare-actions .btn,
      .compare-actions .button{
        width:100%;
      }
      .visual-panel{min-height:auto;padding:18px}
      .ring-wrap{
        flex-direction:column;
        align-items:flex-start;
      }
      .mode-grid{grid-template-columns:1fr}
      .filter-head h2{font-size:24px}
      .entry-grid{grid-template-columns:1fr}
      .bento-grid{grid-template-columns:1fr 1fr}
      .bento-card.wide,
      .bento-card.mid,
      .bento-card.narrow{grid-column:span 1}
      .timeline-row{grid-template-columns:1fr}
      .timeline-step{min-height:auto}
      .footer-links{justify-content:flex-start}
    }

    @media (max-width: 520px){
      .grid-container{padding-left:14px;padding-right:14px}
      .page-section{padding:52px 0}
      .hero-section > .grid-container{padding-bottom:32px}
      .hero-actions,
      .panel-actions,
      .cta-actions{flex-direction:column}
      .hero-actions .btn,
      .hero-actions .button{width:100%}
      .bento-grid{grid-template-columns:1fr}
      .confirm-inline{align-items:flex-start}
      .visual-panel{border-radius:22px}
      .cta-panel{padding:20px}
      .faq-card{padding:16px}
      .filter-box{padding:16px}
      .entry-card,
      .compare-card,
      .side-card,
      .timeline-step,
      .bento-card{
        border-radius:18px;
      }
      .footer-note{flex-direction:column}
    }
