/* roulang page: index */
:root {
  --pine: #1D463E;
  --pine-deep: #132F2A;
  --signal: #E85D26;
  --gold: #E8B84B;
  --cream: #F5F2EA;
  --card: #FFFDF8;
  --ink: #1E2926;
  --muted: #66736F;
  --line: #E0DCCF;
  --radius: 12px;
  --shadow: 0 6px 24px rgba(21, 45, 39, .08);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: "PingFang SC", "Microsoft YaHei", "Noto Sans CJK SC", "Source Han Sans SC", sans-serif;
  font-size: 16px;
  line-height: 1.75;
  padding-top: 104px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color .2s ease;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
}

details summary {
  list-style: none;
  cursor: pointer;
}

details summary::-webkit-details-marker {
  display: none;
}

.container {
  width: 100%;
  max-width: 1120px;
  margin-inline: auto;
  padding-inline: clamp(16px, 4vw, 32px);
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  background: var(--pine);
  color: #fff;
  padding: 8px 14px;
  border-radius: 8px;
  transform: translateY(-150%);
  transition: transform .2s;
}

.skip-link:focus {
  transform: translateY(0);
}

:focus-visible {
  outline: 2px solid var(--signal);
  outline-offset: 3px;
  border-radius: 6px;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 18px 16px 0;
}

.site-header .dock {
  max-width: 1060px;
  margin-inline: auto;
  height: 72px;
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 0 20px 0 24px;
  border-radius: 999px;
  border: 1px solid rgba(224, 220, 207, .9);
  background: rgba(255, 253, 248, .92);
  box-shadow: 0 2px 12px rgba(21, 45, 39, .05);
  transition: box-shadow .3s, border-color .3s, transform .3s;
}

.site-header.scrolled .dock {
  box-shadow: 0 12px 34px rgba(21, 45, 39, .13);
  border-color: rgba(206, 201, 188, .95);
}

.site-header .site-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  font-weight: 800;
  font-size: 1.32rem;
  letter-spacing: .01em;
  color: var(--pine-deep);
  margin-right: 6px;
  border-radius: 12px;
}

.site-logo .logo-dot {
  width: 12px;
  height: 12px;
  border-radius: 4px;
  background: var(--signal);
  box-shadow: 0 0 0 4px rgba(232, 93, 38, .14);
}

.site-header .primary-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  margin: auto;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  min-width: 44px;
  justify-content: center;
  padding: 0 17px;
  border-radius: 999px;
  color: #2d3a37;
  font-size: .98rem;
  font-weight: 600;
  position: relative;
}

.nav-link:hover {
  background: rgba(29, 70, 62, .08);
  color: var(--pine);
}

.nav-link.active {
  background: var(--pine);
  color: #fff;
}

.nav-link.active:hover {
  background: var(--pine);
  color: #fff;
}

.header-tools {
  display: flex;
  align-items: center;
  gap: 12px;
}

.search-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid transparent;
  color: var(--pine);
  transition: background .2s, transform .2s;
}

.search-btn:hover {
  background: rgba(29, 70, 62, .08);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 700;
  font-size: .96rem;
  white-space: nowrap;
  line-height: 1;
  cursor: pointer;
  transition: transform .2s, box-shadow .2s, background .25s, color .25s, border-color .25s;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn:active {
  transform: scale(.98);
}

.btn-primary {
  background: var(--signal);
  border-color: var(--signal);
  color: #fff;
  box-shadow: 0 8px 18px rgba(232, 93, 38, .2);
}

.btn-primary:hover {
  background: #c94f1f;
  border-color: #c94f1f;
  box-shadow: 0 10px 22px rgba(232, 93, 38, .26);
}

.btn-dark {
  background: var(--pine);
  border-color: var(--pine);
  color: #fff;
  box-shadow: 0 8px 18px rgba(29, 70, 62, .18);
}

.btn-dark:hover {
  background: #163931;
  border-color: #163931;
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(29, 70, 62, .22);
}

.btn-ghost {
  background: transparent;
  border-color: #c5d0cc;
  color: var(--pine);
}

.btn-ghost:hover {
  border-color: var(--pine);
  background: rgba(29, 70, 62, .05);
}

.section {
  padding: 74px 0;
  scroll-margin-top: 110px;
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 36px;
}

.section-title-wrap {
  max-width: 680px;
}

.sec-index {
  font-family: inherit;
  font-weight: 800;
  letter-spacing: .12em;
  font-size: .82rem;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--signal);
  margin-bottom: 12px;
  text-transform: uppercase;
}

.sec-index::before {
  content: "";
  width: 22px;
  height: 3px;
  background: var(--signal);
  border-radius: 4px;
  display: inline-block;
}

.section-title {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1.25;
  color: var(--pine-deep);
  font-weight: 800;
  margin: 0 0 10px;
  letter-spacing: -0.01em;
}

.section-desc {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.75;
  max-width: 66ch;
}

.soft-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: var(--pine-deep);
  color: #fff;
  overflow: hidden;
  min-height: 590px;
  display: flex;
  align-items: center;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, .05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .05) 1px, transparent 1px);
  background-size: 30px 30px;
  opacity: .65;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(19, 47, 42, .96) 20%, rgba(19, 47, 42, .8) 56%, rgba(19, 47, 42, .32) 100%);
  z-index: 1;
}

.hero-container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, .95fr);
  gap: 44px;
  align-items: center;
  width: 100%;
  max-width: 1120px;
  margin-inline: auto;
  padding: 76px clamp(16px, 4vw, 32px);
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(232, 184, 75, .13);
  border: 1px solid rgba(232, 184, 75, .4);
  color: var(--gold);
  font-weight: 700;
  padding: 8px 18px;
  border-radius: 999px;
  font-size: .9rem;
  margin-bottom: 18px;
}

.hero-kicker .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
}

.hero h1 {
  margin: 0 0 20px;
  font-size: clamp(2.1rem, 4.2vw, 3.4rem);
  line-height: 1.25;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
  max-width: 11em;
}

.hero-desc {
  font-size: 1.12rem;
  line-height: 1.85;
  color: rgba(255, 255, 255, .85);
  max-width: 53ch;
  margin: 0 0 30px;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-bottom: 30px;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 9px 18px;
  font-size: .92rem;
  color: rgba(255, 255, 255, .72);
}

.hero-tags span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero-tags span::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--signal);
}

.hero-visual {
  position: relative;
}

.hero-media {
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .16);
  box-shadow: 0 28px 60px rgba(0, 0, 0, .4);
  aspect-ratio: 4 / 3;
  background: #24483f;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-scorebox {
  position: absolute;
  left: -22px;
  bottom: -24px;
  width: 230px;
  padding: 18px 22px;
  border-radius: 18px;
  background: rgba(255, 253, 248, .96);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, .4);
  box-shadow: 0 18px 38px rgba(0, 0, 0, .3);
  color: var(--ink);
}

.scorebox-head {
  font-size: .8rem;
  color: var(--signal);
  font-weight: 800;
  margin-bottom: 10px;
  letter-spacing: .08em;
}

.scorebox-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.scorebox-main .team {
  font-weight: 700;
  font-size: .95rem;
}

.scorebox-main .score {
  background: var(--pine);
  border-radius: 8px;
  color: #fff;
  font-weight: 800;
  padding: 4px 12px;
  font-variant-numeric: tabular-nums;
}

.hero-note {
  margin-top: 40px;
  font-size: .86rem;
  color: rgba(255, 255, 255, .6);
}

/* --------- 栏目入口 --------- */
.dir-panel {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.dir-row {
  display: grid;
  grid-template-columns: 96px 260px 1fr auto;
  gap: 22px;
  align-items: center;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px 22px;
  transition: transform .25s, box-shadow .25s, background .3s;
}

.dir-row:hover {
  background: rgba(232, 236, 229, .4);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.dir-row.dir-shift {
  margin-left: 44px;
}

.dir-index {
  font-weight: 800;
  font-size: 2rem;
  color: var(--line);
  line-height: 1;
  font-variant-numeric: tabular-nums;
  width: 80px;
}

.dir-img {
  width: 260px;
  height: 170px;
  border-radius: 14px;
  overflow: hidden;
  background: #d7dcd2;
}

.dir-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}

.dir-row:hover .dir-img img {
  transform: scale(1.05);
}

.dir-body {
  padding: 8px 0;
}

.dir-title {
  margin: 0 0 8px;
  font-size: 1.34rem;
  font-weight: 800;
  color: var(--pine-deep);
}

.dir-desc {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: .94rem;
  line-height: 1.7;
}

.dir-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  font-size: .82rem;
  color: #53625d;
}

.dir-meta span {
  background: rgba(29, 70, 62, .07);
  border: 1px solid rgba(29, 70, 62, .09);
  padding: 3px 10px;
  line-height: 1.6;
  border-radius: 999px;
}

.dir-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--pine);
  color: #fff;
  font-size: 1.3rem;
  transition: transform .3s, background .3s;
}

.dir-row:hover .dir-arrow {
  transform: translateX(6px);
  background: var(--signal);
}

@media (max-width: 900px) {
  .dir-row,
  .dir-row.dir-shift {
    grid-template-columns: 1fr;
    margin-left: 0;
    padding: 20px;
  }
  .dir-img {
    width: 100%;
    height: 220px;
  }
  .dir-index {
    text-align: right;
    margin-top: -44px;
    margin-bottom: 4px;
  }
  .dir-arrow {
    width: 48px;
    height: 48px;
  }
}

/* --------- 最新信息 / CMS --------- */
.latest-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(290px, .9fr);
  gap: 32px;
}

.latest-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.news-item {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 22px 24px;
  transition: box-shadow .22s, transform .22s, border-color .22s;
}

.news-item:hover {
  box-shadow: var(--shadow);
  border-color: #cdd7cf;
  transform: translateY(-2px);
}

.news-meta-top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
  font-size: .82rem;
}

.news-cat {
  display: inline-flex;
  align-items: center;
  background: rgba(232, 184, 75, .2);
  color: #705015;
  border-radius: 999px;
  padding: 2px 11px;
  font-weight: 700;
}

.news-time {
  color: var(--muted);
  font-variant-numeric: tabular-nums;
}

.news-title {
  display: inline-block;
  font-size: 1.08rem;
  line-height: 1.6;
  font-weight: 800;
  color: var(--ink);
  margin: 0 0 7px;
}

.news-title:hover {
  color: var(--signal);
}

.news-excerpt {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: .93rem;
  line-height: 1.7;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-read {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .9rem;
  font-weight: 800;
  color: var(--pine);
}

.news-read::after {
  content: "→";
  transition: transform .2s;
}

.news-read:hover {
  color: var(--signal);
}

.news-read:hover::after {
  transform: translateX(4px);
}

.aside-card {
  background: var(--pine);
  border-radius: 18px;
  padding: 26px;
  color: #fff;
  box-shadow: 0 18px 40px rgba(21, 45, 39, .2);
}

.aside-card h3 {
  margin: 0 0 12px;
  font-size: 1.2rem;
  color: #fff;
}

.aside-card p {
  color: rgba(255, 255, 255, .75);
  font-size: .93rem;
  margin-bottom: 20px;
}

.aside-note {
  border-left: 3px solid var(--gold);
  background: rgba(255, 255, 255, .06);
  padding: 14px 16px;
  border-radius: 8px;
  font-size: .88rem;
  color: rgba(255, 255, 255, .85);
  margin-bottom: 20px;
}

.aside-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  font-weight: 800;
  font-size: .92rem;
}

.aside-link:hover {
  color: #fff;
}

.empty-state {
  border: 1px dashed #c4d0c8;
  background: rgba(255, 255, 255, .65);
  border-radius: 14px;
  padding: 42px 20px;
  text-align: center;
  color: var(--muted);
}

/* stats panel */
.stats-panel {
  background: var(--pine-deep);
  border-radius: 24px;
  color: #fff;
  padding: 44px clamp(20px, 4vw, 48px);
  overflow: hidden;
  position: relative;
  margin-top: 18px;
}

.stats-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, .04) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .04) 1px, transparent 1px);
  background-size: 28px 28px;
}

.stats-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.stat-cell {
  padding: 9px 8px;
}

.stat-cell .number {
  display: block;
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--gold);
  font-variant-numeric: tabular-nums;
  letter-spacing: -.02em;
}

.stat-cell .number .unit {
  font-size: .58em;
  color: var(--signal);
  margin-left: 3px;
}

.stat-cell .label {
  display: block;
  color: rgba(255, 255, 255, .65);
  font-size: .88rem;
  margin-top: 4px;
}

.stat-cell .label::after {
  content: "";
  display: block;
  width: 28px;
  height: 3px;
  margin-top: 10px;
  background: var(--signal);
  border-radius: 4px;
}

@media (max-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* view section */
.view-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.view-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 26px 24px;
  position: relative;
  transition: box-shadow .2s, transform .2s;
  box-shadow: 0 2px 10px rgba(20, 51, 42, .04);
}

.view-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.view-card .v-num {
  color: var(--signal);
  font-weight: 800;
  font-size: .9rem;
  line-height: 1;
  letter-spacing: .08em;
  margin-bottom: 26px;
}

.view-card h3 {
  font-size: 1.13rem;
  margin: 0 0 10px;
  color: var(--pine-deep);
  font-weight: 800;
}

.view-card p {
  margin: 0;
  color: var(--muted);
  font-size: .92rem;
}

/* extension section */
.extend-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.extend-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  min-height: 280px;
  display: flex;
  align-items: flex-end;
  border: 1px solid var(--line);
  background: #dde1da;
  box-shadow: var(--shadow);
  transition: transform .26s, box-shadow .28s;
}

