/* roulang page: index */
:root{
      --ink:#181614;
      --ink-2:#2d2925;
      --muted:#766f66;
      --muted-2:#9b9288;
      --paper:#fbfaf7;
      --sand:#f5f1ea;
      --sand-2:#eee7dd;
      --line:#d8d0c6;
      --line-soft:rgba(24,22,20,.12);
      --dark:#171514;
      --dark-2:#211e1b;
      --light:#f7f1e8;
      --rose:#b85c5c;
      --rose-dark:#984b4b;
      --violet:#7c6a8e;
      --copper:#a6764b;
      --radius-sm:14px;
      --radius:22px;
      --radius-lg:32px;
      --radius-xl:42px;
      --shadow:0 18px 55px rgba(24,22,20,.08);
      --shadow-soft:0 10px 28px rgba(24,22,20,.06);
      --shadow-dark:0 20px 70px rgba(0,0,0,.24);
      --container:1180px;
      --ease:all .2s ease;
    }

    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      font-family:"PingFang SC","Microsoft YaHei","Noto Sans SC",system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
      color:var(--ink);
      background:
        radial-gradient(circle at 10% 5%, rgba(184,92,92,.12), transparent 28%),
        radial-gradient(circle at 88% 12%, rgba(124,106,142,.13), transparent 26%),
        linear-gradient(180deg,var(--paper),var(--sand) 48%,var(--paper));
      line-height:1.82;
      min-height:100vh;
      overflow-x:hidden;
      text-rendering:optimizeLegibility;
    }
    a{color:inherit;text-decoration:none;transition:var(--ease)}
    a:hover{color:var(--rose)}
    img{max-width:100%;height:auto;display:block}
    button,input{font:inherit}
    ::selection{background:rgba(184,92,92,.22);color:var(--ink)}

    .site-container{
      width:min(var(--container), calc(100% - 40px));
      margin-inline:auto;
    }
    .section{
      padding:104px 0;
      position:relative;
    }
    .section-tight{padding:72px 0}
    .section-dark{
      background:var(--dark);
      color:var(--light);
      border-radius:var(--radius-xl);
      margin-inline:20px;
      box-shadow:var(--shadow-dark);
    }
    .eyebrow{
      display:inline-flex;
      align-items:center;
      gap:9px;
      padding:7px 12px;
      border:1px solid var(--line-soft);
      border-radius:999px;
      background:rgba(251,250,247,.72);
      color:var(--muted);
      font-size:13px;
      font-weight:700;
      letter-spacing:.04em;
      margin-bottom:18px;
    }
    .eyebrow::before{
      content:"";
      width:7px;
      height:7px;
      border-radius:50%;
      background:var(--rose);
      box-shadow:0 0 0 4px rgba(184,92,92,.12);
    }
    .section-dark .eyebrow{
      color:#d9d0c7;
      background:rgba(255,255,255,.06);
      border-color:rgba(255,255,255,.14);
    }
    h1,h2,h3,h4{
      color:inherit;
      letter-spacing:-.04em;
      line-height:1.12;
      margin:0;
    }
    h1{
      font-size:clamp(2.35rem, 6vw, 4.7rem);
      font-weight:820;
    }
    h2{
      font-size:clamp(2rem, 4.2vw, 3.25rem);
      font-weight:780;
    }
    h3{
      font-size:clamp(1.25rem, 2vw, 1.55rem);
      font-weight:760;
    }
    p{margin:0;color:var(--muted)}
    .section-dark p{color:#cfc6bd}
    .lead-text{
      font-size:clamp(1rem, 1.5vw, 1.14rem);
      line-height:1.9;
      max-width:760px;
    }

    .dock-header{
      position:fixed;
      top:20px;
      left:0;
      right:0;
      z-index:1000;
      pointer-events:none;
    }
    .dock-nav{
      pointer-events:auto;
      width:min(1120px, calc(100% - 32px));
      margin:0 auto;
      padding:10px 12px;
      border-radius:999px;
      border:1px solid rgba(24,22,20,.12);
      background:rgba(251,250,247,.84);
      backdrop-filter:blur(18px);
      -webkit-backdrop-filter:blur(18px);
      box-shadow:0 16px 42px rgba(24,22,20,.10);
      display:flex;
      align-items:center;
      gap:18px;
      transition:var(--ease);
    }
    .dock-nav:hover{
      border-color:rgba(184,92,92,.28);
      box-shadow:0 18px 52px rgba(24,22,20,.13);
    }
    .brand-mark{
      display:flex;
      align-items:center;
      gap:10px;
      min-width:max-content;
      font-weight:820;
      letter-spacing:-.04em;
      color:var(--ink);
    }
    .brand-symbol{
      width:34px;
      height:34px;
      border-radius:12px;
      background:linear-gradient(135deg,var(--dark),#4a332f);
      position:relative;
      box-shadow:inset 0 0 0 1px rgba(255,255,255,.14);
    }
    .brand-symbol::before,
    .brand-symbol::after{
      content:"";
      position:absolute;
      inset:9px;
      border:1px solid rgba(247,241,232,.7);
      border-radius:6px;
      transform:rotate(-8deg);
    }
    .brand-symbol::after{
      inset:12px 8px 8px 12px;
      transform:rotate(8deg);
      border-color:rgba(184,92,92,.82);
    }
    .brand-text{font-size:15px;white-space:nowrap}
    .nav-links{
      display:flex;
      align-items:center;
      gap:4px;
      margin-left:auto;
    }
    .nav-link-custom{
      display:inline-flex;
      align-items:center;
      padding:9px 15px;
      border-radius:999px;
      color:var(--muted);
      font-size:14px;
      font-weight:700;
      line-height:1;
    }
    .nav-link-custom:hover,
    .nav-link-custom.active{
      color:var(--ink);
      background:rgba(24,22,20,.06);
    }
    .dock-search{
      display:flex;
      align-items:center;
      gap:8px;
      padding-left:8px;
      border-left:1px solid var(--line-soft);
    }
    .dock-search input{
      width:160px;
      border:none;
      outline:none;
      background:rgba(245,241,234,.9);
      color:var(--ink);
      border-radius:999px;
      padding:9px 12px;
      font-size:13px;
      transition:var(--ease);
    }
    .dock-search input:focus{
      box-shadow:0 0 0 4px rgba(184,92,92,.12);
      background:#fff;
    }
    .btn-main,.btn-ghost,.btn-darkline{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:9px;
      border-radius:999px;
      padding:13px 22px;
      font-weight:760;
      border:1px solid transparent;
      transition:var(--ease);
      line-height:1;
      min-height:46px;
      cursor:pointer;
    }
    .btn-main{
      color:#fff;
      background:var(--rose);
      border-color:var(--rose);
      box-shadow:0 12px 26px rgba(184,92,92,.22);
    }
    .btn-main:hover{
      color:#fff;
      background:var(--rose-dark);
      border-color:var(--rose-dark);
      transform:translateY(-2px);
      box-shadow:0 16px 34px rgba(184,92,92,.25);
    }
    .btn-ghost{
      color:var(--ink);
      background:rgba(251,250,247,.72);
      border-color:var(--line-soft);
    }
    .btn-ghost:hover{
      color:var(--ink);
      background:#fff;
      border-color:rgba(184,92,92,.36);
      transform:translateY(-2px);
    }
    .btn-darkline{
      color:var(--light);
      background:rgba(255,255,255,.06);
      border-color:rgba(255,255,255,.16);
    }
    .btn-darkline:hover{
      color:#fff;
      background:rgba(255,255,255,.12);
      border-color:rgba(255,255,255,.28);
      transform:translateY(-2px);
    }
    .btn-main:focus,.btn-ghost:focus,.btn-darkline:focus,
    .nav-link-custom:focus,.mobile-toggle:focus{
      outline:3px solid rgba(184,92,92,.28);
      outline-offset:3px;
    }
    .mobile-toggle{
      display:none;
      border:none;
      background:rgba(24,22,20,.06);
      width:42px;
      height:42px;
      border-radius:50%;
      align-items:center;
      justify-content:center;
      color:var(--ink);
    }
    .mobile-toggle span{
      width:18px;
      height:2px;
      background:currentColor;
      position:relative;
      display:block;
      border-radius:4px;
    }
    .mobile-toggle span::before,
    .mobile-toggle span::after{
      content:"";
      position:absolute;
      left:0;
      width:18px;
      height:2px;
      background:currentColor;
      border-radius:4px;
    }
    .mobile-toggle span::before{top:-6px}
    .mobile-toggle span::after{top:6px}
    .mobile-panel{
      display:none;
      width:min(1120px, calc(100% - 32px));
      margin:10px auto 0;
      padding:16px;
      border-radius:24px;
      border:1px solid rgba(24,22,20,.12);
      background:rgba(251,250,247,.94);
      backdrop-filter:blur(18px);
      box-shadow:var(--shadow);
      pointer-events:auto;
    }
    .mobile-panel .nav-link-custom{
      width:100%;
      justify-content:center;
      margin-bottom:8px;
      min-height:46px;
    }

    .hero{
      padding:158px 0 86px;
    }
    .hero-stage{
      position:relative;
      overflow:hidden;
      border-radius:46px;
      background:
        linear-gradient(135deg, rgba(23,21,20,.96), rgba(38,32,29,.94)),
        radial-gradient(circle at 70% 20%, rgba(184,92,92,.28), transparent 35%);
      color:var(--light);
      min-height:640px;
      box-shadow:var(--shadow-dark);
      border:1px solid rgba(255,255,255,.12);
    }
    .hero-stage::before{
      content:"";
      position:absolute;
      inset:0;
      background:
        linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px),
        linear-gradient(180deg, rgba(255,255,255,.04) 1px, transparent 1px);
      background-size:68px 68px;
      mask-image:linear-gradient(180deg,rgba(0,0,0,.9),rgba(0,0,0,.18));
      pointer-events:none;
    }
    .hero-inner{
      position:relative;
      z-index:2;
      padding:54px;
    }
    .hero-cover{
      min-height:310px;
      border-radius:34px;
      padding:34px;
      border:1px solid rgba(255,255,255,.14);
      background:
        radial-gradient(circle at 20% 0%, rgba(184,92,92,.24), transparent 34%),
        linear-gradient(145deg,rgba(255,255,255,.10),rgba(255,255,255,.035));
      display:grid;
      grid-template-columns:1.05fr .95fr;
      gap:28px;
      align-items:stretch;
    }
    .hero-copy{
      align-self:center;
      animation:fadeUp .65s ease both;
    }
    .hero-copy p{
      max-width:720px;
      margin-top:22px;
      font-size:17px;
      line-height:1.9;
      color:#dfd6cc;
    }
    .hero-actions{
      display:flex;
      flex-wrap:wrap;
      gap:12px;
      margin-top:30px;
    }
    .countdown-panel{
      min-height:100%;
      border-radius:28px;
      background:rgba(251,250,247,.92);
      color:var(--ink);
      padding:26px;
      display:flex;
      flex-direction:column;
      justify-content:space-between;
      gap:24px;
      box-shadow:0 20px 50px rgba(0,0,0,.16);
      animation:fadeUp .8s .08s ease both;
    }
    .panel-top{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:16px;
      padding-bottom:18px;
      border-bottom:1px solid var(--line-soft);
    }
    .live-badge{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:8px 12px;
      background:rgba(184,92,92,.12);
      color:var(--rose-dark);
      border-radius:999px;
      font-size:13px;
      font-weight:780;
    }
    .live-badge i{
      width:8px;
      height:8px;
      border-radius:50%;
      background:var(--rose);
    }
    .countdown-grid{
      display:grid;
      grid-template-columns:repeat(4,1fr);
      gap:10px;
    }
    .time-box{
      border-radius:18px;
      background:var(--sand);
      border:1px solid var(--line-soft);
      padding:14px 8px;
      text-align:center;
    }
    .time-box strong{
      display:block;
      font-size:28px;
      line-height:1;
      letter-spacing:-.06em;
      color:var(--ink);
    }
    .time-box span{
      display:block;
      margin-top:8px;
      font-size:12px;
      color:var(--muted);
      font-weight:700;
    }
    .reminder-form{
      display:flex;
      gap:10px;
      align-items:center;
      border-radius:999px;
      background:var(--paper);
      border:1px solid var(--line-soft);
      padding:8px;
    }
    .reminder-form input{
      flex:1;
      min-width:0;
      border:none;
      outline:none;
      background:transparent;
      padding:8px 10px;
      color:var(--ink);
    }
    .reminder-form:focus-within{
      border-color:rgba(184,92,92,.48);
      box-shadow:0 0 0 4px rgba(184,92,92,.10);
    }
    .hero-problems{
      margin-top:30px;
      display:grid;
      grid-template-columns:1.1fr .9fr 1fr;
      gap:14px;
    }
    .problem-card{
      padding:20px;
      border-radius:24px;
      background:rgba(255,255,255,.08);
      border:1px solid rgba(255,255,255,.14);
      transition:var(--ease);
    }
    .problem-card:hover{
      transform:translateY(-4px);
      border-color:rgba(184,92,92,.55);
      background:rgba(255,255,255,.105);
    }
    .problem-card .tag{
      color:#efe4db;
      font-weight:800;
      font-size:14px;
      margin-bottom:8px;
      display:block;
    }
    .problem-card p{
      color:#cfc6bd;
      font-size:14px;
      line-height:1.7;
    }

    .section-heading{
      display:flex;
      align-items:end;
      justify-content:space-between;
      gap:28px;
      margin-bottom:38px;
    }
    .section-heading .lead-text{
      max-width:560px;
    }
    .news-board{
      display:grid;
      grid-template-columns:minmax(0,1.35fr) minmax(300px,.65fr);
      gap:22px;
      align-items:start;
    }
    .news-list{
      border-radius:32px;
      background:rgba(251,250,247,.82);
      border:1px solid var(--line-soft);
      box-shadow:var(--shadow-soft);
      overflow:hidden;
    }
    .news-item{
      display:grid;
      grid-template-columns:92px 1fr auto;
      gap:20px;
      align-items:center;
      padding:23px 26px;
      border-bottom:1px solid var(--line-soft);
      transition:var(--ease);
    }
    .news-item:last-child{border-bottom:none}
    .news-item:hover{
      background:#fff;
      transform:translateX(4px);
    }
    .news-date{
      display:flex;
      flex-direction:column;
      justify-content:center;
      width:76px;
      height:76px;
      border-radius:22px;
      background:var(--dark);
      color:var(--light);
      text-align:center;
      flex-shrink:0;
    }
    .news-date strong{font-size:22px;line-height:1;font-weight:820}
    .news-date span{font-size:12px;color:#d7cdc2;margin-top:6px}
    .news-item h3{
      font-size:20px;
      margin-bottom:7px;
    }
    .news-item p{
      font-size:14px;
      line-height:1.7;
    }
    .arrow-link{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      width:42px;
      height:42px;
      border-radius:50%;
      border:1px solid var(--line-soft);
      color:var(--ink);
      background:var(--paper);
      font-weight:800;
    }
    .arrow-link:hover{
      background:var(--rose);
      color:#fff;
      border-color:var(--rose);
    }
    .recommend-card{
      position:sticky;
      top:112px;
      border-radius:32px;
      background:var(--dark);
      color:var(--light);
      padding:28px;
      border:1px solid rgba(255,255,255,.12);
      box-shadow:var(--shadow-dark);
    }
    .recommend-card p{
      margin-top:14px;
      color:#d1c8bf;
    }
    .mini-index{
      display:grid;
      grid-template-columns:repeat(2,1fr);
      gap:10px;
      margin:24px 0;
    }
    .mini-index a{
      border-radius:18px;
      padding:14px;
      background:rgba(255,255,255,.07);
      border:1px solid rgba(255,255,255,.12);
      color:#eee5dc;
      font-weight:760;
      text-align:center;
    }
    .mini-index a:hover{
      background:rgba(184,92,92,.24);
      border-color:rgba(184,92,92,.48);
      color:#fff;
      transform:translateY(-2px);
    }

    .steps-track{
      position:relative;
      display:grid;
      grid-template-columns:repeat(4,1fr);
      gap:18px;
    }
    .steps-track::before{
      content:"";
      position:absolute;
      left:6%;
      right:6%;
      top:34px;
      height:1px;
      background:linear-gradient(90deg,transparent,var(--line),transparent);
    }
    .step-card{
      position:relative;
      z-index:2;
      padding:24px;
      border-radius:28px;
      background:rgba(251,250,247,.86);
      border:1px solid var(--line-soft);
      box-shadow:var(--shadow-soft);
      transition:var(--ease);
    }
    .step-card:hover{
      transform:translateY(-4px);
      border-color:rgba(184,92,92,.38);
      box-shadow:var(--shadow);
    }
    .step-no{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      min-width:64px;
      height:36px;
      border-radius:999px;
      background:var(--dark);
      color:var(--light);
      font-weight:820;
      font-size:13px;
      margin-bottom:22px;
    }
    .step-card h3{margin-bottom:12px}
    .step-card p{
      font-size:15px;
      line-height:1.75;
    }
    .step-card::after{
      content:"";
      position:absolute;
      top:25px;
      right:24px;
      width:10px;
      height:10px;
      border-radius:50%;
      background:var(--rose);
      box-shadow:0 0 0 5px rgba(184,92,92,.12);
    }

    .service-grid{
      display:grid;
      grid-template-columns:1.05fr .95fr;
      gap:22px;
      align-items:stretch;
    }
    .service-large,
    .service-card,
    .app-card,
    .testimonial-card,
    .about-card{
      border-radius:32px;
      border:1px solid var(--line-soft);
      background:rgba(251,250,247,.86);
      box-shadow:var(--shadow-soft);
      transition:var(--ease);
    }
    .service-large:hover,
    .service-card:hover,
    .app-card:hover,
    .testimonial-card:hover,
    .about-card:hover{
      transform:translateY(-4px);
      border-color:rgba(184,92,92,.36);
      box-shadow:var(--shadow);
    }
    .service-large{
      padding:34px;
      min-height:380px;
      display:flex;
      flex-direction:column;
      justify-content:space-between;
      background:
        linear-gradient(145deg, rgba(251,250,247,.96), rgba(238,231,221,.85));
    }
    .zone-matrix{
      display:grid;
      grid-template-columns:repeat(4,1fr);
      gap:12px;
      margin-top:30px;
    }
    .zone-cell{
      border-radius:24px;
      background:var(--paper);
      border:1px solid var(--line-soft);
      padding:18px 14px;
      text-align:center;
    }
    .zone-cell strong{
      display:block;
      font-size:24px;
      letter-spacing:-.04em;
      color:var(--ink);
    }
    .zone-cell span{
      display:block;
      margin-top:7px;
      color:var(--muted);
      font-size:13px;
      font-weight:700;
    }
    .service-stack{
      display:grid;
      gap:18px;
    }
    .service-card{
      padding:26px;
      min-height:180px;
      position:relative;
      overflow:hidden;
    }
    .service-card::before{
      content:attr(data-index);
      position:absolute;
      right:20px;
      top:16px;
      font-size:56px;
      line-height:1;
      color:rgba(24,22,20,.045);
      font-weight:900;
      letter-spacing:-.08em;
    }
    .service-card h3{margin-bottom:10px}
    .badge-row{
      display:flex;
      flex-wrap:wrap;
      gap:8px;
      margin-top:18px;
    }
    .soft-badge{
      display:inline-flex;
      align-items:center;
      min-height:30px;
      padding:6px 11px;
      border-radius:999px;
      background:rgba(184,92,92,.10);
      color:var(--rose-dark);
      font-weight:760;
      font-size:12px;
      border:1px solid rgba(184,92,92,.15);
    }
    .soft-badge.violet{
      background:rgba(124,106,142,.12);
      color:#604e73;
      border-color:rgba(124,106,142,.18);
    }

    .results-layout{
      display:grid;
      grid-template-columns:1.25fr .75fr;
      gap:22px;
    }
    .result-main{
      border-radius:36px;
      background:var(--dark);
      color:var(--light);
      padding:38px;
      min-height:410px;
      position:relative;
      overflow:hidden;
      box-shadow:var(--shadow-dark);
    }
    .result-main::after{
      content:"";
      position:absolute;
      width:260px;
      height:260px;
      border-radius:50%;
      background:rgba(184,92,92,.22);
      right:-80px;
      bottom:-90px;
      filter:blur(4px);
    }
    .result-main p{
      color:#d3cac1;
      margin-top:18px;
      max-width:620px;
    }
    .index-strip{
      position:relative;
      z-index:2;
      display:flex;
      flex-wrap:wrap;
      gap:10px;
      margin-top:48px;
    }
    .index-strip span{
      padding:12px 15px;
      border-radius:18px;
      background:rgba(255,255,255,.08);
      border:1px solid rgba(255,255,255,.13);
      color:#f1e8df;
      font-weight:780;
    }
    .metric-grid{
      display:grid;
      gap:16px;
    }
    .metric-card{
      border-radius:30px;
      padding:26px;
      background:rgba(251,250,247,.88);
      border:1px solid var(--line-soft);
      box-shadow:var(--shadow-soft);
    }
    .metric-card strong{
      display:block;
      font-size:42px;
      line-height:1;
      letter-spacing:-.06em;
      color:var(--ink);
      margin-bottom:12px;
    }
    .metric-card span{
      color:var(--muted);
      font-weight:700;
    }

    .festival-wrap{
      border-radius:40px;
      padding:34px;
      background:
        linear-gradient(135deg, rgba(184,92,92,.16), rgba(124,106,142,.13)),
        var(--paper);
      border:1px solid rgba(184,92,92,.18);
      box-shadow:var(--shadow-soft);
    }
    .festival-grid{
      display:grid;
      grid-template-columns:1.1fr .9fr .8fr;
      gap:16px;
      margin-top:28px;
    }
    .festival-card{
      border-radius:28px;
      padding:25px;
      background:rgba(251,250,247,.84);
      border:1px solid rgba(24,22,20,.10);
      transition:var(--ease);
      min-height:208px;
    }
    .festival-card:hover{
      transform:translateY(-4px);
      border-color:rgba(184,92,92,.36);
      background:#fff;
    }
    .festival-card h3{margin:14px 0 10px}
    .corner-no{
      display:inline-flex;
      width:38px;
      height:38px;
      align-items:center;
      justify-content:center;
      border-radius:14px;
      background:var(--dark);
      color:var(--light);
      font-weight:820;
    }

    .app-grid{
      display:grid;
      grid-template-columns:.9fr 1.1fr;
      gap:22px;
      align-items:stretch;
    }
    .app-card{
      padding:32px;
    }
    .device-board{
      min-height:420px;
      border-radius:38px;
      background:
        linear-gradient(180deg, rgba(23,21,20,.96), rgba(40,34,30,.96));
      color:var(--light);
      padding:30px;
      box-shadow:var(--shadow-dark);
      position:relative;
      overflow:hidden;
    }
    .device-board::before{
      content:"";
      position:absolute;
      inset:24px;
      border-radius:30px;
      border:1px dashed rgba(255,255,255,.16);
      pointer-events:none;
    }
    .device-list{
      position:relative;
      z-index:2;
      display:grid;
      gap:14px;
      margin-top:28px;
    }
    .device-item{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:16px;
      padding:16px;
      border-radius:22px;
      background:rgba(255,255,255,.07);
      border:1px solid rgba(255,255,255,.12);
    }
    .device-item strong{color:#fff}
    .device-item span{color:#cfc6bd;font-size:13px}
    .device-dot{
      width:12px;
      height:12px;
      border-radius:50%;
      background:var(--rose);
      box-shadow:0 0 0 5px rgba(184,92,92,.15);
      flex:none;
    }
    .ticket-grid{
      display:grid;
      grid-template-columns:repeat(3,1fr);
      gap:18px;
    }
    .ticket-card{
      border-radius:32px;
      padding:28px;
      border:1px solid var(--line-soft);
      background:rgba(251,250,247,.88);
      box-shadow:var(--shadow-soft);
      transition:var(--ease);
      display:flex;
      flex-direction:column;
      min-height:360px;
    }
    .ticket-card.featured{
      background:var(--dark);
      color:var(--light);
      transform:translateY(-10px);
      box-shadow:var(--shadow-dark);
      border-color:rgba(255,255,255,.14);
    }
    .ticket-card:hover{
      transform:translateY(-6px);
      border-color:rgba(184,92,92,.38);
    }
    .ticket-card.featured:hover{transform:translateY(-14px)}
    .ticket-card p{margin:14px 0 20px}
    .ticket-card.featured p{color:#d4cbc2}
    .ticket-list{
      list-style:none;
      padding:0;
      margin:0 0 26px;
      display:grid;
      gap:12px;
      color:var(--muted);
    }
    .ticket-card.featured .ticket-list{color:#ddd3ca}
    .ticket-list li{
      display:flex;
      gap:10px;
      align-items:flex-start;
    }
    .ticket-list li::before{
      content:"";
      width:8px;
      height:8px;
      border-radius:50%;
      background:var(--rose);
      margin-top:11px;
      flex:none;
    }
    .ticket-card .btn-main,
    .ticket-card .btn-ghost,
    .ticket-card .btn-darkline{
      margin-top:auto;
      width:100%;
    }

    .faq-shell{
      display:grid;
      grid-template-columns:.82fr 1.18fr;
      gap:32px;
      align-items:start;
    }
    .accordion{
      display:grid;
      gap:12px;
    }
    .accordion-item{
      border:none;
      background:transparent;
    }
    .accordion-button{
      border-radius:22px!important;
      padding:21px 24px;
      font-weight:800;
      color:var(--ink);
      background:rgba(251,250,247,.88);
      border:1px solid var(--line-soft);
      box-shadow:none!important;
      min-height:58px;
    }
    .accordion-button:not(.collapsed){
      background:#fff;
      color:var(--ink);
      border-color:rgba(184,92,92,.34);
    }
    .accordion-button:focus{
      border-color:rgba(184,92,92,.42);
      box-shadow:0 0 0 4px rgba(184,92,92,.10)!important;
    }
    .accordion-button::after{
      background-image:none;
      content:"+";
      width:28px;
      height:28px;
      border-radius:50%;
      background:var(--sand);
      display:flex;
      align-items:center;
      justify-content:center;
      color:var(--rose-dark);
      font-size:20px;
      font-weight:700;
      transform:none;
      line-height:26px;
      text-align:center;
    }
    .accordion-button:not(.collapsed)::after{
      content:"−";
      background:rgba(184,92,92,.12);
    }
    .accordion-body{
      padding:18px 24px 22px;
      color:var(--muted);
      line-height:1.85;
      background:rgba(251,250,247,.62);
      border:1px solid var(--line-soft);
      border-top:none;
      border-radius:0 0 22px 22px;
      margin-top:-16px;
      padding-top:28px;
    }

    .testimonial-grid{
      display:grid;
      grid-template-columns:.95fr 1.15fr .9fr;
      gap:18px;
      align-items:start;
    }
    .testimonial-card{
      padding:28px;
    }
    .testimonial-card:nth-child(2){margin-top:34px}
    .avatar-row{
      display:flex;
      align-items:center;
      gap:12px;
      margin-bottom:18px;
    }
    .geo-avatar{
      width:46px;
      height:46px;
      border-radius:17px;
      display:grid;
      place-items:center;
      background:linear-gradient(135deg,var(--dark),var(--rose));
      color:#fff;
      font-weight:840;
    }
    .source strong{
      display:block;
      line-height:1.2;
    }
    .source span{
      font-size:13px;
      color:var(--muted);
    }
    .testimonial-card blockquote{
      margin:0;
      color:var(--ink-2);
      font-size:16px;
      line-height:1.86;
    }

    .about-grid{
      display:grid;
      grid-template-columns:1fr 1fr;
      gap:22px;
    }
    .about-card{
      padding:34px;
      min-height:310px;
    }
    .about-card.dark{
      background:var(--dark);
      color:var(--light);
      border-color:rgba(255,255,255,.12);
      box-shadow:var(--shadow-dark);
    }
    .about-card.dark p{color:#d4cbc2}
    .about-list{
      list-style:none;
      padding:0;
      margin:24px 0 0;
      display:grid;
      gap:13px;
    }
    .about-list li{
      display:flex;
      gap:12px;
      align-items:flex-start;
      color:var(--muted);
    }
    .about-card.dark .about-list li{color:#ded4cb}
    .about-list li::before{
      content:"";
      width:9px;
      height:9px;
      border-radius:50%;
      margin-top:11px;
      background:var(--rose);
      flex:none;
    }

    .final-cta{
      border-radius:44px;
      padding:48px;
      background:
        radial-gradient(circle at 80% 18%, rgba(184,92,92,.28), transparent 30%),
        linear-gradient(135deg, #171514, #29231f);
      color:var(--light);
      box-shadow:var(--shadow-dark);
      border:1px solid rgba(255,255,255,.13);
      display:grid;
      grid-template-columns:1.1fr .9fr;
      gap:32px;
      align-items:center;
    }
    .final-cta p{
      color:#d8cfc6;
      margin-top:18px;
    }
    .cta-actions{
      display:flex;
      justify-content:flex-end;
      flex-wrap:wrap;
      gap:12px;
    }
    .small-note{
      display:block;
      margin-top:18px;
      color:#bfb5ad;
      font-size:13px;
      line-height:1.7;
    }

    .site-footer{
      margin-top:36px;
      background:var(--dark);
      color:var(--light);
      padding:58px 0 28px;
      border-radius:42px 42px 0 0;
    }
    .footer-grid{
      display:grid;
      grid-template-columns:1.2fr .8fr .8fr;
      gap:32px;
      padding-bottom:34px;
      border-bottom:1px solid rgba(255,255,255,.12);
    }
    .footer-brand{
      display:flex;
      align-items:center;
      gap:12px;
      font-weight:820;
      letter-spacing:-.04em;
      margin-bottom:16px;
    }
    .footer-brand .brand-symbol{
      background:linear-gradient(135deg,#f7f1e8,#b85c5c);
    }
    .site-footer p{
      color:#cfc6bd;
      max-width:520px;
    }
    .footer-title{
      color:#fff;
      font-weight:800;
      margin-bottom:14px;
    }
    .footer-links{
      display:grid;
      gap:10px;
    }
    .footer-links a{
      color:#cfc6bd;
    }
    .footer-links a:hover{
      color:#fff;
      transform:translateX(3px);
    }
    .copyright{
      padding-top:22px;
      display:flex;
      justify-content:space-between;
      gap:20px;
      flex-wrap:wrap;
      color:#a9a098;
      font-size:13px;
    }

    @keyframes fadeUp{
      from{opacity:0;transform:translateY(18px)}
      to{opacity:1;transform:translateY(0)}
    }

    @media (max-width: 1024px){
      .site-container{width:min(100% - 32px, var(--container))}
      .hero-inner{padding:34px}
      .hero-cover,
      .news-board,
      .service-grid,
      .results-layout,
      .app-grid,
      .faq-shell,
      .about-grid,
      .final-cta{
        grid-template-columns:1fr;
      }
      .steps-track{grid-template-columns:repeat(2,1fr)}
      .steps-track::before{display:none}
      .festival-grid,
      .ticket-grid,
      .testimonial-grid{
        grid-template-columns:1fr;
      }
      .testimonial-card:nth-child(2),
      .ticket-card.featured{margin-top:0;transform:none}
      .ticket-card.featured:hover{transform:translateY(-6px)}
      .recommend-card{position:relative;top:auto}
      .cta-actions{justify-content:flex-start}
      .dock-search{display:none}
    }

    @media (max-width: 768px){
      .section{padding:70px 0}
      .section-tight{padding:54px 0}
      .section-dark{margin-inline:12px;border-radius:32px}
      .dock-nav{
        top:14px;
        width:calc(100% - 24px);
        gap:10px;
        padding:9px 10px;
      }
      .brand-text{
        max-width:190px;
        overflow:hidden;
        text-overflow:ellipsis;
      }
      .nav-links{display:none}
      .mobile-toggle{display:flex;margin-left:auto}
      .mobile-panel.show{display:block}
      .hero{padding:124px 0 56px}
      .hero-stage{border-radius:32px;min-height:auto}
      .hero-inner{padding:22px}
      .hero-cover{
        padding:22px;
        border-radius:26px;
        gap:22px;
      }
      .hero-copy p{font-size:16px}
      .hero-actions .btn-main,
      .hero-actions .btn-darkline,
      .hero-actions .btn-ghost,
      .reminder-form .btn-main{
        width:100%;
      }
      .reminder-form{
        flex-direction:column;
        border-radius:22px;
        align-items:stretch;
      }
      .reminder-form input{
        width:100%;
        min-height:46px;
        text-align:center;
      }
      .countdown-grid{grid-template-columns:repeat(2,1fr)}
      .hero-problems,
      .zone-matrix{
        grid-template-columns:1fr;
      }
      .section-heading{
        display:block;
      }
      .section-heading .lead-text{margin-top:16px}
      .news-item{
        grid-template-columns:1fr;
        gap:12px;
      }
      .news-date{
        width:100%;
        height:auto;
        min-height:54px;
        flex-direction:row;
        gap:8px;
        align-items:center;
      }
      .steps-track{grid-template-columns:1fr}
      .festival-wrap,
      .final-cta{padding:26px;border-radius:32px}
      .device-board{min-height:auto;border-radius:30px}
      .footer-grid{grid-template-columns:1fr}
    }

    @media (max-width: 520px){
      .site-container{width:calc(100% - 24px)}
      h1{font-size:2.15rem;line-height:1.13}
      h2{font-size:1.82rem}
      .brand-symbol{width:32px;height:32px}
      .brand-text{font-size:14px;max-width:160px}
      .hero-inner{padding:16px}
      .countdown-panel,
      .service-large,
      .service-card,
      .app-card,
      .about-card,
      .testimonial-card,
      .ticket-card,
      .result-main,
      .metric-card{padding:22px}
      .hero-cover{padding:18px}
      .panel-top{align-items:flex-start;flex-direction:column}
      .mini-index{grid-template-columns:1fr}
      .footer-brand{align-items:flex-start}
      .copyright{display:block}
      .copyright span{display:block;margin-top:8px}
    }

/* roulang page: category1 */
:root{
      --bg:#F5F1EA;
      --bg-soft:#FBFAF7;
      --ink:#181614;
      --muted:#6F6760;
      --weak:#92877C;
      --dark:#171514;
      --dark-soft:#211E1B;
      --line:#D8D0C6;
      --line-soft:rgba(24,22,20,.12);
      --white:#fffaf3;
      --accent:#B85C5C;
      --accent-dark:#934A4A;
      --purple:#7C6A8E;
      --copper:#A6764B;
      --radius-sm:12px;
      --radius-md:18px;
      --radius-lg:28px;
      --radius-xl:36px;
      --shadow-card:0 20px 50px rgba(24,22,20,.08);
      --shadow-dock:0 18px 46px rgba(24,22,20,.14);
      --ease:all .2s ease;
      --container:1200px;
    }

    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      font-family:"PingFang SC","Microsoft YaHei","Noto Sans SC",system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
      background:
        radial-gradient(circle at 12% 0%, rgba(184,92,92,.12), transparent 32%),
        radial-gradient(circle at 88% 12%, rgba(124,106,142,.13), transparent 30%),
        var(--bg);
      color:var(--ink);
      line-height:1.82;
      text-rendering:optimizeLegibility;
      -webkit-font-smoothing:antialiased;
    }

    a{color:inherit;text-decoration:none;transition:var(--ease)}
    a:hover{color:var(--accent-dark)}
    img{max-width:100%;height:auto;display:block}
    button,input{font:inherit}
    ::selection{background:rgba(184,92,92,.22);color:var(--ink)}

    .site-container{
      width:min(var(--container), calc(100% - 40px));
      margin-inline:auto;
    }

    .dock-header{
      position:fixed;
      top:20px;
      left:0;
      right:0;
      z-index:1000;
      pointer-events:none;
    }

    .dock-nav{
      width:min(1120px, calc(100% - 36px));
      margin:0 auto;
      min-height:70px;
      display:flex;
      align-items:center;
      gap:18px;
      padding:10px 12px 10px 18px;
      border:1px solid rgba(216,208,198,.86);
      border-radius:999px;
      background:rgba(251,250,247,.84);
      backdrop-filter:blur(18px);
      box-shadow:var(--shadow-dock);
      pointer-events:auto;
    }

    .brand-mark{
      display:flex;
      align-items:center;
      gap:10px;
      min-width:max-content;
      font-weight:800;
      letter-spacing:-.02em;
      color:var(--ink);
    }

    .brand-symbol{
      width:30px;
      height:30px;
      border-radius:10px;
      position:relative;
      display:inline-flex;
      flex:0 0 auto;
      background:
        linear-gradient(135deg, rgba(184,92,92,.95), rgba(124,106,142,.88));
      box-shadow:inset 0 0 0 1px rgba(255,255,255,.36), 0 8px 18px rgba(184,92,92,.18);
    }
    .brand-symbol:before,
    .brand-symbol:after{
      content:"";
      position:absolute;
      border-radius:999px;
      background:rgba(255,250,243,.75);
    }
    .brand-symbol:before{width:14px;height:2px;left:8px;top:10px}
    .brand-symbol:after{width:9px;height:2px;left:8px;top:17px}

    .brand-text{
      font-size:15px;
      white-space:nowrap;
    }

    .nav-links{
      display:flex;
      align-items:center;
      gap:6px;
      margin-left:auto;
    }

    .nav-link-custom{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      min-height:42px;
      padding:0 16px;
      border-radius:999px;
      color:var(--muted);
      font-size:14px;
      font-weight:700;
      border:1px solid transparent;
    }

    .nav-link-custom:hover{
      color:var(--ink);
      background:rgba(24,22,20,.05);
      border-color:rgba(24,22,20,.08);
    }

    .nav-link-custom.active{
      color:var(--white);
      background:var(--dark);
      border-color:rgba(24,22,20,.18);
      box-shadow:0 10px 22px rgba(24,22,20,.12);
    }

    .dock-search{
      display:flex;
      align-items:center;
      gap:8px;
      padding:5px;
      border-radius:999px;
      background:rgba(245,241,234,.9);
      border:1px solid rgba(216,208,198,.75);
    }

    .dock-search input,
    .reminder-form input,
    .filter-input{
      border:0;
      outline:0;
      background:transparent;
      min-width:150px;
      padding:9px 12px;
      color:var(--ink);
      font-size:14px;
    }

    .dock-search input::placeholder,
    .reminder-form input::placeholder,
    .filter-input::placeholder{color:var(--weak)}

    .btn-main,
    .btn-soft,
    .btn-darkline{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:8px;
      min-height:44px;
      padding:12px 20px;
      border-radius:999px;
      border:1px solid transparent;
      font-weight:800;
      letter-spacing:-.01em;
      transition:var(--ease);
      cursor:pointer;
      text-decoration:none;
      white-space:nowrap;
    }

    .btn-main{
      background:var(--accent);
      color:#fff;
      box-shadow:0 12px 28px rgba(184,92,92,.18);
    }
    .btn-main:hover{
      transform:translateY(-2px);
      background:var(--accent-dark);
      color:#fff;
      box-shadow:0 16px 34px rgba(184,92,92,.22);
    }

    .btn-soft{
      background:rgba(255,250,243,.72);
      color:var(--ink);
      border-color:rgba(24,22,20,.12);
    }
    .btn-soft:hover{
      transform:translateY(-2px);
      border-color:rgba(184,92,92,.42);
      background:#fffaf3;
      color:var(--accent-dark);
    }

    .btn-darkline{
      background:transparent;
      color:var(--white);
      border-color:rgba(255,255,255,.22);
    }
    .btn-darkline:hover{
      transform:translateY(-2px);
      color:#fff;
      border-color:rgba(255,255,255,.45);
      background:rgba(255,255,255,.08);
    }

    .btn-main:focus-visible,
    .btn-soft:focus-visible,
    .btn-darkline:focus-visible,
    .nav-link-custom:focus-visible,
    .brand-mark:focus-visible,
    .mobile-toggle:focus-visible,
    input:focus-visible,
    .filter-chip:focus-visible{
      outline:3px solid rgba(184,92,92,.28);
      outline-offset:3px;
    }

    .mobile-toggle{
      width:46px;
      height:46px;
      border-radius:999px;
      border:1px solid rgba(24,22,20,.12);
      background:rgba(255,250,243,.76);
      display:none;
      align-items:center;
      justify-content:center;
      padding:0;
      margin-left:auto;
    }

    .mobile-toggle span,
    .mobile-toggle span:before,
    .mobile-toggle span:after{
      width:18px;
      height:2px;
      border-radius:99px;
      background:var(--ink);
      display:block;
      position:relative;
      content:"";
    }
    .mobile-toggle span:before{position:absolute;top:-6px}
    .mobile-toggle span:after{position:absolute;top:6px}

    .mobile-panel{
      width:min(1120px, calc(100% - 36px));
      margin:10px auto 0;
      padding:14px;
      border-radius:26px;
      background:rgba(251,250,247,.94);
      border:1px solid rgba(216,208,198,.88);
      box-shadow:var(--shadow-dock);
      backdrop-filter:blur(18px);
      pointer-events:auto;
    }

    .mobile-panel .nav-link-custom{
      width:100%;
      justify-content:flex-start;
      margin-bottom:6px;
    }

    .reminder-form{
      display:grid;
      grid-template-columns:1fr auto;
      gap:8px;
      padding:8px;
      border:1px solid rgba(216,208,198,.78);
      background:rgba(245,241,234,.9);
      border-radius:22px;
    }

    main{overflow:hidden}

    .compact-hero{
      padding:148px 0 72px;
    }

    .breadcrumb-line{
      display:flex;
      flex-wrap:wrap;
      align-items:center;
      gap:9px;
      color:var(--weak);
      font-size:14px;
      margin-bottom:18px;
    }

    .breadcrumb-line a{
      color:var(--muted);
      font-weight:700;
    }

    .breadcrumb-line .current{color:var(--accent-dark);font-weight:800}

    .control-shell{
      position:relative;
      border-radius:var(--radius-xl);
      padding:34px;
      background:
        linear-gradient(135deg, rgba(255,250,243,.92), rgba(245,241,234,.72)),
        repeating-linear-gradient(90deg, rgba(24,22,20,.035) 0 1px, transparent 1px 70px);
      border:1px solid rgba(216,208,198,.9);
      box-shadow:var(--shadow-card);
    }

    .control-shell:after{
      content:"";
      position:absolute;
      inset:auto 34px -10px 34px;
      height:22px;
      border-radius:0 0 28px 28px;
      border:1px solid rgba(216,208,198,.65);
      border-top:0;
      background:rgba(255,250,243,.42);
      z-index:-1;
    }

    .eyebrow{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:7px 12px;
      border-radius:999px;
      background:rgba(184,92,92,.09);
      color:var(--accent-dark);
      border:1px solid rgba(184,92,92,.16);
      font-size:13px;
      font-weight:800;
      margin-bottom:18px;
    }
    .eyebrow:before{
      content:"";
      width:8px;
      height:8px;
      border-radius:99px;
      background:var(--accent);
      box-shadow:0 0 0 5px rgba(184,92,92,.10);
    }

    h1{
      margin:0;
      font-size:clamp(32px,5vw,58px);
      line-height:1.08;
      font-weight:850;
      letter-spacing:-.055em;
      max-width:900px;
    }

    .hero-desc{
      margin:18px 0 0;
      max-width:760px;
      color:var(--muted);
      font-size:18px;
    }

    .status-strip{
      margin-top:26px;
      display:grid;
      grid-template-columns:1.2fr .8fr auto auto;
      gap:10px;
      align-items:center;
      padding:10px;
      border-radius:24px;
      background:rgba(23,21,20,.96);
      color:var(--white);
      box-shadow:0 22px 50px rgba(23,21,20,.18);
    }

    .status-item{
      min-height:54px;
      display:flex;
      align-items:center;
      gap:10px;
      padding:10px 14px;
      border-radius:18px;
      background:rgba(255,255,255,.06);
      border:1px solid rgba(255,255,255,.10);
      color:rgba(247,241,232,.86);
      font-size:14px;
    }
    .status-dot{
      width:10px;
      height:10px;
      border-radius:50%;
      background:#CFA06B;
      box-shadow:0 0 0 5px rgba(207,160,107,.16);
      flex:0 0 auto;
    }
    .status-item strong{
      color:#fff;
      font-size:16px;
      margin-right:2px;
    }

    .section{
      padding:74px 0;
    }

    .section-head{
      display:flex;
      align-items:end;
      justify-content:space-between;
      gap:24px;
      margin-bottom:28px;
    }

    .section-kicker{
      color:var(--accent-dark);
      font-size:13px;
      font-weight:850;
      letter-spacing:.08em;
      margin-bottom:10px;
    }

    h2{
      margin:0;
      font-size:clamp(28px,4vw,42px);
      line-height:1.18;
      font-weight:850;
      letter-spacing:-.045em;
    }

    .section-summary{
      max-width:520px;
      margin:0;
      color:var(--muted);
      font-size:16px;
    }

    .filter-board{
      border-radius:var(--radius-xl);
      border:1px solid rgba(216,208,198,.92);
      background:rgba(251,250,247,.74);
      box-shadow:var(--shadow-card);
      padding:24px;
    }

    .filter-row{
      display:flex;
      align-items:center;
      gap:12px;
      flex-wrap:wrap;
      padding:14px 0;
      border-bottom:1px solid rgba(216,208,198,.76);
    }
    .filter-row:last-child{border-bottom:0}

    .filter-label{
      width:88px;
      color:var(--muted);
      font-size:14px;
      font-weight:800;
      flex:0 0 auto;
    }

    .filter-chip{
      border:1px solid rgba(24,22,20,.12);
      background:rgba(255,250,243,.68);
      color:var(--ink);
      padding:9px 14px;
      border-radius:999px;
      font-size:14px;
      font-weight:750;
      transition:var(--ease);
      cursor:pointer;
    }

    .filter-chip:hover,
    .filter-chip.active{
      transform:translateY(-2px);
      border-color:rgba(184,92,92,.46);
      background:rgba(184,92,92,.10);
      color:var(--accent-dark);
    }

    .filter-search{
      display:flex;
      align-items:center;
      width:100%;
      max-width:520px;
      border-radius:999px;
      background:#fffaf3;
      border:1px solid rgba(216,208,198,.9);
      overflow:hidden;
      transition:var(--ease);
    }
    .filter-search:focus-within{
      border-color:rgba(184,92,92,.62);
      box-shadow:0 0 0 5px rgba(184,92,92,.08);
    }
    .filter-search .btn-main{border-radius:999px;margin:5px}

    .content-layout{
      display:grid;
      grid-template-columns:minmax(0, 1fr) 330px;
      gap:28px;
      align-items:start;
    }

    .card-grid{
      display:grid;
      grid-template-columns:repeat(2, minmax(0, 1fr));
      gap:22px;
    }

    .entry-card{
      position:relative;
      min-height:270px;
      border-radius:var(--radius-lg);
      border:1px solid rgba(216,208,198,.92);
      background:rgba(251,250,247,.82);
      box-shadow:0 16px 44px rgba(24,22,20,.06);
      padding:24px;
      overflow:hidden;
      transition:var(--ease);
    }

    .entry-card:nth-child(2n){
      transform:translateY(22px);
    }

    .entry-card:hover{
      transform:translateY(-4px);
      border-color:rgba(184,92,92,.42);
      box-shadow:0 24px 58px rgba(24,22,20,.10);
    }
    .entry-card:nth-child(2n):hover{
      transform:translateY(16px);
    }

    .entry-card:before{
      content:attr(data-index);
      position:absolute;
      right:20px;
      top:14px;
      color:rgba(24,22,20,.07);
      font-size:54px;
      line-height:1;
      font-weight:900;
      letter-spacing:-.08em;
    }

    .entry-card:after{
      content:"";
      position:absolute;
      right:-70px;
      bottom:-70px;
      width:180px;
      height:180px;
      border-radius:45px;
      transform:rotate(18deg);
      background:linear-gradient(135deg, rgba(184,92,92,.12), rgba(124,106,142,.10));
      border:1px solid rgba(24,22,20,.05);
    }

    .entry-top{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:12px;
      margin-bottom:18px;
      position:relative;
      z-index:1;
    }

    .zone-tag,
    .mini-badge{
      display:inline-flex;
      align-items:center;
      gap:6px;
      border-radius:999px;
      padding:7px 10px;
      font-size:12px;
      font-weight:850;
      line-height:1;
    }

    .zone-tag{
      background:rgba(184,92,92,.10);
      color:var(--accent-dark);
      border:1px solid rgba(184,92,92,.18);
    }

    .mini-badge{
      background:rgba(24,22,20,.055);
      color:var(--muted);
      border:1px solid rgba(24,22,20,.08);
    }

    .entry-card h3{
      margin:0 0 12px;
      font-size:23px;
      line-height:1.26;
      font-weight:850;
      letter-spacing:-.035em;
      position:relative;
      z-index:1;
    }

    .entry-card p{
      margin:0;
      color:var(--muted);
      font-size:15.5px;
      position:relative;
      z-index:1;
    }

    .badge-list{
      display:flex;
      flex-wrap:wrap;
      gap:8px;
      margin:20px 0 22px;
      position:relative;
      z-index:1;
    }

    .card-link{
      display:inline-flex;
      align-items:center;
      gap:8px;
      color:var(--accent-dark);
      font-weight:850;
      position:relative;
      z-index:1;
    }
    .card-link:hover{gap:12px;color:var(--ink)}

    .side-panel{
      position:sticky;
      top:112px;
      display:grid;
      gap:16px;
    }

    .side-card{
      border-radius:var(--radius-lg);
      background:rgba(251,250,247,.82);
      border:1px solid rgba(216,208,198,.92);
      padding:22px;
      box-shadow:0 16px 40px rgba(24,22,20,.06);
    }

    .side-card.dark{
      background:var(--dark);
      color:var(--white);
      border-color:rgba(255,255,255,.12);
      box-shadow:0 22px 55px rgba(23,21,20,.20);
    }

    .side-title{
      font-size:18px;
      font-weight:850;
      letter-spacing:-.025em;
      margin-bottom:12px;
    }

    .side-list{
      list-style:none;
      margin:0;
      padding:0;
      display:grid;
      gap:10px;
    }

    .side-list li,
    .notice-item{
      display:flex;
      justify-content:space-between;
      gap:12px;
      padding:12px 0;
      border-bottom:1px solid rgba(216,208,198,.7);
      color:var(--muted);
      font-size:14px;
    }
    .side-card.dark .side-list li{
      border-bottom-color:rgba(255,255,255,.12);
      color:rgba(247,241,232,.78);
    }
    .side-list li:last-child,
    .notice-item:last-child{border-bottom:0}
    .side-list a{font-weight:800;color:inherit}
    .side-list a:hover{color:var(--accent)}
    .side-list span{color:var(--weak);font-size:13px}

    .steps-panel{
      border-radius:var(--radius-xl);
      background:var(--dark);
      color:var(--white);
      padding:30px;
      box-shadow:0 24px 60px rgba(23,21,20,.24);
      position:relative;
      overflow:hidden;
    }
    .steps-panel:before{
      content:"";
      position:absolute;
      inset:0;
      background:
        radial-gradient(circle at 85% 20%, rgba(184,92,92,.22), transparent 30%),
        repeating-linear-gradient(90deg, rgba(255,255,255,.045) 0 1px, transparent 1px 88px);
      pointer-events:none;
    }
    .steps-grid{
      display:grid;
      grid-template-columns:repeat(4, minmax(0,1fr));
      gap:14px;
      position:relative;
      z-index:1;
    }
    .step-card{
      border:1px solid rgba(255,255,255,.13);
      background:rgba(255,255,255,.055);
      border-radius:22px;
      padding:18px;
      transition:var(--ease);
    }
    .step-card:hover{
      transform:translateY(-4px);
      background:rgba(255,255,255,.08);
      border-color:rgba(255,255,255,.26);
    }
    .step-num{
      color:#D8B08B;
      font-weight:900;
      font-size:13px;
      margin-bottom:18px;
    }
    .step-card h3{
      margin:0 0 8px;
      font-size:18px;
      font-weight:850;
    }
    .step-card p{
      margin:0;
      color:rgba(247,241,232,.72);
      font-size:14px;
    }

    .notice-board{
      display:grid;
      grid-template-columns:1.1fr .9fr;
      gap:24px;
      align-items:stretch;
    }

    .large-result{
      border-radius:var(--radius-xl);
      padding:30px;
      background:
        linear-gradient(135deg, rgba(184,92,92,.10), rgba(124,106,142,.10)),
        rgba(251,250,247,.82);
      border:1px solid rgba(216,208,198,.92);
      box-shadow:var(--shadow-card);
    }

    .large-result h2{max-width:720px}
    .large-result p{
      margin:16px 0 0;
      color:var(--muted);
      max-width:760px;
    }

    .metric-grid{
      display:grid;
      grid-template-columns:repeat(2, minmax(0,1fr));
      gap:14px;
    }

    .metric-card{
      border-radius:24px;
      padding:22px;
      background:rgba(251,250,247,.82);
      border:1px solid rgba(216,208,198,.9);
      min-height:140px;
      transition:var(--ease);
    }
    .metric-card:hover{
      transform:translateY(-4px);
      border-color:rgba(184,92,92,.38);
    }
    .metric-num{
      font-size:34px;
      line-height:1;
      font-weight:900;
      letter-spacing:-.05em;
      color:var(--accent-dark);
      margin-bottom:10px;
    }
    .metric-card p{
      margin:0;
      color:var(--muted);
      font-size:14px;
    }

    .accordion{
      display:grid;
      gap:12px;
    }
    .accordion-item{
      border:1px solid rgba(216,208,198,.9)!important;
      background:rgba(251,250,247,.82)!important;
      border-radius:22px!important;
      overflow:hidden;
      box-shadow:0 12px 32px rgba(24,22,20,.045);
    }
    .accordion-button{
      min-height:58px;
      padding:18px 22px;
      color:var(--ink)!important;
      background:transparent!important;
      box-shadow:none!important;
      font-size:17px;
      font-weight:850;
      line-height:1.45;
    }
    .accordion-button:not(.collapsed){
      color:var(--accent-dark)!important;
      border-bottom:1px solid rgba(184,92,92,.18);
    }
    .accordion-button:focus{
      box-shadow:0 0 0 4px rgba(184,92,92,.10)!important;
      border-color:rgba(184,92,92,.30)!important;
    }
    .accordion-button::after{
      width:20px;
      height:20px;
      border-radius:50%;
      background-image:none!important;
      background:rgba(24,22,20,.08);
      content:"+";
      display:flex;
      align-items:center;
      justify-content:center;
      font-weight:900;
      color:var(--ink);
      transform:none!important;
      text-align:center;
      line-height:20px;
    }
    .accordion-button:not(.collapsed)::after{
      content:"−";
      background:rgba(184,92,92,.14);
      color:var(--accent-dark);
    }
    .accordion-body{
      padding:18px 22px 22px;
      color:var(--muted);
      line-height:1.85;
      font-size:15.5px;
    }

    .cta-panel{
      position:relative;
      border-radius:40px;
      background:var(--dark);
      color:var(--white);
      padding:40px;
      overflow:hidden;
      box-shadow:0 28px 70px rgba(23,21,20,.28);
    }
    .cta-panel:before{
      content:"";
      position:absolute;
      inset:0;
      background:
        radial-gradient(circle at 12% 15%, rgba(184,92,92,.24), transparent 28%),
        radial-gradient(circle at 90% 80%, rgba(124,106,142,.22), transparent 30%),
        repeating-linear-gradient(0deg, rgba(255,255,255,.035) 0 1px, transparent 1px 78px);
      pointer-events:none;
    }
    .cta-content{
      position:relative;
      z-index:1;
      display:grid;
      grid-template-columns:1fr auto;
      gap:24px;
      align-items:center;
    }
    .cta-panel h2{
      color:#fff;
      max-width:740px;
    }
    .cta-panel p{
      margin:14px 0 0;
      color:rgba(247,241,232,.76);
      max-width:760px;
    }
    .cta-actions{
      display:flex;
      flex-wrap:wrap;
      gap:12px;
      justify-content:flex-end;
    }
    .cta-note{
      position:relative;
      z-index:1;
      margin-top:26px;
      padding-top:18px;
      border-top:1px solid rgba(255,255,255,.13);
      color:rgba(247,241,232,.62);
      font-size:13px;
    }

    .site-footer{
      margin-top:70px;
      padding:60px 0 28px;
      background:var(--dark);
      color:rgba(247,241,232,.78);
    }
    .footer-grid{
      display:grid;
      grid-template-columns:1.4fr .8fr .8fr;
      gap:34px;
      padding-bottom:34px;
      border-bottom:1px solid rgba(255,255,255,.12);
    }
    .footer-brand{
      display:flex;
      align-items:center;
      gap:10px;
      color:#fff;
      font-weight:850;
      margin-bottom:14px;
    }
    .site-footer p{
      margin:0;
      max-width:520px;
      color:rgba(247,241,232,.66);
      font-size:14.5px;
    }
    .footer-title{
      color:#fff;
      font-weight:850;
      margin-bottom:12px;
    }
    .footer-links{
      display:grid;
      gap:10px;
    }
    .footer-links a{
      color:rgba(247,241,232,.70);
      font-size:14px;
    }
    .footer-links a:hover{color:#fff;transform:translateX(3px)}
    .copyright{
      display:flex;
      justify-content:space-between;
      gap:16px;
      flex-wrap:wrap;
      padding-top:22px;
      color:rgba(247,241,232,.50);
      font-size:13px;
    }

    .fade-up{
      animation:fadeUp .7s ease both;
    }
    .delay-1{animation-delay:.08s}
    .delay-2{animation-delay:.16s}
    @keyframes fadeUp{
      from{opacity:0;transform:translateY(14px)}
      to{opacity:1;transform:translateY(0)}
    }

    @media (max-width: 1100px){
      .dock-search{display:none}
      .content-layout{grid-template-columns:1fr}
      .side-panel{position:static;grid-template-columns:repeat(2,minmax(0,1fr))}
      .status-strip{grid-template-columns:1fr 1fr}
      .steps-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
      .notice-board{grid-template-columns:1fr}
    }

    @media (max-width: 768px){
      .site-container{width:min(100% - 28px, var(--container))}
      .dock-header{top:12px}
      .dock-nav{
        width:calc(100% - 24px);
        min-height:62px;
        padding:8px 10px 8px 14px;
      }
      .brand-text{
        max-width:190px;
        overflow:hidden;
        text-overflow:ellipsis;
      }
      .nav-links{display:none}
      .mobile-toggle{display:flex}
      .compact-hero{padding:112px 0 48px}
      .control-shell{padding:24px;border-radius:30px}
      .hero-desc{font-size:16px}
      .status-strip{
        grid-template-columns:1fr;
        border-radius:24px;
      }
      .status-strip .btn-main,
      .status-strip .btn-darkline{width:100%}
      .section{padding:54px 0}
      .section-head{
        display:grid;
        gap:12px;
        margin-bottom:22px;
      }
      .filter-row{align-items:flex-start}
      .filter-label{width:100%;margin-bottom:2px}
      .filter-search{
        max-width:100%;
        display:grid;
        grid-template-columns:1fr;
        border-radius:24px;
        padding:5px;
      }
      .filter-search .btn-main{width:100%;margin:0}
      .card-grid{grid-template-columns:1fr}
      .entry-card:nth-child(2n),
      .entry-card:nth-child(2n):hover{transform:none}
      .side-panel{grid-template-columns:1fr}
      .steps-grid{grid-template-columns:1fr}
      .metric-grid{grid-template-columns:1fr}
      .cta-panel{padding:28px;border-radius:30px}
      .cta-content{grid-template-columns:1fr}
      .cta-actions{justify-content:flex-start}
      .cta-actions .btn-main,
      .cta-actions .btn-darkline{width:100%}
      .footer-grid{grid-template-columns:1fr;gap:26px}
      .copyright{display:grid}
    }

    @media (max-width: 520px){
      .brand-symbol{width:28px;height:28px}
      .brand-text{font-size:13px;max-width:154px}
      .mobile-panel{width:calc(100% - 24px)}
      .reminder-form{grid-template-columns:1fr;border-radius:24px}
      .reminder-form .btn-main{width:100%}
      .control-shell{padding:20px}
      h1{font-size:31px;letter-spacing:-.045em}
      h2{font-size:27px}
      .entry-card{padding:20px;min-height:auto}
      .status-item{align-items:flex-start}
      .filter-board{padding:18px}
      .filter-chip{width:auto}
    }
