/* roulang page: index */
:root {
  --night: #101A17;
  --night-2: #182420;
  --paper: #F6F4EC;
  --card: #FFFFFF;
  --ink: #1B211E;
  --muted: #5F6863;
  --line: rgba(20, 32, 28, 0.12);
  --line-night: rgba(255, 255, 255, 0.16);
  --lime: #C7E35F;
  --lime-strong: #B1CE38;
  --tangerine: #E86232;
  --shadow-1: 0 1px 2px rgba(20, 32, 28, 0.06), 0 12px 24px rgba(20, 32, 28, 0.05);
  --shadow-2: 0 2px 4px rgba(20, 32, 28, 0.08), 0 18px 36px rgba(20, 32, 28, 0.1);
  --font-sans: -apple-system, BlinkMacSystemFont, "PingFang SC", "Microsoft YaHei", "Segoe UI", sans-serif;
}
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.8;
  background: var(--paper);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, p { margin: 0; padding: 0; }
button { font-family: inherit; cursor: pointer; }
h1, h2, h3, h4 { line-height: 1.25; font-weight: 700; color: var(--ink); margin: 0 0 0.3em; }
h1 { font-size: 42px; line-height: 1.18; }
h2 { font-size: 32px; letter-spacing: -0.02em; }
h3 { font-size: 21px; }
h4 { font-size: 18px; }

.grid-container { max-width: 1200px; margin: 0 auto; padding-left: 28px; padding-right: 28px; }
.section { padding: 96px 0; }
.section-head { margin-bottom: 44px; }
.section-head h2 { margin-bottom: 10px; }
.section-head p { color: var(--muted); font-size: 16px; max-width: 620px; }
.section-title-note {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--ink);
  text-transform: uppercase;
  margin-bottom: 16px;
}
.section-title-note::before {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--tangerine);
  display: inline-block;
}

/* Header */
.site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 60;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}
.site-header.scrolled {
  position: fixed;
  background: rgba(16, 26, 23, 0.96);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}