.extend-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 38px rgba(21, 45, 39, .16);
}

.extend-card .ext-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.extend-card .ext-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.extend-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(19, 47, 42, 0) 15%, rgba(19, 47, 42, .92) 100%);
}

.extend-content {
  position: relative;
  z-index: 2;
  color: #fff;
  padding: 30px 24px;
  width: 100%;
}

.extend-content .tag {
  display: inline-block;
  background: rgba(255, 255, 255, .2);
  border: 1px solid rgba(255, 255, 255, .3);
  padding: 3px 12px;
  border-radius: 999px;
  font-size: .8rem;
  margin-bottom: 14px;
  backdrop-filter: blur(4px);
}

.extend-content h3 {
  font-size: 1.25rem;
  margin: 0 0 6px;
  color: #fff;
  font-weight: 800;
}

.extend-content p {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, .78);
  font-size: .9rem;
}

.extend-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  font-weight: 800;
  font-size: .92rem;
  border-bottom: 1px solid transparent;
}

.extend-link:hover {
  border-bottom-color: var(--gold);
}

/* FAQ */
.faq-layout {
  display: grid;
  grid-template-columns: minmax(0, .72fr) minmax(0, 1.6fr);
  gap: 54px;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 6px 22px 0;
  font-weight: 700;
  font-size: 1.02rem;
  color: var(--pine-deep);
  min-height: 60px;
  transition: color .2s;
  position: relative;
}

.faq-item summary:hover {
  color: var(--signal);
}

.faq-item summary::after {
  content: "+";
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--signal);
  transition: transform .3s;
  flex-shrink: 0;
  line-height: 1;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(232, 93, 38, .09);
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
  background: var(--signal);
  color: #fff;
}

.faq-answer {
  padding: 0 34px 24px 0;
  color: var(--muted);
  line-height: 1.85;
}

/* contact */
.contact-layout {
  display: grid;
  grid-template-columns: .88fr 1.12fr;
  gap: 34px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: var(--shadow);
  padding: clamp(24px, 4vw, 44px);
}

.contact-info h3 {
  font-size: 1.34rem;
  color: var(--pine-deep);
  margin: 0 0 16px;
  font-weight: 800;
}

.contact-info p {
  color: var(--muted);
  margin: 0 0 22px;
}

.contact-channel {
  display: flex;
  gap: 12px;
  padding: 14px 0;
  border-top: 1px solid var(--line);
  align-items: flex-start;
  font-size: .94rem;
}

.contact-channel::before {
  content: "";
  margin-top: 9px;
  width: 9px;
  height: 9px;
  border-radius: 3px;
  background: var(--signal);
  flex-shrink: 0;
}

.contact-channel strong {
  display: block;
  color: var(--ink);
}

.contact-channel span {
  color: var(--muted);
  font-size: .9rem;
}

.contact-form-wrap h3 {
  font-size: 1.2rem;
  color: var(--pine-deep);
  margin: 0 0 20px;
  font-weight: 800;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 14px;
}

.form-field label {
  font-size: .86rem;
  color: var(--ink);
  font-weight: 700;
}

.form-input {
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0 16px;
  background: #fafaf6;
  width: 100%;
  transition: border-color .2s, box-shadow .2s, background .2s;
  font-size: .94rem;
}

textarea.form-input {
  padding: 12px 16px;
  resize: vertical;
  min-height: 98px;
}

.form-input:focus {
  outline: none;
  border-color: var(--pine);
  box-shadow: 0 0 0 4px rgba(29, 70, 62, .1);
  background: #fff;
}

.form-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 6px;
}

.form-tip {
  color: var(--muted);
  font-size: .82rem;
}

/* footer */
.site-footer {
  background: var(--pine-deep);
  color: rgba(255, 255, 255, .7);
  margin-top: 30px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.35fr .85fr 1fr;
  gap: 46px;
  padding: 56px 0 44px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-weight: 800;
  font-size: 1.2rem;
  margin-bottom: 14px;
}

.footer-logo .logo-dot {
  width: 9px;
  height: 9px;
  background: var(--signal);
  border-radius: 3px;
}

.footer-brand p {
  color: rgba(255, 255, 255, .62);
  font-size: .92rem;
  max-width: 36ch;
}

.footer-col h4 {
  color: rgba(255, 255, 255, .96);
  font-size: .9rem;
  margin: 0 0 14px;
  font-weight: 800;
  letter-spacing: .05em;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col a {
  color: rgba(255, 255, 255, .62);
  font-size: .92rem;
}

.footer-col a:hover {
  color: var(--gold);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .12);
  padding: 20px 0 26px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 14px;
  color: rgba(255, 255, 255, .4);
  font-size: .84rem;
}

/* mobile menu */
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid #dfdbd0;
  background: var(--card);
  color: var(--pine);
}

.mobile-menu {
  display: none;
}

@media (max-width: 900px) {
  .nav-link,
  .header-tools .nav-cta,
  .search-btn {
    display: none;
  }
  .menu-toggle {
    display: inline-flex;
  }
  .mobile-menu.open {
    display: block;
    position: fixed;
    top: 18px;
    right: 16px;
    left: 16px;
    border-radius: 22px;
    background: var(--card);
    border: 1px solid var(--line);
    box-shadow: 0 22px 52px rgba(20, 45, 39, .18);
    padding: 44px 24px 24px;
    z-index: 220;
  }
  .mobile-menu .menu-close {
    position: absolute;
    right: 16px;
    top: 14px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #f1efE7;
    border: 0;
    cursor: pointer;
    font-size: 1.3rem;
  }
  .mobile-menu a.mobile-link {
    display: block;
    padding: 14px 6px;
    border-bottom: 1px solid var(--line);
    font-weight: 700;
    color: var(--pine-deep);
  }
  .mobile-menu a.mobile-link:hover {
    color: var(--signal);
  }
  .mobile-menu .mobile-cta {
    margin-top: 22px;
    display: flex;
    width: 100%;
  }
}

@media (max-width: 760px) {
  body {
    padding-top: 92px;
  }
  .site-header .dock {
    height: 64px;
    padding: 0 12px 0 16px;
    gap: 10px;
  }
  .site-header .site-logo {
    font-size: 1.08rem;
  }
  .site-header .dock {
    max-width: calc(100vw - 24px);
  }
  .hero-container {
    grid-template-columns: 1fr;
    padding: 56px 22px 70px;
  }
  .hero-media {
    margin-top: 18px;
    aspect-ratio: 4 / 3;
  }
  .hero-scorebox {
    left: 12px;
    bottom: -20px;
    width: 190px;
    padding: 14px 16px;
  }
  .scorebox-main .team {
    font-size: .82rem;
  }
  .section {
    padding: 58px 0;
  }
  .section-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 26px;
  }
  .latest-layout,
  .contact-layout,
  .faq-layout {
    grid-template-columns: 1fr;
  }
  .view-grid,
  .extend-grid {
    grid-template-columns: 1fr;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .footer-top {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 42px 0 32px;
  }
  .dir-row .dir-meta {
    gap: 6px;
  }
}

