/* roulang page: index */
:root{
      --bg: #fff8f3;
      --bg-alt: #fffdf9;
      --surface: #ffffff;
      --surface-soft: #fff4ed;
      --line: #f0ded5;
      --line-strong: #e9ece8;
      --text: #2c2a32;
      --muted: #6f6a75;
      --primary: #ff8a65;
      --primary-2: #ff7a90;
      --secondary: #79dcc8;
      --accent: #8e7cff;
      --warning: #ffd66b;
      --shadow: 0 14px 35px rgba(255, 138, 101, .12);
      --shadow-strong: 0 20px 46px rgba(255, 138, 101, .18);
      --radius-lg: 28px;
      --radius-md: 22px;
      --radius-sm: 16px;
      --pill: 999px;
    }
    html{
      scroll-behavior:smooth;
      scroll-padding-top: 110px;
    }
    *{
      box-sizing:border-box;
    }
    body{
      margin:0;
      font-family: system-ui, -apple-system, BlinkMacSystemFont, "PingFang SC", "Microsoft YaHei", "Noto Sans SC", sans-serif;
      color:var(--text);
      background:
        linear-gradient(180deg, #fffdf9 0%, #fff8f3 42%, #f8faf7 100%);
      line-height:1.8;
      letter-spacing:0;
      overflow-x:hidden;
    }
    body::before{
      content:"";
      position:fixed;
      inset:0;
      pointer-events:none;
      background-image:
        linear-gradient(rgba(255, 138, 101, .04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(121, 220, 200, .04) 1px, transparent 1px);
      background-size: 46px 46px;
      mask-image: linear-gradient(180deg, rgba(0,0,0,.72) 0%, rgba(0,0,0,.15) 80%, transparent 100%);
      z-index:-1;
    }
    a{
      color:inherit;
      text-decoration:none;
      transition: color .25s ease, transform .25s ease, background-color .25s ease, box-shadow .25s ease, border-color .25s ease;
    }
    a:hover{
      color:var(--primary);
    }
    img{
      max-width:100%;
      display:block;
    }
    button,
    input,
    textarea,
    select{
      font:inherit;
    }
    ::selection{
      background: rgba(255, 138, 101, .18);
      color: var(--text);
    }
    :focus-visible{
      outline: 3px solid rgba(255, 138, 101, .22);
      outline-offset: 2px;
    }
    .skip-link{
      position:absolute;
      left:-999px;
      top:12px;
      z-index:2000;
      padding:10px 14px;
      border-radius:var(--pill);
      background:#fff;
      border:1px solid rgba(255, 138, 101, .18);
      box-shadow: var(--shadow);
      color:var(--primary);
      font-weight:700;
    }
    .skip-link:focus{
      left:16px;
    }
    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl,
    .container-xxl{
      max-width:1240px;
      padding-left:18px;
      padding-right:18px;
    }
    .site-header{
      position:sticky;
      top:0;
      z-index:1030;
      background: rgba(255, 253, 249, .88);
      backdrop-filter: blur(10px);
      border-bottom:1px solid rgba(255, 138, 101, .10);
      box-shadow: 0 10px 30px rgba(44, 42, 50, .04);
    }
    .site-navbar{
      padding:14px 0;
    }
    .navbar-brand{
      display:inline-flex;
      align-items:center;
      gap:12px;
      color:var(--text);
      font-weight:800;
      font-size:18px;
      letter-spacing:0;
    }
    .navbar-brand:hover{
      color:var(--text);
    }
    .brand-mark{
      width:44px;
      height:44px;
      border-radius:16px;
      background: linear-gradient(135deg, var(--primary) 0%, var(--primary-2) 100%);
      position:relative;
      box-shadow: 0 12px 24px rgba(255, 138, 101, .20);
      flex:0 0 auto;
    }
    .brand-mark::before{
      content:"";
      position:absolute;
      width:11px;
      height:11px;
      left:9px;
      top:9px;
      border-radius:5px;
      background: rgba(255,255,255,.96);
      box-shadow:
        15px 0 0 rgba(255,255,255,.96),
        0 15px 0 rgba(255,255,255,.96),
        15px 15px 0 rgba(255,255,255,.96);
    }
    .brand-mark::after{
      content:"";
      position:absolute;
      width:12px;
      height:12px;
      right:8px;
      bottom:8px;
      border-radius:5px;
      background: rgba(255,255,255,.92);
      opacity:.9;
    }
    .navbar-nav{
      gap:8px;
    }
    .nav-link{
      padding:10px 16px !important;
      border-radius:var(--pill);
      color:var(--muted) !important;
      font-weight:700;
      transition: transform .25s ease, background-color .25s ease, color .25s ease, box-shadow .25s ease;
    }
    .nav-link:hover{
      color:var(--primary) !important;
      background: rgba(255, 138, 101, .08);
      transform: translateY(-1px);
    }
    .nav-link.active{
      color:var(--primary) !important;
      background: rgba(255, 138, 101, .14);
      box-shadow: inset 0 0 0 1px rgba(255, 138, 101, .14);
    }
    .navbar-toggler{
      border:1px solid rgba(255, 138, 101, .18);
      border-radius:14px;
      padding:8px 10px;
      box-shadow:none;
    }
    .navbar-toggler:focus{
      box-shadow:0 0 0 .2rem rgba(255, 138, 101, .14);
    }
    .navbar-toggler-icon{
      opacity:.85;
    }
    .section-space{
      padding:88px 0;
    }
    .section-soft{
      background: linear-gradient(180deg, rgba(255,255,255,.45), rgba(255,251,247,.84));
      border-top:1px solid rgba(255, 138, 101, .06);
      border-bottom:1px solid rgba(255, 138, 101, .06);
    }
    .section-head{
      display:flex;
      justify-content:space-between;
      align-items:flex-end;
      gap:24px;
      margin-bottom:34px;
    }
    .kicker{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:8px 14px;
      border-radius:var(--pill);
      background: rgba(255, 138, 101, .12);
      color:var(--primary);
      font-weight:800;
      font-size:13px;
      letter-spacing:0;
    }
    .kicker.mint{
      background: rgba(121, 220, 200, .16);
      color:#218875;
    }
    .kicker.purple{
      background: rgba(142, 124, 255, .14);
      color:var(--accent);
    }
    .section-title{
      font-size:32px;
      line-height:1.25;
      font-weight:800;
      margin:12px 0 0;
      letter-spacing:0;
    }
    .section-desc{
      max-width:720px;
      color:var(--muted);
      font-size:16px;
      margin:0;
    }
    .hero{
      padding:42px 0 18px;
    }
    .hero-shell{
      position:relative;
      overflow:hidden;
      border:1px solid rgba(255, 138, 101, .16);
      border-radius:34px;
      background: linear-gradient(180deg, rgba(255,255,255,.96), rgba(255,248,243,.98));
      box-shadow: var(--shadow);
    }
    .hero-shell::before{
      content:"";
      position:absolute;
      inset:-1px;
      background-image:
        linear-gradient(rgba(255, 138, 101, .06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(121, 220, 200, .        linear-gradient(rgba(255, 138, 101, .06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(121, 220, 200, .06) 1px, transparent 1px);
      background-size: 42px 42px;
      opacity:.48;
      z-index:0;
      pointer-events:none;
    }
    .hero-shell::after{
      content:"";
      position:absolute;
      right:-120px;
      top:-110px;
      width:320px;
      height:320px;
      border-radius:50%;
      background:
        radial-gradient(circle at 30% 30%, rgba(255,255,255,.92), rgba(255,255,255,.22) 38%, transparent 70%),
        radial-gradient(circle at 70% 70%, rgba(121, 220, 200, .26), transparent 60%);
      opacity:.9;
      z-index:0;
    }
    .hero-inner{
      position:relative;
      z-index:1;
      padding:34px;
    }
    .hero-grid{
      display:grid;
      grid-template-columns: 1.12fr .88fr;
      gap:28px;
      align-items:center;
    }
    .hero-copy h1{
      font-size:clamp(32px, 4vw, 48px);
      line-height:1.18;
      font-weight:800;
      letter-spacing:0;
      margin:18px 0 18px;
    }
    .hero-copy h1 .accent{
      background: linear-gradient(90deg, var(--primary) 0%, var(--primary-2) 55%, var(--accent) 100%);
      -webkit-background-clip:text;
      background-clip:text;
      color:transparent;
    }
    .hero-copy .lead{
      max-width:640px;
      font-size:17px;
      line-height:1.9;
      color:var(--muted);
      margin:0 0 24px;
    }
    .hero-tags{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
      margin:16px 0 8px;
    }
    .tag{
      display:inline-flex;
      align-items:center;
      gap:7px;
      padding:8px 13px;
      border-radius:var(--pill);
      background: rgba(255,255,255,.82);
      border:1px solid rgba(255, 138, 101, .14);
      color:#534b59;
      font-size:13px;
      font-weight:700;
      box-shadow: 0 8px 20px rgba(44, 42, 50, .04);
    }
    .tag i{
      color:var(--primary);
      font-size:12px;
    }
    .hero-actions{
      display:flex;
      flex-wrap:wrap;
      gap:12px;
      margin-top:28px;
    }
    .btn{
      border:0;
      font-weight:800;
      letter-spacing:0;
      transition: transform .25s ease, box-shadow .25s ease, background-color .25s ease, color .25s ease, border-color .25s ease;
    }
    .btn:focus-visible{
      box-shadow:0 0 0 .22rem rgba(255, 138, 101, .18);
    }
    .btn-brand{
      background: linear-gradient(135deg, var(--primary) 0%, var(--primary-2) 100%);
      color:#fff;
      padding:13px 22px;
      border-radius:var(--pill);
      box-shadow: 0 16px 30px rgba(255, 122, 144, .25);
    }
    .btn-brand:hover,
    .btn-brand:active{
      color:#fff;
      transform: translateY(-2px);
      box-shadow: 0 20px 36px rgba(255, 122, 144, .28);
    }
    .btn-soft{
      background: rgba(255,255,255,.86);
      color:var(--text);
      padding:13px 22px;
      border-radius:var(--pill);
      border:1px solid rgba(255, 138, 101, .16);
      box-shadow: 0 12px 24px rgba(44, 42, 50, .04);
    }
    .btn-soft:hover{
      color:var(--primary);
      background: rgba(255, 138, 101, .08);
      transform: translateY(-2px);
      box-shadow: var(--shadow);
    }
    .hero-meta{
      display:flex;
      flex-wrap:wrap;
      gap:12px;
      margin-top:20px;
    }
    .meta-chip{
      display:flex;
      align-items:center;
      gap:10px;
      padding:12px 14px;
      border-radius:18px;
      background: rgba(255,255,255,.78);
      border:1px solid rgba(255, 138, 101, .12);
      min-width:140px;
    }
    .meta-chip .num{
      width:42px;
      height:42px;
      border-radius:14px;
      display:grid;
      place-items:center;
      background: linear-gradient(135deg, rgba(255, 138, 101, .16), rgba(255, 122, 144, .16));
      color:var(--primary);
      font-weight:900;
      flex:0 0 auto;
    }
    .meta-chip .text{
      display:flex;
      flex-direction:column;
      line-height:1.3;
    }
    .meta-chip .text strong{
      font-size:14px;
    }
    .meta-chip .text span{
      font-size:12px;
      color:var(--muted);
    }
    .panel-card{
      background: linear-gradient(180deg, rgba(255,255,255,.96), rgba(255,250,246,.96));
      border:1px solid rgba(255, 138, 101, .14);
      border-radius:28px;
      box-shadow: var(--shadow);
      overflow:hidden;
    }
    .panel-card .panel-top{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:12px;
      padding:18px 20px;
      border-bottom:1px solid rgba(255, 138, 101, .08);
      background: linear-gradient(135deg, rgba(255, 138, 101, .08), rgba(121, 220, 200, .08));
    }
    .panel-card .panel-top strong{
      font-size:15px;
    }
    .panel-card .panel-top span{
      font-size:12px;
      color:var(--muted);
    }
    .entry-grid{
      display:grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap:12px;
      padding:18px;
    }
    .entry-mini{
      position:relative;
      padding:16px;
      border-radius:22px;
      background: var(--surface);
      border:1px solid rgba(255, 138, 101, .10);
      box-shadow: 0 10px 20px rgba(44, 42, 50, .03);
      min-height:138px;
      overflow:hidden;
      transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
    }
    .entry-mini:hover{
      transform: translateY(-4px);
      border-color: rgba(255, 138, 101, .22);
      box-shadow: var(--shadow-strong);
    }
    .entry-mini .mini-num{
      display:inline-grid;
      place-items:center;
      width:36px;
      height:36px;
      border-radius:12px;
      background: rgba(255, 138, 101, .12);
      color:var(--primary);
      font-weight:900;
      margin-bottom:12px;
    }
    .entry-mini h3{
      font-size:17px;
      line-height:1.3;
      font-weight:800;
      margin:0 0 8px;
    }
    .entry-mini p{
      margin:0;
      color:var(--muted);
      font-size:14px;
      line-height:1.75;
    }
    .entry-mini .mini-badge{
      display:inline-flex;
      align-items:center;
      gap:6px;
      margin-top:12px;
      font-size:12px;
      font-weight:800;
      color:#218875;
      background: rgba(121, 220, 200, .14);
      padding:6px 10px;
      border-radius:var(--pill);
    }
    .entry-mini::after{
      content:"";
      position:absolute;
      right:-8px;
      top:-8px;
      width:82px;
      height:82px;
      border-radius:30px;
      background: radial-gradient(circle at 35% 35%, rgba(255,255,255,.88), rgba(255,255,255,.08) 65%, transparent 70%);
      opacity:.9;
      transform: rotate(12deg);
    }
    .section-band{
      padding:76px 0;
    }
    .section-band .section-head{
      align-items:center;
    }
    .news-layout{
      display:grid;
      grid-template-columns: 1.12fr .88fr;
      gap:22px;
    }
    .news-list{
      display:flex;
      flex-direction:column;
      gap:14px;
    }
    .news-item{
      display:flex;
      gap:16px;
      align-items:flex-start;
      padding:18px 18px 18px 20px;
      border-radius:24px;
      background: rgba(255,255,255,.9);
      border:1px solid rgba(255, 138, 101, .12);
      box-shadow: 0 10px 22px rgba(44,42,50,.03);
      transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
    }
    .news-item:hover{
      transform: translateY(-3px);
      border-color: rgba(255, 138, 101, .22);
      box-shadow: var(--shadow);
    }
    .news-badge{
      width:52px;
      height:52px;
      border-radius:18px;
      display:grid;
      place-items:center;
      background: linear-gradient(135deg, rgba(255, 138, 101, .14), rgba(255, 214, 107, .22));
      color:var(--primary);
      flex:0 0 auto;
      font-weight:900;
      font-size:15px;
    }
    .news-copy{
      flex:1;
      min-width:0;
    }
    .news-copy h3{
      font-size:18px;
      line-height:1.35;
      margin:0 0 8px;
      font-weight:800;
    }
    .news-copy p{
      color:var(--muted);
      margin:0 0 10px;
      font-size:14px;
      line-height:1.8;
    }
    .news-meta{
      display:flex;
      flex-wrap:wrap;
      gap:8px;
      align-items:center;
      font-size:12px;
      color:var(--muted);
    }
    .news-link{
      display:inline-flex;
      align-items:center;
      gap:6px;
      color:var(--primary);
      font-weight:800;
    }
    .highlight-card{
      padding:24px;
      border-radius:28px;
      background: linear-gradient(180deg, rgba(255,255,255,.96), rgba(255,249,244,.96));
      border:1px solid rgba(255, 138, 101, .12);
      box-shadow: var(--shadow);
      position:relative;
      overflow:hidden;
    }
    .highlight-card::before{
      content:"";
      position:absolute;
      inset:auto -40px -40px auto;
      width:180px;
      height:180px;
      border-radius:50%;
      background: radial-gradient(circle, rgba(121, 220, 200, .18) 0%, rgba(121, 220, 200, .06) 40%, transparent 72%);
    }
    .highlight-card h3{
      font-size:22px;
      line-height:1.3;
      margin:8px 0 12px;
      font-weight:800;
    }
    .highlight-card p{
      color:var(--muted);
      margin:0 0 18px;
      font-size:15px;
      line-height:1.85;
    }
    .check-list{
      display:grid;
      gap:10px;
      margin:0;
      padding:0;
      list-style:none;
    }
    .check-list li{
      display:flex;
      gap:10px;
      align-items:flex-start;
      color:#47424f;
      font-size:14px;
      line-height:1.7;
    }
    .check-list i{
      color:#218875;
      margin-top:4px;
      flex:0 0 auto;
    }
    .step-grid{
      display:grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap:18px;
    }
    .step-card{
      position:relative;
      background: rgba(255,255,255,.92);
      border:1px solid rgba(255, 138, 101, .12);
      border-radius:24px;
      box-shadow: 0 12px 26px rgba(44,42,50,.03);
      padding:24px 22px;
      min-height:210px;
      transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
    }
    .step-card:hover{
      transform: translateY(-4px);
      border-color: rgba(255, 138, 101, .24);
      box-shadow: var(--shadow);
    }
    .step-card .step-num{
      width:52px;
      height:52px;
      border-radius:18px;
      display:grid;
      place-items:center;
      background: linear-gradient(135deg, var(--primary) 0%, var(--primary-2) 100%);
      color:#fff;
      font-weight:900;
      font-size:18px;
      box-shadow: 0 14px 26px rgba(255, 122, 144, .24);
      margin-bottom:14px;
    }
    .step-card h3{
      font-size:19px;
      line-height:1.35;
      margin:0 0 10px;
      font-weight:800;
    }
    .step-card p{
      margin:0;
      color:var(--muted);
      font-size:14px;
      line-height:1.85;
    }
    .step-card .step-foot{
      display:flex;
      align-items:center;
      gap:8px;
      margin-top:16px;
      color:var(--primary);
      font-weight:800;
      font-size:13px;
    }
    .bento-grid{
      display:grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap:16px;
    }
    .bento-large{
      grid-column: span 2;
      grid-row: span 2;
      min-height: 360px;
      padding:26px;
      border-radius:28px;
      background:
        linear-gradient(180deg, rgba(255,255,255,.97), rgba(255, 248, 243, .98));
      border:1px solid rgba(255, 138, 101, .12);
      box-shadow: var(--shadow);
      position:relative;
      overflow:hidden;
    }
    .bento-large::after{
      content:"";
      position:absolute;
      right:18px;
      bottom:18px;
      width:200px;
      height:200px;
      border-radius:50%;
      background: radial-gradient(circle, rgba(255, 214, 107, .24), transparent 70%);
      pointer-events:none;
    }
    .bento-large h3{
      font-size:26px;
      line-height:1.25;
      font-weight:800;
      margin:12px 0 12px;
      max-width:80%;
    }
    .bento-large p{
      color:var(--muted);
      font-size:15px;
      line-height:1.9;
      margin:0 0 20px;
      max-width:82%;
    }
    .bento-small{
      min-height:168px;
      padding:20px;
      border-radius:24px;
      background: rgba(255,255,255,.94);
      border:1px solid rgba(255, 138, 101, .12);
      box-shadow: 0 12px 26px rgba(44,42,50,.03);
      position:relative;
      overflow:hidden;
      transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
    }
    .bento-small:hover{
      transform: translateY(-3px);
      border-color: rgba(255, 138, 101, .22);
      box-shadow: var(--shadow);
    }
    .bento-small .icon-dot{
      width:42px;
      height:42px;
      border-radius:14px;
      display:grid;
      place-items:center;
      background: rgba(121, 220, 200, .14);
      color:#218875;
      margin-bottom:12px;
      font-size:17px;
    }
    .bento-small h4{
      font-size:17px;
      line-height:1.35;
      margin:0 0 8px;
      font-weight:800;
    }
    .bento-small p{
      margin:0;
      color:var(--muted);
      font-size:13px;
      line-height:1.7;
    }
    .bento-small .mini-link{
      display:inline-flex;
      gap:6px;
      align-items:center;
      margin-top:12px;
      color:var(--primary);
      font-weight:800;
      font-size:13px;
    }
    .trust-layout{
      display:grid;
      grid-template-columns: 1fr .92fr;
      gap:22px;
      align-items:start;
    }
    .trust-panel,
    .note-panel{
      border-radius:28px;
      background: rgba(255,255,255,.94);
      border:1px solid rgba(255, 138, 101, .12);
      box-shadow: var(--shadow);
      padding:24px;
    }
    .trust-panel h3,
    .note-panel h3{
      font-size:22px;
      line-height:1.35;
      margin:0 0 14px;
      font-weight:800;
    }
    .badge-row{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
      margin-bottom:16px;
    }
    .soft-badge{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:8px 12px;
      border-radius:var(--pill);
      background: rgba(255, 138, 101, .10);
      color:var(--primary);
      font-weight:800;
      font-size:12px;
    }
    .soft-badge.mint{
      background: rgba(121, 220, 200, .16);
      color:#1d806d;
    }
    .soft-badge.purple{
      background: rgba(142, 124, 255, .14);
      color:var(--accent);
    }
    .data-strip{
      display:grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap:12px;
      margin-bottom:18px;
    }
    .data-box{
      padding:16px;
      border-radius:20px;
      background: linear-gradient(180deg, rgba(255, 138, 101, .08), rgba(255,255,255,.94));
      border:1px solid rgba(255, 138, 101, .12);
    }
    .data-box strong{
      display:block;
      font-size:22px;
      line-height:1.15;
      font-weight:900;
      color:var(--primary);
    }
    .data-box span{
      color:var(--muted);
      font-size:13px;
    }
    .trust-panel p,
    .note-panel p{
      margin:0 0 14px;
      color:var(--muted);
      font-size:15px;
      line-height:1.85;
    }
    .mini-note{
      margin-top:16px;
      padding:16px;
      border-radius:20px;
      background: rgba(121, 220, 200, .12);
      border:1px solid rgba(121, 220, 200, .20);
      color:#246f5f;
      font-size:14px;
      line-height:1.75;
    }
    .device-layout{
      display:grid;
      grid-template-columns: .95fr 1.05fr;
      gap:22px;
      align-items:stretch;
    }
    .timeline{
      display:grid;
      gap:14px;
    }
    .timeline-item{
      display:flex;
      gap:14px;
      align-items:flex-start;
      padding:18px;
      border-radius:24px;
      background: rgba(255,255,255,.94);
      border:1px solid rgba(255, 138, 101, .12);
      box-shadow: 0 10px 22px rgba(44,42,50,.03);
    }
    .timeline-pin{
      width:42px;
      height:42px;
      border-radius:14px;
      display:grid;
      place-items:center;
      background: rgba(142, 124, 255, .14);
      color:var(--accent);
      flex:0 0 auto;
      font-weight:900;
    }
    .timeline-item h4{
      font-size:17px;
      line-height:1.35;
      margin:0 0 6px;
      font-weight:800;
    }
    .timeline-item p{
      margin:0;
      color:var(--muted);
      font-size:14px;
      line-height:1.75;
    }
    .device-surface{
      position:relative;
      min-height: 366px;
      border-radius:30px;
      background:
        linear-gradient(180deg, rgba(255,255,255,.98), rgba(255,250,246,.98));
      border:1px solid rgba(255, 138, 101, .12);
      box-shadow: var(--shadow);
      padding:24px;
      overflow:hidden;
    }
    .device-surface::before{
      content:"";
      position:absolute;
      left:-60px;
      top:-60px;
      width:220px;
      height:220px;
      border-radius:50%;
      background: radial-gradient(circle, rgba(255, 214, 107, .20), transparent 68%);
    }
    .device-surface::after{
      content:"";
      position:absolute;
      right:-100px;
      bottom:-90px;
      width:280px;
      height:280px;
      border-radius:50%;
      background: radial-gradient(circle, rgba(255, 122, 144, .12), transparent 70%);
    }
    .device-head{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:12px;
      margin-bottom:18px;
      position:relative;
      z-index:1;
    }
    .device-head strong{
      font-size:18px;
      font-weight:800;
    }
    .device-head span{
      font-size:13px;
      color:var(--muted);
    }
    .device-grid{
      position:relative;
      z-index:1;
      display:grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap:14px;
    }
    .device-card{
      padding:18px;
      min-height:120px;
      border-radius:22px;
      background: rgba(255,255,255,.92);
      border:1px solid rgba(255, 138, 101, .12);
      box-shadow: 0 10px 18px rgba(44,42,50,.03);
    }
    .device-card h4{
      font-size:16px;
      line-height:1.35;
      margin:0 0 8px;
      font-weight:800;
    }
    .device-card p{
      margin:0;
      color:var(--muted);
      font-size:13px;
      line-height:1.75;
    }
    .device-card .device-tag{
      display:inline-flex;
      margin-top:10px;
      padding:6px 10px;
      border-radius:var(--pill);
      background: rgba(255, 138, 101, .10);
      color:var(--primary);
      font-size:12px;
      font-weight:800;
    }
    .cta-panel{
      position:relative;
      overflow:hidden;
      border-radius:34px;
      background:
        linear-gradient(135deg, rgba(255, 138, 101, .96), rgba(255, 122, 144, .92));
      box-shadow: 0 20px 42px rgba(255, 122, 144, .24);
      color:#fff;
      padding:34px;
    }
    .cta-panel::before{
      content:"";
      position:absolute;
      left:-30px;
      top:-30px;
      width:180px;
      height:180px;
      border-radius:50%;
      background: radial-gradient(circle, rgba(255,255,255,.24), transparent 68%);
    }
    .cta-panel::after{
      content:"";
      position:absolute;
      right:24px;
      bottom:18px;
      width:128px;
      height:128px;
      border-radius:30px;
      background: linear-gradient(135deg, rgba(255,255,255,.18), rgba(255,255,255,.04));
      transform: rotate(12deg);
    }
    .cta-inner{
      position:relative;
      z-index:1;
      display:grid;
      grid-template-columns: 1fr .9fr;
      gap:24px;
      align-items:center;
    }
    .cta-inner h3{
      font-size:28px;
      line-height:1.25;
      margin:10px 0 12px;
      font-weight:800;
      letter-spacing:0;
    }
    .cta-inner p{
      margin:0 0 16px;
      color:rgba(255,255,255,.9);
      font-size:15px;
      line-height:1.9;
      max-width:620px;
    }
    .cta-points{
      display:grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap:10px;
      margin-top:12px;
    }
    .cta-point{
      padding:14px 14px;
      border-radius:20px;
      background: rgba(255,255,255,.14);
      border:1px solid rgba(255,255,255,.18);
      backdrop-filter: blur(4px);
    }
    .cta-point strong{
      display:block;
      font-size:16px;
      margin-bottom:4px;
    }
    .cta-point span{
      display:block;
      font-size:12px;
      line-height:1.65;
      color:rgba(255,255,255,.88);
    }
    .cta-form{
      position:relative;
      z-index:1;
      padding:22px;
      border-radius:28px;
      background: rgba(255,255,255,.12);
      border:1px solid rgba(255,255,255,.18);
      box-shadow: inset 0 1px 0 rgba(255,255,255,.12);
    }
    .cta-form .form-label{
      color:#fff;
      font-weight:800;
      margin-bottom:8px;
      font-size:13px;
    }
    .cta-form .form-control{
      height:52px;
      border-radius:18px;
      border:1px solid rgba(255,255,255,.22);
      background: rgba(255,255,255,.92);
      color:var(--text);
      box-shadow: inset 0 1px 4px rgba(44,42,50,.06);
    }
    .cta-form .form-control::placeholder{
      color:#9b94a1;
    }
    .cta-form textarea.form-control{
      height:auto;
      min-height:110px;
      border-radius:22px;
      padding-top:14px;
    }
    .cta-form .btn{
      height:52px;
      border-radius:18px;
      width:100%;
    }
    .form-note{
      margin-top:10px;
      font-size:12px;
      line-height:1.65;
      color:rgba(255,255,255,.88);
    }
    .faq-wrap{
      display:grid;
      grid-template-columns: 1.02fr .98fr;
      gap:22px;
      align-items:start;
    }
    .accordion{
      display:grid;
      gap:12px;
    }
    .accordion-item{
      border:1px solid rgba(255, 138, 101, .12);
      border-radius:18px !important;
      overflow:hidden;
      background: rgba(255,255,255,.94);
      box-shadow: 0 10px 20px rgba(44,42,50,.03);
    }
    .accordion-button{
      padding:18px 20px;
      border-radius:18px !important;
      background: rgba(255,255,255,.94);
      color:var(--text);
      font-weight:800;
      box-shadow:none;
    }
    .accordion-button:not(.collapsed){
      background: rgba(255, 138, 101, .08);
      color:var(--primary);
      box-shadow:none;
    }
    .accordion-button::after{
      background-size:1rem;
      opacity:.7;
    }
    .accordion-body{
      padding:0 20px 18px;
      color:var(--muted);
      font-size:14px;
      line-height:1.85;
    }
    .faq-note{
      padding:24px;
      border-radius:28px;
      background: linear-gradient(180deg, rgba(255,255,255,.96), rgba(255,248,243,.96));
      border:1px solid rgba(255, 138, 101, .12);
      box-shadow: var(--shadow);
    }
    .faq-note h3{
      font-size:22px;
      line-height:1.35;
      margin:0 0 12px;
      font-weight:800;
    }
    .faq-note p{
      color:var(--muted);
      font-size:15px;
      line-height:1.85;
      margin:0 0 14px;
    }
    .faq-note .mini-check{
      display:grid;
      gap:10px;
      margin:0;
      padding:0;
      list-style:none;
    }
    .faq-note .mini-check li{
      display:flex;
      gap:10px;
      color:#46414f;
      font-size:14px;
      line-height:1.7;
    }
    .faq-note .mini-check i{
      color:var(--primary);
      margin-top:4px;
    }
    .footer{
      padding:28px 0 34px;
      border-top:1px solid rgba(255, 138, 101, .12);
      background: rgba(255,255,255,.58);
    }
    .footer-top{
      display:flex;
      gap:20px;
      align-items:flex-start;
      justify-content:space-between;
      flex-wrap:wrap;
      padding:10px 0 22px;
    }
    .footer-brand{
      max-width:420px;
    }
    .footer-brand p{
      color:var(--muted);
      font-size:14px;
      line-height:1.8;
      margin:12px 0 0;
    }
    .footer-links{
      display:grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap:12px 28px;
      min-width:320px;
    }
    .footer-links a{
      color:#4d4654;
      font-weight:700;
      font-size:14px;
    }
    .footer-links a:hover{
      color:var(--primary);
    }
    .footer-bottom{
      display:flex;
      flex-wrap:wrap;
      justify-content:space-between;
      gap:12px;
      padding-top:18px;
      border-top:1px solid rgba(255, 138, 101, .10);
      color:var(--muted);
      font-size:13px;
      line-height:1.7;
    }
    .footer-bottom a{
      color:var(--primary);
      font-weight:800;
    }
    .section-divider{
      height:1px;
      background: linear-gradient(90deg, transparent, rgba(255, 138, 101, .20), transparent);
      margin:0;
    }
    .clamp-2{
      display:-webkit-box;
      -webkit-box-orient:vertical;
      -webkit-line-clamp:2;
      overflow:hidden;
    }
    .clamp-3{
      display:-webkit-box;
      -webkit-box-orient:vertical;
      -webkit-line-clamp:3;
      overflow:hidden;
    }
    .subtle-rule{
      width:120px;
      height:4px;
      border-radius:999px;
      background: linear-gradient(90deg, var(--primary), var(--secondary));
      margin-bottom:10px;
    }
    .floating-bar{
      position:sticky;
      bottom:12px;
      z-index:1020;
      margin-top:18px;
      display:none;
    }
    .floating-bar .bar-inner{
      display:flex;
      gap:12px;
      align-items:center;
      justify-content:space-between;
      padding:14px 18px;
      border-radius:22px;
      background: rgba(255,255,255,.92);
      border:1px solid rgba(255, 138, 101, .14);
      box-shadow: var(--shadow);
    }
    .floating-bar .bar-inner strong{
      font-size:14px;
      font-weight:800;
    }
    .floating-bar .bar-inner span{
      display:block;
      font-size:12px;
      color:var(--muted);
    }
    @media (max-width: 991.98px){
      .hero-grid,
      .news-layout,
      .trust-layout,
      .device-layout,
      .cta-inner,
      .faq-wrap{
        grid-template-columns: 1fr;
      }
      .section-head{
        flex-direction:column;
        align-items:flex-start;
      }
      .section-title{
        font-size:28px;
      }
      .step-grid{
        grid-template-columns:1fr;
      }
      .bento-grid{
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
      .bento-large{
        grid-column: span 2;
      }
      .cta-points,
      .data-strip{
        grid-template-columns:1fr;
      }
      .device-grid{
        grid-template-columns:1fr;
      }
      .footer-links{
        min-width:0;
        grid-template-columns:1fr 1fr;
      }
    }
    @media (max-width: 767.98px){
      .hero{
        padding-top:22px;
      }
      .hero-inner{
        padding:20px;
      }
      .hero-copy h1{
        font-size:32px;
      }
      .hero-copy .lead{
        font-size:15.5px;
      }
      .entry-grid{
        grid-template-columns:1fr;
        padding:16px;
      }
      .news-item{
        flex-direction:column;
      }
      .news-badge{
        width:46px;
        height:46px;
        border-radius:16px;
      }
      .bento-grid{
        grid-template-columns:1fr;
      }
      .bento-large{
        grid-column: span 1;
        min-height:auto;
      }
      .bento-large h3,
      .bento-large p{
        max-width:100%;
      }
      .hero-actions .btn,
      .cta-form .btn{
        width:100%;
      }
      .hero-meta{
        flex-direction:column;
      }
      .meta-chip{
        width:100%;
      }
      .cta-panel{
        padding:22px;
      }
      .cta-form{
        padding:16px;
      }
      .footer-top{
        flex-direction:column;
      }
      .footer-links{
        width:100%;
      }
      .floating-bar{
        display:block;
      }
      .navbar-collapse{
        margin-top:12px;
        padding:14px;
        background: rgba(255,255,255,.96);
        border:1px solid rgba(255, 138, 101, .12);
        border-radius:22px;
        box-shadow: var(--shadow);
      }
      .nav-link{
        padding:12px 14px !important;
      }
    }
    @media (max-width: 575.98px){
      .section-space,
      .section-band{
        padding:54px 0;
      }
      .panel-card,
      .trust-panel,
      .note-panel,
      .faq-note,
      .device-surface,
      .highlight-card{
        border-radius:24px;
      }
      .hero-shell{
        border-radius:28px;
      }
      .section-title{
        font-size:26px;
      }
      .hero-copy h1{
        font-size:30px;
      }
      .cta-inner h3{
        font-size:24px;
      }
      .footer-links{
        grid-template-columns:1fr;
      }
    }

/* roulang page: category1 */
:root{
      --primary:#ff8a65;
      --primary-2:#ff7a90;
      --primary-soft:#fff0e8;
      --mint:#55cdb4;
      --mint-soft:#e9fbf6;
      --purple:#8e7cff;
      --yellow:#ffd66b;
      --bg:#fff8f3;
      --bg-2:#fffdf9;
      --surface:#ffffff;
      --surface-warm:#fffaf6;
      --text:#2c2a32;
      --muted:#6f6a75;
      --border:#f0ded5;
      --border-2:#e9ece8;
      --shadow:0 16px 42px rgba(255,138,101,.14);
      --shadow-strong:0 22px 55px rgba(255,122,144,.18);
      --radius-sm:16px;
      --radius:24px;
      --radius-lg:32px;
      --container:1200px;
      --focus:0 0 0 .22rem rgba(255,138,101,.24);
    }

    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      font-family:system-ui,-apple-system,BlinkMacSystemFont,"PingFang SC","Microsoft YaHei","Noto Sans SC",sans-serif;
      color:var(--text);
      background:
        radial-gradient(circle at 8% 12%, rgba(255,211,107,.24) 0 110px, transparent 112px),
        radial-gradient(circle at 92% 18%, rgba(85,205,180,.18) 0 150px, transparent 152px),
        linear-gradient(180deg,var(--bg),var(--bg-2) 42%,#fffaf7);
      line-height:1.8;
      overflow-x:hidden;
    }
    a{color:inherit;text-decoration:none;transition:.22s ease}
    img{max-width:100%;height:auto;display:block}
    button,input,textarea{font:inherit}
    ::selection{background:rgba(255,138,101,.22)}
    .container{max-width:var(--container)}
    .section{padding:78px 0}
    .section-sm{padding:56px 0}
    .eyebrow{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:7px 13px;
      border-radius:999px;
      color:#d95f43;
      background:rgba(255,138,101,.12);
      border:1px solid rgba(255,138,101,.18);
      font-size:13px;
      font-weight:700;
      line-height:1.2;
    }
    .eyebrow::before{
      content:"";
      width:8px;
      height:8px;
      border-radius:50%;
      background:var(--mint);
      box-shadow:0 0 0 5px rgba(85,205,180,.16);
    }
    h1,h2,h3,p{margin-top:0}
    h1{
      font-size:clamp(30px,4.2vw,46px);
      line-height:1.22;
      font-weight:800;
      letter-spacing:0;
      margin-bottom:18px;
    }
    h2{
      font-size:clamp(24px,3vw,34px);
      line-height:1.28;
      font-weight:800;
      margin-bottom:14px;
      letter-spacing:0;
    }
    h3{
      font-size:21px;
      line-height:1.36;
      font-weight:800;
      margin-bottom:10px;
      letter-spacing:0;
    }
    .lead{
      color:var(--muted);
      font-size:17px;
      line-height:1.9;
      max-width:760px;
      margin-bottom:0;
    }
    .text-muted-custom{color:var(--muted)}
    .gradient-text{
      background:linear-gradient(90deg,var(--primary),var(--primary-2),var(--purple));
      -webkit-background-clip:text;
      background-clip:text;
      color:transparent;
    }

    .site-header{
      position:sticky;
      top:0;
      z-index:1000;
      background:rgba(255,253,249,.92);
      backdrop-filter:blur(14px);
      border-bottom:1px solid rgba(240,222,213,.76);
      box-shadow:0 10px 28px rgba(44,42,50,.04);
    }
    .site-navbar{padding:14px 0}
    .navbar-brand{
      display:inline-flex;
      align-items:center;
      gap:10px;
      color:var(--text);
      font-weight:800;
      font-size:18px;
      letter-spacing:0;
      white-space:normal;
      max-width:100%;
    }
    .brand-mark{
      width:38px;
      height:38px;
      flex:0 0 38px;
      border-radius:14px;
      background:
        radial-gradient(circle at 30% 30%, #fff 0 4px, transparent 5px),
        radial-gradient(circle at 68% 68%, rgba(255,255,255,.78) 0 5px, transparent 6px),
        linear-gradient(135deg,var(--primary),var(--primary-2));
      box-shadow:0 10px 22px rgba(255,122,144,.24);
      position:relative;
    }
    .brand-mark::after{
      content:"";
      position:absolute;
      left:14px;
      top:10px;
      width:0;
      height:0;
      border-top:8px solid transparent;
      border-bottom:8px solid transparent;
      border-left:12px solid #fff8f3;
      filter:drop-shadow(0 2px 4px rgba(44,42,50,.12));
    }
    .navbar-toggler{
      border:1px solid rgba(255,138,101,.22);
      border-radius:14px;
      padding:8px 10px;
      background:var(--surface);
      box-shadow:0 8px 18px rgba(255,138,101,.08);
    }
    .navbar-toggler:focus{box-shadow:var(--focus)}
    .navbar-toggler-icon{
      width:1.25em;
      height:1.25em;
      background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2844,42,50,.82%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2.4' d='M4 8h22M4 15h22M4 22h22'/%3e%3c/svg%3e");
    }
    .navbar-nav{gap:8px}
    .nav-link{
      color:var(--muted);
      font-weight:700;
      padding:9px 14px!important;
      border-radius:999px;
      line-height:1.2;
    }
    .nav-link:hover{
      color:#d95f43;
      background:rgba(255,138,101,.10);
      transform:translateY(-1px);
    }
    .nav-link.active{
      color:#d95f43!important;
      background:rgba(255,138,101,.16);
      box-shadow:inset 0 0 0 1px rgba(255,138,101,.14);
    }

    .breadcrumb-wrap{
      padding:28px 0 0;
    }
    .breadcrumb{
      margin:0;
      font-size:14px;
      --bs-breadcrumb-divider-color:#b7a9a1;
    }
    .breadcrumb a{color:var(--muted)}
    .breadcrumb a:hover{color:#d95f43}
    .breadcrumb .active{color:#d95f43;font-weight:700}

    .page-hero{
      padding:34px 0 64px;
      position:relative;
    }
    .page-hero-panel{
      position:relative;
      overflow:hidden;
      border-radius:var(--radius-lg);
      background:
        linear-gradient(135deg,rgba(255,255,255,.94),rgba(255,240,232,.86)),
        radial-gradient(circle at 88% 12%, rgba(255,214,107,.36), transparent 180px);
      border:1px solid rgba(255,138,101,.18);
      box-shadow:var(--shadow);
      padding:42px;
    }
    .page-hero-panel::before{
      content:"";
      position:absolute;
      right:30px;
      top:30px;
      width:180px;
      height:180px;
      border-radius:42px;
      background:
        linear-gradient(90deg,rgba(255,138,101,.16) 1px,transparent 1px),
        linear-gradient(180deg,rgba(255,138,101,.16) 1px,transparent 1px);
      background-size:22px 22px;
      transform:rotate(8deg);
      opacity:.68;
    }
    .page-hero-panel::after{
      content:"";
      position:absolute;
      left:-44px;
      bottom:-54px;
      width:170px;
      height:170px;
      border-radius:50%;
      background:rgba(85,205,180,.16);
    }
    .hero-content{position:relative;z-index:1}
    .tag-row{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
      margin:22px 0 30px;
    }
    .tag{
      display:inline-flex;
      align-items:center;
      gap:7px;
      padding:8px 12px;
      border-radius:999px;
      background:var(--surface);
      color:var(--muted);
      border:1px solid rgba(255,138,101,.16);
      font-size:13px;
      font-weight:700;
      box-shadow:0 8px 18px rgba(44,42,50,.04);
    }
    .tag-dot{
      width:7px;
      height:7px;
      border-radius:50%;
      background:var(--primary);
    }
    .hero-actions{
      display:flex;
      flex-wrap:wrap;
      gap:12px;
      align-items:center;
    }
    .btn-brand,
    .btn-ghost{
      min-height:48px;
      border-radius:999px;
      padding:12px 20px;
      font-weight:800;
      border:0;
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:8px;
      transition:.22s ease;
    }
    .btn-brand{
      color:#fff;
      background:linear-gradient(135deg,var(--primary),var(--primary-2));
      box-shadow:0 13px 26px rgba(255,122,144,.24);
    }
    .btn-brand:hover,
    .btn-brand:focus{
      color:#fff;
      transform:translateY(-2px);
      box-shadow:0 18px 34px rgba(255,122,144,.30);
      filter:saturate(1.04);
    }
    .btn-ghost{
      color:#d95f43;
      background:rgba(255,255,255,.78);
      border:1px solid rgba(255,138,101,.24);
    }
    .btn-ghost:hover,
    .btn-ghost:focus{
      color:#c65037;
      background:rgba(255,240,232,.94);
      transform:translateY(-2px);
      box-shadow:0 12px 24px rgba(255,138,101,.12);
    }
    .btn-brand:focus,
    .btn-ghost:focus,
    .form-control:focus{box-shadow:var(--focus);outline:0}

    .cover-card{
      position:relative;
      border-radius:28px;
      overflow:hidden;
      min-height:360px;
      background:
        radial-gradient(circle at 20% 18%, rgba(255,255,255,.75), transparent 70px),
        linear-gradient(145deg,#ffb36b,#ff7a90 52%,#55cdb4);
      box-shadow:var(--shadow-strong);
      border:1px solid rgba(255,255,255,.76);
      padding:24px;
      color:#fff;
    }
    .cover-card::before{
      content:"";
      position:absolute;
      inset:18px;
      border-radius:22px;
      background:
        linear-gradient(90deg,rgba(255,255,255,.22) 1px,transparent 1px),
        linear-gradient(180deg,rgba(255,255,255,.18) 1px,transparent 1px);
      background-size:24px 24px;
      opacity:.58;
    }
    .cover-inner{position:relative;z-index:1;height:100%;display:flex;flex-direction:column}
    .cover-label{
      align-self:flex-start;
      background:rgba(255,255,255,.24);
      border:1px solid rgba(255,255,255,.36);
      border-radius:999px;
      padding:7px 12px;
      font-size:13px;
      font-weight:800;
      backdrop-filter:blur(8px);
    }
    .cover-title{
      margin:auto 0 20px;
      font-size:28px;
      line-height:1.26;
      font-weight:900;
      max-width:340px;
      text-shadow:0 8px 20px rgba(44,42,50,.18);
    }
    .countdown{
      display:grid;
      grid-template-columns:repeat(3,1fr);
      gap:10px;
      margin-bottom:16px;
    }
    .time-box{
      border-radius:18px;
      background:rgba(255,255,255,.22);
      border:1px solid rgba(255,255,255,.34);
      padding:12px 8px;
      text-align:center;
      backdrop-filter:blur(10px);
    }
    .time-box strong{
      display:block;
      font-size:22px;
      line-height:1;
      font-weight:900;
    }
    .time-box span{
      display:block;
      margin-top:6px;
      font-size:12px;
      opacity:.92;
    }
    .remind-box{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:12px;
      border-radius:18px;
      background:rgba(255,255,255,.88);
      color:var(--text);
      padding:12px 14px;
    }
    .remind-box small{display:block;color:var(--muted);line-height:1.5}
    .icon-pill{
      width:40px;
      height:40px;
      flex:0 0 40px;
      display:grid;
      place-items:center;
      border-radius:14px;
      background:rgba(85,205,180,.14);
      color:#129b83;
      font-weight:900;
    }

    .section-head{
      display:flex;
      justify-content:space-between;
      gap:28px;
      align-items:end;
      margin-bottom:28px;
    }
    .section-head .lead{max-width:620px}

    .step-strip{
      display:grid;
      grid-template-columns:1.05fr .95fr 1.05fr;
      gap:18px;
      align-items:stretch;
    }
    .step-card,
    .info-card,
    .list-card,
    .mini-card{
      background:rgba(255,255,255,.86);
      border:1px solid rgba(255,138,101,.16);
      border-radius:var(--radius);
      box-shadow:0 12px 32px rgba(255,138,101,.10);
      transition:.22s ease;
    }
    .step-card:hover,
    .info-card:hover,
    .list-card:hover,
    .mini-card:hover{
      transform:translateY(-4px);
      border-color:rgba(255,138,101,.32);
      box-shadow:var(--shadow);
    }
    .step-card{
      padding:24px;
      position:relative;
      overflow:hidden;
    }
    .step-card::after{
      content:"";
      position:absolute;
      right:-26px;
      top:-26px;
      width:84px;
      height:84px;
      border-radius:28px;
      background:rgba(255,214,107,.20);
      transform:rotate(14deg);
    }
    .step-num{
      display:inline-grid;
      place-items:center;
      width:48px;
      height:48px;
      border-radius:18px;
      background:linear-gradient(135deg,var(--primary),var(--primary-2));
      color:#fff;
      font-weight:900;
      margin-bottom:18px;
      box-shadow:0 12px 24px rgba(255,122,144,.18);
    }
    .step-card:nth-child(2) .step-num{background:linear-gradient(135deg,var(--mint),#79dcc8)}
    .step-card:nth-child(3) .step-num{background:linear-gradient(135deg,var(--purple),#b29cff)}
    .step-card p{color:var(--muted);margin-bottom:0}

    .matrix-wrap{
      display:grid;
      grid-template-columns:1.3fr .7fr;
      gap:20px;
      align-items:stretch;
    }
    .bento-main{
      padding:28px;
      border-radius:var(--radius-lg);
      background:
        linear-gradient(135deg,rgba(255,255,255,.92),rgba(255,240,232,.72)),
        radial-gradient(circle at 88% 16%,rgba(85,205,180,.18),transparent 170px);
      border:1px solid rgba(255,138,101,.18);
      box-shadow:var(--shadow);
      min-height:330px;
    }
    .chip-row{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
      margin:20px 0 24px;
    }
    .chip{
      display:inline-flex;
      align-items:center;
      min-height:36px;
      padding:8px 13px;
      border-radius:999px;
      background:#fff;
      color:var(--muted);
      border:1px solid rgba(255,138,101,.16);
      font-size:13px;
      font-weight:800;
    }
    .chip.active{
      color:#d95f43;
      background:rgba(255,138,101,.13);
      border-color:rgba(255,138,101,.28);
    }
    .notice-list{
      display:grid;
      gap:12px;
      margin:0;
      padding:0;
      list-style:none;
    }
    .notice-list li{
      display:flex;
      gap:12px;
      align-items:flex-start;
      padding:14px;
      border-radius:18px;
      background:rgba(255,255,255,.76);
      border:1px solid rgba(240,222,213,.78);
    }
    .check{
      width:24px;
      height:24px;
      border-radius:50%;
      flex:0 0 24px;
      display:grid;
      place-items:center;
      color:#fff;
      background:var(--mint);
      font-size:14px;
      font-weight:900;
      margin-top:2px;
    }
    .side-stack{
      display:grid;
      gap:16px;
    }
    .mini-card{
      padding:20px;
      overflow:hidden;
      position:relative;
    }
    .mini-card strong{
      display:block;
      font-size:26px;
      line-height:1;
      color:#d95f43;
      margin-bottom:8px;
    }
    .mini-card span{color:var(--muted);font-size:14px}
    .mini-card.mint strong{color:#129b83}
    .mini-card.purple strong{color:var(--purple)}

    .content-grid{
      display:grid;
      grid-template-columns:.8fr 1.2fr;
      gap:20px;
    }
    .info-card{
      padding:26px;
      min-height:100%;
    }
    .info-card.highlight{
      background:
        linear-gradient(145deg,rgba(255,138,101,.12),rgba(255,255,255,.92)),
        radial-gradient(circle at 88% 18%,rgba(255,214,107,.24),transparent 150px);
      border-radius:var(--radius-lg);
    }
    .info-card p,.list-card p{color:var(--muted);margin-bottom:0}
    .card-link{
      display:inline-flex;
      align-items:center;
      gap:6px;
      color:#d95f43;
      font-weight:900;
      margin-top:18px;
    }
    .card-link:hover{gap:10px;color:#c65037}
    .list-stack{
      display:grid;
      gap:14px;
    }
    .list-card{
      display:grid;
      grid-template-columns:auto 1fr auto;
      gap:16px;
      align-items:center;
      padding:18px;
    }
    .list-card .icon-pill{background:var(--primary-soft);color:#d95f43}
    .list-card:nth-child(2) .icon-pill{background:var(--mint-soft);color:#129b83}
    .list-card:nth-child(3) .icon-pill{background:rgba(142,124,255,.12);color:var(--purple)}
    .status-badge{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      padding:7px 10px;
      border-radius:999px;
      background:rgba(85,205,180,.13);
      color:#129b83;
      font-size:12px;
      font-weight:900;
      white-space:nowrap;
    }

    .guide-band{
      border-radius:var(--radius-lg);
      padding:30px;
      background:
        linear-gradient(135deg,rgba(255,255,255,.90),rgba(233,251,246,.78)),
        radial-gradient(circle at 10% 90%,rgba(255,214,107,.24),transparent 130px);
      border:1px solid rgba(85,205,180,.18);
      box-shadow:0 16px 42px rgba(85,205,180,.10);
    }
    .timeline{
      position:relative;
      display:grid;
      gap:16px;
      margin-top:24px;
    }
    .timeline-item{
      display:grid;
      grid-template-columns:72px 1fr;
      gap:16px;
      align-items:start;
    }
    .timeline-code{
      border-radius:999px;
      padding:8px 12px;
      text-align:center;
      background:#fff;
      color:#129b83;
      font-weight:900;
      border:1px solid rgba(85,205,180,.22);
      box-shadow:0 8px 18px rgba(85,205,180,.08);
    }
    .timeline-body{
      padding:16px 18px;
      border-radius:20px;
      background:rgba(255,255,255,.72);
      border:1px solid rgba(233,236,232,.92);
    }
    .timeline-body p{margin:0;color:var(--muted)}

    .faq-section{
      background:
        linear-gradient(180deg,rgba(255,240,232,.46),rgba(255,253,249,.62));
      border-top:1px solid rgba(240,222,213,.60);
      border-bottom:1px solid rgba(240,222,213,.60);
    }
    .accordion{
      display:grid;
      gap:12px;
    }
    .accordion-item{
      border:1px solid rgba(255,138,101,.16)!important;
      border-radius:20px!important;
      overflow:hidden;
      background:rgba(255,255,255,.88);
      box-shadow:0 10px 24px rgba(255,138,101,.08);
    }
    .accordion-button{
      min-height:60px;
      color:var(--text);
      font-weight:800;
      background:rgba(255,255,255,.88);
      border:0;
      box-shadow:none!important;
      padding:18px 20px;
      letter-spacing:0;
    }
    .accordion-button:not(.collapsed){
      color:#d95f43;
      background:rgba(255,138,101,.11);
    }
    .accordion-button:focus{box-shadow:var(--focus)!important}
    .accordion-button::after{
      filter:sepia(1) saturate(2) hue-rotate(320deg);
    }
    .accordion-body{
      color:var(--muted);
      padding:0 20px 20px;
      line-height:1.85;
      background:rgba(255,255,255,.88);
    }

    .cta-panel{
      position:relative;
      overflow:hidden;
      border-radius:var(--radius-lg);
      background:
        radial-gradient(circle at 18% 18%,rgba(255,255,255,.50),transparent 120px),
        linear-gradient(135deg,rgba(255,138,101,.92),rgba(255,122,144,.88));
      color:#fff;
      padding:36px;
      box-shadow:var(--shadow-strong);
    }
    .cta-panel::before{
      content:"";
      position:absolute;
      right:34px;
      top:24px;
      width:150px;
      height:150px;
      border-radius:38px;
      background:
        linear-gradient(90deg,rgba(255,255,255,.20) 1px,transparent 1px),
        linear-gradient(180deg,rgba(255,255,255,.18) 1px,transparent 1px);
      background-size:18px 18px;
      transform:rotate(10deg);
    }
    .cta-panel h2,
    .cta-panel p{position:relative;z-index:1}
    .cta-panel p{color:rgba(255,255,255,.90)}
    .subscribe-form{
      position:relative;
      z-index:1;
      display:grid;
      grid-template-columns:1fr auto;
      gap:12px;
      margin-top:24px;
    }
    .form-control{
      min-height:52px;
      border-radius:999px;
      border:1px solid rgba(255,138,101,.20);
      background:rgba(255,255,255,.92);
      padding:12px 18px;
      color:var(--text);
      box-shadow:inset 0 2px 6px rgba(44,42,50,.04);
    }
    .form-control::placeholder{color:#9b929c}
    .form-note{
      position:relative;
      z-index:1;
      margin:12px 0 0;
      font-size:13px;
      color:rgba(255,255,255,.86);
      line-height:1.7;
    }

    .footer{
      background:rgba(255,250,246,.96);
      border-top:1px solid rgba(240,222,213,.78);
      padding:44px 0 24px;
    }
    .footer-top{
      display:grid;
      grid-template-columns:1fr 1.1fr;
      gap:34px;
      align-items:start;
      padding-bottom:28px;
      border-bottom:1px solid rgba(240,222,213,.78);
    }
    .footer-brand p{
      max-width:520px;
      margin:16px 0 0;
      color:var(--muted);
      font-size:14px;
      line-height:1.8;
    }
    .footer-links{
      display:flex;
      flex-wrap:wrap;
      justify-content:flex-end;
      gap:10px;
    }
    .footer-links a{
      padding:8px 12px;
      border-radius:999px;
      color:var(--muted);
      font-weight:700;
      font-size:14px;
      background:rgba(255,255,255,.58);
      border:1px solid rgba(240,222,213,.72);
    }
    .footer-links a:hover{
      color:#d95f43;
      background:rgba(255,138,101,.10);
      transform:translateY(-1px);
    }
    .footer-bottom{
      display:flex;
      justify-content:space-between;
      gap:18px;
      flex-wrap:wrap;
      padding-top:22px;
      color:#857b84;
      font-size:13px;
    }
    .footer-bottom a{color:#d95f43;font-weight:700}
    .footer-bottom a:hover{color:#c65037}

    @media (max-width: 991.98px){
      .navbar-collapse{
        margin-top:14px;
        padding:14px;
        border-radius:22px;
        background:rgba(255,255,255,.94);
        border:1px solid rgba(255,138,101,.16);
        box-shadow:var(--shadow);
      }
      .navbar-nav{align-items:stretch!important}
      .nav-link{display:block}
      .page-hero-panel{padding:30px}
      .cover-card{min-height:320px;margin-top:24px}
      .section-head{display:block}
      .section-head .lead{margin-top:10px}
      .step-strip,.matrix-wrap,.content-grid{grid-template-columns:1fr}
      .list-card{grid-template-columns:auto 1fr}
      .list-card .status-badge{grid-column:2;justify-self:start}
      .footer-top{grid-template-columns:1fr}
      .footer-links{justify-content:flex-start}
    }
    @media (max-width: 767.98px){
      .section{padding:56px 0}
      .section-sm{padding:42px 0}
      .page-hero{padding:24px 0 48px}
      .page-hero-panel{padding:24px;border-radius:26px}
      .hero-actions .btn-brand,
      .hero-actions .btn-ghost{width:100%}
      .countdown{grid-template-columns:repeat(3,minmax(0,1fr))}
      .cover-title{font-size:24px}
      .bento-main,.guide-band,.cta-panel{padding:24px;border-radius:26px}
      .subscribe-form{grid-template-columns:1fr}
      .subscribe-form .btn-brand{width:100%}
      .timeline-item{grid-template-columns:1fr}
      .timeline-code{justify-self:start}
      .footer-bottom{display:block}
      .footer-bottom div + div{margin-top:10px}
    }
    @media (max-width: 520px){
      .navbar-brand{font-size:16px}
      .brand-mark{width:34px;height:34px;flex-basis:34px;border-radius:12px}
      .brand-mark::after{left:12px;top:9px;border-top-width:7px;border-bottom-width:7px;border-left-width:11px}
      .tag-row,.chip-row{gap:8px}
      .tag,.chip{font-size:12px}
      .remind-box{align-items:flex-start}
      .section-head{margin-bottom:22px}
      .list-card{padding:16px}
      .cover-card{padding:20px}
    }

/* roulang page: category2 */
:root {
      --primary: #ff8a65;
      --primary-strong: #ff6f7f;
      --primary-soft: #fff0e9;
      --mint: #55cdb4;
      --mint-soft: #e9fbf6;
      --violet: #8e7cff;
      --yellow: #ffd66b;
      --bg: #fff8f3;
      --bg-light: #fffdf9;
      --surface: #ffffff;
      --text: #2c2a32;
      --muted: #6f6a75;
      --border: #f0ded5;
      --border-strong: rgba(255, 138, 101, .28);
      --shadow: 0 16px 42px rgba(255, 138, 101, .13);
      --shadow-hover: 0 22px 54px rgba(255, 111, 127, .18);
      --radius-lg: 28px;
      --radius-md: 22px;
      --radius-sm: 16px;
      --container: 1200px;
      --font: system-ui, -apple-system, BlinkMacSystemFont, "PingFang SC", "Microsoft YaHei", "Noto Sans SC", sans-serif;
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      font-family: var(--font);
      color: var(--text);
      background:
        radial-gradient(circle at 8% 10%, rgba(255, 214, 107, .28), transparent 28%),
        radial-gradient(circle at 88% 16%, rgba(85, 205, 180, .20), transparent 26%),
        linear-gradient(180deg, var(--bg) 0%, var(--bg-light) 48%, #fff8f3 100%);
      line-height: 1.8;
      overflow-x: hidden;
    }

    a {
      color: inherit;
      text-decoration: none;
      transition: color .22s ease, background-color .22s ease, transform .22s ease, box-shadow .22s ease;
    }

    img,
    svg {
      max-width: 100%;
      display: block;
    }

    button,
    input,
    textarea {
      font: inherit;
    }

    button:focus-visible,
    a:focus-visible,
    input:focus-visible,
    textarea:focus-visible {
      outline: 3px solid rgba(85, 205, 180, .45);
      outline-offset: 3px;
    }

    .container {
      max-width: var(--container);
      padding-left: 20px;
      padding-right: 20px;
    }

    .site-header {
      position: sticky;
      top: 0;
      z-index: 1000;
      background: rgba(255, 253, 249, .88);
      backdrop-filter: blur(14px);
      border-bottom: 1px solid rgba(240, 222, 213, .8);
      box-shadow: 0 8px 28px rgba(44, 42, 50, .04);
    }

    .site-navbar {
      min-height: 76px;
      padding: 12px 0;
    }

    .navbar-brand {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      color: var(--text);
      font-weight: 800;
      font-size: 18px;
      letter-spacing: 0;
      white-space: normal;
    }

    .brand-mark {
      width: 42px;
      height: 42px;
      flex: 0 0 42px;
      border-radius: 16px;
      background:
        linear-gradient(135deg, var(--primary) 0%, var(--primary-strong) 55%, var(--yellow) 100%);
      box-shadow: 0 10px 26px rgba(255, 138, 101, .26);
      position: relative;
    }

    .brand-mark::before {
      content: "";
      position: absolute;
      left: 14px;
      top: 11px;
      width: 0;
      height: 0;
      border-left: 13px solid #fff;
      border-top: 9px solid transparent;
      border-bottom: 9px solid transparent;
      filter: drop-shadow(0 2px 4px rgba(44, 42, 50, .14));
    }

    .brand-mark::after {
      content: "";
      position: absolute;
      right: 8px;
      bottom: 8px;
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--mint);
      border: 2px solid rgba(255, 255, 255, .85);
    }

    .navbar-toggler {
      border: 1px solid var(--border);
      border-radius: 14px;
      padding: 9px 11px;
      background: #fff;
      box-shadow: 0 8px 20px rgba(44, 42, 50, .06);
    }

    .navbar-toggler:focus {
      box-shadow: 0 0 0 4px rgba(255, 138, 101, .16);
    }

    .navbar-toggler-icon {
      width: 1.2em;
      height: 1.2em;
      background-image: none;
      position: relative;
    }

    .navbar-toggler-icon::before,
    .navbar-toggler-icon::after {
      content: "";
      position: absolute;
      left: 0;
      width: 100%;
      height: 2px;
      border-radius: 999px;
      background: var(--text);
    }

    .navbar-toggler-icon::before {
      top: 4px;
      box-shadow: 0 6px 0 var(--text);
    }

    .navbar-toggler-icon::after {
      bottom: 2px;
    }

    .navbar-nav {
      gap: 10px;
    }

    .nav-link {
      color: var(--muted);
      font-weight: 700;
      padding: 10px 16px !important;
      border-radius: 999px;
      line-height: 1.35;
    }

    .nav-link:hover {
      color: var(--primary-strong);
      background: rgba(255, 138, 101, .10);
      transform: translateY(-1px);
    }

    .nav-link.active {
      color: var(--primary-strong);
      background: var(--primary-soft);
      box-shadow: inset 0 0 0 1px rgba(255, 138, 101, .16);
    }

    .page-hero {
      position: relative;
      padding: 42px 0 34px;
    }

    .hero-kv {
      position: relative;
      overflow: hidden;
      border-radius: 34px;
      min-height: 520px;
      padding: 34px;
      background:
        linear-gradient(135deg, rgba(255, 248, 243, .96) 0%, rgba(255, 237, 229, .96) 48%, rgba(235, 251, 246, .96) 100%),
        radial-gradient(circle at 78% 18%, rgba(142, 124, 255, .22), transparent 30%);
      border: 1px solid var(--border-strong);
      box-shadow: var(--shadow);
    }

    .hero-kv::before {
      content: "";
      position: absolute;
      inset: 20px;
      border-radius: 28px;
      background-image:
        linear-gradient(rgba(255, 138, 101, .10) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 138, 101, .10) 1px, transparent 1px);
      background-size: 34px 34px;
      mask-image: linear-gradient(90deg, transparent, #000 18%, #000 82%, transparent);
      opacity: .45;
      pointer-events: none;
    }

    .hero-kv::after {
      content: "";
      position: absolute;
      right: -70px;
      top: -70px;
      width: 250px;
      height: 250px;
      border-radius: 50%;
      background: rgba(255, 214, 107, .34);
      pointer-events: none;
    }

    .hero-content {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: minmax(0, 1.05fr) minmax(340px, .95fr);
      gap: 34px;
      align-items: center;
      min-height: 452px;
    }

    .breadcrumb-wrap {
      display: inline-flex;
      align-items: center;
      flex-wrap: wrap;
      gap: 8px;
      font-size: 14px;
      color: var(--muted);
      margin-bottom: 18px;
    }

    .breadcrumb-wrap a {
      color: var(--muted);
      padding: 5px 10px;
      border-radius: 999px;
      background: rgba(255, 255, 255, .62);
      border: 1px solid rgba(240, 222, 213, .72);
    }

    .breadcrumb-wrap a:hover {
      color: var(--primary-strong);
      background: #fff;
    }

    .breadcrumb-wrap span:last-child {
      color: var(--primary-strong);
      font-weight: 800;
    }

    .hero-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 8px 14px;
      border-radius: 999px;
      color: #a64f34;
      background: rgba(255, 255, 255, .76);
      border: 1px solid rgba(255, 138, 101, .20);
      font-size: 14px;
      font-weight: 800;
      margin-bottom: 18px;
    }

    .hero-eyebrow::before {
      content: "";
      width: 9px;
      height: 9px;
      border-radius: 50%;
      background: var(--mint);
      box-shadow: 0 0 0 6px rgba(85, 205, 180, .16);
    }

    h1 {
      margin: 0;
      max-width: 760px;
      font-size: clamp(32px, 4vw, 48px);
      line-height: 1.2;
      font-weight: 800;
      letter-spacing: 0;
      color: var(--text);
    }

    .text-gradient {
      color: transparent;
      background: linear-gradient(90deg, var(--primary-strong), var(--primary), var(--violet));
      -webkit-background-clip: text;
      background-clip: text;
    }

    .hero-lead {
      max-width: 720px;
      margin: 18px 0 0;
      color: var(--muted);
      font-size: 17px;
      line-height: 1.9;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-top: 28px;
    }

    .btn-custom {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      min-height: 50px;
      padding: 12px 22px;
      border-radius: 999px;
      font-weight: 800;
      border: 1px solid transparent;
      transition: transform .22s ease, box-shadow .22s ease, background-color .22s ease, border-color .22s ease;
      white-space: nowrap;
    }

    .btn-primary-custom {
      color: #fff;
      background: linear-gradient(135deg, var(--primary) 0%, var(--primary-strong) 100%);
      box-shadow: 0 14px 30px rgba(255, 111, 127, .24);
    }

    .btn-primary-custom:hover {
      color: #fff;
      transform: translateY(-2px);
      box-shadow: 0 18px 38px rgba(255, 111, 127, .32);
    }

    .btn-outline-custom {
      color: var(--primary-strong);
      background: rgba(255, 255, 255, .78);
      border-color: rgba(255, 138, 101, .30);
    }

    .btn-outline-custom:hover {
      color: var(--primary-strong);
      background: #fff2eb;
      border-color: rgba(255, 138, 101, .46);
      transform: translateY(-2px);
    }

    .tag-row {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 22px;
    }

    .tag-pill,
    .status-badge {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 7px 12px;
      border-radius: 999px;
      font-size: 13px;
      font-weight: 800;
      color: #a64f34;
      background: rgba(255, 255, 255, .72);
      border: 1px solid rgba(255, 138, 101, .16);
    }

    .status-badge.mint {
      color: #1d8d78;
      background: var(--mint-soft);
      border-color: rgba(85, 205, 180, .24);
    }

    .status-badge.violet {
      color: #6252ce;
      background: rgba(142, 124, 255, .12);
      border-color: rgba(142, 124, 255, .20);
    }

    .update-panel {
      position: relative;
      z-index: 1;
      display: grid;
      gap: 16px;
    }

    .countdown-strip {
      display: grid;
      grid-template-columns: auto 1fr auto;
      gap: 14px;
      align-items: center;
      padding: 16px;
      border-radius: 24px;
      background: rgba(255, 255, 255, .82);
      border: 1px solid rgba(255, 138, 101, .20);
      box-shadow: 0 14px 34px rgba(44, 42, 50, .06);
    }

    .count-label {
      font-size: 13px;
      color: var(--muted);
      font-weight: 800;
    }

    .count-value {
      display: inline-flex;
      gap: 8px;
      justify-content: center;
      color: var(--text);
      font-weight: 900;
      font-size: 18px;
    }

    .count-value span {
      min-width: 42px;
      text-align: center;
      padding: 6px 8px;
      border-radius: 12px;
      background: var(--primary-soft);
      color: var(--primary-strong);
    }

    .matrix {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 14px;
    }

    .matrix-card,
    .info-card,
    .bento-card,
    .timeline-item,
    .notice-card {
      border-radius: var(--radius-md);
      background: rgba(255, 255, 255, .86);
      border: 1px solid rgba(255, 138, 101, .16);
      box-shadow: 0 12px 32px rgba(255, 138, 101, .10);
      transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
    }

    .matrix-card {
      padding: 18px;
      min-height: 142px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .matrix-card:hover,
    .info-card:hover,
    .bento-card:hover,
    .timeline-item:hover,
    .notice-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-hover);
      border-color: rgba(255, 138, 101, .36);
    }

    .matrix-num {
      width: 42px;
      height: 42px;
      border-radius: 15px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      font-weight: 900;
      background: linear-gradient(135deg, var(--primary), var(--primary-strong));
    }

    .matrix-card:nth-child(2) .matrix-num,
    .matrix-card:nth-child(4) .matrix-num {
      background: linear-gradient(135deg, var(--mint), #7ee0cd);
    }

    .matrix-card h2 {
      margin: 14px 0 6px;
      font-size: 18px;
      font-weight: 800;
    }

    .matrix-card p {
      margin: 0;
      color: var(--muted);
      font-size: 14px;
      line-height: 1.65;
    }

    main {
      position: relative;
    }

    .section {
      padding: 74px 0;
    }

    .section.compact {
      padding-top: 36px;
    }

    .section-head {
      max-width: 780px;
      margin-bottom: 30px;
    }

    .section-kicker {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      margin-bottom: 12px;
      color: var(--primary-strong);
      font-size: 14px;
      font-weight: 900;
    }

    .section-kicker::before {
      content: "";
      width: 22px;
      height: 3px;
      border-radius: 999px;
      background: var(--primary);
    }

    h2.section-title {
      margin: 0;
      font-size: clamp(26px, 3vw, 34px);
      line-height: 1.28;
      font-weight: 800;
      letter-spacing: 0;
    }

    .section-desc {
      margin: 12px 0 0;
      color: var(--muted);
      font-size: 16px;
      max-width: 760px;
    }

    .status-grid {
      display: grid;
      grid-template-columns: 1.15fr .85fr;
      gap: 22px;
      align-items: stretch;
    }

    .notice-card {
      padding: 26px;
      background:
        linear-gradient(145deg, rgba(255, 255, 255, .92), rgba(255, 248, 243, .88));
    }

    .notice-card.large {
      min-height: 310px;
    }

    .notice-card h3,
    .info-card h3,
    .bento-card h3,
    .timeline-item h3 {
      margin: 12px 0 8px;
      font-size: 21px;
      line-height: 1.35;
      font-weight: 800;
    }

    .notice-card p,
    .info-card p,
    .bento-card p,
    .timeline-item p {
      color: var(--muted);
      margin: 0;
      font-size: 15.5px;
      line-height: 1.78;
    }

    .notice-list {
      display: grid;
      gap: 12px;
      margin: 22px 0 0;
      padding: 0;
      list-style: none;
    }

    .notice-list li {
      display: flex;
      gap: 12px;
      padding: 14px;
      border-radius: 18px;
      background: rgba(255, 255, 255, .68);
      border: 1px solid rgba(240, 222, 213, .78);
      color: var(--muted);
    }

    .check-dot {
      width: 24px;
      height: 24px;
      flex: 0 0 24px;
      border-radius: 50%;
      background: var(--mint);
      color: #fff;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 13px;
      font-weight: 900;
    }

    .side-stack {
      display: grid;
      gap: 18px;
    }

    .mini-stat {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      padding: 20px;
      border-radius: var(--radius-md);
      background: #fff;
      border: 1px solid rgba(85, 205, 180, .18);
      box-shadow: 0 12px 30px rgba(85, 205, 180, .10);
    }

    .mini-stat strong {
      display: block;
      font-size: 28px;
      line-height: 1;
      color: var(--primary-strong);
    }

    .mini-stat span {
      color: var(--muted);
      font-size: 14px;
      font-weight: 700;
    }

    .timeline {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 18px;
      position: relative;
    }

    .timeline-item {
      padding: 22px;
      position: relative;
      overflow: hidden;
    }

    .timeline-item::after {
      content: "";
      position: absolute;
      right: -24px;
      top: -24px;
      width: 90px;
      height: 90px;
      border-radius: 28px;
      background: rgba(255, 214, 107, .20);
      transform: rotate(16deg);
    }

    .timeline-step {
      position: relative;
      z-index: 1;
      width: 48px;
      height: 48px;
      border-radius: 17px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: var(--primary-soft);
      color: var(--primary-strong);
      font-weight: 900;
      border: 1px solid rgba(255, 138, 101, .18);
    }

    .bento-grid {
      display: grid;
      grid-template-columns: 1.1fr .9fr;
      gap: 20px;
    }

    .bento-column {
      display: grid;
      gap: 20px;
    }

    .bento-card {
      padding: 24px;
      overflow: hidden;
      position: relative;
    }

    .bento-card.feature {
      min-height: 365px;
      background:
        linear-gradient(145deg, rgba(255, 255, 255, .94), rgba(255, 240, 233, .86)),
        radial-gradient(circle at 90% 20%, rgba(142, 124, 255, .18), transparent 34%);
    }

    .bento-card.feature::before {
      content: "";
      position: absolute;
      right: 24px;
      bottom: 24px;
      width: 148px;
      height: 148px;
      border-radius: 36px;
      background:
        linear-gradient(135deg, rgba(255, 138, 101, .18), rgba(85, 205, 180, .20));
      transform: rotate(10deg);
    }

    .card-link {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      margin-top: 18px;
      color: var(--primary-strong);
      font-weight: 900;
      font-size: 14px;
    }

    .card-link:hover {
      color: #e75d6c;
      transform: translateX(3px);
    }

    .problem-grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 18px;
    }

    .info-card {
      padding: 22px;
      background: rgba(255, 255, 255, .9);
    }

    .icon-box {
      width: 46px;
      height: 46px;
      border-radius: 17px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      color: var(--primary-strong);
      background: var(--primary-soft);
      font-weight: 900;
      margin-bottom: 12px;
    }

    .info-card:nth-child(even) .icon-box {
      color: #1d8d78;
      background: var(--mint-soft);
    }

    .accordion {
      display: grid;
      gap: 12px;
    }

    .accordion-item {
      border: 1px solid rgba(255, 138, 101, .16);
      border-radius: 18px !important;
      overflow: hidden;
      background: rgba(255, 255, 255, .9);
      box-shadow: 0 10px 28px rgba(44, 42, 50, .05);
    }

    .accordion-button {
      padding: 18px 20px;
      color: var(--text);
      font-weight: 800;
      background: rgba(255, 255, 255, .9);
      box-shadow: none !important;
      line-height: 1.45;
    }

    .accordion-button:not(.collapsed) {
      color: var(--primary-strong);
      background: var(--primary-soft);
    }

    .accordion-button::after {
      border-radius: 50%;
      background-color: rgba(255, 138, 101, .13);
      background-position: center;
      padding: 12px;
    }

    .accordion-body {
      padding: 0 20px 20px;
      color: var(--muted);
      line-height: 1.85;
      background: rgba(255, 255, 255, .9);
    }

    .cta-panel {
      position: relative;
      overflow: hidden;
      border-radius: 34px;
      padding: 34px;
      background:
        linear-gradient(135deg, rgba(255, 138, 101, .18), rgba(255, 111, 127, .14) 45%, rgba(85, 205, 180, .16)),
        #fff;
      border: 1px solid rgba(255, 138, 101, .22);
      box-shadow: var(--shadow);
    }

    .cta-panel::before {
      content: "";
      position: absolute;
      right: -42px;
      bottom: -42px;
      width: 170px;
      height: 170px;
      border-radius: 50%;
      background: rgba(255, 214, 107, .30);
    }

    .cta-grid {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: .92fr 1.08fr;
      gap: 28px;
      align-items: center;
    }

    .cta-panel h2 {
      margin: 0 0 12px;
      font-size: clamp(26px, 3vw, 34px);
      line-height: 1.3;
      font-weight: 800;
    }

    .cta-panel p {
      margin: 0;
      color: var(--muted);
      font-size: 16px;
    }

    .feedback-form {
      display: grid;
      gap: 12px;
      padding: 18px;
      border-radius: 24px;
      background: rgba(255, 255, 255, .72);
      border: 1px solid rgba(255, 255, 255, .84);
    }

    .form-control {
      min-height: 52px;
      border-radius: 18px;
      border: 1px solid rgba(240, 222, 213, .95);
      background-color: #fffdf9;
      color: var(--text);
      padding: 12px 16px;
      box-shadow: inset 0 2px 8px rgba(44, 42, 50, .03);
    }

    textarea.form-control {
      min-height: 108px;
      resize: vertical;
      border-radius: 20px;
    }

    .form-control:focus {
      border-color: rgba(255, 138, 101, .55);
      box-shadow: 0 0 0 4px rgba(255, 138, 101, .14);
      background-color: #fff;
    }

    .form-note {
      margin: 2px 0 0;
      color: var(--muted);
      font-size: 13px;
      line-height: 1.6;
    }

    .footer {
      margin-top: 34px;
      padding: 54px 0 28px;
      background:
        linear-gradient(180deg, rgba(255, 253, 249, .4), rgba(255, 240, 233, .72)),
        #fffdf9;
      border-top: 1px solid rgba(240, 222, 213, .85);
    }

    .footer-top {
      display: grid;
      grid-template-columns: 1.1fr .9fr;
      gap: 34px;
      align-items: start;
      padding-bottom: 28px;
      border-bottom: 1px solid rgba(240, 222, 213, .8);
    }

    .footer-brand p {
      margin: 16px 0 0;
      max-width: 560px;
      color: var(--muted);
      font-size: 15px;
      line-height: 1.85;
    }

    .footer-links {
      display: flex;
      flex-wrap: wrap;
      justify-content: flex-end;
      gap: 10px;
    }

    .footer-links a,
    .footer-bottom a {
      color: var(--muted);
      border-radius: 999px;
    }

    .footer-links a {
      padding: 8px 12px;
      background: rgba(255, 255, 255, .58);
      border: 1px solid rgba(240, 222, 213, .72);
      font-weight: 700;
      font-size: 14px;
    }

    .footer-links a:hover,
    .footer-bottom a:hover {
      color: var(--primary-strong);
      background: var(--primary-soft);
    }

    .footer-bottom {
      display: flex;
      justify-content: space-between;
      gap: 18px;
      padding-top: 22px;
      color: var(--muted);
      font-size: 14px;
      flex-wrap: wrap;
    }

    @media (max-width: 1024px) {
      .hero-content,
      .status-grid,
      .bento-grid,
      .cta-grid {
        grid-template-columns: 1fr;
      }

      .hero-kv {
        min-height: auto;
      }

      .problem-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .timeline {
        grid-template-columns: 1fr;
      }

      .countdown-strip {
        grid-template-columns: 1fr;
        text-align: center;
      }
    }

    @media (max-width: 991.98px) {
      .navbar-collapse {
        margin-top: 12px;
        padding: 14px;
        border-radius: 22px;
        background: rgba(255, 255, 255, .94);
        border: 1px solid rgba(240, 222, 213, .9);
        box-shadow: 0 18px 38px rgba(44, 42, 50, .08);
      }

      .navbar-nav {
        align-items: stretch !important;
      }

      .nav-link {
        text-align: left;
      }
    }

    @media (max-width: 768px) {
      .container {
        padding-left: 16px;
        padding-right: 16px;
      }

      .site-navbar {
        min-height: 68px;
      }

      .navbar-brand {
        font-size: 16px;
      }

      .brand-mark {
        width: 38px;
        height: 38px;
        flex-basis: 38px;
        border-radius: 14px;
      }

      .page-hero {
        padding-top: 24px;
      }

      .hero-kv,
      .cta-panel {
        border-radius: 26px;
        padding: 22px;
      }

      .hero-content {
        gap: 24px;
      }

      .hero-lead {
        font-size: 16px;
      }

      .hero-actions,
      .tag-row {
        align-items: stretch;
      }

      .btn-custom {
        width: 100%;
      }

      .matrix {
        grid-template-columns: 1fr;
      }

      .section {
        padding: 54px 0;
      }

      .problem-grid {
        grid-template-columns: 1fr;
      }

      .footer-top {
        grid-template-columns: 1fr;
      }

      .footer-links {
        justify-content: flex-start;
      }

      .footer-bottom {
        flex-direction: column;
      }
    }

    @media (max-width: 520px) {
      h1 {
        font-size: 31px;
      }

      h2.section-title,
      .cta-panel h2 {
        font-size: 25px;
      }

      .hero-kv,
      .cta-panel {
        padding: 18px;
      }

      .notice-card,
      .bento-card,
      .info-card,
      .timeline-item {
        padding: 20px;
      }

      .count-value {
        flex-wrap: wrap;
      }

      .count-value span {
        min-width: 39px;
      }
    }