.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  position: relative;
  z-index: 2;
}
.brand {
  font-size: 21px;
  font-weight: 800;
  color: #fff;
  letter-spacing: 0;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
}
.brand-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--lime);
  margin-right: 12px;
  position: relative;
  flex: 0 0 30px;
}
.brand-icon::after {
  content: "";
  width: 10px;
  height: 10px;
  background: var(--night);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.site-nav {
  display: flex;
  align-items: center;
  gap: 38px;
}
.site-nav a {
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
  font-weight: 500;
  position: relative;
  line-height: 80px;
  transition: color 0.2s ease;
}
.site-nav a:hover { color: #fff; }
.site-nav a.active { color: #fff; }
.site-nav a.active::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  width: 6px;
  height: 6px;
  background: var(--lime);
  border-radius: 50%;
}
.nav-right {
  display: flex;
  align-items: center;
  gap: 18px;
}
.nav-cta {
  color: var(--lime);
  font-size: 15px;
  font-weight: 600;
  white-space: nowrap;
  padding: 10px 2px;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease, color 0.2s ease;
}
.nav-cta:hover { border-color: var(--lime); color: #fff; }
.nav-toggle {
  display: none;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: #fff;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  font-size: 18px;
  align-items: center;
  justify-content: center;
}
.nav-toggle:hover { background: rgba(255, 255, 255, 0.14); }

/* Hero */
.hero {
  position: relative;
  background: var(--night);
  padding: 174px 0 92px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('/assets/images/backpic/back-1.png');
  background-size: cover;
  background-position: center;
  opacity: 0.34;
}
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 22% 30%, rgba(199, 227, 95, 0.14), transparent 40%),
    radial-gradient(circle at 82% 70%, rgba(232, 98, 50, 0.15), transparent 42%),
    linear-gradient(180deg, rgba(16, 26, 23, 0.42) 0%, var(--night) 100%);
}
.hero-stars {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.3) 1px, transparent 1px);
  background-size: 36px 36px;
  opacity: 0.28;
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 64px;
  align-items: center;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  margin-bottom: 20px;
}
.hero-eyebrow-dot {
  width: 8px;
  height: 8px;
  background: var(--lime);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(199, 227, 95, 0.5);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(199, 227, 95, 0.5); }
  70% { box-shadow: 0 0 0 9px rgba(199, 227, 95, 0); }
  100% { box-shadow: 0 0 0 0 rgba(199, 227, 95, 0); }
}
.hero h1 { color: #fff; }
.hero-text .hero-lead {
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
  line-height: 1.9;
  max-width: 520px;
  margin: 22px 0 34px;
}
.hero-actions { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  padding: 0 28px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 15px;
  border: 1px solid transparent;
  transition: transform 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}
.btn-primary { background: var(--lime); color: var(--ink); }
.btn-primary:hover { background: var(--lime-strong); transform: translateY(-2px); box-shadow: 0 8px 22px rgba(0, 0, 0, 0.16); }
.btn-ghost { background: transparent; border-color: rgba(255, 255, 255, 0.5); color: #fff; }
.btn-ghost:hover { background: rgba(255, 255, 255, 0.1); transform: translateY(-2px); border-color: #fff; }
.btn-outline-toggle { background: transparent; border-color: var(--night); color: var(--ink); }
.btn-outline-toggle:hover { background: rgba(16, 26, 23, 0.06); }
.btn-dark { background: var(--night); color: #fff; }
.btn-dark:hover { background: #26332F; transform: translateY(-2px); }

.hero-card-wrap { display: flex; justify-content: flex-end; }
.hero-card {
  background: #fff;
  border-radius: 18px;
  max-width: 420px;
  width: 100%;
  padding: 16px;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.1), 0 30px 80px rgba(0, 0, 0, 0.3);
}
.hero-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 8px 16px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
}
.hero-card-status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.hero-card-status i { color: var(--tangerine); font-size: 9px; }
.hero-card img { border-radius: 12px; aspect-ratio: 4 / 3; object-fit: cover; width: 100%; }
.hero-card-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 8px 8px;
  border-top: 1px solid var(--line);
  margin-top: 16px;
}
.hero-card-foot strong { font-size: 15px; }
.hero-card-foot span { color: var(--muted); font-size: 13px; }
.hero-card-tag {
  background: #EDF4CF;
  color: #31450A;
  padding: 6px 10px;
  font-size: 12px;
  font-weight: 700;
  border-radius: 6px;
}

/* Quick info strip */
.info-strip { background: var(--night); border-top: 1px solid rgba(255, 255, 255, 0.12); border-bottom: 1px solid rgba(255, 255, 255, 0.12); }
.info-strip-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 22px 0; flex-wrap: wrap; }
.strip-item { display: flex; align-items: center; gap: 12px; color: rgba(255, 255, 255, 0.9); font-size: 14px; }
.strip-item i { color: var(--lime); font-size: 18px; }
.strip-item em { font-style: normal; color: rgba(255, 255, 255, 0.46); font-size: 13px; margin-left: 4px; }
.strip-sep { width: 1px; height: 22px; background: rgba(255, 255, 255, 0.18); }

/* Compare Table */
.compare-section { background: var(--paper); }
.table-scroll { overflow-x: auto; border-radius: 14px; }
.compare-table {
  width: 100%;
  min-width: 780px;
  border-collapse: separate;
  border-spacing: 0;
  background: var(--card);
  box-shadow: var(--shadow-1);
  border-radius: 14px;
  overflow: hidden;
}
.compare-table th {
  background: var(--night);
  color: #fff;
  font-weight: 600;
  padding: 22px 20px;
  text-align: left;
  font-size: 15px;
  white-space: nowrap;
}
.compare-table th:first-child { width: 190px; color: rgba(255, 255, 255, 0.6); }
.compare-table td {
  padding: 20px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 15px;
  vertical-align: middle;
}
.compare-table tr:last-child td { border-bottom: 0; }
.compare-table tbody tr:hover td { background: rgba(246, 244, 236, 0.55); }
.col-featured { background: #EFF6D8; color: var(--ink) !important; position: relative; }
.compare-table th.col-featured { background: #22302B; }
.compare-table th.col-featured .hot-mark {
  display: inline-block;
  background: var(--tangerine);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 30px;
  vertical-align: 2px;
  margin-left: 10px;
  letter-spacing: 0.05em;
}
.check-yes { color: var(--lime-strong); font-size: 18px; }
.table-actions { margin-top: 22px; text-align: right; }
.table-actions .btn { height: 44px; }

/* Highlight layout */
.highlight-section { background: var(--paper); border-top: 1px solid var(--line); }
.highlight-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.highlight-copy h2 { font-size: 34px; margin-bottom: 16px; }
.highlight-copy p { color: var(--muted); font-size: 16px; }
.highlight-copy .highlight-extra { margin-top: 30px; }
.hl-split-list { display: grid; grid-template-columns: 1fr 1fr; gap: 4px 34px; }
.hl-item {
  padding: 24px 0;
  border-top: 1px solid var(--line);
}
.hl-item .hl-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(232, 98, 50, 0.12);
  color: var(--tangerine);
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 15px;
}
.hl-item h3 { font-size: 17px; margin-bottom: 6px; }
.hl-item p { color: var(--muted); font-size: 14px; line-height: 1.7; }

/* Preview section */
.preview-section { background: #fff; border-top: 1px solid var(--line); }
.preview-grid { display: grid; grid-template-columns: 0.96fr 1.04fr; gap: 60px; align-items: center; }
.preview-copy .tag-premium { display: inline-block; font-size: 13px; font-weight: 700; letter-spacing: 0.05em; color: #fff; background: var(--night); padding: 8px 14px; border-radius: 40px; margin-bottom: 20px; }
.preview-copy h2 { font-size: 32px; }
.preview-copy p { color: var(--muted); margin-top: 18px; }
.preview-list { margin-top: 26px; }
.preview-list li {
  list-style: none;
  display: flex;
  align-items: flex-start;
  gap: 11px;
  padding: 7px 0;
  color: var(--muted);
  font-size: 15px;
}
.preview-list li i { color: var(--lime-strong); margin-top: 8px; font-size: 12px; }
.preview-media { position: relative; }
.preview-media-card { position: relative; border-radius: 18px; overflow: hidden; box-shadow: var(--shadow-2); }
.preview-media-card img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; }
.preview-media-shade { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(16, 26, 23, 0.2), transparent 55%, rgba(16, 26, 23, 0.68) 100%); }
.preview-media-label {
  position: absolute;
  top: 18px;
  left: 18px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--ink);
  font-size: 12px;
  font-weight: 800;
  padding: 6px 12px;
  border-radius: 30px;
  box-shadow: var(--shadow-1);
}
.preview-media-caption { position: absolute; bottom: 20px; left: 20px; right: 20px; color: #fff; }
.preview-media-caption strong { display: block; font-size: 19px; margin-bottom: 4px; }
.preview-media-caption span { font-size: 13px; color: rgba(255,255,255,0.8); }

/* Latest info */
.latest-section { background: var(--night); }
.latest-section .section-head h2 { color: #fff; }
.latest-section .section-head p { color: rgba(255,255,255,0.64); }
.latest-head { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 42px; gap: 20px; }
.latest-section .section-head { margin-bottom: 0; }
.latest-link { color: var(--lime); font-size: 14px; font-weight: 600; border-bottom: 1px solid transparent; transition: border-color .2s ease; white-space: nowrap; }
.latest-link:hover { border-color: var(--lime); }
.news-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 28px; align-items: stretch; }
.news-feature {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 320px;
  padding: 34px;
  background: #17231F;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 18px;
  position: relative;
  overflow: hidden;
  transition: transform .25s ease, border-color .25s ease;
}
.news-feature:hover { transform: translateY(-4px); border-color: rgba(199, 227, 95, 0.6); }
.feature-tag {
  align-self: flex-start;
  background: var(--tangerine);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .04em;
  padding: 5px 12px;
  border-radius: 30px;
  margin-bottom: 20px;
}
.news-feature h3 { color: #fff; font-size: 23px; line-height: 1.4; max-width: 90%; }
.news-feature p { color: rgba(255, 255, 255, .7); margin-top: 12px; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.feature-meta { display: flex; align-items: center; justify-content: space-between; margin-top: 26px; color: rgba(255,255,255,.55); font-size: 13px; }
.feature-meta em { font-style: normal; color: var(--lime); font-weight: 700; }
.news-side { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.news-item {
  grid-column: span 1;
  background: #fff;
  border-radius: 14px;
  padding: 20px;
  box-shadow: var(--shadow-1);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  transition: transform .22s ease, box-shadow .22s ease;
  min-height: 145px;
}
.news-item:hover { transform: translateY(-3px); box-shadow: var(--shadow-2); }
.news-item h4 { font-size: 16px; color: var(--ink); line-height: 1.5; font-weight: 700; margin-bottom: 7px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.news-item p { color: var(--muted); font-size: 13px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; margin-bottom: 10px; }
.news-items-meta { margin-top: auto; color: var(--muted); font-size: 12px; border-top: 1px solid var(--line); padding-top: 8px; }
.empty-list {
  grid-column: 1 / -1;
  text-align: center;
  color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.05);
  border: 1px dashed rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  padding: 54px 20px;
}

/* FAQ */
.faq-section { background: var(--paper); border-top: 1px solid var(--line); }
.faq-wrap { max-width: 960px; margin: 0 auto; }
.faq-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  margin-bottom: 14px;
  overflow: hidden;
  box-shadow: 0 1px 0 rgba(20, 32, 28, .02);
  transition: border-color .2s ease;
}
.faq-item[open] { border-color: rgba(16, 26, 23, 0.35); box-shadow: var(--shadow-1); }
.faq-item summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 26px;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
  font-size: 16px;
  user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "\f107";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 16px;
  color: var(--muted);
  flex: 0 0 auto;
}
.faq-item[open] summary::after { transform: rotate(180deg); }
.faq-item .faq-answer { padding: 0 26px 24px; color: var(--muted); line-height: 1.85; font-size: 15px; border-top: 1px solid var(--line); margin-top: 0; }
.faq-item .faq-answer p { padding-top: 18px; }
.faq-item .faq-qnum { color: var(--tangerine); font-weight: 800; font-size: 13px; margin-right: 12px; }

/* CTA */
.cta-section { position: relative; background: var(--night); padding: 100px 0; overflow: hidden; }
.cta-section .cta-bg { position: absolute; inset: 0; background-image: url('/assets/images/backpic/back-2.webp'); background-size: cover; background-position: center; opacity: 0.2; }
.cta-section .cta-bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(16, 26, 23, .8) 0%, rgba(16, 26, 23, .95) 100%); }
.cta-inner { position: relative; z-index: 2; text-align: center; max-width: 700px; margin: 0 auto; }
.cta-inner h2 { color: #fff; font-size: 38px; letter-spacing: -0.02em; }
.cta-inner p { color: rgba(255, 255, 255, 0.75); font-size: 17px; margin: 18px 0 34px; }
.cta-actions { display: flex; justify-content: center; gap: 18px; flex-wrap: wrap; }

/* Footer */
.site-footer { background: #0C1512; color: rgba(255, 255, 255, 0.65); }
.footer-top { padding: 70px 0 40px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 60px; }
.footer-brand-name { font-size: 21px; font-weight: 800; color: #fff; display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.footer-brand-name i { color: var(--lime); }
.footer-col p { font-size: 14px; line-height: 1.85; max-width: 340px; color: rgba(255,255,255,0.52); }
.footer-col-title { color: #fff; font-size: 15px; font-weight: 700; margin-bottom: 20px; }
.footer-links { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.footer-links a { color: rgba(255,255,255,.6); font-size: 14px; transition: color .2s ease; }
.footer-links a:hover { color: var(--lime); }
.footer-contact li { list-style: none; display: flex; align-items: center; gap: 10px; font-size: 14px; color: rgba(255,255,255,.55); }
.footer-contact { margin-top: 6px; }
.footer-contact li i { color: var(--lime-strong); width: 18px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); padding: 22px 0; }
.footer-bottom-inner { display: flex; align-items: center; justify-content: space-between; color: rgba(255,255,255,.42); font-size: 13px; }
.footer-bottom-inner a { color: rgba(255,255,255,.55); margin-left: 16px; }
.footer-bottom-inner a:hover { color: var(--lime); }

/* Responsive */
@media (max-width: 1023px) {
  .site-nav {
    display: none;
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background: var(--night);
    border-bottom: 1px solid var(--line-night);
    padding: 8px 28px 14px;
  }
  .site-nav.open { display: flex; }
  .site-nav a { line-height: 52px; width: 100%; border-bottom: 1px solid rgba(255,255,255,.08); font-size: 16px; }
  .site-nav a.active::after { left: 2px; bottom: calc(50% - 3px); transform: none; }
  .nav-toggle { display: inline-flex; }
  .nav-right { gap: 10px; }
  .nav-cta { color: var(--lime); font-size: 14px; }
  .hero-inner { grid-template-columns: 1fr; gap: 42px; }
  .hero-card-wrap { justify-content: flex-start; }
  .highlight-grid { grid-template-columns: 1fr; gap: 40px; }
  .preview-grid { grid-template-columns: 1fr; gap: 36px; }
  .news-grid { grid-template-columns: 1fr; }
  .news-side { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .info-strip-inner { gap: 10px 24px; justify-content: flex-start; }
}
@media (max-width: 640px) {
  h1 { font-size: 30px; }
  h2 { font-size: 26px; }
  .section { padding: 64px 0; }
  .hero { padding: 132px 0 56px; }
  .grid-container { padding-left: 20px; padding-right: 20px; }
  .site-nav { padding-left: 20px; padding-right: 20px; }
  .hero-actions { flex-direction: column; align-items: stretch; gap: 14px; }
  .btn { width: 100%; }
  .info-strip-inner { flex-direction: column; align-items: flex-start; }
  .strip-sep { display: none; }
  .strip-item { width: 100%; }
  .highlight-copy h2 { font-size: 28px; }
  .hl-split-list { grid-template-columns: 1fr; }
  .news-side { grid-template-columns: 1fr; }
  .news-feature { padding: 22px; min-height: auto; }
  .news-feature h3 { font-size: 20px; }
  .news-feature p { -webkit-line-clamp: 2; }
  .cta-section { padding: 70px 0; }
  .cta-actions { flex-direction: column; }
  .cta-inner h2 { font-size: 29px; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom-inner { flex-direction: column; gap: 8px; align-items: flex-start; }
  .table-scroll::after {
    content: "左右滑动查看完整对比";
    display: block;
    text-align: center;
    color: var(--muted);
    font-size: 13px;
    padding: 12px 0 0;
  }
  .footer-links a { font-size: 15px; }
}
@media (min-width: 1200px) {
  .hero-card-wrap { padding-right: 8px; }
}

/* roulang page: category1 */
:root{
  --night:#101A17;
  --night-2:#16231F;
  --paper:#F6F4EC;
  --card:#FFFFFF;
  --ink:#1B211E;
  --muted:#5F6863;
  --line:rgba(20,32,28,.12);
  --line-night:rgba(255,255,255,.14);
  --lime:#C7E35F;
  --lime-strong:#B1CE38;
  --tangerine:#E86232;
  --radius:12px;
  --shadow-sm:0 1px 2px rgba(20,32,28,.06);
  --shadow-md:0 12px 24px rgba(20,32,28,.05);
  --font:-apple-system,BlinkMacSystemFont,"PingFang SC","Microsoft YaHei","Segoe UI",sans-serif;
}
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}
body{font-family:var(--font);background:var(--paper);color:var(--ink);font-size:16px;line-height:1.8;-webkit-font-smoothing:antialiased}
img{display:block;max-width:100%}
a{color:inherit;text-decoration:none;transition:color .2s ease,background .2s ease,border-color .2s ease,box-shadow .2s ease,transform .2s ease}
button{font-family:inherit;border:0;cursor:pointer}
h1,h2,h3,h4{line-height:1.3;font-weight:700;margin:0}
ul{list-style:none;padding:0;margin:0}
.container{max-width:1200px;margin:0 auto;padding:0 24px}
.section{padding:96px 0}
.section-white{background:#fff}
.section-paper{background:var(--paper)}
.section-head{max-width:760px;margin-bottom:56px}
.section-head.center{margin-left:auto;margin-right:auto;text-align:center}
.section-head h2{font-size:32px;letter-spacing:.01em}
.section-head .section-sub{color:var(--muted);font-size:17px;margin-top:14px}
.eyebrow{display:flex;align-items:center;gap:12px;font-size:13px;font-weight:700;letter-spacing:.08em;color:var(--tangerine);margin-bottom:14px}
.eyebrow::before{content:"";width:24px;height:2px;background:var(--tangerine);display:inline-block}
.eyebrow.lime-eyebrow{color:var(--lime)}
.eyebrow.lime-eyebrow::before{background:var(--lime)}

/* 按钮 */
.btn-lime,.btn-line{
  display:inline-flex;align-items:center;justify-content:center;gap:10px;
  font-weight:700;font-size:15px;border-radius:10px;min-height:48px;line-height:1;
}
.btn-lime{background:var(--lime);color:var(--ink);padding:16px 26px;border:1px solid var(--lime)}
.btn-lime:hover,.btn-lime:focus{background:var(--lime-strong);border-color:var(--lime-strong);color:var(--ink);transform:translateY(-2px);box-shadow:0 8px 18px rgba(22,32,28,.14)}
.btn-line{background:transparent;color:#fff;border:1px solid rgba(255,255,255,.34);padding:15px 26px;font-weight:600}
.btn-line:hover,.btn-line:focus{border-color:#fff;background:rgba(255,255,255,.08);color:#fff;transform:translateY(-2px)}
.btn-darkline{color:var(--ink);border-color:rgba(20,32,28,.24);background:transparent}
.btn-darkline:hover,.btn-darkline:focus{border-color:var(--night);background:rgba(20,32,28,.04);color:var(--ink)}

/* 导航 */
.site-header{background:var(--night);position:relative;z-index:80;border-bottom:1px solid transparent}
.header-inner{display:flex;align-items:center;gap:24px;height:80px;position:relative}
.logo{display:inline-flex;align-items:center;gap:10px;color:#fff;font-size:19px;font-weight:800;white-space:nowrap}
.logo i{color:var(--lime);font-size:19px}
.site-nav{display:flex;align-items:center;gap:32px;margin-left:auto}
.site-nav a{color:rgba(255,255,255,.8);font-size:15px;font-weight:500;white-space:nowrap;position:relative}
.site-nav a::after{content:"";display:block;width:0;height:2px;background:var(--lime);border-radius:2px;margin-top:5px;transition:width .22s ease}
.site-nav a:hover,.site-nav a:focus{color:#fff}
.site-nav a.active{color:#fff}
.site-nav a.active::after{width:100%}
.header-cta{color:#fff;font-size:14px;font-weight:600;padding:4px 0;border-bottom:1px solid rgba(255,255,255,.5);white-space:nowrap}
.header-cta:hover,.header-cta:focus{border-color:var(--lime);color:var(--lime)}
.menu-toggle{display:none;background:transparent;color:#fff;font-size:22px;padding:4px 6px;line-height:1;border:0;cursor:pointer;align-items:center;justify-content:center}

/* Hero */
.hero-category{
  position:relative;
  color:#fff;
  background:
    linear-gradient(135deg,rgba(8,16,14,.94) 0%,rgba(16,26,23,.82) 55%,rgba(21,36,31,.76) 100%),
    url("/assets/images/backpic/back-2.webp") center/cover no-repeat,
    var(--night);
  overflow:hidden;
}
.hero-category::before{
  content:"";position:absolute;inset:0;pointer-events:none;opacity:.5;
  background-image:radial-gradient(rgba(255,255,255,.1) 1px,transparent 1.2px);
  background-size:32px 32px;
}
.hero-inner{position:relative;z-index:2;padding:84px 0 0}
.breadcrumb{display:flex;flex-wrap:wrap;align-items:center;gap:9px;color:rgba(255,255,255,.5);font-size:14px;margin-bottom:44px}
.breadcrumb a{color:rgba(255,255,255,.72)}
.breadcrumb a:hover,.breadcrumb a:focus{color:var(--lime)}
.breadcrumb i{font-size:10px;color:rgba(255,255,255,.38)}
.breadcrumb .now{color:#fff}
.hero-title{color:#fff;font-size:44px;line-height:1.22;font-weight:800;letter-spacing:.01em}
.hero-title .mark{color:var(--lime);font-weight:800}
.hero-sub{color:rgba(255,255,255,.74);font-size:17px;max-width:650px;margin:18px 0 0}
.hero-actions{display:flex;flex-wrap:wrap;gap:16px;margin-top:34px;align-items:center}

/* Hero右侧状态卡 */
.status-card{
  background:rgba(255,255,255,.06);
  border:1px solid var(--line-night);
  border-radius:var(--radius);
  padding:24px 22px;
  box-shadow:var(--shadow-sm);
  backdrop-filter:blur(8px);
}
.status-head{display:flex;align-items:center;justify-content:space-between;border-bottom:1px solid var(--line-night);padding-bottom:14px}
.status-head .kicker{font-size:14px;color:rgba(255,255,255,.72);display:flex;align-items:center;gap:8px}
.status-live{display:inline-flex;align-items:center;gap:7px;font-size:12px;font-weight:600;color:#fff;background:rgba(232,98,50,.18);border:1px solid rgba(232,98,50,.35);padding:3px 10px;border-radius:30px}
.live-dot{width:6px;height:6px;border-radius:50%;background:var(--tangerine);box-shadow:0 0 0 0 rgba(232,98,50,.6);animation:pulse 1.8s infinite}
@keyframes pulse{0%{box-shadow:0 0 0 0 rgba(232,98,50,.6)}70%{box-shadow:0 0 0 8px rgba(232,98,50,0)}100%{box-shadow:0 0 0 0 rgba(232,98,50,0)}}
.status-row{display:flex;justify-content:space-between;align-items:center;gap:16px;padding:13px 0;border-bottom:1px solid var(--line-night);font-size:13px}
.status-row:last-child{border-bottom:0}
.status-row .s-label{color:rgba(255,255,255,.58)}
.status-row .s-value{color:#fff;font-weight:600;display:inline-flex;align-items:center;gap:6px}
.status-row .s-value i{color:var(--lime)}

/* Hero信息带 */
.hero-meta-strip{position:relative;z-index:2;border-top:1px solid var(--line-night);margin-top:58px}
.hero-meta-row{display:flex;flex-wrap:wrap;gap:12px 44px;padding:20px 0;color:rgba(255,255,255,.64);font-size:14px}
.hero-meta-row i{color:var(--lime);margin-right:8px}

/* 首段说明 */
.intro-section{padding:96px 0 88px}
.intro-grid{display:grid;grid-template-columns:1.1fr .9fr;gap:72px;align-items:center}
.intro-copy .lead-lg{font-size:18px;color:var(--ink);line-height:1.85;font-weight:500}
.intro-copy p{margin-top:20px;color:var(--muted)}
.intro-note-card{background:#fff;border:1px solid var(--line);border-radius:16px;box-shadow:var(--shadow-md);padding:28px}
.note-kicker{font-size:15px;font-weight:700;color:var(--night);display:flex;align-items:center;gap:10px}
.note-kicker i{color:var(--tangerine)}
.check-list{margin-top:20px;border-top:1px solid var(--line);padding-top:8px}
.check-list li{font-size:14px;color:#3b4740;padding:10px 0 10px 30px;position:relative;line-height:1.7}
.check-list li i{position:absolute;left:0;top:14px;color:var(--lime-strong);font-size:16px}

/* 编号步骤 */
.steps-section{background:#fff;padding:96px 0}
.step-box{max-width:860px;margin:0 auto}
.step-item{display:grid;grid-template-columns:70px 1fr;gap:28px;padding:30px 0;border-bottom:1px solid var(--line);align-items:start}
.step-item:first-child{padding-top:0}
.step-item:last-child{border-bottom:0;padding-bottom:0}
.step-num{
  width:60px;height:60px;border-radius:18px;background:#EFF3DF;color:var(--night);
  display:flex;align-items:center;justify-content:center;font-size:22px;font-weight:800;
  border:1px solid rgba(177,206,56,.45);letter-spacing:-.02em;
}
.step-title{font-size:20px;font-weight:700;color:var(--ink)}
.step-desc{color:var(--muted);font-size:15px;margin-top:8px;max-width:650px}

/* 图文路径 */
.visual-section{padding:100px 0}
.visual-grid{display:grid;grid-template-columns:1fr 1fr;gap:72px;align-items:center}
.guide-media{position:relative;border-radius:16px;overflow:hidden;box-shadow:var(--shadow-md)}
.guide-media img{width:100%;height:360px;object-fit:cover}
.media-chip{
  position:absolute;top:16px;left:16px;background:rgba(16,26,23,.86);color:#fff;
  font-size:13px;padding:6px 14px;border-radius:30px;display:inline-flex;align-items:center;gap:8px;
  backdrop-filter:blur(4px);
}
.media-chip i{color:var(--lime)}
.guide-content .guide-lead{color:var(--muted);margin:16px 0 10px}
.guide-path-list{margin-top:24px}
.guide-path-list li{display:flex;gap:16px;padding:16px 0;border-bottom:1px solid var(--line);align-items:flex-start}
.guide-path-list li:last-child{border-bottom:0}
.guide-path-icon{flex:0 0 34px;width:34px;height:34px;border-radius:10px;background:#EEF2DC;color:var(--night);display:flex;align-items:center;justify-content:center;font-size:14px;margin-top:4px}
.guide-path-list strong{display:block;color:var(--ink);font-size:16px}
.guide-path-list p{color:var(--muted);font-size:15px;margin-top:2px}

/* 可访问路径提示 */
.support-message{
  margin-top:30px;background:#fff;border:1px dashed rgba(20,32,28,.2);border-radius:12px;
  padding:16px 18px;font-size:14px;color:var(--muted);display:flex;gap:12px;align-items:flex-start;
}
.support-message i{color:var(--tangerine);margin-top:3px}

/* FAQ */
.faq-section{padding:96px 0;background:var(--paper)}
.faq-wrap{max-width:900px;margin:0 auto}
.faq-item{background:#fff;border:1px solid var(--line);border-radius:14px;margin-bottom:16px;overflow:hidden;transition:box-shadow .2s ease,border-color .2s ease}
.faq-item.open{border-color:rgba(20,32,28,.24);box-shadow:var(--shadow-sm)}
.faq-q{
  width:100%;text-align:left;background:transparent;color:var(--ink);font-size:16px;font-weight:600;
  padding:22px 24px;display:flex;justify-content:space-between;align-items:center;gap:20px;line-height:1.5;
}
.faq-q .q-icon{flex:0 0 28px;width:28px;height:28px;border-radius:50%;background:#EEF3DA;color:var(--night);display:inline-flex;align-items:center;justify-content:center;font-size:14px;transition:transform .2s ease,background .2s ease}
.faq-item.open .q-icon{background:var(--lime);transform:rotate(45deg)}
.faq-a{display:none;padding:0 24px 24px;color:var(--muted);font-size:15px;line-height:1.85}

/* CTA */
.cta-section{
  position:relative;background:
    linear-gradient(145deg,rgba(10,18,15,.94),rgba(16,26,23,.82)),
    url("/assets/images/backpic/back-3.webp") center/cover no-repeat;
  color:#fff;padding:104px 0;overflow:hidden;
}
.cta-section::before{content:"";position:absolute;inset:0;background-image:radial-gradient(rgba(255,255,255,.08) 1px,transparent 1.2px);background-size:30px 30px;pointer-events:none}
.cta-wrap{position:relative;z-index:2;max-width:760px}
.cta-wrap h2{color:#fff;font-size:36px;line-height:1.3}
.cta-wrap .cta-desc{color:rgba(255,255,255,.72);font-size:17px;margin-top:16px;max-width:640px}
.cta-actions{display:flex;flex-wrap:wrap;gap:16px;margin-top:34px}
.cta-actions .btn-line{margin-left:4px}

/* 页脚 */
.site-footer{background:var(--night);color:rgba(255,255,255,.7);font-size:14px}
.footer-top{padding:70px 0 48px;border-bottom:1px solid var(--line-night)}
.footer-grid{display:grid;grid-template-columns:1.4fr .8fr 1.2fr;gap:56px}
.footer-brand-name{color:#fff;font-size:21px;font-weight:800;display:flex;align-items:center;gap:10px}
.footer-brand-name i{color:var(--lime)}
.footer-col p{margin-top:16px;color:rgba(255,255,255,.58);line-height:1.8;max-width:390px}
.footer-col-title{color:#fff;font-weight:700;font-size:15px;margin-bottom:18px}
.footer-links li{margin-bottom:12px}
.footer-links a{color:rgba(255,255,255,.66)}
.footer-links a:hover,.footer-links a:focus{color:var(--lime)}
.footer-contact li{display:flex;gap:10px;align-items:flex-start;margin-bottom:14px;color:rgba(255,255,255,.62);line-height:1.7}
.footer-contact i{color:var(--lime);margin-top:5px}
.footer-bottom{padding:24px 0}
.footer-bottom-inner{display:flex;justify-content:space-between;align-items:center;gap:14px;flex-wrap:wrap;color:rgba(255,255,255,.48)}
.footer-bottom-inner a{color:rgba(255,255,255,.48);margin-left:24px}
.footer-bottom-inner a:hover,.footer-bottom-inner a:focus{color:#fff}

/* 响应式 */
@media(max-width:1024px){
  .section{padding:76px 0}
  .intro-grid,.visual-grid{grid-template-columns:1fr;gap:48px}
  .visual-grid .guide-media{order:1}
  .visual-grid .guide-content{order:2}
  .guide-media img{height:320px}
  .footer-grid{grid-template-columns:1fr 1fr;gap:44px}
}
@media(max-width:768px){
  .header-inner{height:70px}
  .site-nav{
    display:none;position:absolute;top:100%;left:0;right:0;margin:0;
    background:var(--night);padding:14px 24px 22px;border-top:1px solid var(--line-night);
    box-shadow:0 20px 40px rgba(0,0,0,.25);
  }
  .site-nav.open{display:flex;flex-direction:column;align-items:stretch;gap:0}
  .site-nav a{padding:14px 0;border-bottom:1px solid var(--line-night);font-size:16px}
  .site-nav a:last-child{border-bottom:0}
  .menu-toggle{display:inline-flex}
  .header-cta{display:none}
  .hero-title{font-size:34px}
  .section-head h2,.intro-section h2{font-size:28px}
  .step-item{grid-template-columns:56px 1fr;gap:20px;padding:24px 0}
  .step-num{width:48px;height:48px;border-radius:14px;font-size:18px}
  .cta-wrap h2{font-size:30px}
  .cta-section{padding:76px 0}
}
@media(max-width:520px){
  .container{padding:0 18px}
  .section{padding:64px 0}
  .hero-inner{padding:60px 0 0}
  .hero-title{font-size:29px;line-height:1.3}
  .hero-sub{font-size:16px}
  .status-card{margin-top:24px}
  .hero-meta-row{gap:10px 22px}
  .intro-section{padding:64px 0}
  .intro-note-card,.support-message{padding:20px}
  .footer-grid{grid-template-columns:1fr;gap:40px}
  .guide-media img{height:230px}
  .footer-bottom-inner{flex-direction:column;align-items:flex-start}
  .footer-bottom-inner a{margin-left:12px}
  .btn-lime,.btn-line{width:100%}
  .hero-actions{width:100%}
  .cta-actions{width:100%}
}

/* roulang page: article */
:root {
    --night: #101A17;
    --night-deep: #0A100E;
    --night-soft: #18241F;
    --paper: #F6F4EC;
    --card: #FFFFFF;
    --ink: #1B211E;
    --muted: #5F6863;
    --faint: #89918C;
    --line: rgba(20, 32, 28, 0.12);
    --line-strong: rgba(20, 32, 28, 0.2);
    --line-night: rgba(255, 255, 255, 0.14);
    --lime: #C7E35F;
    --lime-strong: #B1CE38;
    --lime-soft: rgba(199, 227, 95, 0.14);
    --tangerine: #E86232;
    --radius: 12px;
    --radius-lg: 20px;
    --shadow-sm: 0 1px 2px rgba(20,32,28,.06), 0 10px 24px rgba(20,32,28,.04);
    --shadow-md: 0 2px 4px rgba(20,32,28,.06), 0 18px 36px rgba(20,32,28,.08);
    --shadow-lg: 0 4px 10px rgba(20,32,28,.08), 0 30px 60px rgba(20,32,28,.12);
    --font: -apple-system, BlinkMacSystemFont, "PingFang SC", "Microsoft YaHei", "Segoe UI", sans-serif;
    --header-h: 86px;
}
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: var(--font);
    font-size: 16px;
    line-height: 1.8;
    color: var(--ink);
    background: var(--paper);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color .2s ease, background .2s ease, border-color .2s ease; }
a:hover { color: inherit; }
ul, ol { margin: 0; padding: 0; list-style: none; }
p { margin: 0; }
button { font: inherit; cursor: pointer; }
.sr-only {
    position: absolute !important;
    width: 1px; height: 1px;
    overflow: hidden; clip: rect(0,0,0,0);
    white-space: nowrap;
}
.skip-link {
    position: fixed; top: -80px; left: 16px; z-index: 9999;
    background: var(--night); color: #fff; padding: 12px 20px;
    border-radius: 0 0 10px 10px; font-weight: 700;
    transition: top .24s ease;
}
.skip-link:focus { top: 0; color: #fff; }
:focus-visible { outline: 3px solid var(--lime-strong); outline-offset: 2px; }
.grid-container { max-width: 1200px; margin-left: auto; margin-right: auto; }

/* Header / 导航 */
.site-header {
    position: sticky;
    top: 0;
    z-index: 999;
    background: rgba(246, 244, 236, 0.95);
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--line);
}
.header-inner {
    min-height: var(--header-h);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}
.brand-block { display: flex; align-items: center; gap: 13px; flex-shrink: 0; }
.brand-icon {
    width: 40px; height: 40px;
    display: grid; place-items: center;
    background: var(--night);
    color: var(--lime);
    border-radius: 11px;
    font-size: 15px;
    box-shadow: inset 0 0 0 1px rgba(199, 227, 95, .22), 0 8px 18px rgba(16, 26, 23, .18);
}
.brand-text {
    font-size: 21px;
    font-weight: 800;
    letter-spacing: -0.015em;
    line-height: 1.2;
    color: var(--night);
}
.site-nav { display: flex; align-items: center; gap: 6px; }
.site-nav > a:not(.nav-cta) {
    position: relative;
    display: inline-flex;
    align-items: center;
    padding: 10px 12px;
    font-size: 15px;
    font-weight: 600;
    color: var(--muted);
    border-radius: 8px;
    line-height: 1;
    white-space: nowrap;
}
.site-nav > a:not(.nav-cta):hover { color: var(--night); background: rgba(16,26,23,.05); }
.site-nav > a.active { color: var(--night); }
.site-nav > a.active::after {
    content: "";
    position: absolute;
    left: 14px; right: 14px; bottom: 0;
    height: 3px;
    background: var(--lime-strong);
    border-radius: 4px;
}
.nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-left: 18px;
    height: 42px;
    padding: 0 20px;
    border-radius: 999px;
    background: var(--lime);
    color: var(--night);
    font-size: 14px;
    font-weight: 700;
    white-space: nowrap;
    transform: translateY(0);
    transition: transform .22s ease, background .22s ease, box-shadow .22s ease;
}
.nav-cta:hover { background: var(--lime-strong); color: var(--night); transform: translateY(-2px); box-shadow: 0 10px 22px rgba(16,26,23,.16); }
.nav-toggle {
    display: none;
    width: 46px; height: 46px;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 1px solid var(--line);
    border-radius: 12px;
    font-size: 19px;
    color: var(--ink);
}
.nav-toggle:hover { background: rgba(255,255,255,.64); }

/* 文章顶部 */
.article-heading { padding: 56px 0 32px; border-bottom: 1px solid var(--line); }
.article-shell { max-width: 900px; margin: 0 auto; padding: 0 24px; }
.breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    column-gap: 9px;
    row-gap: 6px;
    margin-bottom: 26px;
    font-size: 13px;
    color: var(--muted);
}
.breadcrumbs a { color: var(--muted); transition: color .2s ease; }
.breadcrumbs a:hover { color: var(--night); }
.breadcrumbs .sep { color: var(--faint); opacity: .7; font-style: normal; }
.breadcrumbs .current { color: var(--night); font-weight: 600; overflow: hidden; text-overflow: ellipsis; max-width: 560px; white-space: nowrap; }
.article-h1 {
    font-size: 43px;
    line-height: 1.22;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--night);
    margin: 0 0 28px;
    max-width: 860px;
}
.article-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px 30px;
    padding-top: 22px;
    border-top: 1px solid var(--line);
    color: var(--muted);
    font-size: 14px;
}
.meta-piece { display: inline-flex; align-items: center; gap: 8px; }
.meta-piece i { color: var(--tangerine); width: 15px; text-align: center; }
.meta-piece a { color: var(--muted); transition: color .2s ease; }
.meta-piece a:hover { color: var(--night); }

/* 正文 */
.article-main { padding: 56px 0 0; }
.article-content-card {
    background: var(--card);
    border: 1px solid rgba(20,32,28,.08);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    padding: 64px 70px;
}
.rich-body { color: #2A312C; font-size: 17px; line-height: 1.95; overflow-wrap: break-word; }
.rich-body > p:not(:last-child) { margin: 0 0 1.6em; }
.rich-body strong { color: var(--ink); font-weight: 700; }
.rich-body a { color: var(--ink); text-decoration: underline; text-decoration-color: var(--lime-strong); text-underline-offset: 4px; text-decoration-thickness: 2px; }
.rich-body h2 {
    font-size: 27px;
    line-height: 1.35;
    color: var(--night);
    font-weight: 800;
    margin: 2.2em 0 .8em;
    padding-top: .5em;
}
.rich-body h3 { font-size: 20px; line-height: 1.45; color: var(--night); font-weight: 700; margin: 2em 0 .75em; }
.rich-body h4 { font-size: 18px; font-weight: 700; margin: 1.6em 0 .6em; color: var(--night); }
.rich-body ul { margin: 0 0 1.7em; padding-left: 1.4em; }
.rich-body ul li { list-style: disc; margin: .3em 0; padding-left: .2em; }
.rich-body ol { margin: 0 0 1.7em; padding-left: 1.5em; }
.rich-body ol li { list-style: decimal; margin: .3em 0; padding-left: .2em; }
.rich-body img { border-radius: 14px; margin: 1.8em auto; box-shadow: var(--shadow-md); }
.rich-body figure { margin: 1.8em 0; }
.rich-body figcaption { text-align: center; font-size: 13px; color: var(--muted); margin-top: 10px; }
.rich-body blockquote {
    margin: 2em 0;
    padding: 20px 24px 20px 28px;
    border-left: 4px solid var(--lime-strong);
    background: var(--lime-soft);
    border-radius: 0 12px 12px 0;
    color: #35402F;
}
.rich-body blockquote p:last-child { margin-bottom: 0; }
.rich-body table { width: 100%; border-collapse: collapse; margin: 2em 0; font-size: 15px; }
.rich-body th {
    background: var(--night);
    color: #F0F2E8;
    font-weight: 600;
    padding: 12px 14px;
    text-align: left;
    border: 0;
}
.rich-body td { padding: 12px 14px; border-bottom: 1px solid var(--line); }
.rich-body tr:last-child td { border-bottom: 0; }
.rich-body hr { border: 0; height: 1px; background: var(--line); margin: 2.6em 0; }
.rich-body code { background: rgba(20,32,28,.06); border-radius: 6px; padding: 2px 8px; font-size: .92em; }
.rich-body pre { background: var(--night); color: #DDE7DF; padding: 20px; border-radius: 14px; overflow-x: auto; margin: 1.8em 0; }
.rich-body pre code { background: transparent; color: inherit; padding: 0; }

/* 文末 */
.article-end {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    flex-wrap: wrap;
    margin-top: 56px;
    padding-top: 24px;
    border-top: 1px solid var(--line);
}
.article-back { display: inline-flex; align-items: center; gap: 9px; color: var(--muted); font-weight: 600; font-size: 14px; }
.article-back:hover { color: var(--night); }
.article-back i { transition: transform .2s ease; }
.article-back:hover i { transform: translateX(-4px); }
.article-more-link { display: inline-flex; align-items: center; gap: 8px; color: var(--night); font-weight: 700; font-size: 14px; }
.article-more-link i { color: var(--tangerine); transition: transform .2s ease; }
.article-more-link:hover i { transform: translateX(4px); }

/* 未找到 */
.not-found-card {
    background: var(--card);
    border: 1px solid rgba(20,32,28,.08);
    border-radius: var(--radius-lg);
    padding: 80px 32px;
    text-align: center;
    box-shadow: var(--shadow-sm);
}
.not-found-icon {
    width: 74px; height: 74px;
    margin: 0 auto 24px;
    display: grid; place-items: center;
    background: rgba(232,98,50,.12);
    color: var(--tangerine);
    border-radius: 22px;
    font-size: 31px;
}
.not-found-card h2 { font-size: 30px; color: var(--night); margin-bottom: 12px; }
.not-found-card p { color: var(--muted); max-width: 580px; margin: 0 auto 30px; }
.not-found-card .btn-primary { margin-top: 4px; }

/* 相关推荐 */
.related-section { padding: 84px 0 40px; }
.related-kicker { display: inline-flex; align-items: center; gap: 10px; color: var(--tangerine); font-size: 13px; font-weight: 700; letter-spacing: .06em; }
.related-kicker::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--tangerine); }
.related-header { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; margin-bottom: 30px; }
.related-header h2 { font-size: 30px; line-height: 1.3; color: var(--night); margin: 8px 0 0; font-weight: 800; }
.related-header a { color: var(--muted); font-size: 14px; font-weight: 600; }
.related-header a:hover { color: var(--night); }
.related-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; }
.related-card {
    display: grid;
    grid-template-columns: 154px minmax(0, 1fr);
    min-height: 150px;
    background: var(--card);
    border: 1px solid rgba(20,32,28,.08);
    border-radius: 16px;
    overflow: hidden;
    transition: transform .25s ease, box-shadow .25s ease;
}
.related-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.related-visual { position: relative; min-height: 100%; overflow: hidden; background: var(--night); }
.related-visual img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.related-card:hover .related-visual img { transform: scale(1.07); }
.related-info { padding: 18px 20px 16px; display: flex; flex-direction: column; justify-content: center; }
.related-info .bar { display: flex; color: var(--faint); font-size: 12px; gap: 8px; margin-bottom: 6px; }
.related-info .bar i { color: var(--tangerine); }
.related-info h3 { font-size: 17px; line-height: 1.45; font-weight: 700; color: var(--night); margin: 0 0 8px; }
.related-info p { font-size: 13px; line-height: 1.7; color: var(--muted); margin-bottom: 10px; }
.related-meta { font-size: 12px; color: var(--faint); display: flex; gap: 8px; align-items: center; }

/* CTA */
.cta-zone { padding: 80px 0 90px; }
.cta-panel {
    position: relative;
    background:
        linear-gradient(105deg, rgba(10, 16, 14, 0.98) 0%, rgba(16, 26, 23, 0.92) 55%, rgba(16, 26, 23, 0.82) 100%),
        url('/assets/images/backpic/back-1.png') center / cover no-repeat;
    color: #D7DED7;
    border-radius: 24px;
    padding: 72px 66px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.cta-panel::after {
    content: "";
    position: absolute;
    width: 260px; height: 260px;
    border-radius: 50%;
    right: -80px; top: -100px;
    background: radial-gradient(circle, rgba(199, 227, 95, .22), transparent 66%);
    pointer-events: none;
}
.cta-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.25fr .75fr; align-items: center; gap: 44px; }
.cta-kicker { display: inline-flex; align-items: center; gap: 8px; color: var(--lime); font-size: 13px; font-weight: 700; margin-bottom: 16px; }
.cta-kicker i { font-size: 16px; }
.cta-panel h2 { color: #fff; font-size: 31px; line-height: 1.3; font-weight: 800; margin: 0 0 16px; letter-spacing: -0.01em; }
.cta-panel p { color: rgba(255,255,255,.78); font-size: 15px; line-height: 1.8; max-width: 540px; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: flex-end; }
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 48px;
    padding: 0 24px;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 700;
    line-height: 1;
    border: 1px solid transparent;
    transition: transform .22s ease, background .22s ease, color .22s ease, box-shadow .22s ease;
}
.btn-lime { background: var(--lime); color: var(--night); }
.btn-lime:hover { background: var(--lime-strong); color: var(--night); transform: translateY(-2px); box-shadow: 0 12px 26px rgba(199,227,95,.24); }
.btn-ghost-d { background: rgba(255,255,255,.05); border-color: var(--line-night); color: #D9E0DB; }
.btn-ghost-d:hover { background: rgba(255,255,255,.13); color: #fff; transform: translateY(-2px); }

/* Footer */
.site-footer { background: var(--night); color: #CBD3CB; }
.footer-top { border-bottom: 1px solid var(--line-night); padding: 72px 0 48px; }
.footer-grid { display: grid; grid-template-columns: 2.1fr 1fr 1.4fr; gap: 64px; }
.footer-brand-name { display: flex; align-items: center; gap: 10px; color: #fff; font-size: 20px; font-weight: 800; letter-spacing: -0.01em; margin-bottom: 16px; }
.footer-brand-name i { color: var(--lime); font-size: 16px; }
.footer-col p { font-size: 14px; line-height: 1.9; color: rgba(214, 223, 215, 0.7); max-width: 380px; margin: 0; }
.footer-col-title { font-size: 15px; font-weight: 700; color: #fff; margin-bottom: 18px; letter-spacing: .02em; }
.footer-links li + li, .footer-contact li + li { margin-top: 10px; }
.footer-links a { font-size: 14px; color: rgba(214,223,215,.78); transition: color .2s ease, padding-left .2s ease; }
.footer-links a:hover { color: var(--lime); padding-left: 3px; }
.footer-contact li { font-size: 14px; color: rgba(214,223,215,.68); display: flex; gap: 9px; align-items: flex-start; line-height: 1.7; }
.footer-contact i { color: var(--lime); margin-top: 2px; width: 17px; text-align: center; }
.footer-bottom-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px 18px; padding: 28px 0; font-size: 13px; color: rgba(214,223,215,.5); }
.footer-bottom-inner a { color: rgba(214,223,215,.66); padding: 4px 8px; border-radius: 6px; }
.footer-bottom-inner a:hover { color: var(--lime); }

/* Responsive */
@media (max-width: 1124px) {
    .site-header { position: sticky; top: 0; }
    .site-nav {
        position: absolute;
        top: 100%; left: 0; right: 0;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 2px;
        padding: 20px 22px 24px;
        background: var(--night);
        border-bottom: 1px solid var(--line-night);
        box-shadow: var(--shadow-lg);
    }
    .site-nav.open { display: flex; }
    .site-nav > a:not(.nav-cta) {
        color: rgba(239,244,237,.88);
        border-bottom: 1px solid var(--line-night);
        border-radius: 0;
        padding: 13px 6px;
    }
    .site-nav > a.active::after { background: var(--lime); left: 6px; bottom: 0; }
    .nav-cta { margin: 16px 0 0; justify-content: center; color: var(--night) !important; border-bottom: 0 !important; }
    .nav-toggle { display: inline-flex; }
    .header-inner { min-height: 76px; }
}
@media (max-width: 900px) {
    .article-h1 { font-size: 35px; }
    .article-content-card { padding: 48px 42px; }
    .related-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 44px; }
}
@media (max-width: 768px) {
    .article-heading { padding-top: 40px; }
    .article-shell { padding-left: 18px; padding-right: 18px; }
    .article-h1 { font-size: 32px; line-height: 1.28; }
    .article-main { padding-top: 36px; }
    .article-content-card { padding: 34px 20px; border-radius: 14px; }
    .rich-body { font-size: 16px; }
    .rich-body h2 { font-size: 23px; }
    .related-section { padding-top: 58px; }
    .related-card { grid-template-columns: 126px minmax(0, 1fr); }
    .cta-zone { padding: 56px 0 64px; }
    .cta-panel { padding: 48px 28px; }
    .cta-grid { grid-template-columns: 1fr; gap: 24px; }
    .cta-actions { justify-content: flex-start; }
    .footer-grid { grid-template-columns: 1fr; gap: 40px; }
    .footer-top { padding-top: 52px; }
    .footer-bottom-inner { flex-direction: column; text-align: center; justify-content: center; }
}
@media (max-width: 520px) {
    .brand-text { font-size: 18px; }
    .brand-icon { width: 36px; height: 36px; border-radius: 10px; font-size: 13px; }
    .header-inner { gap: 12px; }
    .article-heading { padding-top: 30px; }
    .article-h1 { font-size: 28px; }
    .breadcrumbs .current { max-width: 240px; }
    .article-meta { gap: 8px 18px; }
    .related-card { grid-template-columns: 1fr; }
    .related-visual { min-height: 150px; }
    .article-end { flex-direction: column; align-items: flex-start; }
    .cta-panel { border-radius: 16px; padding: 36px 20px; }
    .cta-panel h2 { font-size: 24px; }
    .cta-actions { flex-direction: column; width: 100%; }
    .cta-actions .btn { width: 100%; }
    .related-header h2 { font-size: 25px; }
    .related-header { align-items: flex-start; flex-direction: column; }
}

/* roulang page: category2 */
:root {
  --night: #101A17;
  --night-soft: #16231F;
  --paper: #F6F4EC;
  --card: #FFFFFF;
  --ink: #1B211E;
  --muted: #5F6863;
  --line: rgba(20, 32, 28, 0.12);
  --line-night: rgba(255, 255, 255, 0.14);
  --lime: #C7E35F;
  --lime-strong: #B1CE38;
  --lime-soft: rgba(199, 227, 95, 0.12);
  --tangerine: #E86232;
  --radius: 12px;
  --radius-lg: 16px;
  --shadow-card: 0 1px 2px rgba(20, 32, 28, .06), 0 12px 24px rgba(20, 32, 28, .04);
  --shadow-hover: 0 4px 8px rgba(20, 32, 28, .06), 0 18px 32px rgba(20, 32, 28, .08);
  --font-main: -apple-system, BlinkMacSystemFont, "PingFang SC", "Microsoft YaHei", "Segoe UI", sans-serif;
  --space-section: 96px;
  --space-section-sm: 64px;
}
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font-main);
  background: var(--paper);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.8;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
ul, ol, p, h1, h2, h3, h4 { margin: 0; padding: 0; }
.grid-container { max-width: 1200px; padding-left: 24px; padding-right: 24px; }
.site-header {
  position: relative;
  z-index: 20;
  padding: 18px 0 16px;
  border-bottom: 1px solid var(--line-night);
  color: #fff;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  min-height: 56px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 21px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.02em;
  line-height: 1.2;
  white-space: nowrap;
}
.brand i {
  color: var(--lime);
  font-size: 18px;
}
.site-nav {
  display: flex;
  align-items: center;
  gap: 34px;
  flex-wrap: wrap;
}
.site-nav a {
  position: relative;
  color: rgba(255, 255, 255, 0.9);
  font-size: 15px;
  font-weight: 600;
  padding: 10px 2px;
  border-bottom: 2px solid transparent;
  transition: color .2s ease, border-color .2s ease;
}
.site-nav a:hover { color: #fff; border-bottom-color: rgba(255, 255, 255, .45); }
.site-nav a.active {
  color: #fff;
  border-bottom-color: var(--lime);
}
.nav-toggle {
  display: none;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 16px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, .25);
  border-radius: 8px;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
}
.hero {
  background-color: var(--night);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.benefits-hero {
  background-image:
    linear-gradient(180deg, rgba(16, 26, 23, .88) 0%, rgba(16, 26, 23, .62) 100%),
    url('/assets/images/backpic/back-1.png');
  background-size: cover;
  background-position: center 30%;
}
.hero-ornament,
.hero-ornament-two {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.hero-ornament {
  width: 300px;
  height: 300px;
  right: -110px;
  top: 60px;
  background: radial-gradient(circle, rgba(199, 227, 95, .12) 0%, transparent 62%);
}
.hero-ornament-two {
  width: 420px;
  height: 420px;
  left: -160px;
  bottom: -220px;
  background: radial-gradient(circle, rgba(232, 98, 50, .08) 0%, transparent 60%);
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 84px 0 92px;
}
.hero-copy { max-width: 640px; }
.hero-kicker,
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  color: var(--lime);
  margin-bottom: 22px;
}
.hero-kicker::before,
.kicker::before {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--lime);
  display: inline-block;
}
.hero h1 {
  font-size: 42px;
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 24px;
  color: #fff;
  letter-spacing: -0.01em;
}
.hero-lead {
  font-size: 18px;
  line-height: 1.85;
  color: rgba(255, 255, 255, .82);
  max-width: 570px;
  margin-bottom: 34px;
}
.hero-btns {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 10px 26px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.4;
  border: 1px solid transparent;
  transition: transform .2s ease, background .2s ease, border-color .2s ease, box-shadow .2s ease, color .2s ease;
}
.btn-primary { background: var(--lime); color: var(--ink); }
.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--lime-strong);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(16, 26, 23, .24);
  color: var(--ink);
}
.btn-ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, .45);
  color: #fff;
}
.btn-ghost:hover,
.btn-ghost:focus-visible {
  border-color: #fff;
  background: rgba(255, 255, 255, .08);
  transform: translateY(-2px);
}
.btn-ink {
  background: var(--night);
  color: #fff;
  border-color: var(--night);
}
.btn-ink:hover,
.btn-ink:focus-visible {
  background: #22332D;
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(16, 26, 23, .14);
}
.btn:focus-visible,
.site-nav a:focus-visible,
.brand:focus-visible,
.faq-q:focus-visible,
.link-more:focus-visible {
  outline: 2px solid var(--lime);
  outline-offset: 3px;
  border-radius: 4px;
}
.hero-panel {
  background: rgba(255, 255, 255, .055);
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: var(--radius-lg);
  padding: 26px 28px;
  color: #fff;
  box-shadow: 0 20px 50px rgba(0, 0, 0, .18);
  max-width: 360px;
}
.panel-title {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .06em;
  color: var(--lime);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.panel-title .dot {
  width: 8px;
  height: 8px;
  background: var(--tangerine);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(232, 98, 50, .28);
}
.status-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  font-size: 14px;
}
.status-line:last-child { border-bottom: 0; }
.status-line span:first-child { color: rgba(255, 255, 255, .72); }
.status-line strong { color: #fff; font-size: 15px; font-weight: 600; }
.hero-panel-note {
  margin-top: 18px;
  padding: 14px 16px;
  background: rgba(199, 227, 95, .1);
  border-left: 3px solid var(--lime);
  border-radius: 0 8px 8px 0;
  font-size: 13px;
  color: rgba(255, 255, 255, .8);
  line-height: 1.7;
}
.section { padding: var(--space-section) 0; position: relative; }
.section-tint { background: var(--card); }
.section-soft { background: rgba(0, 0, 0, .015); }
.section-head {
  max-width: 760px;
  margin-bottom: 52px;
}
.section-head h2 {
  font-size: 30px;
  line-height: 1.25;
  font-weight: 700;
  color: var(--ink);
  margin: 8px 0 16px;
  letter-spacing: -0.01em;
}
.section-head p,
.section-lead {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.9;
}
.info-strip {
  background: rgba(255, 255, 255, .92);
  border-bottom: 1px solid var(--line);
  padding: 34px 0;
}
.info-strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.info-item {
  padding: 4px 28px;
  border-right: 1px solid var(--line);
}
.info-item:first-child { padding-left: 0; }
.info-item:last-child { border-right: 0; padding-right: 0; }
.info-item strong {
  display: block;
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.4;
  margin-bottom: 4px;
}
.info-item span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}
.benefit-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 26px;
  height: 100%;
  box-shadow: var(--shadow-card);
  transition: transform .22s ease, box-shadow .22s ease;
}
.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}
.benefit-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--lime-soft);
  border: 1px solid rgba(199, 227, 95, .42);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--night);
  font-size: 20px;
  margin-bottom: 20px;
}
.benefit-card h3 {
  font-size: 20px;
  line-height: 1.4;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 10px;
}
.benefit-card p {
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.8;
}
.split-feature {
  display: flex;
  align-items: center;
  gap: 56px;
}
.split-image {
  flex: 1 1 46%;
}
.media-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--night);
  box-shadow: var(--shadow-card);
}
.media-frame img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform .5s ease;
}
.media-frame:hover img { transform: scale(1.02); }
.media-tag {
  position: absolute;
  left: 18px;
  top: 18px;
  background: var(--lime);
  color: var(--ink);
  font-size: 12px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.split-copy { flex: 1 1 54%; }
.kicker { color: var(--tangerine); margin-bottom: 14px; }
.kicker::before { background: var(--tangerine); }
.split-copy h2 {
  font-size: 27px;
  line-height: 1.35;
  font-weight: 700;
  margin-bottom: 18px;
  letter-spacing: -0.01em;
}
.split-copy p {
  color: var(--muted);
  font-size: 15.5px;
  line-height: 1.95;
  margin-bottom: 20px;
}
.split-list {
  list-style: none;
  padding: 0;
  margin: 0 0 26px;
}
.split-list li {
  padding: 10px 0;
  border-bottom: 1px dashed rgba(20, 32, 28, .1);
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  font-size: 15px;
}
.split-list li:first-child { border-top: 1px dashed rgba(20, 32, 28, .1); }
.split-list li i {
  color: var(--lime-strong);
  width: 18px;
  font-size: 14px;
  flex: 0 0 18px;
}
.link-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--night);
  font-size: 15px;
  font-weight: 700;
  padding: 4px 0;
  border-bottom: 2px solid var(--lime);
  transition: gap .2s ease, border-color .2s ease;
}
.link-more:hover { gap: 14px; border-bottom-color: var(--night); }
.feature-margin { margin-bottom: 72px; }
.table-wrap {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-card);
  overflow: hidden;
}
.table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.tier-table {
  width: 100%;
  min-width: 680px;
  border-collapse: collapse;
  font-size: 14.5px;
}
.tier-table thead th {
  background: var(--night);
  color: #fff;
  text-align: left;
  padding: 15px 18px;
  font-weight: 600;
  border-bottom: 1px solid var(--line-night);
  white-space: nowrap;
}
.tier-table thead th:first-child { border-radius: 10px 0 0 0; }
.tier-table thead th:last-child { border-radius: 0 10px 0 0; }
.tier-table tbody th,
.tier-table tbody td {
  text-align: left;
  padding: 17px 18px;
  border-bottom: 1px solid rgba(20, 32, 28, .08);
  vertical-align: top;
  background: #fff;
}
.tier-table tbody th {
  color: var(--ink);
  font-weight: 700;
  white-space: nowrap;
  width: 150px;
}
.tier-table tbody td { color: var(--muted); }
.col-recommend { background: var(--lime-soft) !important; }
.table-highlight {
  display: inline-block;
  background: var(--lime);
  border: 1px solid rgba(16, 26, 23, .14);
  color: var(--ink);
  font-size: 11px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 999px;
  margin-left: 8px;
  vertical-align: 2px;
}
.table-scroll-note {
  color: var(--muted);
  font-size: 13px;
  margin-top: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 28px; }
.step-item {
  position: relative;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 22px 24px;
  height: 100%;
  box-shadow: var(--shadow-card);
}
.step-num {
  font-size: 37px;
  line-height: 1;
  font-weight: 800;
  color: var(--tangerine);
  opacity: .78;
  margin-bottom: 16px;
  font-variant-numeric: tabular-nums;
}
.step-item h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
}
.step-item p {
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.8;
}
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin-bottom: 12px;
  box-shadow: 0 1px 2px rgba(20,32,28,.04);
}
.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  background: transparent;
  border: 0;
  padding: 20px 24px;
  font-size: 15.5px;
  font-weight: 700;
  text-align: left;
  color: var(--ink);
  border-radius: var(--radius);
}
.faq-q .faq-icon {
  flex: 0 0 26px;
  height: 26px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: var(--muted);
  transition: transform .25s ease, background .25s ease, color .25s ease, border-color .25s ease;
}
.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: var(--lime-strong);
  border-color: var(--lime-strong);
  color: var(--ink);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}
.faq-a-inner {
  padding: 0 24px 22px;
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.95;
  border-top: 1px dashed rgba(20, 32, 28, .08);
  padding-top: 16px;
}
.cta-section {
  background-color: var(--night);
  color: #fff;
  background-image: linear-gradient(180deg, rgba(16, 26, 23, .9), rgba(16, 26, 23, .85)), url('/assets/images/backpic/back-2.webp');
  background-size: cover;
  background-position: center;
  padding: 86px 0;
  overflow: hidden;
}
.cta-inner { text-align: center; max-width: 720px; margin: 0 auto; }
.cta-inner h2 {
  font-size: 30px;
  line-height: 1.3;
  font-weight: 700;
  color: #fff;
  margin-bottom: 18px;
}
.cta-inner p {
  color: rgba(255, 255, 255, .78);
  font-size: 16px;
  line-height: 1.9;
  margin-bottom: 30px;
}
.cta-btns { display: flex; justify-content: center; gap: 18px; flex-wrap: wrap; }
.site-footer {
  background: var(--night);
  color: rgba(255, 255, 255, .72);
  padding-top: 70px;
}
.footer-top { border-bottom: 1px solid var(--line-night); padding-bottom: 54px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1.4fr;
  gap: 50px;
}
.footer-brand-name {
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}
.footer-brand-name i { color: var(--lime); font-size: 17px; }
.footer-col p {
  color: rgba(255, 255, 255, .62);
  font-size: 14px;
  line-height: 1.95;
  max-width: 380px;
}
.footer-col-title {
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-col-title::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--lime);
  border-radius: 50%;
}
.footer-links,
.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links li { margin-bottom: 12px; }
.footer-links a {
  color: rgba(255, 255, 255, .68);
  font-size: 14px;
  transition: color .2s ease, padding-left .2s ease;
}
.footer-links a:hover { color: #fff; padding-left: 4px; }
.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: rgba(255, 255, 255, .58);
  font-size: 13.5px;
  line-height: 1.8;
  margin-bottom: 14px;
}
.footer-contact i { color: var(--lime); margin-top: 5px; flex: 0 0 16px; font-size: 13px; }
.footer-bottom { padding: 24px 0; }
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: rgba(255, 255, 255, .5);
  font-size: 13px;
  flex-wrap: wrap;
}
.footer-bottom-inner a {
  color: rgba(255, 255, 255, .68);
  font-size: 13px;
  margin-left: 18px;
  transition: color .2s ease;
}
.footer-bottom-inner a:hover { color: var(--lime); }
@media screen and (max-width: 1023px) {
  .hero h1 { font-size: 36px; }
  .section { padding: var(--space-section-sm) 0; }
  .info-strip-grid { grid-template-columns: repeat(2, 1fr); gap: 0; }
  .info-item { padding: 14px 18px; border-top: 1px solid var(--line); }
  .info-item:nth-child(-n+2) { border-top: 0; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media screen and (max-width: 767px) {
  .site-header { padding: 14px 0; }
  .site-nav {
    display: none;
    flex-direction: column;
    width: 100%;
    gap: 0;
    border-top: 1px solid var(--line-night);
    padding-top: 10px;
    margin-top: 14px;
  }
  .site-nav.open { display: flex; }
  .nav-toggle { display: inline-flex; }
  .site-nav a {
    width: 100%;
    padding: 13px 2px;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    font-size: 15px;
  }
  .site-nav a.active { border-bottom-color: var(--lime); }
  .hero-content { padding: 56px 0 70px; }
  .hero h1 { font-size: 30px; line-height: 1.3; }
  .hero-lead { font-size: 16px; }
  .hero-panel { margin-top: 36px; max-width: none; }
  .section { padding: 64px 0; }
  .section-head h2 { font-size: 25px; }
  .info-strip-grid { grid-template-columns: 1fr 1fr; }
  .info-item { padding: 16px; }
  .benefit-card { padding: 24px 20px; }
  .split-feature { flex-direction: column; gap: 30px; }
  .split-feature.reverse { flex-direction: column; }
  .split-image, .split-copy { flex: 1 1 auto; width: 100%; }
  .feature-margin { margin-bottom: 56px; }
  .steps-grid { grid-template-columns: 1fr; gap: 16px; }
  .table-wrap { padding: 16px; }
  .table-scroll-note { font-size: 12px; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom-inner { justify-content: center; text-align: center; }
  .cta-section { padding: 68px 0; }
  .cta-btns .btn { width: 100%; }
}
@media screen and (max-width: 520px) {
  .info-item strong { font-size: 15px; }
  .info-item span { font-size: 12px; }
  .hero-btns .btn { width: 100%; }
  .hero h1 { font-size: 28px; }
}

/* roulang page: category3 */
:root {
  --night: #101A17;
  --night-soft: #17241F;
  --paper: #F6F4EC;
  --card: #FFFFFF;
  --ink: #1B211E;
  --muted: #5F6863;
  --line: rgba(20, 32, 28, 0.12);
  --line-night: rgba(255, 255, 255, 0.14);
  --lime: #C7E35F;
  --lime-strong: #B1CE38;
  --tangerine: #E86232;
  --radius-lg: 14px;
  --radius-md: 10px;
  --radius-sm: 8px;
  --shadow-card: 0 1px 2px rgba(20, 32, 28, 0.06), 0 12px 24px rgba(20, 32, 28, 0.04);
  --shadow-raise: 0 10px 18px rgba(20, 26, 23, 0.10), 0 20px 36px rgba(20, 26, 23, 0.06);
  --font-sans: -apple-system, BlinkMacSystemFont, "PingFang SC", "Microsoft YaHei", "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul, li {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1, h2, h3, h4, p {
  margin: 0;
}

button {
  font-family: inherit;
}

::selection {
  background: rgba(199, 227, 95, 0.3);
}

.grid-container {
  max-width: 1200px;
}

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 60;
  border-bottom: 1px solid var(--line-night);
  background: linear-gradient(180deg, rgba(16, 26, 23, 0.72) 0%, rgba(16, 26, 23, 0) 100%);
}

.inner-header {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  height: 84px;
  padding: 0 28px;
  gap: 28px;
}

.brand-name {
  font-size: 21px;
  font-weight: 800;
  letter-spacing: 0.01em;
  color: #FFFFFF;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}

.brand-name i {
  color: var(--lime);
  font-size: 18px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 34px;
}

.site-nav a {
  position: relative;
  color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
  font-weight: 500;
  padding: 7px 0;
  transition: color 0.2s ease;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -3px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--lime);
  opacity: 0;
  transform: translateX(-50%) scale(0.4);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.site-nav a:hover {
  color: #FFFFFF;
}

.site-nav a:hover::after,
.site-nav a.active::after {
  opacity: 1;
  transform: translateX(-50%) scale(1);
}

.site-nav a.active {
  color: #FFFFFF;
}

.nav-cta {
  margin-left: auto;
  color: var(--lime);
  font-weight: 600;
  font-size: 15px;
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
  white-space: nowrap;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.nav-cta:hover {
  color: var(--lime-strong);
  border-color: var(--lime);
}

.menu-toggle {
  display: none;
  background: none;
  border: 0;
  color: #FFFFFF;
  font-size: 22px;
  padding: 6px 8px;
  cursor: pointer;
}

.menu-toggle:focus-visible,
.nav-cta:focus-visible,
.site-nav a:focus-visible,
.btn:focus-visible,
.accordion-title:focus-visible {
  outline: 2px solid var(--lime);
  outline-offset: 3px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  padding: 0 26px;
  border: 0;
  border-radius: var(--radius-md);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  box-shadow: none;
}

.btn-primary {
  background: var(--lime);
  color: var(--ink);
}

.btn-primary:hover {
  background: var(--lime-strong);
  color: var(--ink);
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(199, 227, 95, 0.22);
}

.btn-ghost {
  background: transparent;
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.7);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #FFFFFF;
  border-color: #FFFFFF;
  transform: translateY(-2px);
}

.btn-light {
  background: var(--card);
  color: var(--ink);
  border: 1px solid var(--line);
}

.btn-light:hover {
  background: #F1EFE7;
  transform: translateY(-2px);
  box-shadow: var(--shadow-card);
}

.bulletin-hero {
  position: relative;
  background-color: var(--night);
  background-image:
    radial-gradient(circle at 12% 22%, rgba(199, 227, 95, 0.12) 0, transparent 24%),
    radial-gradient(circle at 88% 12%, rgba(232, 98, 50, 0.08) 0, transparent 20%),
    linear-gradient(180deg, rgba(16, 26, 23, 0.72) 0%, rgba(16, 26, 23, 0.88) 100%),
    url('/assets/images/backpic/back-2.webp');
  background-position: center center;
  background-size: cover;
  padding: 170px 0 92px;
  overflow: hidden;
  color: #FFFFFF;
}

.bulletin-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 120px;
  background: linear-gradient(180deg, transparent 0%, var(--paper) 100%);
  pointer-events: none;
}

.hero-wrap {
  position: relative;
  z-index: 2;
}

.hero-copy {
  max-width: 660px;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--lime);
  border: 1px solid rgba(199, 227, 95, 0.42);
  background: rgba(199, 227, 95, 0.08);
  padding: 7px 14px;
  border-radius: 999px;
}

.hero-kicker .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--lime);
}

.bulletin-hero h1 {
  margin-top: 24px;
  color: #FFFFFF;
  font-size: 42px;
  line-height: 1.18;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.bulletin-hero .lead {
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 17px;
  line-height: 1.9;
}

.hero-actions {
  margin-top: 34px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-actions .btn + .btn {
  margin-left: 4px;
}

.hero-status {
  margin-top: 36px;
  max-width: 540px;
  border: 1px solid var(--line-night);
  background: rgba(17, 28, 24, 0.62);
  border-radius: var(--radius-lg);
  padding: 22px 24px;
  backdrop-filter: blur(4px);
}

.hero-status-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.status-label {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-weight: 600;
  font-size: 14px;
}

.live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--lime);
  display: inline-block;
  box-shadow: 0 0 0 4px rgba(199, 227, 95, 0.14);
}

.status-meta {
  display: inline-flex;
  gap: 24px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
}

.section {
  padding: 92px 0;
}

.section-row {
  margin-bottom: 34px;
}

.section-label {
  display: inline-block;
  color: var(--tangerine);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
}

.section-title {
  font-size: 32px;
  font-weight: 800;
  line-height: 1.28;
  letter-spacing: 0.01em;
}

.section-sub {
  margin-top: 16px;
  max-width: 720px;
  color: var(--muted);
  font-size: 16px;
}

.soft-strip {
  border-bottom: 1px solid var(--line);
  background: var(--paper);
  padding: 30px 0;
}

.soft-strip-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 22px;
}

.soft-strip-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--muted);
  font-size: 14px;
}