/* roulang page: article */
:root {
    --pine: #1D463E;
    --pine-dark: #132F2A;
    --signal: #E85D26;
    --gold: #E8B84B;
    --cream: #F5F2EA;
    --paper: #FFFDF8;
    --ink: #1E2926;
    --muted: #66736F;
    --line: #E0DCCF;
    --radius: 12px;
    --radius-lg: 20px;
    --shadow: 0 12px 32px rgba(23, 48, 42, .07);
    --shadow-hover: 0 16px 38px rgba(23, 48, 42, .13);
    --font: "PingFang SC", "Microsoft YaHei", "Noto Sans CJK SC", "Helvetica Neue", Arial, sans-serif;
    --container: 1120px;
    --safe: clamp(20px, 4vw, 32px);
  }

  *,
  *:before,
  *:after {
    box-sizing: border-box;
  }

  html {
    scroll-behavior: smooth;
    scroll-padding-top: 110px;
  }

  body {
    margin: 0;
    background-color: var(--cream);
    color: var(--ink);
    font-family: var(--font);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
  }

  img {
    max-width: 100%;
    display: block;
  }

  a {
    color: inherit;
    text-decoration: none;
    transition: color .2s ease;
  }

  button,
  input,
  textarea,
  select {
    font: inherit;
  }

  .container {
    width: 100%;
    max-width: var(--container);
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--safe);
    padding-right: var(--safe);
  }

  a:focus-visible,
  button:focus-visible,
  input:focus-visible,
  textarea:focus-visible {
    outline: 2px solid var(--signal);
    outline-offset: 3px;
  }

  ::selection {
    background: rgba(232, 184, 75, .35);
  }

  .site-header {
    position: sticky;
    top: 12px;
    z-index: 88;
    display: flex;
    justify-content: center;
    padding: 8px var(--safe) 0;
  }

  .dock {
    width: min(1068px, 100%);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    background: rgba(255, 253, 248, .92);
    border: 1px solid rgba(224, 220, 207, .85);
    border-radius: 999px;
    box-shadow: 0 8px 30px rgba(25, 50, 42, .10);
    padding: 9px 10px 9px 18px;
    transition: box-shadow .25s ease, border-color .25s ease;
  }

  .site-logo {
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
    gap: 9px;
    font-size: 1.08rem;
    font-weight: 800;
    color: var(--pine-dark);
    letter-spacing: .01em;
    line-height: 1.1;
  }

  .logo-dot {
    width: 28px;
    height: 28px;
    flex: 0 0 auto;
    border-radius: 50%;
    background: radial-gradient(circle at 72% 28%, var(--gold), var(--signal) 68%);
    border: 2px solid var(--pine);
    box-shadow: inset 0 -2px 4px rgba(0, 0, 0, .22), 0 2px 6px rgba(19, 47, 42, .18);
  }

  .primary-nav {
    display: flex;
    align-items: center;
    gap: 3px;
    flex-wrap: wrap;
  }

  .nav-link {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    padding: 8px 16px;
    border-radius: 999px;
    font-weight: 600;
    color: var(--pine);
    white-space: nowrap;
    transition: background .2s ease, color .2s ease, transform .2s ease;
  }

  .nav-link:hover {
    background: #EBE8DE;
    color: var(--pine-dark);
  }

  .nav-link.active {
    background: var(--pine);
    color: #FFFFFF;
  }

  .header-tools {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 0 0 auto;
  }

  .search-btn,
  .menu-toggle {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    border: 1px solid var(--line);
    background-color: var(--paper);
    color: var(--pine);
    cursor: pointer;
    transition: transform .2s ease, background .2s ease, border-color .2s ease;
  }

  .search-btn:hover,
  .menu-toggle:hover {
    background: #EFECE2;
    border-color: #C9C5B8;
  }

  .search-btn:active,
  .menu-toggle:active {
    transform: scale(.96);
  }

  .menu-toggle {
    display: none;
  }

  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 44px;
    border: 1px solid transparent;
    border-radius: 999px;
    padding: 9px 20px;
    font-weight: 700;
    font-size: .96rem;
    cursor: pointer;
    text-align: center;
    white-space: nowrap;
    transition: transform .18s ease, box-shadow .18s ease, background .2s ease, color .2s ease, border-color .2s ease;
  }

  .btn:active {
    transform: scale(.97);
  }

  .btn-dark {
    background: var(--pine-dark);
    border-color: var(--pine-dark);
    color: #FFFFFF;
  }

  .btn-dark:hover {
    background: var(--pine);
    border-color: var(--pine);
    transform: translateY(-1px);
    box-shadow: 0 9px 18px rgba(19, 47, 42, .16);
  }

  .btn-primary {
    background: var(--pine-dark);
    border-color: var(--pine-dark);
    color: #FFFFFF;
  }

  .btn-primary:hover {
    background: var(--pine);
    border-color: var(--pine);
    transform: translateY(-1px);
    box-shadow: 0 10px 20px rgba(19, 47, 42, .18);
  }

  .btn-outline {
    background: transparent;
    border-color: rgba(230, 225, 211, .95);
    color: var(--pine);
  }

  .btn-outline:hover {
    border-color: var(--pine);
    background: rgba(29, 70, 62, .06);
    transform: translateY(-1px);
  }

  .mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: min(340px, 92%);
    z-index: 120;
    background: var(--paper);
    border-right: 1px solid var(--line);
    box-shadow: 24px 0 50px rgba(20, 42, 35, .22);
    transform: translateX(-105%);
    visibility: hidden;
    transition: transform .32s ease, visibility .32s ease;
    display: flex;
    flex-direction: column;
    padding: 22px 22px 26px;
    overflow-y: auto;
  }

  .mobile-menu.open {
    transform: translateX(0);
    visibility: visible;
  }

  .mm-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--line);
    padding-bottom: 16px;
    margin-bottom: 18px;
  }

  .mm-logo {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--pine-dark);
    font-size: 1.05rem;
    font-weight: 800;
  }

  .mm-close {
    width: 42px;
    height: 42px;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: #F6F3EA;
    color: var(--pine-dark);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
  }

  .mm-close:hover {
    background: #EBE7DD;
  }

  .mm-nav {
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex: 1 1 auto;
  }

  .mm-link {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 48px;
    padding: 10px 14px;
    border-radius: var(--radius);
    font-weight: 600;
    color: var(--pine);
  }

  .mm-link:hover {
    background: #EFEBE2;
  }

  .mm-link.active {
    background: var(--pine);
    color: #FFFFFF;
  }

  .mm-foot {
    margin-top: 18px;
    border-top: 1px solid var(--line);
    padding-top: 18px;
  }

  .mm-foot .btn {
    width: 100%;
  }

  .drawer-backdrop {
    position: fixed;
    inset: 0;
    z-index: 110;
    background: rgba(15, 38, 33, .45);
    opacity: 0;
    visibility: hidden;
    transition: opacity .3s ease, visibility .3s ease;
  }

  .drawer-backdrop.open {
    opacity: 1;
    visibility: visible;
  }

  .article-page-wrap {
    padding-top: 38px;
    padding-bottom: 74px;
  }

  .breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    font-size: .92rem;
    color: var(--muted);
    margin-bottom: 22px;
    padding: 1px 0;
  }

  .breadcrumb a {
    color: var(--pine);
    font-weight: 600;
    padding: 4px 2px;
    border-radius: 6px;
  }

  .breadcrumb a:hover {
    color: var(--signal);
  }

  .breadcrumb span.dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #B8B4A7;
    display: inline-block;
  }

  .article-top {
    max-width: 920px;
    margin: 0 auto 26px;
  }

  .kicker-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 14px;
  }

  .tag {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    background: #E9E4D8;
    color: var(--pine);
    border-radius: 999px;
    padding: 4px 14px;
    font-size: .83rem;
    font-weight: 700;
    letter-spacing: .03em;
    border: 1px solid transparent;
    transition: background .2s ease, border-color .2s ease;
  }

  .tag-orange {
    background: rgba(232, 93, 38, .12);
    color: #B83E0F;
    border-color: rgba(232, 93, 38, .18);
  }

  .article-top h1 {
    font-size: clamp(1.95rem, 4vw, 3.1rem);
    line-height: 1.2;
    letter-spacing: -.015em;
    font-weight: 800;
    color: var(--pine-dark);
    max-width: 900px;
    margin: 0 0 14px;
  }

  .article-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px 20px;
    color: var(--muted);
    font-size: .91rem;
    font-variant-numeric: tabular-nums;
    border-top: 1px solid var(--line);
    padding-top: 16px;
  }

  .meta-chip {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    min-height: 30px;
  }

  .meta-chip svg {
    color: var(--pine);
  }

  .article-shell {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    padding: clamp(20px, 4.6vw, 56px);
    margin-bottom: 48px;
  }

  .article-prose {
    max-width: 78ch;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.05rem;
    line-height: 1.9;
    color: #1F2B27;
    overflow-wrap: break-word;
  }

  .article-prose p {
    margin: 0 0 1.4em;
  }

  .article-prose h2 {
    margin: 2.5em 0 1em;
    padding-left: 15px;
    border-left: 4px solid var(--signal);
    font-size: 1.55rem;
    line-height: 1.4;
    color: var(--pine-dark);
    font-weight: 800;
  }

  .article-prose h3 {
    margin: 2.1em 0 .8em;
    font-size: 1.25rem;
    line-height: 1.5;
    color: var(--pine-dark);
    font-weight: 800;
  }

  .article-prose h4 {
    margin: 1.8em 0 .7em;
    color: var(--pine);
    font-size: 1.08rem;
    font-weight: 800;
  }

  .article-prose ul,
  .article-prose ol {
    margin: 0 0 1.6em;
    padding-left: 1.4em;
  }

  .article-prose li {
    margin: .35em 0;
  }

  .article-prose img {
    border-radius: var(--radius-lg);
    margin: 2em auto;
    width: auto;
    max-width: 100%;
    height: auto;
    border: 1px solid #E6E1D6;
  }

  .article-prose blockquote {
    border-left: 4px solid var(--gold);
    background: #F5F1E6;
    padding: 18px 22px;
    margin: 1.8em 0;
    border-radius: 0 14px 14px 0;
    color: #3C4A44;
  }

  .article-prose blockquote p:last-child {
    margin-bottom: 0;
  }

  .article-prose a {
    color: var(--signal);
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-color: rgba(232, 93, 38, .35);
  }

  .article-prose a:hover {
    color: #C4481A;
    text-decoration-color: rgba(196, 72, 26, .7);
  }

  .article-prose hr {
    border: 0;
    height: 1px;
    background: var(--line);
    margin: 2.2em 0;
  }

  .article-prose code {
    background: #EFEBE0;
    border-radius: 6px;
    padding: .12em .42em;
    font-family: "SFMono-Regular", Consolas, monospace;
    font-size: .92em;
    color: #473C30;
  }

  .article-prose pre {
    background: var(--pine-dark);
    color: #EDEDE4;
    padding: 20px;
    border-radius: 16px;
    overflow-x: auto;
    margin: 2em 0;
    line-height: 1.7;
    font-size: .9rem;
    white-space: pre-wrap;
  }

  .article-prose pre code {
    background: transparent;
    padding: 0;
    color: inherit;
    font-size: 1em;
  }

  .article-prose table {
    display: block;
    width: 100%;
    overflow-x: auto;
    border-collapse: collapse;
    margin: 2em 0;
  }

  .article-prose th,
  .article-prose td {
    border: 1px solid #DDD8CC;
    padding: 10px 14px;
    text-align: left;
    font-size: .96rem;
    background: #FFFFFF;
  }

  .article-prose th {
    background: var(--pine);
    color: #FFF;
    font-weight: 700;
  }

  .not-found-card {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
    padding: 34px 12px 20px;
  }

  .not-found-card .badge-round {
    width: 62px;
    height: 62px;
    border-radius: 50%;
    margin: 0 auto 18px;
    background: rgba(232, 184, 75, .2);
    border: 1px solid rgba(232, 184, 75, .55);
    color: #9A6B11;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    font-weight: 800;
  }

  .not-found-card h2,
  .not-found-card p {
    margin: 0 0 14px;
  }

  .not-found-card p {
    color: var(--muted);
  }

  .not-found-card .btn {
    margin-top: 14px;
  }

  .article-return {
    margin-top: 34px;
    text-align: center;
  }

  .article-return .btn {
    border-radius: 999px;
  }

  .related-section {
    scroll-margin-top: 120px;
    margin-top: 8px;
    margin-bottom: 62px;
  }

  .section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--signal);
    font-weight: 800;
    font-size: .88rem;
    letter-spacing: .1em;
    margin-bottom: 10px;
    text-transform: uppercase;
  }

  .kicker-line {
    width: 30px;
    height: 2px;
    background: var(--signal);
    display: inline-block;
    border-radius: 99px;
  }

  .related-section h2,
  .quick-entry-panel h2 {
    font-size: clamp(1.6rem, 3vw, 2.1rem);
    line-height: 1.26;
    color: var(--pine-dark);
    font-weight: 800;
    margin: 0 0 12px;
    letter-spacing: -.02em;
  }

  .related-desc {
    color: var(--muted);
    max-width: 650px;
    margin: 4px 0 26px;
  }

  .related-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
  }

  .related-card {
    display: flex;
    flex-direction: column;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
  }

  .related-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
    border-color: #CFCABC;
  }

  .related-card figure {
    margin: 0;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: #D9D5C9;
    border-bottom: 1px solid #E9E5DA;
  }

  .related-card figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
  }

  .related-card:hover figure img {
    transform: scale(1.04);
  }

  .related-body {
    padding: 20px 22px 22px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
    flex: 1 1 auto;
  }

  .related-body h3 {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--pine-dark);
    line-height: 1.4;
    margin: 0;
  }

  .related-body p {
    color: var(--muted);
    margin: 0;
    font-size: .94rem;
    line-height: 1.7;
  }

  .related-footer-link {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--signal);
    font-weight: 700;
    padding-top: 10px;
  }

  .related-footer-link svg {
    transition: transform .2s ease;
  }

  .related-footer-link:hover svg {
    transform: translateX(4px);
  }

  .quick-entry-panel {
    scroll-margin-top: 112px;
    background: var(--pine-dark);
    border-radius: 24px;
    padding: clamp(30px, 6vw, 56px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    margin-bottom: 70px;
    box-shadow: 0 20px 42px rgba(18, 45, 40, .18);
    position: relative;
    overflow: hidden;
  }

  .quick-entry-panel:after {
    content: "";
    position: absolute;
    right: -90px;
    top: -120px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    border: 60px solid rgba(232, 184, 75, .12);
    pointer-events: none;
  }

  .quick-entry-panel h2 {
    color: #FFF;
    margin-bottom: 10px;
    position: relative;
  }

  .quick-entry-panel p {
    color: #D6E0DC;
    margin: 0;
    max-width: 560px;
    position: relative;
  }

  .quick-btns {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    flex: 0 0 auto;
    position: relative;
  }

  .quick-btns .btn {
    background: var(--signal);
    border-color: var(--signal);
    color: #FFFFFF;
  }

  .quick-btns .btn:hover {
    background: #C84C1A;
    border-color: #C84C1A;
    transform: translateY(-1px);
    box-shadow: 0 9px 20px rgba(232, 93, 38, .18);
  }

  .quick-btns .btn-outline-light {
    background: transparent;
    border-color: rgba(255, 255, 255, .55);
    color: #FFFFFF;
  }

  .quick-btns .btn-outline-light:hover {
    border-color: #FFF;
    background: rgba(255, 255, 255, .08);
  }

  .site-footer {
    background: var(--pine-dark);
    color: rgba(255, 255, 255, .85);
    padding: 62px 0 28px;
    margin-top: auto;
  }

  .site-footer .container {
    max-width: 1160px;
  }

  .footer-top {
    display: grid;
    grid-template-columns: 1.3fr .7fr .8fr;
    gap: 36px 48px;
    padding-bottom: 34px;
  }

  .footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #FFFFFF;
    font-size: 1.16rem;
    font-weight: 800;
    margin-bottom: 14px;
  }

  .footer-brand p {
    max-width: 320px;
    color: #C3D1CC;
    font-size: .95rem;
    line-height: 1.75;
    margin: 0;
  }

  .footer-col h4 {
    font-size: .98rem;
    color: #FFFFFF;
    letter-spacing: .06em;
    margin: 0 0 16px;
    font-weight: 700;
  }

  .footer-col ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 10px;
  }

  .footer-col li a {
    color: #C3D1CC;
    font-size: .94rem;
    display: inline-flex;
    min-height: 30px;
    align-items: center;
  }

  .footer-col li a:hover {
    color: var(--gold);
  }

  .footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .18);
    padding-top: 22px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px 20px;
    color: #A9BDB6;
    font-size: .87rem;
    font-variant-numeric: tabular-nums;
  }

  @media (max-width: 980px) {
    .related-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .related-card:last-child {
      grid-column: 1 / -1;
    }

    .quick-entry-panel {
      flex-direction: column;
      align-items: flex-start;
    }
  }

  @media (max-width: 767px) {
    .primary-nav {
      display: none;
    }

    .dock {
      padding-left: 14px;
    }

    .menu-toggle {
      display: inline-flex;
    }

    .nav-cta {
      display: none;
    }

    .article-top,
    .article-shell {
      margin-left: 4px;
      margin-right: 4px;
    }

    .article-shell {
      padding: 20px 16px 28px;
    }

    .article-prose {
      font-size: 1.02rem;
      line-height: 1.85;
    }

    .footer-top {
      grid-template-columns: 1fr;
      gap: 32px;
    }

    .article-page-wrap {
      padding-top: 22px;
    }

    .breadcrumb {
      margin-bottom: 18px;
    }
  }

  @media (max-width: 560px) {
    .related-grid {
      grid-template-columns: 1fr;
    }

    .related-card:last-child {
      grid-column: auto;
    }

    .quick-entry-panel {
      border-radius: 18px;
      padding: 28px 22px;
    }

    .footer-bottom {
      justify-content: center;
      text-align: center;
    }

    .dock {
      border-radius: 30px;
    }
  }

