/* roulang page: index */
:root{
      --bg:#FFF7F5;
      --bg-alt:#FFF0F4;
      --panel:#FFFFFF;
      --panel-soft:#FFF4E8;
      --panel-rose:#FFF1F5;
      --text:#24151A;
      --muted:#7A5D64;
      --line:rgba(36,21,26,.10);
      --line-strong:rgba(240,68,122,.24);
      --primary:#F0447A;
      --primary-deep:#C92D5C;
      --accent:#FF8A3D;
      --violet:#7C3AED;
      --shadow:0 14px 36px rgba(240,68,122,.12);
      --shadow-strong:0 18px 44px rgba(240,68,122,.18);
      --radius:22px;
      --radius-sm:16px;
      --radius-xs:12px;
      --container:1240px;
      --ease:180ms ease;
    }

    html{scroll-behavior:smooth;}
    *{box-sizing:border-box;}
    html,body{margin:0;padding:0;}
    body{
      min-height:100vh;
      color:var(--text);
      font-family:system-ui,-apple-system,BlinkMacSystemFont,"PingFang SC","Microsoft YaHei","Noto Sans SC",Arial,sans-serif;
      line-height:1.75;
      background:
        linear-gradient(180deg, rgba(255,255,255,.72), rgba(255,255,255,0) 24%),
        repeating-linear-gradient(90deg, rgba(36,21,26,.025) 0, rgba(36,21,26,.025) 1px, transparent 1px, transparent 96px),
        repeating-linear-gradient(0deg, rgba(36,21,26,.018) 0, rgba(36,21,26,.018) 1px, transparent 1px, transparent 96px),
        var(--bg);
      letter-spacing:0;
    }
    body::before{
      content:"";
      position:fixed;
      inset:0;
      pointer-events:none;
      background:
        linear-gradient(135deg, rgba(240,68,122,.05), rgba(255,138,61,.03) 40%, transparent 68%);
      z-index:-1;
    }
    a{color:inherit;text-decoration:none;transition:color var(--ease), background var(--ease), border-color var(--ease), transform var(--ease), box-shadow var(--ease);}
    img{max-width:100%;display:block;}
    p{margin:0 0 1rem;}
    h1,h2,h3,h4,p,a,button,input,select,textarea{letter-spacing:0;}
    h1,h2,h3,h4{margin:0;color:var(--text);line-height:1.12;}
    h1{font-size:clamp(2.25rem,4vw,4rem);font-weight:800;}
    h2{font-size:clamp(1.75rem,3vw,2.65rem);font-weight:760;}
    h3{font-size:clamp(1.15rem,1.8vw,1.55rem);font-weight:700;}
    .grid-container{max-width:var(--container);}
    .section-band{padding:84px 0;}
    .section-band.tight{padding:72px 0;}
    .section-band.flush-top{padding-top:48px;}
    .section-title{
      display:flex;
      flex-wrap:wrap;
      align-items:flex-end;
      justify-content:space-between;
      gap:14px 24px;
      margin-bottom:28px;
    }
    .eyebrow{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:7px 12px;
      border-radius:999px;
      background:rgba(240,68,122,.10);
      color:var(--primary-deep);
      font-size:.88rem;
      font-weight:700;
      border:1px solid rgba(240,68,122,.16);
    }
    .section-title .lead{
      max-width:720px;
      color:var(--muted);
      font-size:1rem;
      margin:0;
    }

    .site-header{
      position:sticky;
      top:0;
      z-index:60;
      backdrop-filter:saturate(140%) blur(12px);
      background:rgba(255,247,245,.92);
      border-bottom:1px solid rgba(36,21,26,.08);
      box-shadow:0 1px 0 rgba(255,255,255,.6) inset;
    }
    .top-strip{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:18px;
      min-height:76px;
      padding:14px 0;
    }
    .brand{
      display:inline-flex;
      align-items:center;
      gap:12px;
      font-weight:800;
      color:var(--text);
      letter-spacing:0;
      white-space:nowrap;
    }
    .brand-mark{
      width:42px;
      height:42px;
      border-radius:14px;
      display:inline-flex;
      align-items:center;
      justify-content:center;
      color:#fff;
      background:linear-gradient(135deg, var(--primary), var(--accent));
      box-shadow:0 10px 24px rgba(240,68,122,.24);
      font-size:1rem;
      flex:none;
    }
    .brand-text{
      display:flex;
      flex-direction:column;
      line-height:1.05;
    }
    .brand-text small{
      display:block;
      margin-top:3px;
      color:var(--muted);
      font-weight:600;
      font-size:.78rem;
    }

    .nav-wrap{
      display:flex;
      align-items:center;
      gap:12px;
    }
    .nav-link{
      position:relative;
      display:inline-flex;
      align-items:center;
      min-height:42px;
      padding:10px 14px;
      border-radius:999px;
      color:var(--text);
      font-weight:700;
      border:1px solid transparent;
      transition:all var(--ease);
    }
    .nav-link:hover,
    .nav-link:focus-visible{
      background:rgba(240,68,122,.08);
      border-color:rgba(240,68,122,.14);
      color:var(--primary-deep);
      transform:translateY(-1px);
      outline:none;
    }
    .nav-link.active{
      background:rgba(240,68,122,.12);
      border-color:rgba(240,68,122,.18);
      color:var(--primary-deep);
      box-shadow:0 8px 22px rgba(240,68,122,.10);
    }
    .nav-link[data-slug]::after{
      content:"";
      position:absolute;
      left:14px;
      right:14px;
      bottom:8px;
      height:2px;
      background:transparent;
      border-radius:999px;
      transition:background var(--ease), transform var(--ease);
      transform:scaleX(0);
      transform-origin:center;
    }
    .nav-link[data-slug]:hover::after,
    .nav-link[data-slug]:focus-visible::after,
    .nav-link.active[data-slug]::after{
      background:var(--primary);
      transform:scaleX(1);
    }

    .header-actions{
      display:flex;
      align-items:center;
      gap:10px;
    }
    .mega-trigger,
    .menu-toggle{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:8px;
      min-height:42px;
      padding:10px 16px;
      border-radius:999px;
      border:1px solid rgba(240,68,122,.18);
      background:linear-gradient(180deg, #fff, #fff5f8);
      color:var(--text);
      font-weight:700;
      cursor:pointer;
      box-shadow:0 8px 22px rgba(240,68,122,.08);
      transition:all var(--ease);
    }
    .mega-trigger:hover,
    .mega-trigger:focus-visible,
    .menu-toggle:hover,
    .menu-toggle:focus-visible,
    .btn:hover,
    .btn:focus-visible{
      transform:translateY(-2px);
      outline:none;
      box-shadow:var(--shadow-strong);
    }
    .menu-toggle{
      display:none;
    }

    .mobile-drawer{
      display:none;
      border-top:1px solid rgba(36,21,26,.08);
      background:linear-gradient(180deg, rgba(255,255,255,.98), rgba(255,247,245,.98));
      padding:14px 0 18px;
    }
    .mobile-drawer.is-open{display:block;}
    .mobile-drawer a{
      display:flex;
      align-items:center;
      justify-content:space-between;
      min-height:44px;
      padding:10px 14px;
      border-radius:14px;
      font-weight:700;
      color:var(--text);
      background:transparent;
    }
    .mobile-drawer a + a{margin-top:6px;}
    .mobile-drawer a:hover,
    .mobile-drawer a:focus-visible{
      background:rgba(240,68,122,.08);
      color:var(--primary-deep);
      outline:none;
    }

    .mega-pane{
      position:absolute;
      top:calc(100% - 2px);
      right:0;
      width:min(680px, 92vw);
      border-radius:22px;
      border:1px solid rgba(36,21,26,.08);
      background:#fff;
      box-shadow:0 22px 56px rgba(36,21,26,.14);
      padding:18px;
      opacity:0;
      transform:translateY(12px);
      pointer-events:none;
      transition:all var(--ease);
      z-index:70;
    }
    .mega-pane.is-open{
      opacity:1;
      transform:translateY(0);
      pointer-events:auto;
    }
    .mega-head{
      display:flex;
      align-items:flex-start;
      justify-content:space-between;
      gap:12px;
      margin-bottom:14px;
    }
    .mega-head p{
      margin:0;
      color:var(--muted);
      font-size:.95rem;
    }
    .mega-grid{
      display:grid;
      grid-template-columns:repeat(2, minmax(0, 1fr));
      gap:12px;
    }
    .mega-card{
      display:flex;
      gap:12px;
      align-items:flex-start;
      padding:14px;
      border-radius:18px;
      border:1px solid rgba(240,68,122,.12);
      background:linear-gradient(180deg, #fff, #fff8fb);
      min-height:104px;
    }
    .mega-card:hover,
    .mega-card:focus-visible{
      border-color:rgba(240,68,122,.22);
      box-shadow:0 12px 26px rgba(240,68,122,.10);
      transform:translateY(-2px);
      outline:none;
    }
    .mega-icon{
      width:38px;
      height:38px;
      border-radius:14px;
      display:inline-flex;
      align-items:center;
      justify-content:center;
      background:linear-gradient(135deg, rgba(240,68,122,.16), rgba(255,138,61,.16));
      color:var(--primary-deep);
      flex:none;
      font-weight:800;
    }
    .mega-card strong{
      display:block;
      margin-bottom:4px;
      font-size:1rem;
    }
    .mega-card span{
      color:var(--muted);
      font-size:.9rem;
      line-height:1.55;
    }
    .mega-tag{
      display:inline-flex;
      margin-top:8px;
      padding:4px 8px;
      border-radius:999px;
      background:rgba(124,58,237,.08);
      color:var(--violet);
      font-size:.78rem;
      font-weight:700;
    }

    .hero-section{
      padding:58px 0 34px;
    }
    .hero-shell{
      position:relative;
      border-radius:28px;
      padding:28px;
      border:1px solid rgba(240,68,122,.10);
      background:
        linear-gradient(135deg, rgba(255,255,255,.96), rgba(255,244,247,.92) 52%, rgba(255,248,240,.88));
      box-shadow:var(--shadow);
      overflow:hidden;
    }
    .hero-shell::before{
      content:"";
      position:absolute;
      inset:0;
      background:
        linear-gradient(135deg, rgba(240,68,122,.06), transparent 28%),
        linear-gradient(215deg, rgba(255,138,61,.07), transparent 32%);
      pointer-events:none;
    }
    .hero-copy{
      position:relative;
      z-index:1;
      padding-right:8px;
    }
    .hero-copy h1{
      max-width:12ch;
      margin:12px 0 14px;
    }
    .hero-copy .intro{
      max-width:54rem;
      font-size:1.08rem;
      color:#4f3940;
      margin-bottom:18px;
    }
    .hero-tags{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
      margin:18px 0 22px;
    }
    .chip{
      display:inline-flex;
      align-items:center;
      min-height:36px;
      padding:8px 12px;
      border-radius:999px;
      background:#fff;
      border:1px solid rgba(36,21,26,.10);
      color:#5c434a;
      font-size:.88rem;
      font-weight:700;
      box-shadow:0 8px 22px rgba(36,21,26,.04);
    }
    .chip.primary{
      background:rgba(240,68,122,.10);
      border-color:rgba(240,68,122,.18);
      color:var(--primary-deep);
    }
    .chip.accent{
      background:rgba(255,138,61,.12);
      border-color:rgba(255,138,61,.18);
      color:#a54d12;
    }
    .chip.violet{
      background:rgba(124,58,237,.10);
      border-color:rgba(124,58,237,.18);
      color:var(--violet);
    }
    .cta-row{
      display:flex;
      flex-wrap:wrap;
      gap:12px;
      align-items:center;
      margin-bottom:18px;
    }
    .btn{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:8px;
      min-height:48px;
      padding:14px 20px;
      border-radius:999px;
      border:1px solid transparent;
      font-weight:800;
      line-height:1;
      cursor:pointer;
      transition:all var(--ease);
      letter-spacing:0;
    }
    .btn-primary{
      background:linear-gradient(135deg, var(--primary), #ff5b8c);
      color:#fff;
      box-shadow:0 14px 30px rgba(240,68,122,.22);
    }
    .btn-primary:hover,
    .btn-primary:focus-visible{
      background:linear-gradient(135deg, var(--primary-deep), #e73f76);
      color:#fff;
    }
    .btn-secondary{
      background:#fff;
      color:var(--text);
      border-color:rgba(240,68,122,.18);
    }
    .btn-secondary:hover,
    .btn-secondary:focus-visible{
      background:var(--bg-alt);
      border-color:rgba(240,68,122,.28);
      color:var(--primary-deep);
    }
    .btn-tertiary{
      background:transparent;
      border-color:rgba(36,21,26,.12);
      color:#4f3940;
    }
    .btn-tertiary:hover,
    .btn-tertiary:focus-visible{
      background:#fff;
      border-color:rgba(240,68,122,.20);
      color:var(--primary-deep);
    }
    .hero-points{
      display:flex;
      flex-wrap:wrap;
      gap:14px 18px;
      color:var(--muted);
      font-size:.94rem;
      font-weight:600;
    }
    .hero-points span{
      display:inline-flex;
      align-items:center;
      gap:8px;
    }
    .hero-points i{
      width:8px;
      height:8px;
      border-radius:999px;
      background:var(--primary);
      display:inline-block;
      box-shadow:0 0 0 4px rgba(240,68,122,.12);
    }

    .hero-stage{
      position:relative;
      z-index:1;
      display:grid;
      grid-template-columns:repeat(2, minmax(0, 1fr));
      gap:14px;
      align-items:stretch;
      margin-top:6px;
    }
    .stage-card{
      position:relative;
      overflow:hidden;
      border-radius:24px;
      background:#fff;
      border:1px solid rgba(240,68,122,.14);
      box-shadow:0 12px 28px rgba(240,68,122,.10);
      padding:14px;
      min-height:158px;
      transform:translateY(0);
      transition:transform var(--ease), box-shadow var(--ease), border-color var(--ease);
    }
    .stage-card:hover{
      transform:translateY(-3px);
      box-shadow:var(--shadow-strong);
      border-color:rgba(240,68,122,.24);
    }
    .stage-card.featured{
      grid-column:span 2;
      min-height:228px;
      background:
        linear-gradient(135deg, rgba(240,68,122,.10), rgba(255,255,255,.96) 42%, rgba(255,138,61,.08));
    }
    .stage-cover{
      border-radius:20px;
      aspect-ratio:16/8;
      margin-bottom:12px;
      background:
        linear-gradient(135deg, rgba(240,68,122,.92), rgba(255,138,61,.76));
      position:relative;
      overflow:hidden;
    }
    .stage-card:nth-child(2) .stage-cover{background:linear-gradient(135deg, rgba(124,58,237,.92), rgba(240,68,122,.72));}
    .stage-card:nth-child(3) .stage-cover{background:linear-gradient(135deg, rgba(255,138,61,.96), rgba(240,68,122,.72));}
    .stage-card:nth-child(4) .stage-cover{background:linear-gradient(135deg, rgba(240,68,122,.92), rgba(124,58,237,.72));}
    .stage-card:nth-child(5) .stage-cover{background:linear-gradient(135deg, rgba(255,138,61,.92), rgba(124,58,237,.72));}
    .stage-cover::before,
    .stage-cover::after{
      content:"";
      position:absolute;
      inset:auto;
      border-radius:999px;
      opacity:.18;
      background:#fff;
    }
    .stage-cover::before{
      width:120px;height:120px;right:-28px;top:-18px;
    }
    .stage-cover::after{
      width:82px;height:82px;left:14px;bottom:-20px;
    }
    .stage-meta{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:10px;
      margin-bottom:10px;
    }
    .rank{
      display:inline-flex;
      align-items:center;
      min-height:28px;
      padding:4px 10px;
      border-radius:999px;
      background:rgba(240,68,122,.10);
      color:var(--primary-deep);
      font-size:.76rem;
      font-weight:800;
      letter-spacing:0;
    }
    .stage-status{
      display:inline-flex;
      align-items:center;
      gap:6px;
      color:#7b5b62;
      font-size:.78rem;
      font-weight:700;
    }
    .stage-status::before{
      content:"";
      width:8px;height:8px;border-radius:999px;background:#22c55e;
      box-shadow:0 0 0 4px rgba(34,197,94,.12);
    }
    .stage-card h3{
      font-size:1.06rem;
      margin-bottom:6px;
    }
    .stage-card p{
      margin:0;
      color:var(--muted);
      font-size:.9rem;
      line-height:1.6;
    }

    .soft-band{
      padding:0 0 84px;
    }
    .panel{
      border-radius:26px;
      background:#fff;
      border:1px solid rgba(36,21,26,.08);
      box-shadow:var(--shadow);
      overflow:hidden;
    }
    .panel-inner{
      padding:24px;
    }
    .panel.alt{
      background:linear-gradient(180deg, #fff, #fff7f9);
    }
    .mini-kicker{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:6px 10px;
      border-radius:999px;
      background:rgba(255,138,61,.11);
      color:#b85b16;
      font-size:.8rem;
      font-weight:700;
      margin-bottom:12px;
    }
    .mini-kicker.pink{
      background:rgba(240,68,122,.10);
      color:var(--primary-deep);
    }
    .mini-kicker.violet{
      background:rgba(124,58,237,.10);
      color:var(--violet);
    }

    .entry-grid{
      display:grid;
      grid-template-columns:1.15fr .85fr;
      gap:18px;
      align-items:stretch;
    }
    .entry-lead{
      min-height:100%;
      background:
        linear-gradient(135deg, rgba(240,68,122,.10), rgba(255,255,255,.96) 48%, rgba(255,138,61,.08));
      border-radius:26px;
      border:1px solid rgba(240,68,122,.14);
      padding:24px;
      box-shadow:0 12px 30px rgba(240,68,122,.10);
      display:flex;
      flex-direction:column;
      justify-content:space-between;
      gap:18px;
    }
    .entry-lead p{
      color:var(--muted);
      margin:10px 0 0;
    }
    .entry-lead .lead-actions{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
    }
    .entry-stack{
      display:grid;
      grid-template-columns:repeat(2, minmax(0,1fr));
      gap:14px;
    }
    .entry-card{
      position:relative;
      overflow:hidden;
      min-height:198px;
      border-radius:24px;
      border:1px solid rgba(240,68,122,.14);
      background:#fff;
      padding:16px;
      box-shadow:0 10px 28px rgba(36,21,26,.05);
      display:flex;
      flex-direction:column;
      justify-content:flex-end;
      gap:12px;
      transition:transform var(--ease), box-shadow var(--ease), border-color var(--ease);
    }
    .entry-card:hover{
      transform:translateY(-3px);
      border-color:rgba(240,68,122,.24);
      box-shadow:var(--shadow);
    }
    .entry-card .cover{
      position:absolute;
      inset:0 0 auto 0;
      height:112px;
      background:linear-gradient(135deg, rgba(240,68,122,.92), rgba(255,138,61,.78));
    }
    .entry-card:nth-child(2) .cover{background:linear-gradient(135deg, rgba(124,58,237,.92), rgba(240,68,122,.70));}
    .entry-card:nth-child(3) .cover{background:linear-gradient(135deg, rgba(255,138,61,.94), rgba(240,68,122,.72));}
    .entry-card:nth-child(4) .cover{background:linear-gradient(135deg, rgba(240,68,122,.86), rgba(124,58,237,.74));}
    .entry-card .cover::before{
      content:"";
      position:absolute;
      width:120px;height:120px;
      border-radius:999px;
      right:-28px;top:-26px;
      background:rgba(255,255,255,.2);
    }
    .entry-card .cover::after{
      content:"";
      position:absolute;
      width:72px;height:72px;
      border-radius:20px;
      left:18px;bottom:-24px;
      background:rgba(255,255,255,.16);
      transform:rotate(12deg);
    }
    .entry-body{
      position:relative;
      z-index:1;
      padding-top:74px;
    }
    .entry-body h3{
      margin-bottom:6px;
      font-size:1.03rem;
    }
    .entry-body p{
      margin:0 0 10px;
      color:var(--muted);
      font-size:.9rem;
      line-height:1.55;
      min-height:3.2em;
    }
    .entry-card .entry-foot{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:10px;
      position:relative;
      z-index:1;
    }
    .entry-card .meta{
      color:#7b5b62;
      font-size:.78rem;
      font-weight:700;
    }

    .metrics-grid{
      display:grid;
      grid-template-columns:repeat(4, minmax(0,1fr));
      gap:14px;
    }
    .metric-card{
      border-radius:22px;
      background:
        linear-gradient(180deg, #fff, #fff7fb);
      border:1px solid rgba(240,68,122,.14);
      padding:18px 18px 16px;
      box-shadow:0 12px 28px rgba(240,68,122,.08);
      min-height:158px;
      position:relative;
      overflow:hidden;
    }
    .metric-card::before{
      content:"";
      position:absolute;
      inset:0 auto auto 0;
      width:100%;
      height:4px;
      background:linear-gradient(90deg, var(--primary), var(--accent), var(--violet));
    }
    .metric-number{
      font-size:clamp(2rem, 3vw, 2.9rem);
      font-weight:800;
      color:var(--primary);
      line-height:1.05;
      margin:6px 0 8px;
    }
    .metric-card h3{
      font-size:1rem;
      margin-bottom:6px;
    }
    .metric-card p{
      color:var(--muted);
      font-size:.92rem;
      margin:0;
    }

    .scroll-strip{
      display:flex;
      gap:14px;
      overflow-x:auto;
      padding-bottom:8px;
      scroll-snap-type:x proximity;
      -webkit-overflow-scrolling:touch;
    }
    .scroll-strip::-webkit-scrollbar{height:10px;}
    .scroll-strip::-webkit-scrollbar-thumb{
      background:rgba(240,68,122,.22);
      border-radius:999px;
    }
    .scene-card{
      flex:0 0 286px;
      scroll-snap-align:start;
      border-radius:24px;
      background:#fff;
      border:1px solid rgba(240,68,122,.14);
      box-shadow:0 12px 28px rgba(36,21,26,.05);
      overflow:hidden;
      transition:transform var(--ease), box-shadow var(--ease), border-color var(--ease);
    }
    .scene-card:hover{
      transform:translateY(-3px);
      box-shadow:var(--shadow);
      border-color:rgba(240,68,122,.24);
    }
    .scene-cover{
      aspect-ratio:3/4;
      background:
        linear-gradient(145deg, rgba(240,68,122,.88), rgba(255,138,61,.78)),
        linear-gradient(0deg, rgba(255,255,255,.12), rgba(255,255,255,.12));
      position:relative;
      overflow:hidden;
    }
    .scene-cover.alt{
      background:linear-gradient(145deg, rgba(124,58,237,.88), rgba(240,68,122,.80));
    }
    .scene-cover.sun{
      background:linear-gradient(145deg, rgba(255,138,61,.92), rgba(124,58,237,.72));
    }
    .scene-cover::before,
    .scene-cover::after{
      content:"";
      position:absolute;
      border-radius:999px;
      background:rgba(255,255,255,.2);
    }
    .scene-cover::before{
      width:130px;height:130px;left:-24px;top:-18px;
    }
    .scene-cover::after{
      width:92px;height:92px;right:-16px;bottom:-18px;
    }
    .scene-body{
      padding:16px;
    }
    .scene-body .tagline{
      display:inline-flex;
      align-items:center;
      min-height:28px;
      padding:4px 10px;
      border-radius:999px;
      background:rgba(240,68,122,.10);
      color:var(--primary-deep);
      font-size:.76rem;
      font-weight:800;
      margin-bottom:10px;
    }
    .scene-body h3{
      font-size:1.02rem;
      margin-bottom:6px;
    }
    .scene-body p{
      color:var(--muted);
      font-size:.9rem;
      line-height:1.55;
      margin:0 0 12px;
      min-height:3.1em;
    }
    .scene-body .scene-foot{
      display:flex;
      justify-content:space-between;
      align-items:center;
      gap:10px;
    }
    .scene-body .tiny{
      color:#7b5b62;
      font-size:.78rem;
      font-weight:700;
    }

    .proof-grid{
      display:grid;
      grid-template-columns:repeat(4, minmax(0,1fr));
      gap:14px;
    }
    .quote-card{
      position:relative;
      border-radius:22px;
      border:1px solid rgba(36,21,26,.08);
      background:#fff;
      box-shadow:0 12px 28px rgba(36,21,26,.05);
      padding:18px 18px 16px;
      min-height:180px;
    }
    .quote-card::before{
      content:"“";
      position:absolute;
      top:8px;
      right:14px;
      font-size:3rem;
      line-height:1;
      color:rgba(240,68,122,.22);
      font-weight:900;
    }
    .quote-card p{
      margin:0 0 12px;
      color:#4f3940;
      font-size:.94rem;
      line-height:1.7;
    }
    .quote-card .author{
      display:flex;
      align-items:center;
      gap:10px;
      color:var(--muted);
      font-size:.8rem;
      font-weight:700;
    }
    .avatar{
      width:34px;height:34px;border-radius:12px;
      background:linear-gradient(135deg, rgba(240,68,122,.18), rgba(255,138,61,.18));
      border:1px solid rgba(240,68,122,.16);
      flex:none;
    }

    .news-layout{
      display:grid;
      grid-template-columns:1.2fr .8fr;
      gap:18px;
      align-items:start;
    }
    .news-list{
      list-style:none;
      padding:0;
      margin:0;
      border-radius:24px;
      overflow:hidden;
      background:#fff;
      border:1px solid rgba(36,21,26,.08);
      box-shadow:var(--shadow);
    }
    .news-list li + li{border-top:1px solid rgba(36,21,26,.08);}
    .news-list a{
      display:grid;
      grid-template-columns:auto 1fr auto;
      gap:14px;
      align-items:center;
      padding:16px 18px;
      min-height:78px;
    }
    .news-list a:hover,
    .news-list a:focus-visible{
      background:rgba(240,68,122,.06);
      outline:none;
    }
    .news-date{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      width:56px;
      min-height:40px;
      border-radius:14px;
      background:rgba(240,68,122,.10);
      color:var(--primary-deep);
      font-size:.8rem;
      font-weight:800;
      text-align:center;
      flex:none;
    }
    .news-copy strong{
      display:block;
      margin-bottom:4px;
      font-size:1rem;
      color:var(--text);
    }
    .news-copy span{
      display:block;
      color:var(--muted);
      font-size:.9rem;
      line-height:1.5;
    }
    .news-arrow{
      color:var(--primary);
      font-weight:900;
      font-size:1.1rem;
    }
    .news-side{
      display:grid;
      gap:14px;
    }
    .news-card{
      border-radius:24px;
      background:linear-gradient(180deg, #fff, #fff7fb);
      border:1px solid rgba(240,68,122,.14);
      padding:18px;
      box-shadow:0 12px 26px rgba(240,68,122,.08);
    }
    .news-card h3{
      font-size:1.02rem;
      margin-bottom:8px;
    }
    .news-card p{
      color:var(--muted);
      font-size:.92rem;
      line-height:1.6;
      margin:0 0 12px;
    }
    .news-card .badge{
      display:inline-flex;
      align-items:center;
      gap:6px;
      min-height:30px;
      padding:4px 10px;
      border-radius:999px;
      background:rgba(124,58,237,.10);
      color:var(--violet);
      font-size:.76rem;
      font-weight:800;
      margin-bottom:10px;
    }

    .path-grid{
      display:grid;
      grid-template-columns:1.05fr .95fr .8fr;
      gap:14px;
      align-items:stretch;
    }
    .path-card{
      border-radius:24px;
      padding:20px;
      border:1px solid rgba(240,68,122,.14);
      background:#fff;
      box-shadow:0 12px 26px rgba(36,21,26,.05);
      min-height:220px;
      position:relative;
      overflow:hidden;
      display:flex;
      flex-direction:column;
      justify-content:space-between;
    }
    .path-card::after{
      content:"";
      position:absolute;
      inset:auto -20px -20px auto;
      width:132px;
      height:132px;
      border-radius:999px;
      background:rgba(240,68,122,.08);
    }
    .path-card.featured{
      background:linear-gradient(135deg, rgba(240,68,122,.10), rgba(255,255,255,.98) 45%, rgba(255,138,61,.08));
      min-height:248px;
    }
    .path-card h3{
      margin-bottom:8px;
      font-size:1.12rem;
    }
    .path-card p{
      margin:0;
      color:var(--muted);
      font-size:.94rem;
      line-height:1.65;
      position:relative;
      z-index:1;
    }
    .path-head{
      position:relative;
      z-index:1;
    }
    .path-number{
      display:inline-flex;
      width:34px;
      height:34px;
      align-items:center;
      justify-content:center;
      border-radius:12px;
      background:rgba(240,68,122,.12);
      color:var(--primary-deep);
      font-weight:800;
      margin-bottom:12px;
    }
    .path-foot{
      display:flex;
      gap:10px;
      flex-wrap:wrap;
      margin-top:14px;
      position:relative;
      z-index:1;
    }

    .accordion-wrap .accordion{
      margin:0;
      border:0;
      background:transparent;
    }
    .accordion-item{
      border:1px solid rgba(36,21,26,.08);
      border-radius:18px;
      overflow:hidden;
      background:#fff;
      box-shadow:0 10px 24px rgba(36,21,26,.04);
      margin-bottom:12px;
    }
    .accordion-title{
      position:relative;
      display:block;
      padding:18px 54px 18px 18px;
      font-size:1rem;
      font-weight:700;
      color:var(--text);
      line-height:1.5;
      outline:none;
    }
    .accordion-title:hover,
    .accordion-title:focus-visible{
      background:rgba(240,68,122,.05);
      color:var(--primary-deep);
    }
    .accordion-title::after{
      content:"+";
      position:absolute;
      right:18px;
      top:50%;
      transform:translateY(-50%);
      width:28px;
      height:28px;
      border-radius:10px;
      display:inline-flex;
      align-items:center;
      justify-content:center;
      background:rgba(240,68,122,.10);
      color:var(--primary-deep);
      font-size:1rem;
      font-weight:900;
    }
    .is-active > .accordion-title{
      background:rgba(240,68,122,.06);
      border-left:4px solid var(--primary);
      padding-left:14px;
    }
    .is-active > .accordion-title::after{
      content:"−";
      background:rgba(240,68,122,.14);
    }
    .accordion-content{
      padding:0 18px 18px;
      color:#4f3940;
      font-size:.95rem;
      line-height:1.75;
      background:linear-gradient(180deg, rgba(240,68,122,.04), rgba(255,255,255,1));
    }

    .contact-grid{
      display:grid;
      grid-template-columns:.95fr 1.05fr;
      gap:18px;
      align-items:stretch;
    }
    .contact-panel{
      border-radius:26px;
      background:
        linear-gradient(135deg, rgba(240,68,122,.10), rgba(255,255,255,.98) 46%, rgba(255,138,61,.08));
      border:1px solid rgba(240,68,122,.14);
      padding:24px;
      box-shadow:var(--shadow);
      display:flex;
      flex-direction:column;
      justify-content:space-between;
      gap:18px;
    }
    .contact-panel p{
      color:#4f3940;
      margin:10px 0 0;
    }
    .contact-list{
      list-style:none;
      padding:0;
      margin:0;
      display:grid;
      gap:10px;
    }
    .contact-list li{
      display:flex;
      align-items:flex-start;
      gap:10px;
      color:var(--muted);
      font-size:.95rem;
      line-height:1.65;
    }
    .contact-dot{
      width:10px;height:10px;border-radius:999px;background:var(--primary);margin-top:8px;flex:none;
      box-shadow:0 0 0 4px rgba(240,68,122,.12);
    }

    .contact-form{
      border-radius:26px;
      background:#fff;
      border:1px solid rgba(36,21,26,.08);
      box-shadow:var(--shadow);
      padding:22px;
    }
    .form-row{margin-bottom:16px;}
    label{
      display:block;
      margin:0 0 8px;
      font-size:.88rem;
      font-weight:700;
      color:var(--text);
    }
    input[type="text"],
    input[type="tel"],
    input[type="email"],
    select,
    textarea{
      width:100%;
      min-height:48px;
      border-radius:14px;
      border:1px solid rgba(36,21,26,.12);
      background:#fff;
      color:var(--text);
      padding:12px 14px;
      font:inherit;
      box-shadow:none;
      transition:border-color var(--ease), box-shadow var(--ease), transform var(--ease), background var(--ease);
    }
    textarea{min-height:140px;resize:vertical;}
    input::placeholder,
    textarea::placeholder{color:#a18a91;}
    input:focus,
    select:focus,
    textarea:focus{
      border-color:rgba(240,68,122,.48);
      box-shadow:0 0 0 4px rgba(240,68,122,.12);
      outline:none;
    }
    select{
      appearance:none;
      background-image:
        linear-gradient(45deg, transparent 50%, #a25b73 50%),
        linear-gradient(135deg, #a25b73 50%, transparent 50%);
      background-position:
        calc(100% - 20px) 20px,
        calc(100% - 14px) 20px;
      background-size:6px 6px, 6px 6px;
      background-repeat:no-repeat;
      padding-right:42px;
    }
    .submit-row{
      display:flex;
      flex-wrap:wrap;
      align-items:center;
      gap:12px;
      margin-top:4px;
    }
    .form-note{
      color:var(--muted);
      font-size:.88rem;
      line-height:1.6;
    }
    .form-toast{
      display:none;
      margin-top:14px;
      padding:12px 14px;
      border-radius:14px;
      background:rgba(22,163,74,.08);
      border:1px solid rgba(22,163,74,.18);
      color:#166534;
      font-size:.92rem;
      font-weight:600;
    }
    .form-toast.show{display:block;}
    .form-error{
      display:none;
      margin-top:14px;
      padding:12px 14px;
      border-radius:14px;
      background:rgba(225,29,72,.08);
      border:1px solid rgba(225,29,72,.18);
      color:#9f1239;
      font-size:.92rem;
      font-weight:600;
    }

    .footer{
      padding:42px 0 54px;
      border-top:1px solid rgba(36,21,26,.08);
      background:linear-gradient(180deg, rgba(255,243,245,.92), rgba(255,248,240,.92));
      color:#513940;
    }
    .footer .brand{margin-bottom:10px;}
    .footer p{
      color:#6f565e;
      margin:0;
      max-width:38rem;
    }
    .footer-links{
      list-style:none;
      padding:0;
      margin:0;
      display:flex;
      flex-wrap:wrap;
      gap:10px 14px;
    }
    .footer-links a{
      display:inline-flex;
      min-height:38px;
      align-items:center;
      padding:8px 12px;
      border-radius:999px;
      border:1px solid rgba(36,21,26,.10);
      background:#fff;
      color:var(--text);
      font-weight:700;
    }
    .footer-links a:hover,
    .footer-links a:focus-visible{
      background:rgba(240,68,122,.08);
      border-color:rgba(240,68,122,.18);
      color:var(--primary-deep);
      outline:none;
    }
    .copyright{
      margin-top:18px;
      color:#7f6870;
      font-size:.88rem;
    }

    .top-spacer{height:4px;}

    :focus-visible{
      outline:2px solid rgba(240,68,122,.45);
      outline-offset:2px;
    }

    @media (max-width: 1024px){
      .hero-stage{grid-template-columns:repeat(2, minmax(0,1fr));}
      .metrics-grid,.proof-grid{grid-template-columns:repeat(2, minmax(0,1fr));}
      .path-grid{grid-template-columns:1fr; }
      .entry-grid,.news-layout,.contact-grid{grid-template-columns:1fr;}
      .entry-stack{grid-template-columns:repeat(2, minmax(0,1fr));}
      .mega-grid{grid-template-columns:1fr;}
      .nav-wrap{display:none;}
      .menu-toggle{display:inline-flex;}
      .top-strip{min-height:68px;}
      .mobile-drawer{display:none;}
      .mobile-drawer.is-open{display:block;}
    }
    @media (max-width: 640px){
      .section-band{padding:58px 0;}
      .section-band.tight{padding:50px 0;}
      .hero-section{padding:28px 0 22px;}
      .hero-shell{padding:20px;border-radius:24px;}
      .hero-copy h1{max-width:100%;}
      .hero-stage{grid-template-columns:1fr 1fr;}
      .stage-card.featured{grid-column:span 2;}
      .cta-row .btn{width:100%;}
      .hero-points{gap:10px 14px;}
      .entry-stack{grid-template-columns:1fr;}
      .metrics-grid,.proof-grid{grid-template-columns:1fr;}
      .news-list a{grid-template-columns:1fr; gap:8px; align-items:flex-start;}
      .news-arrow{display:none;}
      .contact-form,.contact-panel,.panel-inner{padding:18px;}
      .footer .grid-x > .cell{margin-bottom:18px;}
      .top-strip{min-height:64px;}
      .brand-text small{display:none;}
      .brand-mark{width:38px;height:38px;border-radius:12px;}
    }
    @media (max-width: 520px){
      .hero-stage{grid-template-columns:1fr;}
      .stage-card.featured{grid-column:auto;min-height:220px;}
      .stage-card{min-height:170px;}
      .btn,.nav-link,.mega-trigger,.menu-toggle{width:100%;}
      .header-actions{width:100%;flex-direction:column;align-items:stretch;}
      .top-strip{flex-wrap:wrap;align-items:flex-start;}
      .brand{width:100%;}
      .brand-text{white-space:normal;}
    }

/* roulang page: category1 */
:root {
      --bg: #fff7f5;
      --bg-soft: #fff9f2;
      --surface: #ffffff;
      --surface-pink: #fff0f4;
      --surface-orange: #fff4e8;
      --text: #24151a;
      --muted: #7a5d64;
      --primary: #f0447a;
      --primary-dark: #d92d66;
      --accent: #ff8a3d;
      --purple: #7c3aed;
      --green: #16a34a;
      --danger: #e11d48;
      --line: rgba(36, 21, 26, .10);
      --line-strong: rgba(240, 68, 122, .30);
      --shadow: 0 14px 36px rgba(240, 68, 122, .12);
      --shadow-strong: 0 20px 50px rgba(240, 68, 122, .18);
      --radius-lg: 24px;
      --radius-md: 18px;
      --radius-sm: 12px;
      --speed: 220ms ease;
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      font-family: system-ui, -apple-system, BlinkMacSystemFont, "PingFang SC", "Microsoft YaHei", "Noto Sans SC", Arial, sans-serif;
      color: var(--text);
      line-height: 1.75;
      background:
        radial-gradient(circle at 12% 16%, rgba(255, 138, 61, .12), transparent 28%),
        radial-gradient(circle at 88% 8%, rgba(240, 68, 122, .10), transparent 30%),
        linear-gradient(135deg, rgba(124, 58, 237, .04) 0 25%, transparent 25% 100%),
        var(--bg);
      overflow-x: hidden;
    }

    body::before {
      content: "";
      position: fixed;
      inset: 0;
      pointer-events: none;
      background-image:
        linear-gradient(rgba(36, 21, 26, .035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(36, 21, 26, .035) 1px, transparent 1px);
      background-size: 28px 28px;
      mask-image: linear-gradient(to bottom, rgba(0,0,0,.55), transparent 62%);
      z-index: -1;
    }

    a {
      color: inherit;
      text-decoration: none;
      transition: color var(--speed), background var(--speed), border-color var(--speed), transform var(--speed), box-shadow var(--speed);
    }

    a:hover {
      color: var(--primary);
    }

    img {
      max-width: 100%;
      display: block;
    }

    button,
    input,
    select,
    textarea {
      font: inherit;
    }

    button {
      cursor: pointer;
    }

    :focus-visible {
      outline: 3px solid rgba(240, 68, 122, .35);
      outline-offset: 3px;
      border-radius: 12px;
    }

    .grid-container {
      max-width: 1220px;
    }

    .site-header {
      position: sticky;
      top: 0;
      z-index: 50;
      background: rgba(255, 247, 245, .88);
      backdrop-filter: blur(18px);
      border-bottom: 1px solid var(--line);
    }

    .top-strip {
      min-height: 78px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 22px;
    }

    .brand {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      min-width: 0;
    }

    .brand-mark {
      width: 44px;
      height: 44px;
      border-radius: 16px;
      display: grid;
      place-items: center;
      color: #fff;
      font-weight: 900;
      background: linear-gradient(135deg, var(--primary), var(--accent));
      box-shadow: 0 12px 26px rgba(240, 68, 122, .24);
      flex: 0 0 auto;
    }

    .brand-text {
      display: grid;
      color: var(--text);
      font-weight: 850;
      line-height: 1.15;
      font-size: 18px;
      letter-spacing: 0;
    }

    .brand-text small {
      color: var(--muted);
      font-size: 12px;
      font-weight: 650;
      margin-top: 4px;
    }

    .nav-wrap {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      padding: 8px;
      border: 1px solid var(--line);
      background: rgba(255, 255, 255, .72);
      border-radius: 999px;
      box-shadow: 0 10px 24px rgba(36, 21, 26, .05);
    }

    .nav-link,
    .mega-trigger {
      min-height: 42px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border: 0;
      border-radius: 999px;
      padding: 0 16px;
      color: var(--muted);
      background: transparent;
      font-size: 15px;
      font-weight: 750;
      white-space: nowrap;
    }

    .nav-link:hover,
    .mega-trigger:hover {
      color: var(--primary);
      background: var(--surface-pink);
    }

    .nav-link.active {
      color: #fff;
      background: var(--primary);
      box-shadow: 0 10px 22px rgba(240, 68, 122, .24);
    }

    .header-actions {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .menu-toggle {
      min-height: 42px;
      display: none;
      align-items: center;
      gap: 8px;
      border: 1px solid var(--line);
      background: #fff;
      border-radius: 999px;
      padding: 0 14px;
      color: var(--text);
      font-weight: 760;
      box-shadow: 0 10px 22px rgba(36, 21, 26, .06);
    }

    .menu-icon,
    .menu-icon::before,
    .menu-icon::after {
      width: 18px;
      height: 2px;
      display: block;
      background: var(--primary);
      border-radius: 999px;
      content: "";
      transition: transform var(--speed), opacity var(--speed);
    }

    .menu-icon::before {
      transform: translateY(-6px);
    }

    .menu-icon::after {
      transform: translateY(4px);
    }

    .mobile-drawer {
      display: none;
      padding: 0 0 16px;
    }

    .mobile-drawer a {
      display: flex;
      align-items: center;
      min-height: 44px;
      margin-top: 8px;
      padding: 0 16px;
      border-radius: 16px;
      background: #fff;
      border: 1px solid var(--line);
      color: var(--muted);
      font-weight: 750;
    }

    .mobile-drawer a.active {
      color: #fff;
      background: var(--primary);
      border-color: var(--primary);
    }

    .mega-pane {
      position: absolute;
      right: 0;
      top: 8px;
      width: min(660px, calc(100vw - 32px));
      padding: 22px;
      border-radius: 24px;
      background: rgba(255, 255, 255, .96);
      border: 1px solid rgba(240, 68, 122, .16);
      box-shadow: var(--shadow-strong);
      opacity: 0;
      transform: translateY(-8px);
      pointer-events: none;
      transition: opacity var(--speed), transform var(--speed);
      z-index: 60;
    }

    .mega-pane.is-open {
      opacity: 1;
      transform: translateY(0);
      pointer-events: auto;
    }

    .mega-head p {
      margin: 0 0 16px;
      color: var(--muted);
      font-size: 14px;
      line-height: 1.65;
    }

    .mega-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 12px;
    }

    .mega-card {
      display: grid;
      grid-template-columns: 42px 1fr;
      gap: 12px;
      min-height: 116px;
      padding: 16px;
      border-radius: 18px;
      border: 1px solid var(--line);
      background: linear-gradient(180deg, #fff, #fff7f5);
    }

    .mega-card:hover {
      transform: translateY(-3px);
      border-color: var(--line-strong);
      box-shadow: var(--shadow);
    }

    .mega-icon {
      width: 42px;
      height: 42px;
      display: grid;
      place-items: center;
      border-radius: 14px;
      color: #fff;
      font-weight: 900;
      background: linear-gradient(135deg, var(--purple), var(--primary));
    }

    .mega-card strong {
      display: block;
      color: var(--text);
      font-size: 15px;
      margin-bottom: 3px;
    }

    .mega-card span span {
      display: block;
      color: var(--muted);
      font-size: 13px;
      line-height: 1.55;
    }

    .mega-tag {
      width: fit-content;
      margin-top: 8px;
      padding: 3px 8px;
      border-radius: 999px;
      color: var(--primary) !important;
      background: var(--surface-pink);
      font-weight: 750;
    }

    main {
      overflow: hidden;
    }

    .section {
      padding: 78px 0;
    }

    .section-tight {
      padding: 54px 0;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      color: var(--primary);
      font-size: 13px;
      font-weight: 850;
      letter-spacing: 0;
    }

    .eyebrow::before {
      content: "";
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--accent);
      box-shadow: 0 0 0 5px rgba(255, 138, 61, .14);
    }

    .page-hero {
      padding: 54px 0 38px;
      border-bottom: 1px solid var(--line);
      background:
        linear-gradient(115deg, rgba(255, 240, 244, .82), transparent 52%),
        linear-gradient(285deg, rgba(255, 244, 232, .92), transparent 48%);
    }

    .hero-copy {
      max-width: 720px;
    }

    h1,
    h2,
    h3,
    p {
      letter-spacing: 0;
    }

    h1 {
      margin: 12px 0 16px;
      font-size: clamp(34px, 5vw, 58px);
      line-height: 1.12;
      font-weight: 880;
      color: var(--text);
    }

    h2 {
      margin: 10px 0 14px;
      font-size: clamp(27px, 3.2vw, 40px);
      line-height: 1.18;
      font-weight: 820;
    }

    h3 {
      margin: 0 0 10px;
      font-size: 22px;
      line-height: 1.3;
      font-weight: 800;
    }

    .lead {
      margin: 0;
      color: var(--muted);
      font-size: 18px;
      line-height: 1.8;
    }

    .hero-actions,
    .cta-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-top: 24px;
    }

    .btn {
      min-height: 46px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      border-radius: 999px;
      border: 1px solid transparent;
      padding: 12px 22px;
      font-weight: 800;
      line-height: 1.2;
      transition: transform var(--speed), box-shadow var(--speed), background var(--speed), border-color var(--speed), color var(--speed);
    }

    .btn-primary {
      color: #fff;
      background: linear-gradient(135deg, var(--primary), var(--accent));
      box-shadow: 0 14px 30px rgba(240, 68, 122, .24);
    }

    .btn-primary:hover {
      color: #fff;
      transform: translateY(-2px);
      box-shadow: 0 18px 38px rgba(240, 68, 122, .30);
    }

    .btn-secondary {
      color: var(--primary);
      background: #fff;
      border-color: rgba(240, 68, 122, .25);
    }

    .btn-secondary:hover {
      color: var(--primary-dark);
      background: var(--surface-pink);
      transform: translateY(-2px);
    }

    .hero-panel {
      display: grid;
      gap: 14px;
    }

    .mini-stat {
      min-height: 118px;
      padding: 18px;
      border: 1px solid var(--line);
      border-radius: 22px;
      background: rgba(255, 255, 255, .86);
      box-shadow: var(--shadow);
      position: relative;
      overflow: hidden;
    }

    .mini-stat::after {
      content: "";
      position: absolute;
      inset: auto 18px 16px auto;
      width: 56px;
      height: 7px;
      border-radius: 999px;
      background: linear-gradient(90deg, var(--primary), var(--accent));
      opacity: .75;
    }

    .mini-stat strong {
      display: block;
      color: var(--primary);
      font-size: 30px;
      line-height: 1;
      margin-bottom: 8px;
      font-weight: 900;
    }

    .mini-stat span {
      display: block;
      color: var(--muted);
      font-size: 14px;
      line-height: 1.55;
    }

    .filter-bar {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      padding: 16px;
      border-radius: 24px;
      border: 1px solid var(--line);
      background: rgba(255, 255, 255, .78);
      box-shadow: 0 12px 30px rgba(36, 21, 26, .05);
    }

    .filter-pill {
      min-height: 42px;
      padding: 0 16px;
      display: inline-flex;
      align-items: center;
      border-radius: 999px;
      border: 1px solid rgba(240, 68, 122, .22);
      background: #fff;
      color: var(--muted);
      font-weight: 780;
    }

    .filter-pill:hover {
      color: var(--primary);
      background: var(--surface-pink);
      transform: translateY(-2px);
    }

    .filter-pill.active {
      color: #fff;
      border-color: var(--primary);
      background: var(--primary);
      box-shadow: 0 12px 26px rgba(240, 68, 122, .22);
    }

    .content-layout {
      align-items: flex-start;
    }

    .entry-card {
      height: 100%;
      display: flex;
      flex-direction: column;
      overflow: hidden;
      border-radius: 24px;
      border: 1px solid var(--line);
      background: #fff;
      box-shadow: 0 12px 30px rgba(36, 21, 26, .06);
      transition: transform var(--speed), border-color var(--speed), box-shadow var(--speed);
    }

    .entry-card:hover {
      transform: translateY(-4px);
      border-color: var(--line-strong);
      box-shadow: var(--shadow);
    }

    .cover {
      aspect-ratio: 4 / 5;
      position: relative;
      overflow: hidden;
      background:
        linear-gradient(155deg, rgba(240, 68, 122, .88), rgba(255, 138, 61, .68)),
        linear-gradient(45deg, rgba(124, 58, 237, .22), transparent);
    }

    .cover::before {
      content: "";
      position: absolute;
      inset: 18px;
      border-radius: 20px;
      border: 1px solid rgba(255, 255, 255, .50);
      background:
        linear-gradient(135deg, rgba(255, 255, 255, .28), transparent 46%),
        radial-gradient(circle at 72% 28%, rgba(255, 255, 255, .36), transparent 18%);
      transition: transform var(--speed);
    }

    .entry-card:hover .cover::before {
      transform: scale(1.04);
    }

    .cover-label {
      position: absolute;
      left: 16px;
      top: 16px;
      z-index: 2;
      display: inline-flex;
      align-items: center;
      min-height: 30px;
      padding: 0 10px;
      border-radius: 999px;
      color: #fff;
      background: rgba(36, 21, 26, .42);
      backdrop-filter: blur(10px);
      font-size: 13px;
      font-weight: 780;
    }

    .cover-code {
      position: absolute;
      right: 16px;
      bottom: 16px;
      z-index: 2;
      width: 46px;
      height: 46px;
      display: grid;
      place-items: center;
      border-radius: 16px;
      color: var(--primary);
      background: rgba(255, 255, 255, .92);
      font-weight: 900;
    }

    .entry-body {
      display: flex;
      flex-direction: column;
      flex: 1;
      padding: 22px;
    }

    .tag-row {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-bottom: 12px;
    }

    .tag {
      display: inline-flex;
      align-items: center;
      min-height: 28px;
      padding: 0 10px;
      border-radius: 999px;
      color: var(--primary);
      background: var(--surface-pink);
      font-size: 13px;
      font-weight: 780;
    }

    .tag.orange {
      color: #a84a12;
      background: var(--surface-orange);
    }

    .tag.purple {
      color: var(--purple);
      background: rgba(124, 58, 237, .10);
    }

    .entry-body h3 {
      display: -webkit-box;
      overflow: hidden;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
    }

    .entry-body p {
      margin: 0;
      color: var(--muted);
      font-size: 15px;
      line-height: 1.68;
      display: -webkit-box;
      overflow: hidden;
      -webkit-line-clamp: 3;
      -webkit-box-orient: vertical;
    }

    .card-foot {
      margin-top: auto;
      padding-top: 18px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      border-top: 1px solid var(--line);
      color: var(--muted);
      font-size: 13px;
      font-weight: 700;
    }

    .text-link {
      color: var(--primary);
      font-weight: 850;
    }

    .text-link:hover {
      color: var(--primary-dark);
    }

    .side-panel {
      position: sticky;
      top: 104px;
      display: grid;
      gap: 16px;
    }

    .info-box {
      padding: 22px;
      border-radius: 24px;
      background: #fff;
      border: 1px solid var(--line);
      box-shadow: 0 12px 30px rgba(36, 21, 26, .06);
    }

    .info-box.featured {
      background: linear-gradient(145deg, var(--surface-pink), #fff);
      border-color: rgba(240, 68, 122, .22);
    }

    .info-box p {
      margin: 0;
      color: var(--muted);
      font-size: 15px;
    }

    .keyword-list {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-top: 14px;
    }

    .timeline {
      position: relative;
      display: grid;
      gap: 14px;
      margin-top: 24px;
    }

    .step-card {
      display: grid;
      grid-template-columns: 54px 1fr;
      gap: 16px;
      padding: 20px;
      border-radius: 22px;
      border: 1px solid var(--line);
      background: #fff;
      box-shadow: 0 10px 26px rgba(36, 21, 26, .05);
    }

    .step-num {
      width: 54px;
      height: 54px;
      display: grid;
      place-items: center;
      border-radius: 18px;
      color: #fff;
      font-weight: 900;
      background: linear-gradient(135deg, var(--primary), var(--purple));
    }

    .step-card p {
      margin: 0;
      color: var(--muted);
      font-size: 15px;
    }

    .pagination-wrap {
      margin-top: 34px;
      display: flex;
      justify-content: center;
    }

    .pagination .current {
      background: var(--primary);
      border-radius: 999px;
      min-width: 40px;
      min-height: 40px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
    }

    .pagination a {
      min-width: 40px;
      min-height: 40px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border-radius: 999px;
      border: 1px solid var(--line);
      background: #fff;
      color: var(--muted);
      font-weight: 750;
    }

    .pagination a:hover {
      color: var(--primary);
      background: var(--surface-pink);
    }

    .faq-band {
      background: linear-gradient(180deg, rgba(255, 240, 244, .65), rgba(255, 249, 242, .72));
      border-top: 1px solid var(--line);
      border-bottom: 1px solid var(--line);
    }

    .accordion {
      overflow: hidden;
      border-radius: 24px;
      border: 1px solid var(--line);
      background: #fff;
      box-shadow: 0 12px 30px rgba(36, 21, 26, .05);
    }

    .accordion-title {
      min-height: 58px;
      display: flex;
      align-items: center;
      color: var(--text);
      font-weight: 820;
      font-size: 16px;
      border: 0;
      border-bottom: 1px solid var(--line);
      padding: 18px 52px 18px 22px;
      background: #fff;
    }

    .accordion-title:hover,
    .accordion-title:focus {
      color: var(--primary);
      background: var(--surface-pink);
    }

    .accordion-title::before {
      color: var(--primary);
      font-size: 22px;
      margin-top: -12px;
    }

    .accordion-item.is-active .accordion-title {
      border-left: 5px solid var(--primary);
      background: var(--surface-pink);
    }

    .accordion-content {
      border: 0;
      border-bottom: 1px solid var(--line);
      background: #fffafa;
      color: var(--muted);
      padding: 18px 22px 22px;
      line-height: 1.75;
    }

    .cta-panel {
      padding: 32px;
      border-radius: 28px;
      background:
        linear-gradient(135deg, rgba(240, 68, 122, .96), rgba(255, 138, 61, .88)),
        #f0447a;
      color: #fff;
      box-shadow: 0 24px 58px rgba(240, 68, 122, .22);
      overflow: hidden;
      position: relative;
    }

    .cta-panel::after {
      content: "";
      position: absolute;
      right: -40px;
      top: -40px;
      width: 180px;
      height: 180px;
      border-radius: 40px;
      border: 1px solid rgba(255, 255, 255, .36);
      transform: rotate(18deg);
    }

    .cta-panel h2,
    .cta-panel p {
      position: relative;
      z-index: 1;
    }

    .cta-panel p {
      max-width: 640px;
      color: rgba(255, 255, 255, .88);
      margin: 0;
    }

    .contact-form {
      padding: 24px;
      border-radius: 24px;
      background: #fff;
      border: 1px solid var(--line);
      box-shadow: var(--shadow);
    }

    .contact-form label {
      color: var(--text);
      font-size: 14px;
      font-weight: 760;
    }

    .contact-form input,
    .contact-form select,
    .contact-form textarea {
      min-height: 48px;
      border-radius: 16px;
      border: 1px solid rgba(36, 21, 26, .12);
      background: #fff;
      box-shadow: none;
      color: var(--text);
      transition: border-color var(--speed), box-shadow var(--speed);
    }

    .contact-form textarea {
      min-height: 112px;
      resize: vertical;
    }

    .contact-form input:focus,
    .contact-form select:focus,
    .contact-form textarea:focus {
      border-color: var(--primary);
      box-shadow: 0 0 0 4px rgba(240, 68, 122, .12);
    }

    .form-hint {
      margin: 8px 0 0;
      color: var(--muted);
      font-size: 13px;
    }

    .footer {
      padding: 54px 0 34px;
      background: #fff4e8;
      border-top: 1px solid var(--line);
    }

    .footer p {
      margin: 18px 0 0;
      color: var(--muted);
      max-width: 440px;
      font-size: 15px;
    }

    .footer-links {
      margin: 0;
      list-style: none;
    }

    .footer-links li + li {
      margin-top: 8px;
    }

    .footer-links a {
      color: var(--muted);
      font-weight: 720;
    }

    .footer-links a:hover {
      color: var(--primary);
      padding-left: 4px;
    }

    .copyright {
      margin-top: 16px;
      color: var(--muted);
      font-size: 14px;
      font-weight: 700;
    }

    @media (max-width: 1024px) {
      .top-strip {
        min-height: 72px;
      }

      .nav-wrap {
        display: none;
      }

      .menu-toggle {
        display: inline-flex;
      }

      .mobile-drawer.is-open {
        display: block;
      }

      .mega-pane {
        display: none;
      }

      .side-panel {
        position: static;
        margin-top: 22px;
      }

      .section {
        padding: 64px 0;
      }
    }

    @media (max-width: 768px) {
      .page-hero {
        padding: 42px 0 30px;
      }

      .lead {
        font-size: 16px;
      }

      .hero-actions,
      .cta-actions {
        gap: 10px;
      }

      .btn {
        min-height: 44px;
        padding: 11px 18px;
      }

      .filter-bar {
        overflow-x: auto;
        flex-wrap: nowrap;
        padding: 12px;
        border-radius: 20px;
      }

      .filter-pill {
        white-space: nowrap;
      }

      .step-card {
        grid-template-columns: 46px 1fr;
        padding: 18px;
      }

      .step-num {
        width: 46px;
        height: 46px;
        border-radius: 16px;
      }

      .cta-panel {
        padding: 24px;
      }
    }

    @media (max-width: 520px) {
      .brand-mark {
        width: 40px;
        height: 40px;
        border-radius: 14px;
      }

      .brand-text {
        font-size: 16px;
      }

      .brand-text small {
        font-size: 11px;
      }

      .menu-toggle span:last-child {
        display: none;
      }

      .hero-actions .btn,
      .cta-actions .btn,
      .contact-form .btn {
        width: 100%;
      }

      .mini-stat {
        min-height: 104px;
      }

      .entry-body {
        padding: 20px;
      }

      .footer {
        padding: 44px 0 28px;
      }
    }