.soft-strip-item i {
  color: var(--tangerine);
  font-size: 16px;
  width: 18px;
  text-align: center;
}

.soft-strip-item strong {
  color: var(--ink);
  font-weight: 700;
}

.section-light {
  background: var(--card);
}

.announce-latest {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}

.latest-media {
  position: relative;
  min-height: 360px;
  height: 100%;
}

.latest-media img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.latest-tag {
  position: absolute;
  left: 20px;
  top: 20px;
  background: var(--tangerine);
  color: #FFFFFF;
  padding: 5px 13px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  box-shadow: 0 6px 12px rgba(232, 98, 50, 0.24);
}

.latest-body {
  padding: 44px 46px;
}

.latest-meta {
  color: var(--muted);
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.latest-meta .divider {
  width: 1px;
  height: 14px;
  background: var(--line);
}

.latest-body h2 {
  margin: 16px 0 14px;
  font-size: 26px;
  font-weight: 800;
  line-height: 1.4;
}

.latest-body p {
  color: var(--muted);
  line-height: 1.9;
  font-size: 16px;
}

.latest-action {
  margin-top: 26px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  border-top: 1px solid var(--line);
  padding-top: 24px;
}

.tag-mini {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  background: #F0EEE5;
  border-radius: 999px;
  padding: 5px 12px;
}

.tag-mini i {
  color: var(--lime-strong);
  font-size: 10px;
}

.bulletin-list-wrap {
  border-top: 1px solid var(--line);
}

.bulletin-item {
  display: grid;
  grid-template-columns: 176px 1fr;
  column-gap: 34px;
  padding: 38px 0;
  border-bottom: 1px solid var(--line);
  position: relative;
  transition: background 0.2s ease;
}

.bulletin-item:hover {
  background: linear-gradient(90deg, rgba(199, 227, 95, 0.04), transparent 70%);
}

.bulletin-date {
  color: var(--muted);
  font-size: 15px;
  letter-spacing: 0.05em;
}

.bulletin-date small {
  display: block;
  font-size: 13px;
  color: rgba(95, 104, 99, 0.7);
  margin-top: 4px;
  letter-spacing: normal;
}

.bulletin-content h3 {
  font-size: 20px;
  font-weight: 750;
  line-height: 1.45;
}

.bulletin-content h3 a {
  transition: color 0.2s ease;
}

.bulletin-content h3 a:hover {
  color: #6A7D1A;
}

.bulletin-content p {
  margin: 10px 0 14px;
  color: var(--muted);
  max-width: 820px;
  line-height: 1.8;
}

.bulletin-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--stopgap);
  color: var(--tangerine);
  font-weight: 600;
}