/* roulang page: category1 */
:root {
      --pine: #1D463E;
      --pine-dark: #132F2A;
      --signal: #E85D26;
      --gold: #E8B84B;
      --bg: #F5F2EA;
      --card: #FFFDF8;
      --text: #1E2926;
      --muted: #66736F;
      --line: #E0DCCF;
      --font-sans: "PingFang SC", "Microsoft YaHei", "Noto Sans CJK SC", system-ui, sans-serif;
      --radius: 16px;
      --shadow: 0 16px 36px rgba(29, 70, 62, 0.08);
    }

    *,
    *::before,
    *::after {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
      scroll-padding-top: 100px;
    }

    body {
      margin: 0;
      background: var(--bg);
      color: var(--text);
      font-family: var(--font-sans);
      font-size: 16px;
      line-height: 1.75;
      text-rendering: optimizeLegibility;
      -webkit-font-smoothing: antialiased;
    }

    img {
      display: block;
      max-width: 100%;
    }

    button,
    input,
    textarea,
    select {
      font: inherit;
    }

    button {
      cursor: pointer;
    }

    a {
      color: var(--pine);
      text-underline-offset: 4px;
      text-decoration-thickness: 1px;
    }

    a:hover {
      color: #b3441b;
    }

    .container,
    .container-site {
      max-width: 1120px;
      width: 100%;
      margin-left: auto;
      margin-right: auto;
      padding-left: 32px;
      padding-right: 32px;
    }

    :focus-visible {
      outline: 2px solid var(--signal);
      outline-offset: 3px;
      border-radius: 6px;
    }

    ::selection {
      background: rgba(232, 183, 75, 0.35);
    }

    .numeric,
    .section-index,
    .rank-idx,
    .stage-no,
    .stat-num {
      font-variant-numeric: tabular-nums;
    }

    /* ===== 顶部 Dock ===== */
    .site-header {
      position: sticky;
      top: 12px;
      z-index: 80;
      padding: 0 16px;
      margin-top: 14px;
    }

    .dock {
      max-width: 1060px;
      width: 100%;
      margin: 0 auto;
      display: flex;
      align-items: center;
      gap: 18px;
      background: rgba(255, 253, 248, 0.94);
      border: 1px solid rgba(224, 220, 207, 0.95);
      border-radius: 999px;
      padding: 12px 20px 12px 22px;
      box-shadow: 0 12px 32px rgba(19, 47, 42, 0.08);
      transition: box-shadow 0.2s ease, border-color 0.2s ease;
    }

    .site-header.is-stuck .dock,
    .site-header:hover .dock {
      box-shadow: 0 16px 36px rgba(19, 47, 42, 0.12);
      border-color: #d7d2c2;
    }

    .site-logo {
      display: inline-flex;
      align-items: center;
      gap: 11px;
      text-decoration: none;
      color: var(--pine-dark);
      font-size: 18px;
      font-weight: 800;
      letter-spacing: 0.01em;
      flex-shrink: 0;
      white-space: nowrap;
    }

    .site-logo:hover {
      color: var(--pine);
    }

    .logo-dot {
      width: 12px;
      height: 12px;
      border-radius: 999px;
      background: var(--signal);
      box-shadow: 0 0 0 4px rgba(232, 93, 38, 0.14);
      flex: 0 0 auto;
    }

    .primary-nav {
      display: flex;
      align-items: center;
      justify-content: center;
      flex: 1 1 auto;
      gap: 2px;
    }

    .nav-link {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 40px;
      padding: 7px 16px;
      border-radius: 999px;
      font-size: 14.5px;
      font-weight: 600;
      color: var(--text);
      text-decoration: none;
      transition: background 0.18s ease, color 0.18s ease;
      white-space: nowrap;
    }

    .nav-link:hover {
      background: rgba(29, 70, 62, 0.08);
      color: var(--pine);
    }

    .nav-link.active {
      background: var(--pine);
      color: #fff;
    }

    .header-tools {
      display: flex;
      align-items: center;
      gap: 10px;
      flex-shrink: 0;
    }

    .search-btn,
    .menu-toggle {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 42px;
      height: 42px;
      border-radius: 999px;
      border: 1px solid var(--line);
      background: var(--card);
      color: var(--pine-dark);
      transition: background 0.18s ease, color 0.18s ease, transform 0.18s ease;
    }

    .search-btn:hover,
    .menu-toggle:hover {
      background: rgba(29, 70, 62, 0.08);
      color: var(--pine);
    }

    .search-btn:active,
    .menu-toggle:active {
      transform: scale(0.96);
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 44px;
      padding: 0 20px;
      border-radius: 999px;
      border: 1px solid transparent;
      font-size: 14.5px;
      font-weight: 700;
      text-decoration: none;
      transition: transform 0.16s ease, box-shadow 0.16s ease, background 0.16s ease;
      white-space: nowrap;
    }

    .btn:hover {
      transform: translateY(-1px);
    }

    .btn:active {
      transform: scale(0.98);
    }

    .btn-dark {
      background: var(--pine-dark);
      color: #fff;
      box-shadow: 0 8px 18px rgba(19, 47, 42, 0.18);
    }

    .btn-dark:hover {
      background: #0e2621;
      color: #fff;
      box-shadow: 0 10px 22px rgba(19, 47, 42, 0.24);
    }

    .btn-primary {
      background: var(--signal);
      color: var(--pine-dark);
      box-shadow: 0 8px 18px rgba(232, 93, 38, 0.18);
    }

    .btn-primary:hover {
      background: #ef6a34;
      color: var(--pine-dark);
      box-shadow: 0 12px 24px rgba(232, 93, 38, 0.26);
    }

    .btn-outline {
      background: transparent;
      color: var(--pine);
      border-color: var(--pine);
    }

    .btn-outline:hover {
      background: rgba(29, 70, 62, 0.06);
      color: var(--pine);
      border-color: var(--pine);
    }

    .menu-toggle {
      display: none;
    }

    .nav-cta {
      display: inline-flex;
    }

    /* 移动端抽屉 */
    .mobile-drawer {
      position: fixed;
      z-index: 120;
      top: 14px;
      left: 14px;
      right: 14px;
      max-width: 460px;
      margin-left: auto;
      margin-right: auto;
      background: var(--card);
      border: 1px solid var(--line);
      border-radius: 24px;
      padding: 26px 24px 22px;
      box-shadow: 0 28px 70px rgba(19, 47, 42, 0.25);
      visibility: hidden;
      opacity: 0;
      transform: translateY(-14px) scale(0.98);
      transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s;
    }

    .mobile-drawer.open {
      visibility: visible;
      opacity: 1;
      transform: none;
    }

    .mobile-drawer-head {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 6px;
    }

    .mobile-drawer-title {
      display: flex;
      align-items: center;
      gap: 9px;
      font-size: 17px;
      font-weight: 800;
      color: var(--pine-dark);
    }

    .mobile-close {
      width: 40px;
      height: 40px;
      border-radius: 999px;
      border: 1px solid var(--line);
      background: #fff;
      color: var(--text);
      display: inline-flex;
      align-items: center;
      justify-content: center;
    }

    .mobile-link {
      display: block;
      padding: 12px 10px;
      border-radius: 12px;
      color: var(--text);
      text-decoration: none;
      font-weight: 600;
    }

    .mobile-link:hover {
      background: rgba(29, 70, 62, 0.08);
    }

    .mobile-link.active {
      color: var(--signal);
      background: rgba(232, 93, 38, 0.08);
    }

    .mobile-drawer-cta {
      display: flex;
      gap: 10px;
      margin-top: 14px;
    }

    .mobile-backdrop {
      position: fixed;
      inset: 0;
      z-index: 100;
      background: rgba(19, 47, 42, 0.4);
      visibility: hidden;
      opacity: 0;
      transition: opacity 0.2s ease, visibility 0.2s;
    }

    .mobile-backdrop.show {
      visibility: visible;
      opacity: 1;
    }

    /* 主视觉 */
    .rank-hero {
      position: relative;
      overflow: hidden;
      padding: 62px 0 74px;
      background:
        radial-gradient(circle at 90% 16%, rgba(232, 183, 75, 0.16), transparent 360px),
        radial-gradient(circle at 5% 96%, rgba(29, 70, 62, 0.07), transparent 420px);
    }

    .rank-hero::before {
      content: "";
      position: absolute;
      inset: 0;
      pointer-events: none;
      background-image:
        linear-gradient(rgba(29, 70, 62, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(29, 70, 62, 0.05) 1px, transparent 1px);
      background-size: 40px 40px;
      mask-image: linear-gradient(to bottom, black, transparent 86%);
      -webkit-mask-image: linear-gradient(to bottom, black, transparent 86%);
    }

    .hero-grid {
      display: grid;
      grid-template-columns: 1.05fr 0.95fr;
      gap: 52px;
      align-items: center;
      position: relative;
    }

    .breadcrumb {
      display: flex;
      align-items: center;
      flex-wrap: wrap;
      gap: 8px;
      font-size: 13px;
      color: var(--muted);
      margin-bottom: 18px;
    }

    .breadcrumb a {
      color: var(--pine);
      text-decoration: none;
    }

    .breadcrumb a:hover {
      text-decoration: underline;
    }

    .hero-tag {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      padding: 5px 13px;
      border-radius: 999px;
      background: rgba(232, 183, 75, 0.18);
      color: var(--pine-dark);
      font-size: 13px;
      font-weight: 700;
    }

    .page-h1 {
      margin: 14px 0 14px;
      font-size: clamp(34px, 4.6vw, 52px);
      line-height: 1.2;
      font-weight: 800;
      letter-spacing: -0.02em;
      color: var(--pine-dark);
    }

    .page-h1 .mk-brand {
      color: var(--pine);
    }

    .hero-lead {
      max-width: 34em;
      color: var(--muted);
      font-size: 16.5px;
      margin: 0 0 24px;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
      margin: 28px 0 24px;
    }

    .hero-mini-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
    }

    .mini-tag {
      padding: 4px 10px;
      border-radius: 999px;
      border: 1px solid var(--line);
      color: var(--pine-dark);
      background: rgba(255, 253, 248, 0.7);
      font-size: 12.5px;
      font-weight: 600;
    }

    .hero-visual {
      position: relative;
    }

    .hero-visual-card {
      background: var(--card);
      border: 1px solid var(--line);
      border-radius: 24px;
      box-shadow: var(--shadow);
      padding: 10px;
      transform: rotate(1deg);
      transition: transform 0.3s ease;
    }

    .hero-visual-card:hover {
      transform: rotate(0deg) translateY(-3px);
    }

    .hero-visual-card img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      aspect-ratio: 4 / 3;
      border-radius: 17px;
    }

    .hero-note-card {
      position: absolute;
      right: 14px;
      bottom: -26px;
      width: 70%;
      z-index: 2;
      background: var(--pine-dark);
      color: #fff;
      border-radius: 16px;
      padding: 14px 18px;
      box-shadow: 0 18px 44px rgba(19, 47, 42, 0.3);
    }

    .hero-note-head {
      color: rgba(255, 255, 255, 0.55);
      font-size: 12px;
      letter-spacing: 0.04em;
    }

    .hero-note-text {
      font-size: 15px;
      font-weight: 700;
      font-variant-numeric: tabular-nums;
      margin-top: 3px;
    }

    /* 板块通用 */
    .site-section {
      padding: 82px 0;
    }

    .site-section.bg-soft {
      background: #ebe9e0;
    }

    .site-section.bg-white-panel {
      background: var(--card);
      border-top: 1px solid var(--line);
      border-bottom: 1px solid var(--line);
    }

    .section-heading {
      display: grid;
      grid-template-columns: auto 1fr;
      align-items: start;
      gap: 16px;
      max-width: 720px;
      margin-bottom: 38px;
    }

    .section-index {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: var(--pine);
      color: #fff;
      font-size: 13px;
      line-height: 1;
      font-weight: 800;
      min-width: 38px;
      height: 30px;
      padding: 0 10px;
      border-radius: 999px;
    }

    .eyebrow {
      font-size: 13px;
      font-weight: 800;
      letter-spacing: 0.04em;
      color: var(--signal);
      margin: 0 0 6px;
    }

    .section-heading h2 {
      margin: 0;
      font-size: clamp(25px, 3.5vw, 34px);
      line-height: 1.3;
      color: var(--pine-dark);
      letter-spacing: -0.01em;
    }

    .section-heading p {
      margin: 10px 0 0;
      color: var(--muted);
      font-size: 15.5px;
      line-height: 1.7;
    }

    /* 常用维度 */
    .dim-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
    }

    .dim-tile {
      background: var(--card);
      border: 1px solid var(--line);
      border-radius: var(--radius);
      padding: 26px 22px 24px;
      box-shadow: 0 2px 0 rgba(0, 0, 0, 0.01);
      transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
    }

    .dim-tile:hover {
      transform: translateY(-3px);
      box-shadow: 0 18px 34px rgba(29, 70, 62, 0.09);
      border-color: #d7d2c2;
    }

    .dim-icon {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 44px;
      height: 44px;
      border-radius: 13px;
      background: rgba(29, 70, 62, 0.09);
      color: var(--pine);
      margin-bottom: 18px;
    }

    .dim-tile:nth-child(2) .dim-icon {
      background: rgba(232, 183, 75, 0.18);
      color: #936903;
    }

    .dim-tile:nth-child(3) .dim-icon {
      background: rgba(232, 93, 38, 0.12);
      color: var(--signal);
    }

    .dim-tile h3 {
      font-size: 19px;
      font-weight: 800;
      color: var(--pine-dark);
      margin: 0 0 8px;
      line-height: 1.4;
    }

    .dim-tile p {
      margin: 0;
      font-size: 14px;
      line-height: 1.75;
      color: var(--muted);
    }

    /* 排行入口 */
    .rank-split-grid {
      display: grid;
      grid-template-columns: 1fr 1.08fr;
      gap: 46px;
      align-items: center;
    }

    .rank-feature-img {
      border-radius: 22px;
      overflow: hidden;
      border: 1px solid var(--line);
      box-shadow: var(--shadow);
    }

    .rank-feature-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      min-height: 380px;
    }

    .rank-entry-list .rank-entry-row {
      display: grid;
      grid-template-columns: 52px 1fr auto;
      align-items: center;
      gap: 18px;
      border-bottom: 1px solid var(--line);
      padding: 20px 6px;
      text-decoration: none;
      transition: background 0.16s ease, padding-left 0.16s ease;
      border-radius: 4px;
    }

    .rank-entry-list .rank-entry-row:first-child {
      border-top: 1px solid var(--line);
    }

    .rank-entry-row:hover {
      padding-left: 14px;
      background: rgba(255, 253, 248, 0.8);
    }

    .rank-idx {
      color: var(--signal);
      font-weight: 800;
      font-size: 16px;
    }

    .rank-row-main h3 {
      margin: 0 0 3px;
      font-size: 18px;
      color: var(--pine-dark);
      line-height: 1.4;
    }

    .rank-row-main p {
      margin: 0;
      font-size: 14px;
      color: var(--muted);
      line-height: 1.65;
    }

    .row-arrow {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 34px;
      height: 34px;
      border-radius: 999px;
      border: 1px solid var(--line);
      color: var(--pine-dark);
      font-size: 19px;
      transition: background 0.16s ease, color 0.16s ease, transform 0.16s ease;
      flex: 0 0 auto;
    }

    .rank-entry-row:hover .row-arrow {
      background: var(--pine);
      color: #fff;
      transform: translateX(3px);
      border-color: var(--pine);
    }

    /* 观赛场景 */
    .stage-band {
      background-color: var(--pine-dark);
      background-image:
        linear-gradient(rgba(19, 47, 42, 0.94), rgba(19, 47, 42, 0.88)),
        url("/assets/images/backpic/back-3.webp");
      background-size: cover;
      background-position: center;
      color: #fff;
      padding: 88px 0;
    }

    .stage-band .eyebrow {
      color: var(--gold);
    }

    .stage-band h2 {
      color: #fff;
    }

    .stage-band .section-heading p {
      color: rgba(255, 255, 255, 0.72);
    }

    .stage-heading-index {
      background: var(--signal);
    }

    .stage-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 22px;
    }

    .stage-item {
      border: 1px solid rgba(255, 255, 255, 0.12);
      background: rgba(255, 255, 255, 0.04);
      border-radius: 20px;
      padding: 26px 24px 22px;
      transition: background 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
    }

    .stage-item:hover {
      background: rgba(255, 255, 255, 0.08);
      transform: translateY(-3px);
      border-color: rgba(255, 255, 255, 0.2);
    }

    .stage-no {
      font-size: 13px;
      font-weight: 800;
      color: var(--gold);
    }

    .stage-item h3 {
      color: #fff;
      font-size: 19px;
      margin: 8px 0 10px;
      line-height: 1.4;
    }

    .stage-item p {
      font-size: 14.5px;
      color: rgba(255, 255, 255, 0.72);
      line-height: 1.8;
      margin: 0;
    }

    /* 汇总引导 */
    .guide-panel {
      display: grid;
      grid-template-columns: 0.95fr 1.05fr;
      gap: 40px;
      align-items: center;
      background: var(--card);
      border: 1px solid var(--line);
      border-radius: 24px;
      padding: 34px 38px;
      box-shadow: 0 10px 32px rgba(19, 47, 42, 0.06);
    }

    .guide-panel h3 {
      margin: 0 0 10px;
      font-size: 24px;
      color: var(--pine-dark);
    }

    .guide-panel p {
      color: var(--muted);
      line-height: 1.8;
      margin: 0 0 18px;
    }

    .guide-stat-row {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 14px;
    }

    .guide-stat {
      background: var(--bg);
      border-radius: 14px;
      padding: 16px 12px;
    }

    .guide-stat strong {
      display: block;
      font-size: 22px;
      color: var(--signal);
      line-height: 1.2;
      font-variant-numeric: tabular-nums;
    }

    .guide-stat span {
      display: block;
      color: var(--muted);
      font-size: 13px;
      margin-top: 5px;
      line-height: 1.4;
    }

    /* FAQ */
    .faq-grid {
      display: grid;
      grid-template-columns: 0.65fr 1.35fr;
      gap: 56px;
    }

    .faq-side h2 {
      margin: 0 0 12px;
      font-size: clamp(24px, 3.4vw, 34px);
      line-height: 1.3;
      color: var(--pine-dark);
    }

    .faq-side p {
      color: var(--muted);
      margin: 0;
    }

    .faq-list {
      border-top: 1px solid var(--line);
    }

    details.faq-item {
      border-bottom: 1px solid var(--line);
      border-radius: 0;
    }

    details.faq-item summary {
      list-style: none;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
      padding: 20px 14px 20px 4px;
      cursor: pointer;
      min-height: 60px;
      color: var(--pine-dark);
      font-size: 17px;
      font-weight: 700;
      transition: color 0.16s ease;
    }

    details.faq-item summary::-webkit-details-marker {
      display: none;
    }

    details.faq-item summary:hover {
      color: var(--pine);
    }

    .faq-mark {
      flex: 0 0 auto;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 32px;
      height: 32px;
      border-radius: 999px;
      border: 1px solid var(--line);
      font-weight: 700;
      color: var(--pine);
      transition: background 0.2s ease, color 0.2s ease;
    }

    details[open] .faq-mark {
      background: var(--pine);
      color: #fff;
    }

    .faq-answer {
      padding: 0 30px 20px 4px;
      color: var(--muted);
      font-size: 15px;
      line-height: 1.85;
    }

    /* 联系区 */
    .contact-section {
      background: var(--bg);
      padding: 82px 0 90px;
      border-top: 1px solid var(--line);
    }

    .contact-grid {
      display: grid;
      grid-template-columns: 0.9fr 1.1fr;
      gap: 52px;
      align-items: start;
    }

    .contact-intro h2 {
      margin: 0 0 14px;
      color: var(--pine-dark);
      font-size: 30px;
      line-height: 1.35;
    }

    .contact-intro p {
      color: var(--muted);
      margin: 0 0 22px;
      font-size: 15px;
      line-height: 1.8;
    }

    .contact-list {
      display: grid;
      gap: 12px;
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .contact-list li {
      display: flex;
      align-items: center;
      gap: 10px;
      color: var(--text);
    }

    .contact-list .dot-ico {
      width: 8px;
      height: 8px;
      border-radius: 999px;
      background: var(--signal);
    }

    .form-card {
      background: var(--card);
      border: 1px solid var(--line);
      border-radius: 24px;
      padding: 30px 32px 28px;
      box-shadow: var(--shadow);
    }

    .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 15px;
    }

    .form-field {
      display: flex;
      flex-direction: column;
      margin-bottom: 15px;
    }

    .form-field label {
      color: var(--pine-dark);
      font-size: 13.5px;
      font-weight: 700;
      margin-bottom: 7px;
    }

    .form-field input,
    .form-field textarea,
    .form-field select {
      width: 100%;
      border: 1px solid var(--line);
      background: #fff;
      border-radius: 12px;
      height: 48px;
      padding: 0 14px;
      color: var(--text);
      outline: none;
      transition: border-color 0.18s ease, box-shadow 0.18s ease;
      font-size: 15px;
    }

    .form-field textarea {
      height: auto;
      resize: vertical;
      padding: 12px 14px;
      min-height: 92px;
    }

    .form-field input:focus,
    .form-field textarea:focus,
    .form-field select:focus {
      border-color: var(--pine);
      box-shadow: 0 0 0 3px rgba(29, 70, 62, 0.1);
    }

    .form-submit-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 14px;
      margin-top: 8px;
      flex-wrap: wrap;
    }

    .form-note {
      color: var(--pine);
      font-size: 13px;
      font-weight: 600;
    }

    /* 页脚 */
    .site-footer {
      background: var(--pine-dark);
      color: rgba(255, 255, 255, 0.78);
      padding-top: 60px;
    }

    .footer-top {
      display: grid;
      grid-template-columns: 1.6fr 0.8fr 0.9fr;
      gap: 56px;
      padding-bottom: 42px;
    }

    .footer-logo {
      display: flex;
      align-items: center;
      gap: 10px;
      color: #fff;
      font-size: 20px;
      font-weight: 800;
      margin-bottom: 10px;
    }

    .footer-brand p {
      color: rgba(255, 255, 255, 0.64);
      max-width: 360px;
      font-size: 14.5px;
      line-height: 1.85;
      margin: 0;
    }

    .footer-col h4 {
      color: #fff;
      font-size: 15px;
      font-weight: 700;
      margin: 0 0 14px;
    }

    .footer-col ul {
      list-style: none;
      margin: 0;
      padding: 0;
      display: grid;
      gap: 8px;
    }

    .footer-col a {
      display: inline-flex;
      align-items: center;
      padding: 5px 0;
      color: rgba(255, 255, 255, 0.68);
      text-decoration: none;
      font-size: 14px;
      min-height: 32px;
    }

    .footer-col a:hover {
      color: #fff;
    }

    .footer-bottom {
      display: flex;
      justify-content: space-between;
      gap: 20px;
      flex-wrap: wrap;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      padding: 22px 0 28px;
      color: rgba(255, 255, 255, 0.48);
      font-size: 13px;
    }

    @media (max-width: 1023px) {
      .primary-nav {
        display: none;
      }

      .menu-toggle {
        display: inline-flex;
      }

      .hero-grid {
        grid-template-columns: 1fr;
        gap: 64px;
      }

      .rank-split-grid {
        grid-template-columns: 1fr;
        gap: 28px;
      }

      .dim-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .stage-grid {
        grid-template-columns: 1fr;
      }

      .faq-grid,
      .contact-grid,
      .guide-panel {
        grid-template-columns: 1fr;
      }

      .guide-stat-row {
        grid-template-columns: repeat(3, 1fr);
      }

      .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 40px 30px;
      }
    }

    @media (max-width: 767px) {
      .container,
      .container-site {
        padding-left: 20px;
        padding-right: 20px;
      }

      .dock {
        padding: 10px 12px 10px 14px;
        gap: 8px;
      }

      .site-logo {
        font-size: 16px;
        gap: 8px;
      }

      .logo-dot {
        width: 10px;
        height: 10px;
      }

      .nav-cta {
        display: none;
      }

      .search-btn,
      .menu-toggle {
        width: 40px;
        height: 40px;
      }

      .rank-hero {
        padding: 40px 0 58px;
      }

      .site-section {
        padding: 54px 0;
      }

      .stage-band {
        padding: 60px 0;
      }

      .dim-grid,
      .guide-stat-row {
        grid-template-columns: 1fr;
      }

      .section-heading {
        grid-template-columns: 1fr;
      }

      .section-heading h2 {
        font-size: 26px;
      }

      .rank-entry-list .rank-entry-row {
        grid-template-columns: 42px 1fr auto;
        gap: 12px;
        padding: 17px 2px;
      }

      .form-row {
        grid-template-columns: 1fr;
        gap: 0;
      }

      .footer-top {
        grid-template-columns: 1fr;
      }

      .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
      }
    }

    @media (max-width: 480px) {
      .hero-actions,
      .form-submit-row {
        align-items: stretch;
        flex-direction: column;
      }

      .hero-actions .btn,
      .hero-actions .btn-outline,
      .form-submit-row .btn {
        width: 100%;
      }

      .page-h1 {
        font-size: 32px;
      }

      .hero-visual-card {
        transform: none;
      }

      .hero-note-card {
        position: static;
        width: 100%;
        margin-top: 12px;
      }

      .guide-panel {
        padding: 24px 18px;
      }
    }

