/* roulang page: index */
:root{
  --bg: #f7f3ec;
  --bg-soft: #fcfaf6;
  --panel: #fffdf9;
  --line: #e7ddd0;
  --line-strong: #d5c7b6;
  --text: #232120;
  --muted: #6f655c;
  --muted-2: #8b8075;
  --accent: #bc7c31;
  --accent-2: #2f6f66;
  --accent-3: #c65d4a;
  --accent-soft: rgba(188,124,49,.12);
  --mint-soft: rgba(47,111,102,.12);
  --shadow: 0 12px 28px rgba(40, 28, 12, .08);
  --shadow-soft: 0 8px 20px rgba(40, 28, 12, .06);
  --radius: 8px;
  --radius-sm: 6px;
  --space: 22px;
  --space-sm: 14px;
  --space-xs: 8px;
  --max: 1500px;
  --sidebar: 108px;
  --focus: 0 0 0 3px rgba(188,124,49,.2);
}
*,
*::before,
*::after{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family: Inter, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  color:var(--text);
  background:
    linear-gradient(180deg, #fcfaf6 0%, #f7f3ec 100%);
  line-height:1.7;
  letter-spacing:0;
  overflow-x:hidden;
}
img{max-width:100%;display:block}
a{color:inherit;text-decoration:none;transition:all .18s ease}
button,input,textarea,select{font:inherit}
button{cursor:pointer}
::selection{background:rgba(188,124,49,.18)}
.off-canvas-wrapper,
.off-canvas-content{background:transparent}
.off-canvas.position-left{
  width: 290px;
  background: #fffdf8;
  border-right:1px solid var(--line);
}
.mobile-topbar{
  display:none;
  position:sticky;
  top:0;
  z-index:35;
  background:rgba(252,250,246,.96);
  backdrop-filter:saturate(140%) blur(10px);
  border-bottom:1px solid var(--line);
}
.mobile-topbar__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding:14px 16px;
}
.mobile-brand{
  display:flex;
  align-items:center;
  gap:10px;
  min-width:0;
}
.mobile-mark,
.sidebar-mark{
  width:38px;
  height:38px;
  border-radius:10px;
  display:grid;
  place-items:center;
  color:#fff;
  font-weight:700;
  background:linear-gradient(145deg, var(--accent), #d99a44);
  box-shadow:0 10px 18px rgba(188,124,49,.18);
}
.mobile-brand strong,
.sidebar-brand strong{
  display:block;
  font-size:15px;
  line-height:1.2;
}
.mobile-brand span,
.sidebar-brand span{
  display:block;
  font-size:12px;
  color:var(--muted);
  line-height:1.2;
}
.mobile-actions{
  display:flex;
  gap:8px;
}
.icon-btn{
  width:40px;
  height:40px;
  border-radius:10px;
  border:1px solid var(--line);
  background:var(--panel);
  color:var(--text);
  display:grid;
  place-items:center;
  box-shadow:0 6px 16px rgba(35,33,32,.04);
}
.icon-btn:focus,
.button:focus,
a:focus,
input:focus{
  outline:none;
  box-shadow:var(--focus);
}
.page-shell{
  max-width:var(--max);
  margin:0 auto;
  padding:18px 18px 42px;
}
.site-layout{
  display:flex;
  align-items:flex-start;
  gap:18px;
}
.sidebar-desktop{
  flex:0 0 var(--sidebar);
  width:var(--sidebar);
  position:sticky;
  top:18px;
  align-self:flex-start;
  z-index:8;
}
.sidebar-panel{
  min-height:calc(100vh - 36px);
  border:1px solid var(--line);
  border-radius:16px;
  background:rgba(255,253,249,.92);
  box-shadow:var(--shadow-soft);
  padding:14px 10px;
  display:flex;
  flex-direction:column;
  gap:14px;
}
.sidebar-brand{
  display:flex;
  flex-direction:column;
  gap:8px;
  align-items:flex-start;
}
.sidebar-brand strong{
  font-size:14px;
  max-width:88px;
}
.sidebar-brand span{
  max-width:88px;
}
.nav-rail{
  display:flex;
  flex-direction:column;
  gap:10px;
}
.nav-rail a{
  min-height:76px;
  border-radius:14px;
  border:1px solid transparent;
  background:transparent;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:7px;
  text-align:center;
  color:var(--muted);
  padding:10px 8px;
  transition:transform .18s ease, border-color .18s ease, background .18s ease, color .18s ease, box-shadow .18s ease;
}
.nav-rail a i{
  font-size:16px;
}
.nav-rail a span{
  font-size:12px;
  line-height:1.25;
}
.nav-rail a:hover{
  background:#fff;
  color:var(--text);
  border-color:var(--line);
  transform:translateY(-1px);
  box-shadow:0 8px 18px rgba(35,33,32,.05);
}
.nav-rail a.is-active{
  background:linear-gradient(180deg, rgba(188,124,49,.13), rgba(188,124,49,.07));
  border-color:rgba(188,124,49,.24);
  color:var(--text);
}
.sidebar-note{
  margin-top:auto;
  padding-top:10px;
  border-top:1px solid var(--line);
  font-size:12px;
  color:var(--muted);
  line-height:1.55;
}
.page-main{
  flex:1 1 auto;
  min-width:0;
}
.section-band{
  padding:18px 0;
}
.hero-band{
  position:relative;
  overflow:hidden;
  border:1px solid var(--line);
  border-radius:20px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.84), rgba(255,255,255,.72)),
    linear-gradient(135deg, rgba(188,124,49,.07), rgba(47,111,102,.04));
  box-shadow:var(--shadow);
  padding:26px 22px;
}
.hero-band::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(90deg, rgba(188,124,49,.04) 1px, transparent 1px),
    linear-gradient(180deg, rgba(47,111,102,.04) 1px, transparent 1px);
  background-size:42px 42px;
  mask-image:linear-gradient(180deg, rgba(0,0,0,.7), transparent 92%);
  pointer-events:none;
}
.hero-grid{
  position:relative;
  z-index:1;
  display:grid;
  grid-template-columns:minmax(0,1.22fr) minmax(340px,.92fr);
  gap:18px;
  align-items:center;
}
.kicker{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-size:12px;
  color:var(--accent);
  text-transform:none;
  letter-spacing:0;
  background:var(--accent-soft);
  border:1px solid rgba(188,124,49,.14);
  border-radius:999px;
  padding:7px 11px;
  margin-bottom:14px;
}
.hero-title{
  margin:0;
  font-size:clamp(32px, 4.6vw, 56px);
  line-height:1.05;
  letter-spacing:0;
}
.hero-copy{
  max-width:46rem;
  margin:14px 0 0;
  font-size:16px;
  color:var(--muted);
}
.hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:20px;
}
.button{
  border-radius:10px;
  padding:12px 16px;
  line-height:1;
  border:1px solid transparent;
  font-weight:600;
  transition:transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease, color .18s ease;
}
.button:hover{transform:translateY(-1px)}
.button.primary{
  background:linear-gradient(180deg, #d39242, #b8742c);
  color:#fff;
  box-shadow:0 10px 18px rgba(188,124,49,.18);
}
.button.primary:hover{background:linear-gradient(180deg, #df9f50, #c58033)}
.button.secondary{
  background:#fff;
  color:var(--text);
  border-color:var(--line-strong);
}
.button.secondary:hover{border-color:var(--accent);box-shadow:0 10px 18px rgba(35,33,32,.05)}
.button.ghost{
  background:transparent;
  color:var(--text);
  border-color:transparent;
}
.button.ghost:hover{
  background:rgba(255,255,255,.74);
  border-color:var(--line);
}
.hero-badges{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin-top:18px;
}
.badge{
  display:inline-flex;
  align-items:center;
  gap:6px;
  padding:7px 11px;
  font-size:12px;
  border-radius:999px;
  background:#fff;
  border:1px solid var(--line);
  color:var(--muted);
}
.bento{
  display:grid;
  grid-template-columns:repeat(2, minmax(0,1fr));
  gap:12px;
}
.bento-card{
  min-height:132px;
  border-radius:16px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.84);
  box-shadow:0 8px 20px rgba(35,33,32,.05);
  padding:16px;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  gap:10px;
}
.bento-card .num{
  display:inline-flex;
  width:30px;
  height:30px;
  align-items:center;
  justify-content:center;
  border-radius:10px;
  background:rgba(188,124,49,.12);
  color:var(--accent);
  font-weight:700;
  font-size:13px;
}
.bento-card h3{
  font-size:15px;
  line-height:1.35;
  margin:0;
}
.bento-card p{
  margin:0;
  color:var(--muted);
  font-size:13px;
  line-height:1.55;
}
.section-head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:12px;
  margin-bottom:16px;
}
.section-head h2{
  margin:0;
  font-size:24px;
  line-height:1.2;
}
.section-head p{
  margin:0;
  color:var(--muted);
  max-width:54rem;
  font-size:14px;
}
.band{
  border:1px solid var(--line);
  border-radius:18px;
  background:rgba(255,255,255,.76);
  box-shadow:var(--shadow-soft);
  padding:20px;
}
.dual-copy{
  display:grid;
  grid-template-columns:1.02fr .98fr;
  gap:18px;
  align-items:start;
}
.story{
  padding-right:8px;
}
.story p{
  color:var(--muted);
  margin:0 0 14px;
}
.story-grid{
  display:grid;
  grid-template-columns:repeat(2, minmax(0,1fr));
  gap:12px;
}
.story-item{
  padding:14px;
  border-radius:14px;
  border:1px solid var(--line);
  background:var(--bg-soft);
}
.story-item .label{
  display:inline-flex;
  align-items:center;
  gap:6px;
  font-size:12px;
  color:var(--accent-2);
  background:var(--mint-soft);
  border:1px solid rgba(47,111,102,.14);
  border-radius:999px;
  padding:6px 10px;
  margin-bottom:10px;
}
.story-item strong{
  display:block;
  font-size:15px;
  margin-bottom:8px;
}
.story-item span{
  color:var(--muted);
  font-size:13px;
  line-height:1.55;
}
.link-grid{
  display:grid;
  grid-template-columns:repeat(2, minmax(0,1fr));
  gap:14px;
}
.link-card{
  position:relative;
  border:1px solid var(--line);
  border-radius:16px;
  background:#fff;
  padding:16px;
  box-shadow:0 8px 20px rgba(35,33,32,.05);
  transition:transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.link-card:hover{
  transform:translateY(-2px);
  border-color:rgba(188,124,49,.25);
  box-shadow:0 12px 24px rgba(35,33,32,.08);
}
.link-card.is-feature{
  grid-column:span 2;
  display:grid;
  grid-template-columns:minmax(0,1.18fr) minmax(220px,.82fr);
  gap:14px;
  align-items:center;
  background:
    linear-gradient(180deg, rgba(255,255,255,.95), rgba(255,255,255,.92)),
    linear-gradient(135deg, rgba(198,93,74,.05), rgba(188,124,49,.05));
}
.link-card .meta{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin-top:12px;
}
.pill{
  display:inline-flex;
  align-items:center;
  gap:6px;
  font-size:12px;
  color:var(--muted);
  border:1px solid var(--line);
  background:var(--bg-soft);
  border-radius:999px;
  padding:6px 10px;
}
.link-card h3{
  margin:0 0 10px;
  font-size:18px;
  line-height:1.35;
}
.link-card p{
  margin:0;
  color:var(--muted);
  font-size:13px;
  line-height:1.65;
}
.link-figure{
  min-height:140px;
  border-radius:14px;
  border:1px dashed rgba(188,124,49,.28);
  background:
    linear-gradient(180deg, rgba(188,124,49,.08), rgba(47,111,102,.05));
  display:grid;
  place-items:center;
  text-align:center;
  padding:14px;
}
.link-figure .big{
  font-size:38px;
  font-weight:800;
  line-height:1;
  color:var(--accent);
}
.link-figure .small{
  margin-top:8px;
  color:var(--muted);
  font-size:13px;
}
.trust-grid{
  display:grid;
  grid-template-columns:repeat(4, minmax(0,1fr));
  gap:12px;
}
.trust-card{
  padding:16px;
  border-radius:14px;
  border:1px solid var(--line);
  background:#fff;
  box-shadow:0 8px 16px rgba(35,33,32,.04);
}
.trust-card .score{
  display:flex;
  align-items:baseline;
  gap:6px;
  margin-bottom:6px;
}
.trust-card .score strong{
  font-size:30px;
  line-height:1;
  color:var(--text);
}
.trust-card .score span{
  color:var(--muted);
  font-size:12px;
}
.trust-card p{
  margin:0;
  color:var(--muted);
  font-size:13px;
  line-height:1.55;
}
.bubble-wall{
  display:grid;
  grid-template-columns:repeat(4, minmax(0,1fr));
  gap:12px;
}
.bubble{
  position:relative;
  border-radius:18px;
  border:1px solid var(--line);
  background:#fff;
  padding:16px;
  min-height:148px;
  box-shadow:0 8px 18px rgba(35,33,32,.05);
}
.bubble:nth-child(2n){
  background:linear-gradient(180deg, #fff, #fffaf4);
}
.avatar{
  width:34px;
  height:34px;
  border-radius:50%;
  background:linear-gradient(145deg, rgba(188,124,49,.9), rgba(198,93,74,.9));
  color:#fff;
  display:grid;
  place-items:center;
  font-size:13px;
  font-weight:700;
  margin-bottom:12px;
}
.bubble p{
  margin:0;
  color:var(--text);
  font-size:13px;
  line-height:1.7;
}
.bubble small{
  display:block;
  margin-top:12px;
  color:var(--muted);
}
.faq-wrap .accordion{
  margin:0;
  background:transparent;
}
.faq-wrap .accordion-item{
  border:1px solid var(--line);
  border-radius:12px;
  overflow:hidden;
  margin-bottom:10px;
  background:#fff;
  box-shadow:0 8px 16px rgba(35,33,32,.03);
}
.faq-wrap .accordion-title{
  padding:15px 16px;
  font-size:15px;
  color:var(--text);
  background:#fff;
  border:0;
}
.faq-wrap .accordion-title::before{
  color:var(--accent);
  font-size:1.1rem;
  top:50%;
  transform:translateY(-50%);
}
.faq-wrap .accordion-content{
  border:0;
  border-top:1px solid var(--line);
  background:var(--bg-soft);
  color:var(--muted);
  padding:14px 16px;
  font-size:14px;
  line-height:1.75;
}
.cta-band{
  border:1px solid rgba(188,124,49,.18);
  border-radius:20px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.94), rgba(255,250,243,.92));
  box-shadow:var(--shadow);
  padding:22px;
}
.cta-grid{
  display:grid;
  grid-template-columns:1.06fr .94fr;
  gap:18px;
  align-items:center;
}
.cta-grid h2{
  margin:0 0 10px;
  font-size:28px;
  line-height:1.2;
}
.cta-grid p{
  margin:0;
  color:var(--muted);
  max-width:44rem;
  font-size:15px;
}
.cta-tools{
  display:grid;
  gap:10px;
}
.cta-form{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  align-items:center;
}
.cta-form input{
  flex:1 1 220px;
  min-height:46px;
  border-radius:10px;
  border:1px solid var(--line-strong);
  background:#fff;
  padding:12px 14px;
  color:var(--text);
}
.cta-form input::placeholder{color:#9a8f84}
.cta-form .button{min-height:46px}
.notice-list{
  display:grid;
  gap:8px;
  margin-top:12px;
}
.notice{
  display:flex;
  gap:10px;
  align-items:flex-start;
  padding:10px 12px;
  border-radius:12px;
  border:1px solid var(--line);
  background:#fff;
  color:var(--muted);
  font-size:13px;
  line-height:1.6;
}
.notice i{
  color:var(--accent-2);
  margin-top:2px;
}
.footer{
  margin-top:22px;
  padding:20px 0 8px;
  color:var(--muted);
}
.footer-inner{
  border-top:1px solid var(--line);
  padding-top:18px;
  display:flex;
  flex-wrap:wrap;
  justify-content:space-between;
  gap:12px;
  align-items:center;
}
.footer-brand strong{
  color:var(--text);
  display:block;
  font-size:15px;
}
.footer-brand span{
  display:block;
  font-size:12px;
  color:var(--muted);
  margin-top:4px;
}
.footer-links{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}
.footer-links a{
  color:var(--muted);
  font-size:13px;
}
.footer-links a:hover{color:var(--text)}
.page-toolbar{
  display:flex;
  flex-wrap:wrap;
  justify-content:space-between;
  gap:10px;
  align-items:center;
  margin-bottom:14px;
}
.search-bar{
  display:flex;
  gap:10px;
  flex:1 1 320px;
}
.search-bar input{
  width:100%;
  min-height:44px;
  border-radius:10px;
  border:1px solid var(--line);
  background:#fff;
  padding:11px 14px;
}
.filter-row,
.sort-row{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
}
.chip{
  display:inline-flex;
  align-items:center;
  gap:7px;
  min-height:38px;
  padding:0 12px;
  border-radius:999px;
  border:1px solid var(--line);
  background:#fff;
  color:var(--muted);
  font-size:13px;
}
.chip.is-active{
  border-color:rgba(188,124,49,.3);
  background:rgba(188,124,49,.1);
  color:var(--text);
}
.catalog-grid{
  display:grid;
  grid-template-columns:repeat(12, minmax(0,1fr));
  gap:14px;
}
.catalog-feature{
  grid-column:span 12;
  border-radius:18px;
  border:1px solid var(--line);
  background:#fff;
  box-shadow:var(--shadow-soft);
  overflow:hidden;
  display:grid;
  grid-template-columns:minmax(0,1.12fr) minmax(320px,.88fr);
}
.catalog-feature .visual{
  padding:18px;
  background:
    linear-gradient(135deg, rgba(188,124,49,.08), rgba(47,111,102,.05));
  border-right:1px solid var(--line);
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  gap:16px;
}
.catalog-feature .visual strong{
  font-size:22px;
  line-height:1.25;
}
.catalog-feature .visual p{
  margin:0;
  color:var(--muted);
  font-size:14px;
  line-height:1.7;
}
.catalog-feature .sheet{
  padding:18px;
  display:grid;
  gap:12px;
}
.sheet-row{
  display:flex;
  justify-content:space-between;
  gap:16px;
  align-items:center;
  border-bottom:1px dashed var(--line);
  padding-bottom:12px;
}
.sheet-row:last-child{border-bottom:0;padding-bottom:0}
.sheet-row strong{font-size:14px}
.sheet-row span{color:var(--muted);font-size:13px}
.catalog-card{
  grid-column:span 4;
  border-radius:16px;
  border:1px solid var(--line);
  background:#fff;
  box-shadow:0 8px 18px rgba(35,33,32,.04);
  padding:16px;
  display:flex;
  flex-direction:column;
  gap:12px;
}
.catalog-card .thumb{
  aspect-ratio:16/9;
  border-radius:12px;
  border:1px solid rgba(188,124,49,.16);
  background:
    linear-gradient(135deg, rgba(188,124,49,.12), rgba(198,93,74,.08)),
    linear-gradient(180deg, #fff, #fffaf6);
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  padding:12px;
}
.catalog-card .thumb .index{
  font-size:28px;
  font-weight:800;
  line-height:1;
  color:var(--accent);
}
.catalog-card .thumb .tagline{
  font-size:12px;
  color:var(--muted);
}
.catalog-card h3{
  margin:0;
  font-size:17px;
  line-height:1.35;
}
.catalog-card p{
  margin:0;
  color:var(--muted);
  font-size:13px;
  line-height:1.7;
}
.card-meta{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
}
.list-links{
  display:grid;
  gap:10px;
}
.list-item{
  display:flex;
  justify-content:space-between;
  gap:12px;
  align-items:flex-start;
  padding:12px 14px;
  border:1px solid var(--line);
  border-radius:12px;
  background:#fff;
  transition:transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.list-item:hover{
  transform:translateY(-1px);
  border-color:rgba(188,124,49,.25);
  box-shadow:0 10px 20px rgba(35,33,32,.05);
}
.list-item strong{
  display:block;
  font-size:14px;
  line-height:1.5;
}
.list-item span{
  color:var(--muted);
  font-size:12px;
  white-space:nowrap;
}
.steps{
  display:grid;
  grid-template-columns:repeat(3, minmax(0,1fr));
  gap:12px;
}
.step{
  padding:16px;
  border-radius:14px;
  border:1px solid var(--line);
  background:#fff;
  box-shadow:0 8px 16px rgba(35,33,32,.04);
}
.step .n{
  display:inline-flex;
  width:30px;
  height:30px;
  align-items:center;
  justify-content:center;
  border-radius:10px;
  background:rgba(47,111,102,.12);
  color:var(--accent-2);
  font-weight:700;
  margin-bottom:10px;
}
.step strong{
  display:block;
  margin-bottom:8px;
  font-size:15px;
}
.step p{
  margin:0;
  color:var(--muted);
  font-size:13px;
  line-height:1.6;
}
.load-more{
  display:flex;
  justify-content:center;
  margin-top:16px;
}
.load-more .button{
  min-width:180px;
}
@media screen and (max-width: 1200px){
  .hero-grid,
  .dual-copy,
  .cta-grid,
  .catalog-feature{
    grid-template-columns:1fr;
  }
  .link-card.is-feature{
    grid-template-columns:1fr;
  }
  .bubble-wall,
  .trust-grid{
    grid-template-columns:repeat(2, minmax(0,1fr));
  }
  .catalog-card{
    grid-column:span 6;
  }
}
@media screen and (max-width: 1024px){
  .page-shell{padding:14px 14px 34px}
  .sidebar-desktop{display:none}
  .mobile-topbar{display:block}
  .site-layout{display:block}
  .page-main{max-width:100%}
  .section-head{flex-direction:column;align-items:flex-start}
  .hero-title{font-size:clamp(30px, 7vw, 46px)}
  .hero-band{padding:22px 16px}
  .catalog-feature,
  .catalog-feature .visual,
  .catalog-feature .sheet{
    display:block;
  }
  .catalog-feature .visual{
    border-right:0;
    border-bottom:1px solid var(--line);
  }
}
@media screen and (max-width: 768px){
  .bubble-wall,
  .trust-grid,
  .story-grid,
  .link-grid,
  .catalog-card,
  .steps{
    grid-template-columns:1fr;
  }
  .catalog-card{grid-column:span 12}
  .hero-badges,
  .hero-actions,
  .cta-form,
  .page-toolbar{
    flex-direction:column;
    align-items:stretch;
  }
  .button,
  .cta-form input{
    width:100%;
  }
  .link-card.is-feature{
    grid-column:span 1;
  }
  .section-head h2{font-size:21px}
  .hero-copy,
  .section-head p,
  .story p,
  .cta-grid p{
    font-size:14px;
  }
}
@media screen and (max-width: 520px){
  .page-shell{padding:10px 10px 26px}
  .hero-band,
  .band,
  .cta-band{
    border-radius:16px;
    padding:16px 14px;
  }
  .hero-title{font-size:28px}
  .nav-rail a{min-height:68px}
  .off-canvas.position-left{width:86vw}
}

/* roulang page: category1 */
:root {
      --bg: #fbf7ef;
      --bg-soft: #f3f0e8;
      --panel: #fffdf8;
      --panel-strong: #ffffff;
      --text: #252525;
      --muted: #6e6a63;
      --faint: #948f86;
      --line: #e5ded1;
      --line-strong: #d9cdbd;
      --charcoal: #2d2b28;
      --amber: #d99032;
      --amber-soft: #fff0d8;
      --coral: #d96b5f;
      --coral-soft: #ffe6e1;
      --mint: #75b7a6;
      --mint-soft: #e5f5f0;
      --metal: #8a8d91;
      --radius: 8px;
      --radius-sm: 6px;
      --shadow: 0 16px 34px rgba(45, 43, 40, .08);
      --shadow-soft: 0 10px 24px rgba(45, 43, 40, .06);
      --focus: 0 0 0 3px rgba(217, 144, 50, .22);
      --rail: 104px;
      --content-max: 1180px;
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      min-height: 100vh;
      background:
        linear-gradient(180deg, rgba(255,255,255,.72), rgba(251,247,239,.9) 32%, rgba(243,240,232,.72)),
        radial-gradient(circle at 82% 8%, rgba(117,183,166,.18), transparent 28%),
        radial-gradient(circle at 22% 18%, rgba(217,144,50,.14), transparent 32%);
      color: var(--text);
      font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
      line-height: 1.72;
      letter-spacing: 0;
    }

    a {
      color: inherit;
      text-decoration: none;
      transition: color .22s ease, background .22s ease, border-color .22s ease, transform .22s ease, box-shadow .22s ease;
    }

    img {
      max-width: 100%;
      display: block;
    }

    button,
    input,
    select {
      font: inherit;
    }

    button {
      cursor: pointer;
    }

    :focus-visible {
      outline: none;
      box-shadow: var(--focus);
    }

    .site-shell {
      min-height: 100vh;
      padding-left: var(--rail);
    }

    .nav-rail {
      position: fixed;
      inset: 0 auto 0 0;
      z-index: 60;
      width: var(--rail);
      padding: 22px 12px;
      background: rgba(255, 253, 248, .92);
      border-right: 1px solid var(--line);
      box-shadow: 8px 0 28px rgba(45, 43, 40, .05);
      backdrop-filter: blur(16px);
      display: flex;
      flex-direction: column;
      gap: 12px;
      align-items: stretch;
    }

    .nav-rail::before {
      content: "亚洲字幕";
      display: grid;
      place-items: center;
      min-height: 62px;
      margin-bottom: 8px;
      border: 1px solid var(--line-strong);
      border-radius: var(--radius);
      background: linear-gradient(145deg, #fffdf8, #f8ecd9);
      color: var(--charcoal);
      font-size: 14px;
      font-weight: 800;
      line-height: 1.25;
      text-align: center;
      box-shadow: var(--shadow-soft);
    }

    .nav-rail a {
      min-height: 76px;
      padding: 10px 8px;
      border: 1px solid transparent;
      border-radius: var(--radius);
      color: var(--muted);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      row-gap: 7px;
      text-align: center;
      font-size: 12px;
      font-weight: 700;
      line-height: 1.25;
    }

    .nav-rail a i {
      width: 30px;
      height: 30px;
      display: grid;
      place-items: center;
      border-radius: 50%;
      background: var(--bg-soft);
      color: var(--charcoal);
      font-size: 14px;
      transition: background .22s ease, color .22s ease, transform .22s ease;
    }

    .nav-rail a:hover {
      transform: translateY(-2px);
      border-color: var(--line);
      background: #fffaf1;
      color: var(--charcoal);
      box-shadow: var(--shadow-soft);
    }

    .nav-rail a:hover i,
    .nav-rail a.is-active i {
      background: var(--charcoal);
      color: #fff;
    }

    .nav-rail a.is-active {
      border-color: rgba(217, 144, 50, .45);
      background: var(--amber-soft);
      color: var(--charcoal);
      box-shadow: var(--shadow-soft);
    }

    .mobile-topbar {
      display: none;
      position: sticky;
      top: 0;
      z-index: 70;
      padding: 10px 14px;
      background: rgba(255, 253, 248, .94);
      border-bottom: 1px solid var(--line);
      backdrop-filter: blur(14px);
    }

    .mobile-topbar-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
    }

    .mobile-brand {
      display: flex;
      align-items: center;
      gap: 9px;
      min-width: 0;
      font-weight: 900;
      color: var(--charcoal);
    }

    .mobile-brand i {
      width: 34px;
      height: 34px;
      display: grid;
      place-items: center;
      border-radius: 50%;
      background: var(--amber-soft);
      color: var(--amber);
      flex: 0 0 auto;
    }

    .mobile-brand span {
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap;
    }

    .mobile-actions {
      display: flex;
      align-items: center;
      gap: 8px;
      flex: 0 0 auto;
    }

    .icon-btn {
      width: 38px;
      height: 38px;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: #fff;
      color: var(--charcoal);
      display: grid;
      place-items: center;
      transition: transform .22s ease, border-color .22s ease, background .22s ease;
    }

    .icon-btn:hover,
    .icon-btn:focus {
      transform: translateY(-1px);
      border-color: var(--amber);
      background: var(--amber-soft);
    }

    .mobile-menu {
      display: none;
      padding: 10px 14px 14px;
      background: rgba(255, 253, 248, .98);
      border-bottom: 1px solid var(--line);
    }

    .mobile-menu.is-open {
      display: block;
    }

    .mobile-menu a {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 12px 10px;
      border-radius: var(--radius);
      color: var(--muted);
      font-weight: 800;
    }

    .mobile-menu a.is-active,
    .mobile-menu a:hover {
      background: var(--amber-soft);
      color: var(--charcoal);
    }

    .page-main {
      width: 100%;
    }

    .page-container {
      width: min(calc(100% - 36px), var(--content-max));
      margin: 0 auto;
    }

    .hero {
      padding: 26px 0 34px;
      border-bottom: 1px solid rgba(229, 222, 209, .74);
    }

    .top-strip {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      margin-bottom: 18px;
      padding: 12px 14px;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: rgba(255, 253, 248, .76);
      box-shadow: var(--shadow-soft);
    }

    .strip-title {
      display: flex;
      align-items: center;
      gap: 10px;
      min-width: 0;
    }

    .strip-title i {
      width: 34px;
      height: 34px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      background: var(--mint-soft);
      color: #3c8f7a;
      flex: 0 0 auto;
    }

    .strip-title span {
      font-size: 13px;
      color: var(--faint);
      display: block;
      line-height: 1.2;
    }

    .strip-title strong {
      color: var(--charcoal);
      font-size: 18px;
      line-height: 1.28;
      display: block;
    }

    .strip-actions {
      display: flex;
      align-items: center;
      gap: 8px;
      flex-wrap: wrap;
      justify-content: flex-end;
    }

    .pill {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      min-height: 32px;
      padding: 6px 10px;
      border: 1px solid var(--line);
      border-radius: 999px;
      background: #fff;
      color: var(--muted);
      font-size: 13px;
      font-weight: 800;
      white-space: nowrap;
    }

    .pill.is-warm {
      background: var(--amber-soft);
      border-color: rgba(217, 144, 50, .35);
      color: #815019;
    }

    .hero-layout {
      align-items: stretch;
    }

    .hero-copy {
      padding: 22px 0 12px;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      margin-bottom: 16px;
      padding: 7px 11px;
      border: 1px solid rgba(217, 144, 50, .38);
      border-radius: 999px;
      background: rgba(255, 240, 216, .68);
      color: #83511b;
      font-size: 13px;
      font-weight: 900;
    }

    h1 {
      margin: 0;
      color: var(--charcoal);
      font-size: clamp(34px, 5vw, 64px);
      line-height: 1.05;
      font-weight: 950;
      letter-spacing: 0;
      max-width: 780px;
    }

    .hero-copy p {
      margin: 18px 0 0;
      max-width: 720px;
      color: var(--muted);
      font-size: 17px;
    }

    .hero-commands {
      display: flex;
      align-items: center;
      gap: 12px;
      flex-wrap: wrap;
      margin-top: 24px;
    }

    .btn {
      appearance: none;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 9px;
      min-height: 44px;
      padding: 11px 16px;
      border: 1px solid transparent;
      border-radius: var(--radius);
      font-weight: 900;
      line-height: 1.2;
      transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease, background .22s ease, color .22s ease;
    }

    .btn-primary {
      background: var(--charcoal);
      color: #fff;
      box-shadow: 0 12px 24px rgba(45, 43, 40, .16);
    }

    .btn-primary:hover,
    .btn-primary:focus {
      color: #fff;
      transform: translateY(-2px);
      background: #161514;
      box-shadow: 0 16px 30px rgba(45, 43, 40, .22);
    }

    .btn-secondary {
      background: #fff;
      color: var(--charcoal);
      border-color: var(--line-strong);
    }

    .btn-secondary:hover,
    .btn-secondary:focus {
      transform: translateY(-2px);
      border-color: var(--amber);
      background: var(--amber-soft);
      color: var(--charcoal);
    }

    .hero-ticket {
      min-height: 100%;
      padding: 18px;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background:
        linear-gradient(135deg, rgba(255,255,255,.96), rgba(255,250,241,.96)),
        repeating-linear-gradient(90deg, transparent 0 18px, rgba(217,144,50,.08) 18px 19px);
      box-shadow: var(--shadow);
      position: relative;
      overflow: hidden;
    }

    .hero-ticket::before,
    .hero-ticket::after {
      content: "";
      position: absolute;
      left: -13px;
      width: 26px;
      height: 26px;
      border-radius: 50%;
      background: var(--bg);
      border: 1px solid var(--line);
    }

    .hero-ticket::before {
      top: 38%;
    }

    .hero-ticket::after {
      bottom: 22%;
    }

    .ticket-head {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 12px;
      padding-bottom: 14px;
      border-bottom: 1px dashed var(--line-strong);
    }

    .ticket-head strong {
      display: block;
      color: var(--charcoal);
      font-size: 20px;
      line-height: 1.3;
    }

    .ticket-head span {
      color: var(--faint);
      font-size: 13px;
    }

    .ticket-code {
      padding: 7px 9px;
      border-radius: var(--radius-sm);
      background: var(--charcoal);
      color: #fff;
      font-size: 12px;
      font-weight: 900;
      white-space: nowrap;
    }

    .toc-list {
      margin: 16px 0;
      display: grid;
      gap: 10px;
    }

    .toc-item {
      display: grid;
      grid-template-columns: 34px 1fr auto;
      align-items: center;
      gap: 10px;
      padding: 10px;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: rgba(255,255,255,.78);
    }

    .toc-num {
      width: 34px;
      height: 34px;
      display: grid;
      place-items: center;
      border-radius: 50%;
      background: var(--amber-soft);
      color: #8a551a;
      font-weight: 950;
    }

    .toc-item strong {
      display: block;
      color: var(--charcoal);
      font-size: 15px;
      line-height: 1.25;
    }

    .toc-item span {
      color: var(--faint);
      font-size: 12px;
    }

    .toc-status {
      color: #3c8f7a;
      font-size: 13px;
      font-weight: 900;
      white-space: nowrap;
    }

    .lead-form {
      display: grid;
      gap: 10px;
      padding-top: 14px;
      border-top: 1px dashed var(--line-strong);
    }

    .input-line {
      display: flex;
      gap: 8px;
    }

    .input-line input {
      width: 100%;
      min-height: 42px;
      border: 1px solid var(--line-strong);
      border-radius: var(--radius);
      background: #fff;
      color: var(--text);
      padding: 9px 11px;
      box-shadow: none;
    }

    .input-line input:focus {
      border-color: var(--amber);
      box-shadow: var(--focus);
    }

    .form-note {
      display: flex;
      align-items: flex-start;
      gap: 8px;
      color: var(--faint);
      font-size: 12px;
      line-height: 1.55;
    }

    .section {
      padding: 46px 0;
    }

    .section.alt {
      background: rgba(255, 253, 248, .5);
      border-block: 1px solid rgba(229, 222, 209, .64);
    }

    .section-head {
      margin-bottom: 24px;
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      gap: 20px;
    }

    .section-kicker {
      margin: 0 0 7px;
      color: var(--amber);
      font-size: 13px;
      font-weight: 950;
    }

    .section h2 {
      margin: 0;
      color: var(--charcoal);
      font-size: clamp(25px, 3vw, 38px);
      line-height: 1.15;
      letter-spacing: 0;
    }

    .section-head p {
      margin: 0;
      max-width: 520px;
      color: var(--muted);
      font-size: 15px;
    }

    .filter-panel {
      padding: 18px;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: rgba(255, 253, 248, .88);
      box-shadow: var(--shadow-soft);
    }

    .filter-row {
      display: grid;
      grid-template-columns: 1.15fr .85fr;
      gap: 14px;
      align-items: end;
      margin-bottom: 14px;
    }

    .search-box label,
    .sort-box label {
      display: block;
      margin-bottom: 6px;
      color: var(--charcoal);
      font-size: 13px;
      font-weight: 900;
    }

    .search-field {
      position: relative;
    }

    .search-field i {
      position: absolute;
      left: 12px;
      top: 50%;
      transform: translateY(-50%);
      color: var(--faint);
    }

    .search-field input,
    .sort-box select {
      width: 100%;
      min-height: 44px;
      margin: 0;
      border: 1px solid var(--line-strong);
      border-radius: var(--radius);
      background: #fff;
      color: var(--text);
      box-shadow: none;
    }

    .search-field input {
      padding: 9px 12px 9px 38px;
    }

    .sort-box select {
      padding: 8px 11px;
    }

    .search-field input:focus,
    .sort-box select:focus {
      border-color: var(--amber);
      box-shadow: var(--focus);
    }

    .tag-group {
      display: flex;
      flex-wrap: wrap;
      gap: 9px;
    }

    .tag-btn {
      border: 1px solid var(--line-strong);
      border-radius: 999px;
      background: #fff;
      color: var(--muted);
      min-height: 34px;
      padding: 6px 11px;
      font-size: 13px;
      font-weight: 850;
      transition: transform .22s ease, background .22s ease, border-color .22s ease, color .22s ease;
    }

    .tag-btn:hover,
    .tag-btn:focus,
    .tag-btn.is-active {
      transform: translateY(-1px);
      border-color: rgba(217, 144, 50, .55);
      background: var(--amber-soft);
      color: var(--charcoal);
    }

    .content-grid {
      align-items: stretch;
    }

    .recommend-card {
      height: 100%;
      padding: 22px;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background:
        linear-gradient(135deg, rgba(255,253,248,.96), rgba(229,245,240,.78)),
        linear-gradient(90deg, rgba(217,144,50,.08), transparent);
      box-shadow: var(--shadow);
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      gap: 28px;
      overflow: hidden;
      position: relative;
    }

    .recommend-card::after {
      content: "";
      position: absolute;
      inset: auto 18px 18px auto;
      width: 86px;
      height: 86px;
      border: 1px dashed rgba(45,43,40,.16);
      border-radius: 50%;
      background:
        linear-gradient(90deg, transparent 48%, rgba(217,144,50,.18) 49% 51%, transparent 52%),
        linear-gradient(0deg, transparent 48%, rgba(117,183,166,.2) 49% 51%, transparent 52%);
      opacity: .82;
    }

    .recommend-card h3 {
      margin: 12px 0 10px;
      color: var(--charcoal);
      font-size: 30px;
      line-height: 1.18;
      letter-spacing: 0;
    }

    .recommend-card p {
      margin: 0;
      max-width: 580px;
      color: var(--muted);
    }

    .meta-line {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-top: 18px;
    }

    .mini-badge {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 6px 9px;
      border: 1px solid rgba(45,43,40,.1);
      border-radius: var(--radius-sm);
      background: rgba(255,255,255,.72);
      color: var(--muted);
      font-size: 12px;
      font-weight: 900;
    }

    .vertical-stack {
      display: grid;
      gap: 14px;
    }

    .info-card {
      padding: 18px;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: rgba(255,253,248,.92);
      box-shadow: var(--shadow-soft);
      transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
    }

    .info-card:hover {
      transform: translateY(-3px);
      border-color: rgba(217,144,50,.4);
      box-shadow: var(--shadow);
    }

    .card-top {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      margin-bottom: 10px;
    }

    .card-icon {
      width: 40px;
      height: 40px;
      border-radius: var(--radius);
      display: grid;
      place-items: center;
      background: var(--coral-soft);
      color: var(--coral);
      flex: 0 0 auto;
    }

    .info-card:nth-child(2) .card-icon {
      background: var(--mint-soft);
      color: #3c8f7a;
    }

    .info-card:nth-child(3) .card-icon {
      background: var(--amber-soft);
      color: #8a551a;
    }

    .card-ticket {
      color: var(--faint);
      font-size: 12px;
      font-weight: 950;
    }

    .info-card h3 {
      margin: 0 0 7px;
      color: var(--charcoal);
      font-size: 19px;
      line-height: 1.25;
    }

    .info-card p {
      margin: 0;
      color: var(--muted);
      font-size: 14px;
    }

    .timeline {
      display: grid;
      gap: 12px;
    }

    .time-item {
      display: grid;
      grid-template-columns: 88px 1fr;
      gap: 14px;
      padding: 14px;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: #fffdf8;
      box-shadow: var(--shadow-soft);
    }

    .time-code {
      min-height: 58px;
      border-radius: var(--radius-sm);
      background: var(--charcoal);
      color: #fff;
      display: grid;
      place-items: center;
      text-align: center;
      font-weight: 950;
      line-height: 1.15;
    }

    .time-code small {
      display: block;
      color: rgba(255,255,255,.68);
      font-size: 11px;
      font-weight: 800;
    }

    .time-item h3 {
      margin: 0 0 4px;
      color: var(--charcoal);
      font-size: 18px;
      line-height: 1.3;
    }

    .time-item p {
      margin: 0;
      color: var(--muted);
      font-size: 14px;
    }

    .proof-grid {
      display: grid;
      grid-template-columns: 1fr 1.2fr 1fr;
      gap: 14px;
    }

    .proof-card {
      padding: 18px;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: #fffdf8;
      box-shadow: var(--shadow-soft);
    }

    .proof-card strong {
      display: block;
      color: var(--charcoal);
      font-size: 34px;
      line-height: 1;
      letter-spacing: 0;
    }

    .proof-card span {
      display: block;
      margin-top: 8px;
      color: var(--muted);
      font-size: 14px;
    }

    .proof-card.is-wide {
      background: linear-gradient(135deg, #fffdf8, #fff0d8);
    }

    .compare-list {
      display: grid;
      gap: 10px;
    }

    .compare-item {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 11px 12px;
      border: 1px solid rgba(45,43,40,.09);
      border-radius: var(--radius);
      background: rgba(255,255,255,.66);
      color: var(--muted);
      font-size: 14px;
    }

    .compare-item i {
      color: #3c8f7a;
    }

    .load-panel {
      margin-top: 18px;
      padding: 14px;
      border: 1px dashed var(--line-strong);
      border-radius: var(--radius);
      background: rgba(255,255,255,.55);
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      flex-wrap: wrap;
    }

    .load-panel p {
      margin: 0;
      color: var(--muted);
      font-size: 14px;
    }

    .accordion {
      margin: 0;
      background: transparent;
      border: 0;
    }

    .accordion-item {
      margin-bottom: 10px;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      overflow: hidden;
      background: #fffdf8;
      box-shadow: var(--shadow-soft);
    }

    .accordion-title {
      border: 0;
      color: var(--charcoal);
      font-size: 16px;
      font-weight: 900;
      padding: 16px 46px 16px 16px;
      line-height: 1.35;
      background: #fffdf8;
    }

    .accordion-title:hover,
    .accordion-title:focus {
      background: var(--amber-soft);
      color: var(--charcoal);
    }

    .accordion-content {
      border: 0;
      border-top: 1px solid var(--line);
      background: #fff;
      color: var(--muted);
      padding: 16px;
      font-size: 15px;
    }

    .cta-band {
      padding: 28px;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background:
        linear-gradient(135deg, rgba(45,43,40,.96), rgba(61,58,53,.96)),
        linear-gradient(90deg, rgba(217,144,50,.24), transparent);
      color: #fff;
      box-shadow: var(--shadow);
      display: grid;
      grid-template-columns: 1.25fr .75fr;
      gap: 24px;
      align-items: center;
      position: relative;
      overflow: hidden;
    }

    .cta-band::after {
      content: "入口  更新  筛选";
      position: absolute;
      right: 18px;
      bottom: 12px;
      color: rgba(255,255,255,.08);
      font-weight: 950;
      font-size: 38px;
      white-space: nowrap;
    }

    .cta-band h2 {
      color: #fff;
      margin: 0 0 10px;
      font-size: clamp(25px, 3vw, 38px);
      line-height: 1.16;
    }

    .cta-band p {
      margin: 0;
      color: rgba(255,255,255,.74);
      max-width: 660px;
    }

    .cta-actions {
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
      justify-content: flex-end;
      position: relative;
      z-index: 1;
    }

    .cta-band .btn-secondary {
      background: rgba(255,255,255,.1);
      color: #fff;
      border-color: rgba(255,255,255,.26);
    }

    .cta-band .btn-secondary:hover {
      background: rgba(255,255,255,.18);
      border-color: rgba(255,255,255,.52);
      color: #fff;
    }

    .footer {
      margin-top: 8px;
      border-top: 1px solid var(--line);
      background: rgba(255, 253, 248, .84);
    }

    .footer-inner {
      width: min(calc(100% - 36px), var(--content-max));
      margin: 0 auto;
      padding: 24px 0;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 18px;
    }

    .footer-brand {
      display: grid;
      gap: 4px;
    }

    .footer-brand strong {
      color: var(--charcoal);
      font-size: 18px;
      line-height: 1.25;
    }

    .footer-brand span {
      color: var(--faint);
      font-size: 13px;
    }

    .footer-links {
      display: flex;
      align-items: center;
      justify-content: flex-end;
      gap: 10px;
      flex-wrap: wrap;
    }

    .footer-links a {
      padding: 7px 9px;
      border-radius: var(--radius-sm);
      color: var(--muted);
      font-size: 13px;
      font-weight: 800;
    }

    .footer-links a:hover,
    .footer-links a:focus {
      background: var(--amber-soft);
      color: var(--charcoal);
    }

    @media screen and (max-width: 1024px) {
      :root {
        --rail: 94px;
      }

      .page-container,
      .footer-inner {
        width: min(calc(100% - 28px), var(--content-max));
      }

      .hero-ticket {
        margin-top: 20px;
      }

      .proof-grid {
        grid-template-columns: 1fr;
      }

      .cta-band {
        grid-template-columns: 1fr;
      }

      .cta-actions {
        justify-content: flex-start;
      }
    }

    @media screen and (max-width: 768px) {
      .site-shell {
        padding-left: 0;
      }

      .nav-rail {
        display: none;
      }

      .mobile-topbar {
        display: block;
      }

      .hero {
        padding-top: 18px;
      }

      .top-strip,
      .section-head,
      .footer-inner {
        align-items: flex-start;
        flex-direction: column;
      }

      .strip-actions {
        justify-content: flex-start;
      }

      .filter-row {
        grid-template-columns: 1fr;
      }

      .input-line {
        flex-direction: column;
      }

      .input-line .btn {
        width: 100%;
      }

      .time-item {
        grid-template-columns: 1fr;
      }

      .time-code {
        width: 100%;
        min-height: 48px;
      }

      .load-panel {
        align-items: flex-start;
        flex-direction: column;
      }

      .footer-links {
        justify-content: flex-start;
      }
    }

    @media screen and (max-width: 520px) {
      .page-container,
      .footer-inner {
        width: min(calc(100% - 22px), var(--content-max));
      }

      h1 {
        font-size: 34px;
      }

      .hero-copy p {
        font-size: 15px;
      }

      .hero-commands,
      .cta-actions {
        flex-direction: column;
        align-items: stretch;
      }

      .btn {
        width: 100%;
        min-height: 46px;
      }

      .hero-ticket,
      .filter-panel,
      .recommend-card,
      .info-card,
      .proof-card,
      .cta-band {
        padding: 16px;
      }

      .toc-item {
        grid-template-columns: 32px 1fr;
      }

      .toc-status {
        grid-column: 2;
      }

      .recommend-card h3 {
        font-size: 24px;
      }

      .proof-card strong {
        font-size: 28px;
      }

      .cta-band::after {
        display: none;
      }
    }