.bulletin-badge span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--tangerine);
}

.section-note {
  background: var(--night);
  color: rgba(255, 255, 255, 0.88);
  position: relative;
  overflow: hidden;
}

.section-note::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 78% 20%, rgba(199, 227, 95, 0.16) 0, transparent 22%),
    radial-gradient(circle at 10% 80%, rgba(232, 98, 50, 0.10) 0, transparent 16%),
    url('/assets/images/backpic/back-3.webp');
  background-size: cover;
  background-position: center center;
  opacity: 0.4;
}

.note-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.note-copy h2 {
  font-size: 32px;
  color: #FFFFFF;
  line-height: 1.3;
  font-weight: 800;
}

.note-copy p {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.9;
  font-size: 16px;
}

.note-list {
  margin-top: 28px;
  display: grid;
  gap: 15px;
}

.note-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 15px;
}

.note-list li i {
  margin-top: 5px;
  font-size: 14px;
  color: var(--lime);
}

.notice-type-panel {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px;
}

.notice-types-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px 48px;
}

.notice-row {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.notice-row:last-child {
  border-bottom: 0;
}

.notice-index {
  font-size: 13px;
  font-weight: 800;
  color: var(--tangerine);
  line-height: 2.2;
  min-width: 30px;
}

.notice-row h3 {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
}

.notice-row p {
  margin-top: 6px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.contact-block {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.contact-media {
  min-height: 300px;
  height: 100%;
}

.contact-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 300px;
}

.contact-body {
  padding: 42px;
}

.contact-body h2 {
  font-size: 24px;
  line-height: 1.4;
  font-weight: 800;
}

.contact-body p {
  margin-top: 14px;
  color: var(--muted);
}

.contact-list {
  margin-top: 26px;
  display: grid;
  gap: 14px;
}

.contact-list li {
  display: flex;
  gap: 12px;
  color: var(--ink);
  font-size: 15px;
  align-items: flex-start;
}

.contact-list li i {
  margin-top: 5px;
  color: var(--lime-strong);
  width: 18px;
  text-align: center;
}

.accordion {
  background: transparent;
}

.accordion .accordion-item {
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line);
}

.accordion .accordion-title {
  background: transparent;
  border: 0;
  color: var(--ink);
  font-size: 17px;
  font-weight: 700;
  padding: 20px 46px 20px 0;
  line-height: 1.6;
  transition: color 0.2s ease;
}

.accordion .accordion-title:hover,
.accordion .accordion-title:focus {
  background: transparent;
  color: #53660F;
}

.accordion .accordion-title::before,
.accordion .accordion-title::after {
  right: 6px;
  color: var(--tangerine);
  font-weight: 700;
}

.accordion .accordion-title {
  position: relative;
}

.accordion .accordion-title::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 24px;
  color: var(--tangerine);
}