/* roulang page: category2 */
:root {
    --pine: #1D463E;
    --pine-deep: #132F2A;
    --pine-mid: #2E5C52;
    --orange: #E85D26;
    --gold: #E8B84B;
    --cream: #F5F2EA;
    --card: #FFFDF8;
    --ink: #1E2926;
    --muted: #66736F;
    --line: #E0DCCF;
    --radius-lg: 16px;
    --radius-md: 12px;
    --radius-pill: 999px;
    --shadow: 0 16px 30px -20px rgba(19, 47, 42, 0.18);
    --shadow-hover: 0 20px 32px -18px rgba(19, 47, 42, 0.24);
  }

  * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }

  html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
  }

  body {
    font-family: "PingFang SC", "Microsoft YaHei", "Noto Sans CJK SC", "Source Han Sans SC", sans-serif;
    background: var(--cream);
    color: var(--ink);
    line-height: 1.75;
    overflow-x: hidden;
  }

  section,
  div[id] {
    scroll-margin-top: 112px;
  }

  img {
    display: block;
    max-width: 100%;
    height: auto;
  }

  a {
    color: inherit;
    text-decoration: none;
  }

  button,
  input,
  select,
  textarea {
    font: inherit;
  }

  :focus-visible {
    outline: 2px solid var(--orange);
    outline-offset: 3px;
  }

  ::selection {
    background: rgba(232, 88, 38, 0.24);
    color: var(--ink);
  }

  .wrap {
    width: 100%;
    max-width: 1120px;
    margin: 0 auto;
    padding-left: clamp(16px, 3vw, 32px);
    padding-right: clamp(16px, 3vw, 32px);
  }

  .site-header {
    position: fixed;
    top: clamp(10px, 2vw, 20px);
    left: 0;
    right: 0;
    z-index: 100;
    padding: 0 14px;
  }

  .dock {
    position: relative;
    width: 100%;
    max-width: 1080px;
    margin: 0 auto;
    min-height: 68px;
    padding: 10px 12px;
    border: 1px solid rgba(224, 220, 207, 0.96);
    border-radius: 999px;
    background: rgba(255, 253, 248, 0.96);
    box-shadow: 0 12px 28px -18px rgba(19, 47, 42, 0.3);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    transition: box-shadow .3s ease, border-color .3s ease;
  }

  .site-header.scrolled .dock {
    border-color: rgba(207, 201, 186, 0.9);
    box-shadow: 0 14px 30px -16px rgba(19, 47, 42, 0.26);
  }

  .site-logo {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    min-height: 44px;
    padding: 0 14px;
    border-radius: 999px;
    font-weight: 800;
    font-size: 1.08rem;
    color: var(--pine-deep);
    letter-spacing: 0.02em;
    white-space: nowrap;
    transition: background .25s ease;
  }

  .site-logo:hover {
    background: rgba(29, 70, 62, 0.08);
  }

  .logo-dot {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: var(--orange);
    box-shadow: 0 0 0 4px rgba(232, 88, 38, 0.14);
    flex: 0 0 auto;
  }

  .primary-nav {
    display: flex;
    align-items: center;
    gap: 4px;
  }

  .nav-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 0 14px;
    border-radius: 999px;
    font-size: .95rem;
    font-weight: 600;
    color: var(--muted);
    transition: background .25s ease, color .25s ease;
  }

  .nav-link:hover {
    color: var(--pine);
    background: rgba(29, 70, 62, 0.08);
  }

  .nav-link.active {
    color: #fff;
    background: var(--pine-deep);
  }

  .header-tools {
    display: flex;
    align-items: center;
    gap: 6px;
  }

  .search-btn,
  .menu-toggle {
    width: 44px;
    height: 44px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    background: transparent;
    color: var(--pine-deep);
    cursor: pointer;
    transition: background .25s ease, transform .2s ease;
  }

  .search-btn:hover,
  .menu-toggle:hover {
    background: rgba(29, 70, 62, 0.1);
  }

  .search-btn:active,
  .menu-toggle:active {
    transform: scale(.96);
  }

  .menu-toggle {
    display: none;
  }

  .dock-search {
    position: absolute;
    right: 16px;
    top: calc(100% + 10px);
    width: min(420px, 92vw);
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-hover);
    padding: 10px;
    opacity: 0;
    transform: translateY(-8px);
    pointer-events: none;
    transition: opacity .25s ease, transform .25s ease;
  }

  .dock-search.open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .dock-search-form {
    display: flex;
    gap: 8px;
  }

  .dock-search input {
    height: 44px;
    width: 1px;
    flex: 1;
    background: var(--cream);
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 0 12px;
    color: var(--ink);
    outline: none;
    transition: border-color .2s ease;
  }

  .dock-search input:focus {
    border-color: var(--pine);
  }

  .search-submit {
    height: 44px;
    padding: 0 14px;
    border: 0;
    border-radius: 999px;
    background: var(--pine);
    color: #fff;
    cursor: pointer;
    white-space: nowrap;
    transition: background .25s ease, transform .2s ease;
  }

  .search-submit:hover {
    background: var(--pine-mid);
  }

  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 22px;
    border-radius: 999px;
    font-weight: 700;
    font-size: .96rem;
    border: 1px solid transparent;
    cursor: pointer;
    text-align: center;
    transition: background .25s ease, color .25s ease, transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  }

  .btn:hover {
    transform: translateY(-1px);
  }

  .btn:active {
    transform: translateY(0) scale(.98);
  }

  .btn-primary {
    background: var(--orange);
    color: var(--pine-deep);
  }

  .btn-primary:hover {
    background: #f06a2e;
    box-shadow: 0 8px 16px -8px rgba(232, 88, 38, .6);
  }

  .btn-dark {
    background: var(--pine-deep);
    color: var(--cream);
  }

  .btn-dark:hover {
    background: var(--pine);
    box-shadow: 0 8px 16px -8px rgba(19, 47, 42, .5);
  }

  .btn-outline-light {
    border-color: rgba(255, 255, 255, .68);
    color: #fff;
    background: transparent;
  }

  .btn-outline-light:hover {
    background: rgba(255, 255, 255, .12);
    border-color: #fff;
  }

  .btn-ghost {
    background: transparent;
    border-color: var(--line);
    color: var(--pine);
  }

  .btn-ghost:hover {
    border-color: var(--pine);
    background: rgba(29, 70, 62, .06);
  }

  .nav-cta {
    min-height: 42px;
    padding: 0 18px;
  }

  .page-hero {
    position: relative;
    overflow: hidden;
    color: #fff;
    background:
      linear-gradient(108deg, rgba(19, 47, 42, .97) 0%, rgba(29, 70, 62, .88) 46%, rgba(19, 47, 42, .46) 100%),
      url('/assets/images/backpic/back-3.webp') center / cover no-repeat;
    padding: clamp(126px, 13vw, 180px) 0 48px;
  }

  .page-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image:
      linear-gradient(rgba(255, 255, 255, .06) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255, 255, 255, .05) 1px, transparent 1px);
    background-size: 44px 44px;
    mask-image: linear-gradient(90deg, transparent, #000 58%, rgba(0, 0, 0, .3));
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 58%, rgba(0, 0, 0, .3));
  }

  .hero-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.12fr .88fr;
    gap: 56px;
    align-items: center;
  }

  .hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    padding: 6px 14px 6px 8px;
    border: 1px solid rgba(255, 255, 255, .24);
    border-radius: 999px;
    background: rgba(255, 255, 255, .1);
    color: #f5f2ea;
    font-size: .9rem;
  }

  .pulse-dot {
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: var(--orange);
    box-shadow: 0 0 0 5px rgba(232, 88, 38, .25);
  }

  .page-hero h1 {
    font-size: clamp(2rem, 4vw, 3.6rem);
    line-height: 1.15;
    font-weight: 800;
    letter-spacing: .02em;
    margin-bottom: 20px;
  }

  .page-hero .hero-desc {
    max-width: 52ch;
    color: rgba(245, 242, 234, .88);
    font-size: 1.02rem;
    line-height: 1.85;
    margin-bottom: 34px;
  }

  .hero-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px;
  }

  .hero-extra {
    font-size: .9rem;
    margin-top: 18px;
    color: rgba(245, 242, 234, .7);
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .hero-extra strong {
    color: var(--gold);
    font-weight: 700;
  }

  .hero-panel {
    background: rgba(255, 253, 248, .96);
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 22px;
    color: var(--ink);
    box-shadow: 0 24px 48px -30px rgba(0, 0, 0, .6);
    padding: 24px;
  }

  .hero-panel-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 18px;
  }

  .hero-panel-head span {
    font-weight: 700;
    font-size: .96rem;
    color: var(--pine);
  }

  .hero-panel-head small {
    background: rgba(29, 70, 62, .1);
    color: var(--pine);
    border-radius: 999px;
    padding: 4px 10px;
    font-size: .8rem;
    font-weight: 600;
  }

  .hero-panel-list {
    border-top: 1px solid var(--line);
  }

  .hero-panel-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    padding: 14px 2px;
    border-bottom: 1px solid var(--line);
    font-size: .95rem;
  }

  .hero-panel-item .field {
    color: var(--ink);
    font-weight: 600;
  }

  .hero-panel-item .value {
    color: var(--muted);
    text-align: right;
    font-variant-numeric: tabular-nums;
  }

  .hero-panel-foot {
    margin-top: 18px;
    background: rgba(29, 70, 62, .07);
    border-radius: 12px;
    padding: 12px;
    font-size: .86rem;
    color: var(--muted);
    display: flex;
    gap: 8px;
    align-items: flex-start;
  }

  .hero-panel-foot .mini-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gold);
    margin-top: 7px;
    flex: 0 0 auto;
  }

  .anchor-strip {
    background: transparent;
    margin: 0 auto;
    padding: 24px 0 6px;
  }

  .anchor-pills {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
  }

  .anchor-pill {
    min-height: 44px;
    padding: 0 16px;
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    background: var(--card);
    border: 1px solid var(--line);
    color: var(--pine-deep);
    font-weight: 600;
    font-size: .92rem;
    gap: 8px;
    transition: border-color .25s ease, background .25s ease, transform .2s ease;
  }

  .anchor-pill::before {
    content: '';
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--orange);
  }

  .anchor-pill:hover {
    border-color: var(--pine);
    background: rgba(29, 70, 62, .06);
    transform: translateY(-1px);
  }

  .section-block {
    padding: clamp(52px, 6vw, 84px) 0;
  }

  .section-head {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-end;
    gap: 18px;
    margin-bottom: 32px;
  }

  .section-head .head-left {
    max-width: 680px;
  }

  .sec-prefix {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: .82rem;
    font-weight: 700;
    letter-spacing: .12em;
    color: var(--orange);
    text-transform: uppercase;
    margin-bottom: 12px;
  }

  .sec-prefix .line {
    width: 24px;
    height: 2px;
    background: currentColor;
    border-radius: 999px;
    opacity: .7;
  }

  .section-head h2 {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    line-height: 1.25;
    color: var(--pine-deep);
    font-weight: 800;
    letter-spacing: .01em;
  }

  .section-head p {
    color: var(--muted);
    font-size: 1rem;
    margin-top: 12px;
  }

  .section-head .sec-note {
    font-size: .92rem;
    color: var(--muted);
    background: rgba(232, 184, 75, .16);
    border: 1px solid rgba(232, 184, 75, .3);
    padding: 8px 14px;
    border-radius: 999px;
  }

  .field-block {
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
  }

  .field-rows {
    padding: 6px 8px;
  }

  .field-row {
    display: grid;
    grid-template-columns: 74px 1fr auto;
    gap: 16px;
    align-items: center;
    padding: 26px 16px;
    border-bottom: 1px solid var(--line);
    transition: background .25s ease, transform .25s ease;
  }

  .field-row:last-child {
    border-bottom: 0;
  }

  .field-row:hover {
    background: rgba(29, 70, 62, .05);
    transform: translateX(2px);
  }

  .field-no {
    font-variant-numeric: tabular-nums;
    color: var(--orange);
    font-weight: 800;
    font-size: 1.4rem;
    opacity: .92;
  }

  .field-row h3 {
    font-size: 1.08rem;
    font-weight: 800;
    color: var(--ink);
    margin-bottom: 5px;
  }

  .field-row p {
    color: var(--muted);
    font-size: .93rem;
    line-height: 1.7;
    max-width: 58ch;
  }

  .field-tags {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
  }

  .badge {
    display: inline-block;
    padding: 6px 13px;
    background: rgba(29, 70, 62, .09);
    color: var(--pine);
    font-size: .83rem;
    font-weight: 700;
    border-radius: 999px;
    white-space: nowrap;
  }

  .badge-soft {
    background: rgba(232, 184, 75, .16);
    color: #7a5b10;
  }

  .caliber-aside {
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 22px;
    box-shadow: var(--shadow);
  }

  .cover-photo {
    border-radius: 14px;
    overflow: hidden;
    margin-bottom: 20px;
  }

  .cover-photo img {
    width: 100%;
    height: 190px;
    object-fit: cover;
    object-position: center;
  }

  .caliber-aside h3 {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--pine-deep);
    margin-bottom: 10px;
  }

  .caliber-aside > p {
    color: var(--muted);
    font-size: .95rem;
    margin-bottom: 16px;
  }

  .caliber-list {
    list-style: none;
    border-top: 1px solid var(--line);
  }

  .caliber-list li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    padding: 12px 0;
    border-bottom: 1px solid var(--line);
    color: var(--muted);
    font-size: .9rem;
    line-height: 1.6;
  }

  .caliber-list li::before {
    content: '';
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--orange);
    flex: 0 0 auto;
    margin-top: 9px;
  }

  .metric-band {
    background: var(--pine-deep);
    color: var(--cream);
    padding: clamp(52px, 6vw, 80px) 0;
    position: relative;
    overflow: hidden;
  }

  .metric-band::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image: linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px);
    background-size: 100% 86px;
  }

  .metric-band .wrap {
    position: relative;
    z-index: 2;
  }

  .metric-head {
    margin-bottom: 34px;
  }

  .metric-head .sec-prefix {
    color: var(--gold);
  }

  .metric-head h2 {
    color: #fff;
    font-size: clamp(1.6rem, 3vw, 2.1rem);
    font-weight: 800;
  }

  .metric-head p {
    color: rgba(245, 242, 234, .74);
    max-width: 620px;
    margin-top: 10px;
  }

  .metric-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
  }

  .metric-card {
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 18px;
    padding: 24px 20px;
    min-height: 170px;
    transition: background .25s ease, transform .25s ease;
  }

  .metric-card:hover {
    background: rgba(255, 255, 255, .13);
    transform: translateY(-2px);
  }

  .metric-icon {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    background: rgba(232, 88, 38, .24);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1rem;
    margin-bottom: 18px;
  }

  .metric-card h3 {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 8px;
  }

  .metric-card p {
    font-size: .9rem;
    line-height: 1.7;
    color: rgba(245, 242, 234, .82);
  }

  .timeline-wrap {
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: 20px;
    box-shadow: var(--shadow);
    padding: 6px 8px;
  }

  .timeline-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
  }

  .timeline-item {
    position: relative;
    padding: 28px 20px 24px;
    border-right: 1px solid var(--line);
  }

  .timeline-item:last-child {
    border-right: 0;
  }

  .timeline-item .time-badge {
    display: inline-block;
    font-weight: 800;
    color: var(--orange);
    font-size: .9rem;
    letter-spacing: .1em;
    margin-bottom: 16px;
  }

  .timeline-item .time-badge::before {
    content: '';
    width: 10px;
    height: 10px;
    display: inline-block;
    border: 2px solid var(--orange);
    border-radius: 50%;
    margin-right: 9px;
    background: rgba(232, 88, 38, .12);
    vertical-align: middle;
  }

  .timeline-item h3 {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--pine-deep);
    margin-bottom: 6px;
  }

  .timeline-item p {
    font-size: .92rem;
    color: var(--muted);
    line-height: 1.7;
  }

  .timeline-note {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-top: 22px;
    background: rgba(232, 184, 75, .14);
    border: 1px solid rgba(232, 184, 75, .3);
    border-radius: 14px;
    padding: 16px 18px;
    color: #6c5313;
  }

  .timeline-note strong {
    color: #4f3a08;
  }

  .entry-grid {
    gap: 20px;
  }

  .entry-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    min-height: 250px;
    display: flex;
    align-items: flex-end;
    background-color: var(--pine-deep);
  }

  .entry-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .38;
  }

  .entry-body {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 28px 24px;
    background: linear-gradient(180deg, transparent 30%, rgba(19, 47, 42, .95) 100%);
    color: #fff;
  }

  .entry-body .badge {
    background: rgba(255, 255, 255, .16);
    color: #fff;
  }

  .entry-body h3 {
    font-size: 1.5rem;
    font-weight: 800;
    line-height: 1.3;
    margin: 10px 0 8px;
  }

  .entry-body p {
    color: rgba(245, 242, 234, .85);
    font-size: .94rem;
    max-width: 54ch;
  }

  .entry-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
    color: #fff;
    font-weight: 700;
    font-size: .9rem;
  }

  .entry-link .arrow {
    transition: transform .25s ease;
  }

  .entry-card:hover .entry-link .arrow {
    transform: translateX(4px);
  }

  .faq-block {
    background: transparent;
  }

  .faq-layout {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 48px;
    align-items: start;
  }

  .faq-intro h2 {
    font-size: clamp(1.7rem, 3vw, 2.2rem);
    color: var(--pine-deep);
    line-height: 1.3;
    font-weight: 800;
    margin: 12px 0 16px;
  }

  .faq-intro p {
    color: var(--muted);
    line-height: 1.85;
  }

  .faq-list {
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: 20px;
    box-shadow: var(--shadow);
    padding: 4px 20px;
  }

  details.faq-item {
    border-bottom: 1px solid var(--line);
  }

  details.faq-item:last-child {
    border-bottom: 0;
  }

  details.faq-item summary {
    list-style: none;
    cursor: pointer;
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 14px 2px;
    font-weight: 700;
    color: var(--ink);
    color: var(--pine-deep);
    font-size: 1rem;
    transition: color .2s ease;
  }

  details.faq-item summary::-webkit-details-marker {
    display: none;
  }

  details.faq-item summary:hover {
    color: var(--orange);
  }

  .faq-icon {
    width: 22px;
    height: 22px;
    position: relative;
    flex: 0 0 auto;
    border-radius: 50%;
    border: 1.5px solid var(--pine);
    transition: border-color .2s ease, background .2s ease, transform .2s ease;
  }

  .faq-icon::before,
  .faq-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 10px;
    height: 1.6px;
    background: var(--pine);
    transform: translate(-50%, -50%);
    transition: background .2s ease;
  }

  .faq-icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
  }

  details[open] summary .faq-icon {
    border-color: var(--orange);
    transform: rotate(45deg);
  }

  details[open] summary .faq-icon::before,
  details[open] summary .faq-icon::after {
    background: var(--orange);
  }

  .faq-answer {
    padding: 0 3px 20px 3px;
    color: var(--muted);
    font-size: .96rem;
    line-height: 1.8;
    max-width: 64ch;
  }

  .faq-answer strong {
    color: var(--ink);
  }

  .contact-band {
    background:
      linear-gradient(115deg, rgba(19, 47, 42, .94), rgba(29, 70, 62, .86)),
      url('/assets/images/backpic/back-1.png') center / cover no-repeat;
    padding: clamp(54px, 6vw, 84px) 0;
  }

  .contact-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 44px;
    align-items: center;
    color: #fff;
  }

  .contact-copy h2 {
    font-size: clamp(1.7rem, 3vw, 2.2rem);
    line-height: 1.3;
    font-weight: 800;
    color: #fff;
    margin-bottom: 16px;
  }

  .contact-copy p {
    color: rgba(245, 242, 234, .82);
    line-height: 1.8;
    margin-bottom: 28px;
  }

  .contact-meta {
    display: flex;
    flex-direction: column;
    gap: 14px;
  }

  .meta-row {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: rgba(245,242,234,.9);
    font-size: .94rem;
  }

  .meta-row .meta-index {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 30px;
    height: 30px;
    border-radius: 10px;
    background: rgba(232, 88, 38, .26);
    color: #fff;
    font-weight: 800;
    font-variant-numeric: tabular-nums;
  }

  .contact-form-panel {
    background: var(--card);
    color: var(--ink);
    border-radius: 22px;
    padding: clamp(20px, 3vw, 30px);
    box-shadow: 0 24px 48px -24px rgba(0, 0, 0, .42);
  }

  .form-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
  }

  .form-head h3 {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--pine-deep);
  }

  .form-head small {
    color: var(--muted);
    font-size: .84rem;
    white-space: nowrap;
  }

  .form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }

  .form-group {
    display: block;
  }

  .form-group label {
    display: block;
    font-size: .9rem;
    font-weight: 600;
    color: var(--pine-deep);
    margin-bottom: 7px;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    width: 100%;
    min-height: 46px;
    background: var(--cream);
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 0 14px;
    color: var(--ink);
    outline: none;
    transition: border-color .2s ease, background .2s ease, box-shadow .2s ease;
    appearance: none;
    -webkit-appearance: none;
  }

  .form-group textarea {
    padding: 12px 14px;
    resize: vertical;
    min-height: 110px;
  }

  .form-group input:focus,
  .form-group select:focus,
  .form-group textarea:focus {
    border-color: var(--pine);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(29, 70, 62, .12);
  }

  .form-full {
    grid-column: 1 / -1;
  }

  .form-select-wrap {
    position: relative;
  }

  .form-select-wrap::after {
    content: '';
    position: absolute;
    right: 16px;
    top: 50%;
    width: 8px;
    height: 8px;
    border-bottom: 2px solid var(--muted);
    border-right: 2px solid var(--muted);
    transform: translateY(-70%) rotate(45deg);
    pointer-events: none;
  }

  .form-select-wrap select {
    padding-right: 36px;
  }

  .form-submit {
    width: 100%;
    justify-content: center;
    margin-top: 16px;
  }

  .site-footer {
    background: var(--pine-deep);
    color: rgba(245, 242, 234, .78);
    padding: 54px 0 30px;
  }

  .footer-top {
    display: grid;
    grid-template-columns: 1.3fr .8fr .8fr;
    gap: 36px;
    margin-bottom: 38px;
  }

  .footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-weight: 800;
    font-size: 1.22rem;
    margin-bottom: 14px;
  }

  .footer-brand p {
    max-width: 40ch;
    font-size: .93rem;
    line-height: 1.85;
    color: rgba(245, 242, 234, .68);
  }

  .footer-col h4 {
    color: #fff;
    font-size: 1rem;
    font-weight: 800;
    margin-bottom: 14px;
  }

  .footer-col ul {
    list-style: none;
    display: grid;
    gap: 10px;
  }

  .footer-col a {
    display: inline-block;
    font-size: .92rem;
    color: rgba(245, 242, 234, .7);
    padding: 4px 0;
    transition: color .2s ease, transform .2s ease;
  }

  .footer-col a:hover {
    color: var(--gold);
    transform: translateX(2px);
  }

  .footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .12);
    padding-top: 24px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 10px;
    color: rgba(245, 242, 234, .52);
    font-size: .84rem;
  }

  @media (max-width: 980px) {
    .search-btn {
      display: inline-flex;
    }
    .menu-toggle {
      display: inline-flex;
    }
    .primary-nav {
      position: fixed;
      top: 88px;
      right: 14px;
      left: 14px;
      transform: translateY(-14px);
      opacity: 0;
      pointer-events: none;
      flex-direction: column;
      align-items: stretch;
      background: var(--card);
      border: 1px solid var(--line);
      border-radius: 18px;
      box-shadow: 0 24px 50px -20px rgba(19, 47, 42, .36);
      padding: 12px;
      display: flex;
      transition: opacity .25s ease, transform .25s ease;
    }
    body.menu-open .primary-nav {
      transform: translateY(0);
      opacity: 1;
      pointer-events: auto;
    }
    .nav-link {
      justify-content: flex-start;
      min-height: 52px;
      padding: 0 18px;
    }
    .footer-top {
      grid-template-columns: 1fr 1fr;
    }
    .footer-brand {
      grid-column: 1 / -1;
    }
    .hero-panel {
      margin-top: 10px;
    }
  }

  @media (max-width: 879px) {
    .hero-inner {
      grid-template-columns: 1fr;
      gap: 30px;
    }
    .metric-grid {
      grid-template-columns: repeat(2, 1fr);
    }
    .timeline-list {
      grid-template-columns: repeat(2, 1fr);
    }
    .timeline-item {
      border-right: 0;
      border-bottom: 1px solid var(--line);
    }
    .field-row {
      grid-template-columns: 54px 1fr;
    }
    .field-tags {
      grid-column: 2;
      flex-direction: row;
      align-items: center;
    }
    .faq-layout {
      grid-template-columns: 1fr;
      gap: 20px;
    }
    .contact-grid {
      grid-template-columns: 1fr;
    }
  }

  @media (max-width: 680px) {
    .dock {
      padding: 8px 8px 8px 6px;
      min-height: 64px;
    }
    .site-logo {
      font-size: .98rem;
      padding: 0 8px;
      gap: 7px;
    }
    .nav-cta {
      padding: 0 14px;
      font-size: .84rem;
      min-height: 40px;
    }
    .search-btn {
      display: none;
    }
    .footer-top {
      grid-template-columns: 1fr;
      gap: 26px;
    }
    .footer-brand {
      grid-column: auto;
    }
  }

  @media (max-width: 560px) {
    .metric-grid {
      grid-template-columns: 1fr;
    }
    .timeline-list {
      grid-template-columns: 1fr;
    }
    .entry-grid {
      grid-template-columns: 1fr;
    }
    .field-row {
      grid-template-columns: 1fr;
      gap: 8px;
      padding: 22px 14px;
    }
    .field-tags {
      grid-column: auto;
      align-items: flex-start;
    }
    .form-grid {
      grid-template-columns: 1fr;
    }
    .form-full {
      grid-column: auto;
    }
    .page-hero {
      padding-top: 116px;
    }
  }

/* roulang page: category3 */
:root {
  --green-950: #0f2621;
  --green-900: #132f2a;
  --green-800: #1d463e;
  --green-700: #2a5a4f;
  --green-100: #e2ece7;
  --orange: #e85d26;
  --yellow: #e8b84b;
  --bg: #f5f2ea;
  --paper: #fffdf8;
  --ink: #1e2926;
  --muted: #66736f;
  --line: #e0dccf;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow-sm: 0 1px 2px rgba(19, 47, 42, 0.05), 0 1px 1px rgba(19, 47, 42, 0.04);
  --shadow-md: 0 12px 28px -12px rgba(19, 47, 42, 0.18), 0 3px 8px rgba(19, 47, 42, 0.06);
  --shadow-hover: 0 18px 30px -14px rgba(19, 47, 42, 0.22), 0 5px 14px rgba(19, 47, 42, 0.08);
}
* { box-sizing: border-box; padding: 0; margin: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: "PingFang SC", "Microsoft YaHei", "Noto Sans CJK SC", sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font-family: inherit; font-size: 100%; }
::selection { background: rgba(232, 184, 75, 0.35); }
:focus-visible { outline: 2px solid var(--orange); outline-offset: 3px; border-radius: 4px; }
.container { width: min(1120px, 100% - 2rem); margin-inline: auto; }
.section { padding: 5.4rem 0; scroll-margin-top: 120px; }
.section-sm { padding: 4rem 0; scroll-margin-top: 120px; }
.section-heading { margin-bottom: 2.8rem; max-width: 46rem; }
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .04em;
  color: var(--orange);
  margin-bottom: .7rem;
}
.eyebrow-number {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--green-800);
  color: #fff;
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: 0;
}
.section-title {
  font-size: clamp(1.85rem, 3vw, 2.55rem);
  line-height: 1.2;
  color: var(--ink);
  font-weight: 800;
  letter-spacing: -0.02em;
}
.section-sub { color: var(--muted); font-size: 1.02rem; line-height: 1.75; margin-top: .8rem; max-width: 48rem; }
h3 { line-height: 1.35; }