.accordion .accordion-title[aria-expanded="true"]::after {
  content: "−";
}

.accordion .accordion-content {
  background: transparent;
  color: var(--muted);
  border: 0;
  padding: 0 96px 24px 0;
  line-height: 1.85;
  font-size: 15px;
}

.cta-panel {
  background: var(--night);
  position: relative;
  overflow: hidden;
  padding: 76px 0;
}

.cta-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 75% 20%, rgba(199, 227, 95, 0.18) 0, transparent 22%), radial-gradient(circle at 10% 85%, rgba(232, 98, 50, 0.12) 0, transparent 18%);
  pointer-events: none;
}

.cta-panel .cta-box {
  position: relative;
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
  padding: 0 24px;
}

.cta-panel h2 {
  color: #FFFFFF;
  font-size: 34px;
  line-height: 1.3;
  font-weight: 800;
}

.cta-panel p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 17px;
  margin-top: 18px;
}

.cta-panel .hero-actions {
  justify-content: center;
}

.site-footer {
  background: var(--night);
  color: rgba(255, 255, 255, 0.74);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-top {
  padding: 54px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 0.8fr 1.2fr;
  gap: 54px;
}

.footer-brand-name {
  color: #FFFFFF;
  font-size: 19px;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 9px;
}

.footer-brand-name i {
  color: var(--lime);
}

.footer-col p {
  margin-top: 16px;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.9;
}

.footer-col-title {
  color: #FFFFFF;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 16px;
}

.footer-links {
  display: grid;
  gap: 10px;
}

.footer-links a,
.footer-contact li {
  color: rgba(255, 255, 255, 0.68);
  font-size: 15px;
  line-height: 1.7;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--lime);
}