/* Dock header */
.site-header {
  position: sticky;
  top: 16px;
  z-index: 1200;
  padding: 0 16px;
  pointer-events: none;
}
.dock {
  pointer-events: auto;
  position: relative;
  max-width: 1060px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: .9rem;
  background: rgba(255, 253, 248, 0.97);
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
  padding: .45rem .55rem .45rem 1.15rem;
  transition: box-shadow .25s ease, border-color .25s ease;
}
.site-header.scrolled .dock { box-shadow: var(--shadow-md); border-color: rgba(224, 220, 207, 0.9); }
.site-logo {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  font-size: 1.12rem;
  font-weight: 800;
  color: var(--green-900);
  white-space: nowrap;
  letter-spacing: -0.01em;
}
.logo-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--orange);
  box-shadow: 0 0 0 4px rgba(232, 93, 38, 0.16);
  flex: 0 0 auto;
}
.primary-nav { display: flex; align-items: center; gap: .3rem; margin-inline: auto; }
.nav-link {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: .45rem .9rem;
  border-radius: 999px;
  font-size: .96rem;
  font-weight: 600;
  color: var(--ink);
  transition: background .2s ease, color .2s ease;
  white-space: nowrap;
}
.nav-link:hover { background: var(--green-100); color: var(--green-800); }
.nav-link.active { background: var(--green-800); color: #fff; }
.header-tools { display: flex; align-items: center; gap: .5rem; }
.search-btn {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: transparent;
  color: var(--green-900);
  cursor: pointer;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.search-btn:hover { background: var(--green-100); border-color: var(--line); }
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  color: var(--green-900);
  transition: background .2s ease;
}
.menu-toggle:hover { background: var(--green-100); }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .45rem;
  min-height: 44px;
  padding: .58rem 1.2rem;
  border-radius: 10px;
  border: 1px solid transparent;
  font-weight: 700;
  font-size: .96rem;
  line-height: 1.2;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease, border-color .18s ease;
}
.btn:hover { transform: translateY(-1px); box-shadow: var(--shadow-sm); }
.btn:active { transform: scale(0.98); }
.btn-dark { background: var(--green-900); color: #fff; }
.btn-dark:hover { background: var(--green-800); box-shadow: var(--shadow-md); }
.btn-orange { background: var(--orange); color: var(--green-950); }
.btn-orange:hover { background: #f27039; box-shadow: var(--shadow-md); }
.btn-ghost-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.75); }
.btn-ghost-light:hover { background: rgba(255,255,255,.12); border-color: #fff; }
.nav-cta { margin-left: .1rem; }
@media (max-width: 900px) {
  .site-header { top: 12px; padding: 0 8px; }
  .dock { border-radius: 22px; }
  .primary-nav {
    display: none;
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: .35rem;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    padding: .9rem;
  }
  .dock.menu-open .primary-nav { display: flex; }
  .primary-nav .nav-link { border-radius: 10px; padding: .85rem 1rem; min-height: 46px; }
  .primary-nav .nav-link + .nav-link { margin-top: .2rem; }
  .menu-toggle { display: inline-flex; }
  .search-btn { display: none; }
  .nav-cta { display: inline-flex; padding-inline: .95rem; font-size: .92rem; }
  .header-tools { gap: .25rem; }
}
@media (max-width: 480px) {
  .dock { padding: .35rem .4rem .35rem .75rem; }
  .site-logo { font-size: 1.02rem; }
  .nav-cta { display: inline-flex; padding-inline: .7rem; font-size: .88rem; }
  .menu-toggle { width: 40px; height: 40px; }
}

/* Hero */
.hero-wrap { padding: 3.2rem 0 1rem; }
.category-hero {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  background-image: linear-gradient(100deg, rgba(15, 38, 33, .97) 0%, rgba(29, 70, 62, .93) 52%, rgba(42, 90, 79, .78) 100%), url('/assets/images/backpic/back-3.webp');
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow-md);
  color: #fff;
  padding: clamp(2.1rem, 5vw, 4.2rem);
}
.category-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 52px 52px;
  pointer-events: none;
}
.category-hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(300px, .9fr);
  gap: 3.2rem;
  align-items: center;
}
.breadcrumb-hero { display: flex; flex-wrap: wrap; align-items: center; gap: .45rem; font-size: .86rem; color: rgba(255,255,255,.75); margin-bottom: 1.1rem; }
.breadcrumb-hero a { transition: color .2s ease; }
.breadcrumb-hero a:hover { color: var(--yellow); }
.hero-kicker { display: inline-flex; align-items: center; gap: .5rem; font-size: .86rem; font-weight: 700; letter-spacing: .05em; color: var(--yellow); margin-bottom: .85rem; }
.hero-kicker span { color: var(--green-100); opacity: .8; font-weight: 500; }
.category-hero h1 { font-size: clamp(2.25rem, 4.2vw, 3.1rem); line-height: 1.18; font-weight: 800; letter-spacing: -0.02em; margin-bottom: 1.1rem; color: #fff; }
.h1-accent { color: var(--yellow); }
.hero-summary { font-size: 1.05rem; color: rgba(255,255,255,.9); max-width: 38rem; line-height: 1.8; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.8rem; }
.hero-panel { background: var(--paper); color: var(--ink); border-radius: 20px; padding: 1.5rem; box-shadow: 0 14px 30px rgba(0,0,0,.14); }
.hero-panel-title { display: flex; align-items: center; gap: .5rem; font-weight: 800; font-size: 1.08rem; color: var(--green-900); border-bottom: 1px solid var(--line); padding-bottom: .85rem; margin-bottom: 1rem; }
.hero-panel-title svg { color: var(--orange); }
.check-list { list-style: none; }
.check-list li { display: flex; gap: .7rem; align-items: flex-start; padding: .7rem 0; border-bottom: 1px dashed var(--line); font-size: .94rem; }
.check-list li:last-child { border-bottom: 0; }
.check-list svg { flex: 0 0 18px; width: 18px; height: 18px; margin-top: .28rem; color: var(--green-700); }
@media (max-width: 880px) {
  .category-hero__inner { grid-template-columns: 1fr; gap: 2rem; }
  .hero-panel { max-width: 560px; }
}

/* Guide directory */
.guide-directory { background: var(--bg); }
.directory-grid { display: grid; grid-template-columns: minmax(0, 1.55fr) minmax(280px, .85fr); gap: 2.4rem; align-items: start; }
.directory-list { border-top: 1px solid var(--line); }
.directory-row {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 1.2rem;
  align-items: start;
  padding: 1.6rem .3rem;
  border-bottom: 1px solid var(--line);
  transition: background .25s ease;
}
.directory-row:hover { background: rgba(226, 236, 231, .5); }
.stage-no {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--green-800);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: .92rem;
  flex: 0 0 auto;
  box-shadow: 0 0 0 4px rgba(29, 70, 62, .1);
}
.directory-main h3 { font-size: 1.12rem; font-weight: 800; color: var(--ink); margin-bottom: .4rem; }
.directory-main p { color: var(--muted); font-size: .96rem; }
.directory-tags { display: flex; flex-wrap: wrap; gap: .4rem; margin-top: .8rem; }
.directory-tags .tag { background: #fff; border: 1px solid var(--line); }
.directory-tags .tag:hover { background: var(--green-800); border-color: var(--green-800); color: #fff; }
.side-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 1.6rem;
  box-shadow: var(--shadow-sm);
}
.side-card h3 { font-size: 1.08rem; font-weight: 800; color: var(--green-900); margin-bottom: .5rem; }
.side-card > p { font-size: .94rem; color: var(--muted); margin-bottom: 1.2rem; }
.link-list { list-style: none; }
.link-list li + li { margin-top: .55rem; }
.link-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: .9rem 1rem;
  border-radius: 12px;
  background: var(--bg);
  border: 1px solid transparent;
  transition: background .2s, border-color .2s, transform .2s;
}
.link-list a:hover { background: var(--green-100); border-color: var(--line); transform: translateX(4px); }
.link-list strong { font-size: .97rem; color: var(--green-900); }
.link-list small { font-size: .85rem; color: var(--muted); }
@media (max-width: 900px) {
  .directory-grid { grid-template-columns: 1fr; }
}