.footer-contact {
  display: grid;
  gap: 12px;
}

.footer-contact i {
  color: var(--lime-strong);
  width: 20px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 22px 0;
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.56);
}

.footer-bottom-inner a {
  color: rgba(255, 255, 255, 0.72);
  margin-left: 22px;
  transition: color 0.2s ease;
}

.footer-bottom-inner a:hover {
  color: var(--lime);
}

@media (max-width: 1024px) {
  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .site-nav {
    display: none;
    position: absolute;
    top: 84px;
    left: 0;
    right: 0;
    background: var(--night-soft);
    padding: 12px 28px 24px;
    border-bottom: 1px solid var(--line-night);
    box-shadow: 0 18px 30px rgba(10, 17, 14, 0.2);
    margin: 0;
    gap: 0;
  }

  .site-nav.open {
    display: grid;
  }

  .site-nav a {
    padding: 14px 2px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 17px;
    color: #FFFFFF;
    opacity: 0.86;
  }

  .site-nav a.active {
    opacity: 1;
  }

  .site-nav a::after {
    display: none;
  }

  .nav-cta {
    margin-left: auto;
  }

  .soft-strip-grid,
  .stats-strip .stats-grid {
    justify-content: flex-start;
  }

  .section-note .note-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .contact-media img {
    min-height: 260px;
  }
}