/* Scene section */
.scenes-section { background: var(--paper); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.scene-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.scene-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-hover); }
.scene-media { aspect-ratio: 4 / 3; overflow: hidden; background: var(--green-100); }
.scene-media img { width: 100%; height: 100%; object-fit: cover; }
.scene-body { padding: 1.5rem; display: flex; flex-direction: column; flex: 1; }
.scene-tag { display: inline-flex; width: fit-content; align-items: center; min-height: 30px; padding: .1rem .8rem; border-radius: 999px; background: rgba(232, 93, 38, .12); color: var(--orange); font-size: .82rem; font-weight: 700; }
.scene-body h3 { font-size: 1.2rem; font-weight: 800; color: var(--ink); margin: .9rem 0 .45rem; }
.scene-body p { font-size: .96rem; color: var(--muted); line-height: 1.8; flex: 1; }
.scene-link { display: inline-flex; align-items: center; gap: .4rem; min-height: 36px; color: var(--green-800); font-weight: 700; font-size: .92rem; margin-top: 1rem; transition: gap .2s ease, color .2s ease; }
.scene-link:hover { color: var(--orange); gap: .6rem; }
@media (max-width: 860px) {
  .scenes-section .lg\:translate-y-6, .scenes-section .lg\:translate-y-2 { transform: none !important; }
}

/* Stats band */
.stats-section .section-heading { margin-bottom: 2rem; }
.stats-band {
  position: relative;
  overflow: hidden;
  background: var(--green-900);
  border-radius: 24px;
  padding: clamp(2rem, 4vw, 3.2rem);
  color: #fff;
  box-shadow: var(--shadow-md);
}
.stats-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}
.stats-inner { position: relative; z-index: 2; }
.stat-item { border-top: 1px solid rgba(255,255,255,.2); padding-top: 1.2rem; }
.stat-index { font-size: .9rem; font-weight: 800; color: var(--yellow); letter-spacing: .03em; }
.stat-item h3 { font-size: 1.14rem; font-weight: 800; color: #fff; margin: .25rem 0 .35rem; }
.stat-item p { color: rgba(255,255,255,.74); font-size: .92rem; line-height: 1.7; }

/* CTA card */
.cta-wrap { padding: 2rem 0 4rem; }
.cta-card {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  min-height: 260px;
  display: flex;
  align-items: center;
  background: var(--green-800);
}
.cta-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.cta-card .cta-overlay { position: absolute; inset: 0; background: linear-gradient(100deg, rgba(19,47,42,.96), rgba(29,70,62,.8)); }
.cta-card__content { position: relative; z-index: 2; max-width: 660px; padding: clamp(1.8rem, 4vw, 3rem); }
.cta-card__content h2 { font-size: clamp(1.7rem, 3.2vw, 2.3rem); line-height: 1.25; color: #fff; font-weight: 800; }
.cta-card__content p { margin-top: .8rem; color: rgba(255,255,255,.88); font-size: 1.02rem; max-width: 38rem; }
.cta-card__content .btn { margin-top: 1.5rem; }

/* FAQ */
.faq-section { background: var(--bg); }
.faq-grid { display: grid; grid-template-columns: 300px 1fr; gap: 3rem; align-items: start; }
.faq-grid .section-heading { margin-bottom: 1rem; }
.faq-note { color: var(--muted); font-size: .95rem; line-height: 1.75; }
.faq-list { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: transparent;
  border: 0;
  padding: 1.25rem 0;
  cursor: pointer;
  text-align: left;
  color: var(--ink);
  font-size: 1.04rem;
  font-weight: 700;
  line-height: 1.5;
}
.faq-question:hover { color: var(--green-800); }
.faq-icon { flex: 0 0 auto; width: 22px; height: 22px; color: var(--green-700); transition: transform .25s ease; }
.faq-item.is-open .faq-icon { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-item.is-open .faq-answer { max-height: 500px; }
.faq-answer p { color: var(--muted); padding: 0 0 1.45rem; line-height: 1.8; font-size: .98rem; max-width: 52rem; }
@media (max-width: 900px) {
  .faq-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .faq-note { margin-bottom: 1rem; }
}

/* Contact */
.contact-section { background: var(--bg); }
.contact-card {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.35fr);
  gap: 2.8rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow-sm);
  padding: clamp(1.8rem, 4vw, 3rem);
}
.contact-info h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 800; color: var(--ink); line-height: 1.25; }
.contact-info p { margin-top: .75rem; color: var(--muted); font-size: .98rem; }
.contact-meta { list-style: none; margin-top: 1.8rem; border-top: 1px solid var(--line); }
.contact-meta li { display: flex; gap: .8rem; padding: 1rem 0; border-bottom: 1px solid var(--line); align-items: flex-start; font-size: .95rem; color: var(--ink); }
.contact-meta svg { width: 18px; height: 18px; color: var(--orange); margin-top: .25rem; flex: 0 0 18px; }
.contact-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.form-field { margin-bottom: 1.1rem; }
.form-field label { display: block; font-size: .9rem; font-weight: 700; color: var(--ink); margin-bottom: .4rem; }
.form-control {
  width: 100%;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  color: var(--ink);
  padding: .6rem 1rem;
  font-size: .96rem;
  transition: border-color .2s ease, box-shadow .2s ease;
}
textarea.form-control { height: auto; min-height: 118px; resize: vertical; line-height: 1.6; }
.form-control:focus { outline: none; border-color: var(--green-700); box-shadow: 0 0 0 3px rgba(29, 70, 62, .14); }
.contact-submit { margin-top: .3rem; margin-left: auto; }
@media (max-width: 900px) {
  .contact-card { grid-template-columns: 1fr; gap: 2rem; }
}
@media (max-width: 560px) {
  .contact-form .form-row { grid-template-columns: 1fr; }
}

/* Footer */
.site-footer { background: var(--green-950); margin-top: 0; padding: 4rem 0 2rem; color: rgba(255,255,255,.8); }
.footer-top { display: grid; grid-template-columns: minmax(0, 1.5fr) 1fr 1fr; gap: 3rem; padding-bottom: 2.6rem; border-bottom: 1px solid rgba(255,255,255,.12); }
.footer-logo { display: flex; align-items: center; gap: .5rem; font-weight: 800; font-size: 1.18rem; color: #fff; }
.footer-brand p { margin-top: .8rem; font-size: .95rem; line-height: 1.8; color: rgba(255,255,255,.68); max-width: 22rem; }
.site-footer h4 { color: #fff; font-size: .95rem; font-weight: 800; letter-spacing: .03em; margin-bottom: 1rem; }
.site-footer ul { list-style: none; }
.site-footer li { margin-bottom: .55rem; }
.site-footer a { color: rgba(255,255,255,.72); font-size: .94rem; transition: color .2s ease, padding-left .2s ease; }
.site-footer a:hover { color: var(--yellow); padding-left: 3px; }
.footer-bottom { padding-top: 1.8rem; display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; font-size: .88rem; color: rgba(255,255,255,.5); }
.footer-bottom span + span::before { content: "·"; margin-right: .8rem; }
@media (max-width: 800px) {
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 560px) {
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .footer-bottom span + span::before { content: ""; margin: 0; }
}