@media (max-width: 768px) {
  .inner-header {
    height: 76px;
    padding: 0 18px;
    gap: 16px;
  }

  .site-nav {
    top: 76px;
    padding-left: 18px;
    padding-right: 18px;
  }

  .brand-name {
    font-size: 18px;
  }

  .nav-cta {
    font-size: 14px;
  }

  .bulletin-hero {
    padding: 136px 0 68px;
  }

  .bulletin-hero h1 {
    font-size: 30px;
    line-height: 1.22;
  }

  .bulletin-hero .lead {
    font-size: 16px;
  }

  .status-meta {
    display: none;
  }

  .section {
    padding: 64px 0;
  }

  .section-title {
    font-size: 26px;
  }

  .latest-body {
    padding: 28px;
  }

  .latest-body h2 {
    font-size: 22px;
  }

  .bulletin-item {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 28px 0;
  }

  .bulletin-date small {
    display: inline-block;
    margin-left: 8px;
  }

  .site-nav.open {
    position: absolute;
  }

  .notice-types-list {
    grid-template-columns: 1fr;
  }

  .contact-body {
    padding: 28px;
  }

  .accordion .accordion-content {
    padding: 0 30px 20px 0;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .footer-bottom-inner {
    justify-content: center;
    text-align: center;
  }

  .footer-bottom-inner a {
    margin: 0 10px;
  }
}

@media (max-width: 560px) {
  .nav-cta {
    display: none;
  }

  .brand-name {
    margin-right: auto;
  }

  .bulletin-hero {
    background-position: 72% center;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-actions .btn + .btn {
    margin-left: 0;
  }

  .hero-status-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .latest-media img {
    min-height: 220px;
  }

  .latest-body h2 {
    font-size: 20px;
  }

  .latest-action .btn {
    width: 100%;
  }

  .note-inner {
    gap: 24px;
  }

  .notice-type-panel {
    padding: 24px 20px;
  }

  .notice-row {
    gap: 14px;
  }

  .cta-panel h2 {
    font-size: 27px;
  }

  .section-label {
    font-size: 12px;
  }
}
