/* roulang page: index */
:root {
  --green: #0B3D2D;
  --lime: #CDF247;
  --dark: #081F17;
  --bg: #F6F5EF;
  --card: #FFFFFF;
  --ink: #1E2822;
  --muted: #5A665E;
  --warm: #FF6B2C;
  --line: rgba(11, 61, 45, 0.12);
  --soft: rgba(11, 61, 45, 0.05);
  --radius: 16px;
  --radius-md: 10px;
  --shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  --shadow-hover: 0 16px 32px rgba(11, 61, 45, 0.12);
  --space: 96px;
  --font: -apple-system, BlinkMacSystemFont, "PingFang SC", "Microsoft YaHei", "Noto Sans SC", sans-serif;
}

*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.75;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

img {
  max-width: 100%;
  display: block;
  border: 0;
}

a {
  color: var(--green);
  text-decoration: none;
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

a:hover {
  color: #0e6950;
}

button, input, textarea, select {
  font-family: var(--font);
}

a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible {
  outline: 2px solid var(--lime);
  outline-offset: 3px;
}

p {
  margin: 0;
}

ul, ol {
  margin: 0;
  padding: 0;
}

section {
  scroll-margin-top: 88px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}

.section {
  padding: var(--space) 0;
}

.section-head {
  max-width: 720px;
  margin: 0 0 42px;
}

.section-head.align-center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--green);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.section-eyebrow::before {
  content: "";
  width: 24px;
  height: 4px;
  background: var(--lime);
  border-radius: 2px;
}

.align-center .section-eyebrow::after {
  content: "";
  width: 24px;
  height: 4px;
  background: var(--lime);
  border-radius: 2px;
}

.section-head h2 {
  margin: 10px 0 12px;
  color: var(--green);
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.25;
  letter-spacing: -0.01em;
}

.section-head p {
  color: var(--muted);
  font-size: 16px;
}

button {
  cursor: pointer;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 12px;
  z-index: 400;
  background: var(--lime);
  color: var(--green);
  padding: 10px 18px;
  border-radius: 8px;
  font-weight: 700;
}

.skip-link:focus {
  left: 12px;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 300;
  transition: background 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  background: linear-gradient(180deg, rgba(8,31,23,0.7), rgba(8,31,23,0.2) 80%);
}

.site-header.scrolled {
  background: rgba(8, 31, 23, 0.96);
  box-shadow: 0 8px 24px rgba(8, 31, 23, 0.18);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-wrap {
  display: flex;
  align-items: center;
  gap: 26px;
  min-height: 76px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  color: #fff;
}

.brand:hover {
  color: #fff;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 12px 12px 12px 4px;
  background: var(--lime);
  color: var(--green);
  font-weight: 800;
  font-size: 20px;
  line-height: 1;
  letter-spacing: -0.04em;
}

.brand-text {
  display: flex;
  align-items: baseline;
  gap: 3px;
  color: #fff;
  font-size: 21px;
  font-weight: 800;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.brand-text small {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.72);
  letter-spacing: 0.05em;
}

.main-nav {
  display: flex;
  align-items: stretch;
  gap: 2px;
  margin-left: auto;
}

.main-nav a {
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  min-height: 76px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 15px;
  font-weight: 600;
  border-bottom: 3px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.main-nav a:hover {
  color: #fff;
  border-color: rgba(205, 242, 71, 0.45);
}

.main-nav a.is-active {
  color: var(--lime);
  border-color: var(--lime);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  margin-left: 4px;
}

.header-search {
  display: flex;
  align-items: center;
  gap: 4px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  padding: 5px 8px 5px 12px;
  background: rgba(255, 255, 255, 0.1);
  transition: background 0.2s ease, border-color 0.2s ease;
}

.header-search:focus-within {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(205, 242, 71, 0.75);
}

.header-search input {
  width: 106px;
  background: transparent;
  border: 0;
  color: #fff;
  font-size: 14px;
  line-height: 1.2;
  height: auto;
  margin: 0;
  padding: 3px 0;
  box-shadow: none;
}

.header-search input::placeholder {
  color: rgba(255,255,255,0.72);
}

.header-search input:focus {
  outline: none;
  box-shadow: none;
  background: transparent;
}

.search-btn {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border: 0;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  color: #fff;
  transition: background 0.2s ease;
}

.search-btn:hover {
  background: var(--lime);
  color: var(--green);
}

.header-login {
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  padding: 6px 2px;
  white-space: nowrap;
}

.header-login:hover {
  color: var(--lime);
}

.site-header .button {
  margin: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border-radius: 10px;
  padding: 12px 24px;
  font-size: 16px;
  line-height: 1.2;
  font-weight: 700;
  border: 1px solid transparent;
  min-height: 48px;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.btn-lg {
  padding: 16px 34px;
  min-height: 56px;
  border-radius: 12px;
  font-size: 17px;
}

.btn-sm {
  min-height: 36px;
  padding: 8px 18px;
  font-size: 14px;
  border-radius: 8px;
}

.btn-primary {
  background: var(--green);
  color: #fff;
  box-shadow: 0 6px 16px rgba(8,31,23,0.18);
}

.btn-primary:hover,
.btn-primary:active {
  background: var(--lime);
  color: var(--green);
  transform: translateX(2px);
  box-shadow: 0 6px 14px rgba(205,242,71,0.2);
}

.btn-dark {
  background: var(--green);
  color: #fff;
}

.btn-ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.35);
}

.btn-ghost:hover {
  border-color: var(--lime);
  color: var(--lime);
}

.btn-lime {
  background: var(--lime);
  color: var(--green);
}

.btn-lime:hover {
  background: #d9ff61;
  color: var(--dark);
}

.hero {
  min-height: 720px;
  padding: 150px 0 80px;
  background: linear-gradient(90deg, rgba(8,31,23,0.91) 0%, rgba(11,61,45,0.68) 75%, rgba(11,61,45,0.32) 100%), url("/assets/images/backpic/back-1.webp") center / cover no-repeat;
  display: flex;
  align-items: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  right: -80px;
  bottom: -180px;
  width: 520px;
  height: 520px;
  border: 42px solid rgba(205,242,71,0.08);
  border-radius: 50%;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.02em;
}

.hero h1 {
  margin: 22px 0 20px;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.14;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
}

.hero-lead {
  max-width: 680px;
  font-size: 18px;
  color: rgba(255,255,255,0.88);
  line-height: 1.75;
  margin-bottom: 34px;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 26px;
  margin-top: 32px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,0.16);
  color: rgba(255,255,255,0.88);
  font-size: 15px;
}

.hero-meta span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero-meta svg {
  color: var(--lime);
  flex-shrink: 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.link-line {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #fff;
  font-weight: 700;
  font-size: 15px;
}

.link-line::after {
  content: "→";
  transition: transform 0.2s ease;
}

.link-line:hover {
  color: var(--lime);
}

.link-line:hover::after {
  transform: translateX(4px);
}

.info-bar {
  background: var(--green);
  color: #fff;
  border-top: 3px solid var(--lime);
}

.info-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  padding: 34px 0;
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
  padding-left: 18px;
}

.stat-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  bottom: 10px;
  width: 4px;
  border-radius: 4px;
  background: var(--lime);
}

.stat-num {
  font-size: 40px;
  font-weight: 800;
  line-height: 1;
  color: #fff;
  font-feature-settings: "tnum";
}

.stat-num small {
  font-size: 18px;
  font-weight: 700;
  color: var(--lime);
  margin-left: 3px;
}

.stat-label {
  color: rgba(255,255,255,0.8);
  font-size: 13px;
  letter-spacing: 0.03em;
}

.schedule-section {
  background: var(--bg);
}

.schedule-timeline {
  position: relative;
  max-width: 1020px;
}

.schedule-timeline::before {
  content: "";
  position: absolute;
  top: 8px;
  bottom: 18px;
  left: 12px;
  width: 4px;
  border-radius: 4px;
  background: linear-gradient(180deg, var(--lime), var(--green));
}

.timeline-item {
  position: relative;
  padding-left: 46px;
  margin-bottom: 28px;
}

.timeline-dot {
  position: absolute;
  left: 2px;
  top: 28px;
  width: 20px;
  height: 20px;
  border: 5px solid var(--bg);
  background: var(--lime);
  border-radius: 50%;
  box-shadow: 0 0 0 3px var(--green);
}

.timeline-card {
  background: var(--card);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  padding: 24px 28px;
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 24px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.timeline-card:hover {
  border-left: 4px solid var(--lime);
  border-color: var(--lime);
  box-shadow: var(--shadow-hover);
  transform: translateY(-2px);
}

.timeline-time {
  font-size: 15px;
  font-weight: 800;
  color: var(--green);
  font-feature-settings: "tnum";
  padding-top: 4px;
}

.timeline-time span {
  display: block;
  font-size: 12px;
  color: var(--muted);
  font-weight: 500;
}

.timeline-content h3 {
  color: var(--green);
  font-size: 20px;
  margin: 0 0 3px;
  font-weight: 700;
}

.timeline-content p {
  color: var(--muted);
  font-size: 15px;
  margin-top: 6px;
}

.highlight-section {
  background: #fff;
}

.highlight-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.highlight-card {
  background: var(--bg);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.highlight-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(11,61,45,0.3);
  border-bottom: 3px solid var(--green);
}

.highlight-media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.highlight-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.highlight-card:hover .highlight-media img {
  transform: scale(1.04);
}

.highlight-body {
  padding: 20px;
}

.highlight-body h3 {
  font-size: 18px;
  line-height: 1.45;
  color: var(--ink);
  margin-bottom: 8px;
}

.highlight-body p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.ticket-section {
  background: var(--bg);
}

.ticket-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  align-items: stretch;
}

.ticket-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 32px 28px 34px;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.ticket-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.ticket-flag {
  position: absolute;
  top: -13px;
  left: 28px;
  display: inline-flex;
  padding: 4px 12px;
  border-radius: 999px;
  background: var(--green);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.ticket-flag.hot {
  background: var(--lime);
  color: var(--green);
}

.ticket-name {
  font-size: 20px;
  font-weight: 800;
  color: var(--green);
  margin: 14px 0 8px;
}

.ticket-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 18px;
}

.ticket-price .unit {
  font-size: 16px;
  font-weight: 700;
  color: var(--muted);
}

.ticket-price .amount {
  font-size: 38px;
  font-weight: 800;
  line-height: 1;
  color: var(--ink);
  font-feature-settings: "tnum";
}

.ticket-price .sub {
  font-size: 14px;
  color: var(--muted);
}

.ticket-feats {
  list-style: none;
  display: grid;
  gap: 10px;
  margin: 0 0 24px;
  flex: 1;
}

.ticket-feats li {
  position: relative;
  padding-left: 20px;
  color: var(--ink);
  font-size: 14px;
}

.ticket-feats li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--green);
  font-weight: 800;
}

.cta-section {
  background:
    linear-gradient(110deg, rgba(8,31,23,0.93), rgba(11,61,45,0.86)),
    url("/assets/images/backpic/back-2.png") center / cover no-repeat;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 46%;
  background: repeating-linear-gradient(-45deg, rgba(205,242,71,0.08) 0 12px, transparent 12px 24px);
  pointer-events: none;
}

.cta-card {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.cta-left h2 {
  font-size: clamp(28px, 3vw, 40px);
  color: #fff;
  line-height: 1.28;
  margin: 0 0 18px;
}

.cta-left p {
  color: rgba(255,255,255,0.86);
  font-size: 16px;
  max-width: 460px;
}

.cta-note {
  display: flex;
  gap: 8px;
  align-items: center;
  background: rgba(255, 107, 44, 0.18);
  border: 1px solid rgba(255, 107, 44, 0.46);
  color: #ffd5c3;
  padding: 9px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  width: fit-content;
  margin-top: 22px;
}

.register-panel {
  background: #fff;
  color: var(--ink);
  border-radius: 22px;
  padding: 34px 30px;
  box-shadow: 0 28px 60px rgba(0,0,0,0.22);
}

.register-panel h3 {
  color: var(--green);
  font-size: 22px;
  margin: 0 0 4px;
}

.register-panel > p {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 18px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-field.full {
  grid-column: 1 / -1;
}

.form-field label {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: #F0F1EC;
  min-height: 44px;
  border-radius: 10px;
  padding: 8px 12px;
  font-size: 15px;
  color: var(--ink);
  margin: 0;
  box-shadow: none;
  transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-field textarea {
  min-height: 92px;
  resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--lime);
  background: #fff;
  outline: none;
  box-shadow: 0 0 0 3px rgba(205,242,71,0.22);
}

.form-hint {
  font-size: 12px;
  color: var(--muted);
}

.news-section {
  background: #ebeee5;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
}

.news-item {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: var(--radius);
  padding: 22px 24px;
  border: 1px solid var(--line);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.news-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}

.news-top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.news-badge {
  background: var(--soft);
  color: var(--green);
  padding: 2px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
}

.news-top time {
  color: var(--muted);
  font-size: 13px;
  margin-left: auto;
  font-feature-settings: "tnum";
}

.news-item h3 {
  font-size: 18px;
  line-height: 1.5;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 10px;
  transition: color 0.2s ease;
}

.news-item:hover h3 {
  color: var(--green);
}

.news-item p {
  color: var(--muted);
  font-size: 14px;
}

.news-empty {
  grid-column: 1 / -1;
  background: #fff;
  border: 1px dashed rgba(11,61,45,0.28);
  text-align: center;
  border-radius: var(--radius);
  padding: 44px 18px;
  color: var(--muted);
}

.faq-section {
  background: var(--bg);
}

.faq-wrap {
  max-width: 820px;
  margin: 0 auto;
}

.faq-accordion {
  background: transparent;
  display: grid;
  gap: 14px;
}

.faq-accordion .accordion-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  transition: box-shadow 0.25s ease;
}

.faq-accordion .accordion-item:hover {
  box-shadow: var(--shadow);
}

.faq-accordion .accordion-title {
  position: relative;
  display: block;
  padding: 20px 48px 20px 22px;
  font-size: 17px;
  font-weight: 700;
  color: var(--green);
  background: #fff;
  border: 0;
  transition: background 0.2s ease;
}

.faq-accordion .accordion-title:hover {
  background: #f7fae9;
  color: var(--green);
}

.faq-accordion .accordion-title::before,
.faq-accordion .accordion-title::after {
  content: "";
  position: absolute;
  right: 22px;
  top: 50%;
  width: 14px;
  height: 2px;
  background: var(--green);
  border-radius: 2px;
  transform: translateY(-50%);
  transition: transform 0.2s ease;
}

.faq-accordion .accordion-title::after {
  transform: translateY(-50%) rotate(90deg);
}

.faq-accordion .accordion-item.is-active .accordion-title {
  background: #f7fae9;
}

.faq-accordion .accordion-item.is-active .accordion-title::after {
  transform: translateY(-50%) rotate(0deg);
}

.faq-accordion .accordion-content {
  padding: 2px 24px 24px;
  background: #fff;
  color: var(--muted);
  border: 0;
  font-size: 15px;
}

.site-footer {
  background: var(--dark);
  color: rgba(255,255,255,0.76);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 0.9fr 1.2fr;
  gap: 44px;
  padding: 72px 0 52px;
}

.footer-brand-name {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
}

.footer-brand-name .brand-mark {
  width: 40px;
  height: 40px;
  font-size: 19px;
}

.footer-about {
  color: rgba(255,255,255,0.62);
  font-size: 14px;
  max-width: 340px;
}

.footer-title {
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 18px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  color: rgba(255,255,255,0.68);
  font-size: 14px;
}

.footer-links a:hover {
  color: var(--lime);
}

.footer-contact {
  font-size: 14px;
  line-height: 2;
}

.footer-contact strong {
  color: #fff;
  font-weight: 700;
}

.footer-contact a {
  color: rgba(255,255,255,0.68);
}

.footer-contact a:hover {
  color: var(--lime);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  color: rgba(255,255,255,0.5);
  font-size: 13px;
}

.mobile-nav-panel {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--dark);
  z-index: 320;
  padding: 100px 24px 40px;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.3s ease;
}

body.nav-open .mobile-nav-panel {
  transform: translateX(0);
}

.mobile-nav-panel a.mobile-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 24px;
}

.mobile-nav-panel .mobile-nav-link {
  display: block;
  padding: 14px 0;
  font-size: 19px;
  font-weight: 700;
  color: #fff;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.mobile-nav-panel .mobile-nav-link:hover,
.mobile-nav-panel .mobile-nav-link.is-active {
  color: var(--lime);
}

.mobile-nav-panel .mobile-actions {
  margin-top: 26px;
  display: grid;
  gap: 14px;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 10px;
  color: #fff;
  place-items: center;
}

.nav-toggle .bar {
  width: 19px;
  height: 2px;
  background: currentColor;
  border-radius: 4px;
  position: relative;
  transition: background 0.2s ease;
}

.nav-toggle .bar::before,
.nav-toggle .bar::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: currentColor;
  border-radius: 4px;
  transition: transform 0.2s ease;
}

.nav-toggle .bar::before {
  top: -6px;
}

.nav-toggle .bar::after {
  top: 6px;
}

body.nav-open .nav-toggle .bar {
  background: transparent;
}

body.nav-open .nav-toggle .bar::before {
  transform: translateY(6px) rotate(45deg);
}

body.nav-open .nav-toggle .bar::after {
  transform: translateY(-6px) rotate(-45deg);
}

.news-section .section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.news-link {
  flex-shrink: 0;
  font-size: 14px;
  font-weight: 700;
  color: var(--green);
  border-bottom: 2px solid var(--lime);
  padding-bottom: 3px;
}

@media (max-width: 1023px) {
  .main-nav,
  .header-actions .header-search,
  .header-actions .header-login {
    display: none;
  }

  .nav-toggle {
    display: grid;
    margin-left: auto;
  }

  .site-header .brand,
  .site-header .header-actions {
    margin-left: auto;
  }

  .site-header .btn-sm {
    margin-left: 0;
  }

  .nav-toggle + .header-actions {
    margin-left: 8px;
  }

  .mobile-nav-panel {
    display: block;
  }

  .header-wrap {
    min-height: 68px;
  }

  .hero {
    min-height: 560px;
    padding: 140px 0 60px;
  }

  .highlight-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ticket-grid {
    grid-template-columns: 1fr;
    max-width: 560px;
    margin: 0 auto;
  }

  .cta-card {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
    padding: 52px 0 38px;
  }
}

@media (max-width: 767px) {
  :root {
    --space: 56px;
  }

  .container {
    padding-left: 16px;
    padding-right: 16px;
  }

  .header-wrap {
    gap: 12px;
  }

  .brand-text {
    font-size: 18px;
  }

  .brand-text small {
    display: inline;
  }

  .header-actions .btn-sm {
    padding: 8px 14px;
  }

  .hero {
    padding: 110px 0 54px;
    min-height: 500px;
  }

  .hero h1 {
    font-size: 32px;
    line-height: 1.3;
  }

  .hero-lead {
    font-size: 15px;
  }

  .hero-meta {
    flex-direction: column;
    gap: 8px;
  }

  .hero-actions .btn,
  .hero-actions .link-line {
    width: 100%;
    justify-content: center;
  }

  .info-stats {
    grid-template-columns: 1fr 1fr;
    gap: 28px 12px;
  }

  .stat-num {
    font-size: 32px;
  }

  .timeline-card {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .timeline-time {
    border-left: 3px solid var(--lime);
    padding-left: 10px;
  }

  .highlight-grid {
    grid-template-columns: 1fr;
  }

  .ticket-card {
    padding: 24px 20px;
  }

  .cta-card {
    gap: 24px;
  }

  .register-panel {
    padding: 24px 18px;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .form-field.full {
    grid-column: auto;
  }

  .news-grid {
    grid-template-columns: 1fr;
  }

  .news-section .section-head {
    display: block;
  }

  .faq-accordion .accordion-title {
    font-size: 15px;
    padding: 16px 40px 16px 18px;
  }

  .faq-accordion .accordion-content {
    font-size: 14px;
    padding: 0 18px 18px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 42px 0 28px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* roulang page: article */
:root {
    --primary: #0B3D2D;
    --accent: #CDF247;
    --dark: #081F17;
    --bg: #F6F5EF;
    --white: #FFFFFF;
    --text: #1E2822;
    --muted: #5A665E;
    --warm: #FF6B2C;
    --border: #E8E3D6;
    --radius-lg: 18px;
    --radius-md: 14px;
    --radius-sm: 8px;
    --shadow: 0 2px 10px rgba(0, 0, 0, .05);
    --shadow-lg: 0 14px 30px rgba(8, 31, 23, .10);
    --font-stack: -apple-system, BlinkMacSystemFont, "PingFang SC", "Microsoft YaHei", "Noto Sans SC", sans-serif;
  }

  *,
  *::before,
  *::after {
    box-sizing: border-box;
  }

  html {
    scroll-behavior: smooth;
  }

  body {
    margin: 0;
    background: var(--bg);
    color: var(--text);
    font-family: var(--font-stack);
    font-size: 16px;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
  }

  img {
    display: block;
    max-width: 100%;
    height: auto;
  }

  a {
    color: inherit;
    text-decoration: none;
    transition: color .25s ease, background .25s ease, border-color .25s ease, transform .25s ease, box-shadow .25s ease;
  }

  ul,
  ol,
  p,
  h1,
  h2,
  h3,
  h4 {
    margin: 0;
    padding: 0;
  }

  ul,
  ol {
    list-style: none;
  }

  button,
  input {
    font-family: inherit;
    font-size: inherit;
  }

  .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 24px;
    padding-right: 24px;
  }

  :focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 3px;
    border-radius: 4px;
  }

  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 40px;
    padding: 0 20px;
    border: 0;
    border-radius: var(--radius-sm);
    background: transparent;
    cursor: pointer;
    font-weight: 700;
    font-size: 15px;
    line-height: 1;
    white-space: nowrap;
    transition: background .25s ease, color .25s ease, transform .2s ease, border-color .25s ease, box-shadow .25s ease;
  }

  .btn-lg {
    min-height: 48px;
    padding: 0 28px;
    font-size: 16px;
  }

  .btn-primary {
    background: var(--primary);
    color: #fff;
  }

  .btn-primary:hover {
    background: var(--accent);
    color: var(--dark);
    transform: translateX(2px);
  }

  .btn-accent {
    background: var(--accent);
    color: var(--dark);
  }

  .btn-accent:hover {
    background: #fff;
    color: var(--dark);
    transform: translateY(-2px);
  }

  .btn-outline {
    border: 1px solid rgba(255, 255, 255, .55);
    color: #fff;
  }

  .btn-outline:hover {
    border-color: var(--accent);
    color: var(--accent);
    transform: translateY(-2px);
  }

  .btn-ghost {
    border: 1px solid #D7DFC9;
    color: var(--primary);
    background: #fff;
  }

  .btn-ghost:hover {
    border-color: var(--primary);
    background: var(--primary);
    color: #fff;
    transform: translateY(-2px);
  }

  .badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 26px;
    padding: 0 10px;
    border-radius: 999px;
    background: var(--accent);
    color: var(--dark);
    font-size: 13px;
    font-weight: 800;
    line-height: 1;
  }

  .site-header {
    position: relative;
    z-index: 60;
    background: var(--dark);
    border-bottom: 1px solid rgba(255, 255, 255, .08);
  }

  .header-inner {
    display: flex;
    align-items: center;
    min-height: 80px;
    gap: 30px;
  }

  .brand-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
  }

  .brand-mark {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--accent);
    color: var(--dark);
    border-radius: 10px;
    font-size: 16px;
    font-weight: 900;
    letter-spacing: 0;
  }

  .brand-text {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 6px;
    line-height: 1.1;
  }

  .brand-text strong {
    font-size: 20px;
    font-weight: 800;
    color: #fff;
    letter-spacing: 1px;
  }

  .brand-text em {
    font-style: normal;
    font-size: 12px;
    color: var(--accent);
    background: rgba(205, 242, 71, .12);
    border: 1px solid rgba(205, 242, 71, .3);
    border-radius: 6px;
    padding: 2px 7px;
    font-weight: 700;
  }

  .main-nav {
    display: flex;
    align-items: center;
    gap: 30px;
  }

  .main-nav a {
    position: relative;
    padding: 10px 0 6px;
    color: rgba(255, 255, 255, .82);
    font-size: 15px;
    font-weight: 600;
    letter-spacing: .2px;
  }

  .main-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width .3s ease;
  }

  .main-nav a:hover,
  .main-nav a.is-active {
    color: var(--accent);
  }

  .main-nav a:hover::after,
  .main-nav a.is-active::after {
    width: 100%;
  }

  .header-actions {
    margin-left: auto;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 16px;
    flex-shrink: 0;
  }

  .header-actions .search-box {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, .14);
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 999px;
    padding: 4px 4px 4px 14px;
    height: 38px;
  }

  .search-box input {
    width: 128px;
    border: 0;
    background: transparent;
    color: #fff;
    font-size: 13px;
    outline: none;
  }

  .search-box input::placeholder {
    color: rgba(255, 255, 255, .55);
  }

  .search-box button {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 0;
    background: var(--accent);
    color: var(--dark);
    font-size: 13px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .login-link {
    color: rgba(255, 255, 255, .72);
    font-size: 14px;
    font-weight: 600;
    padding: 8px 0;
    border-bottom: 1px solid transparent;
  }

  .login-link:hover {
    color: #fff;
    border-bottom-color: var(--accent);
  }

  .site-header .btn-primary {
    background: var(--accent);
    color: var(--dark);
    min-height: 38px;
    padding: 0 16px;
    font-size: 14px;
  }

  .site-header .btn-primary:hover {
    background: #fff;
    color: var(--dark);
    transform: translateX(2px);
  }

  .nav-toggle {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
  }

  .nav-toggle span {
    width: 22px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: transform .2s ease, opacity .2s ease, background .2s ease;
  }

  .nav-toggle:hover span {
    background: var(--accent);
  }

  .mobile-menu {
    display: none;
    background: var(--dark);
    border-top: 1px solid rgba(255, 255, 255, .08);
    padding: 4px 16px 28px;
  }

  .mobile-menu.open {
    display: block;
  }

  .mobile-menu .mobile-nav {
    display: flex;
    flex-direction: column;
  }

  .mobile-menu .mobile-nav a {
    color: rgba(255, 255, 255, .9);
    font-size: 16px;
    font-weight: 600;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .09);
  }

  .mobile-menu .mobile-nav a.is-active {
    color: var(--accent);
  }

  .mobile-actions {
    margin-top: 18px;
    display: flex;
    gap: 12px;
    align-items: center;
  }

  .mobile-search {
    flex: 1;
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, .13);
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 999px;
    padding: 3px 4px 3px 14px;
    min-height: 38px;
  }

  .mobile-search input {
    width: 100%;
    min-width: 0;
    background: transparent;
    border: 0;
    color: #fff;
    font-size: 14px;
    outline: none;
  }

  .mobile-search input::placeholder {
    color: rgba(255, 255, 255, .55);
  }

  .mobile-search button {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    border-radius: 50%;
    border: 0;
    background: var(--accent);
    color: var(--dark);
    cursor: pointer;
  }

  .mobile-actions .btn {
    flex-shrink: 0;
  }

  /* 面包屑 */
  .breadcrumb-bar {
    background: #fff;
    border-bottom: 1px solid var(--border);
    padding: 13px 0;
  }

  .breadcrumb-list {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
    color: var(--muted);
    font-size: 13px;
  }

  .breadcrumb-list a {
    color: var(--muted);
  }

  .breadcrumb-list a:hover {
    color: var(--primary);
  }

  .breadcrumb-sep {
    color: #B6BCB0;
  }

  .crumb-current {
    color: var(--primary);
    font-weight: 600;
  }

  /* 文章主体 */
  .article-main {
    background: #fff;
    padding: 64px 0 72px;
  }

  .article-header {
    max-width: 820px;
    margin: 0 auto;
    text-align: center;
  }

  .article-kicker {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 18px;
  }

  .badge-article {
    background: #E7F7BF;
    color: var(--primary);
  }

  .article-origin {
    font-size: 14px;
    color: var(--muted);
    display: inline-flex;
    align-items: center;
    gap: 6px;
  }

  .article-title {
    margin: 0;
    font-size: clamp(30px, 4.4vw, 44px);
    line-height: 1.28;
    color: var(--primary);
    font-weight: 800;
    letter-spacing: .8px;
  }

  .article-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 24px;
    margin-top: 18px;
    color: #78847B;
    font-size: 14px;
  }

  .article-meta i {
    color: var(--accent);
    margin-right: 5px;
    font-size: 13px;
  }

  .article-summary {
    max-width: 720px;
    margin: 30px auto 0;
    padding: 16px 22px;
    text-align: left;
    background: var(--bg);
    border-left: 4px solid var(--accent);
    border-radius: 0 12px 12px 0;
    color: #3F4B43;
    font-size: 15px;
    line-height: 1.8;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .article-content {
    max-width: 740px;
    margin: 52px auto 0;
    color: #27332B;
  }

  .article-content p {
    font-size: 16px;
    line-height: 1.9;
    margin-bottom: 24px;
  }

  .article-content h2,
  .article-content h3 {
    color: var(--primary);
    font-weight: 800;
    line-height: 1.4;
  }

  .article-content h2 {
    font-size: 26px;
    margin: 42px 0 18px;
  }

  .article-content h3 {
    font-size: 21px;
    margin: 34px 0 14px;
  }

  .article-content a {
    color: var(--primary);
    text-decoration: underline;
    text-underline-offset: 4px;
  }

  .article-content ul,
  .article-content ol {
    margin: 0 0 26px;
    padding-left: 24px;
  }

  .article-content ul {
    list-style: disc;
  }

  .article-content ol {
    list-style: decimal;
  }

  .article-content li {
    margin-bottom: 8px;
    line-height: 1.8;
  }

  .article-content blockquote {
    margin: 28px 0;
    padding: 20px 22px;
    background: var(--bg);
    border-left: 4px solid var(--accent);
    border-radius: 0 12px 12px 0;
    color: #445048;
    font-size: 16px;
  }

  .article-content img {
    border-radius: var(--radius-lg);
    margin: 30px auto;
    width: 100%;
    object-fit: cover;
  }

  .article-content table {
    width: 100%;
    margin: 26px 0;
    border-collapse: collapse;
    background: #fff;
    border: 1px solid #EAE7DB;
    border-radius: var(--radius-md);
    overflow: hidden;
  }

  .article-content th,
  .article-content td {
    padding: 13px 16px;
    border-bottom: 1px solid #EAE7DB;
    text-align: left;
    font-size: 15px;
  }

  .article-content th {
    background: #EEF3DF;
    color: var(--primary);
    font-weight: 700;
  }

  .article-content tr:last-child td {
    border-bottom: 0;
  }

  .article-content pre {
    background: #10261D;
    color: #E9F7E0;
    padding: 18px;
    border-radius: 12px;
    overflow-x: auto;
    margin: 24px 0;
    font-size: 14px;
  }

  .article-footer {
    max-width: 740px;
    margin: 56px auto 0;
    padding-top: 26px;
    border-top: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 16px;
  }

  .article-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
  }

  .tag {
    display: inline-flex;
    align-items: center;
    height: 28px;
    padding: 0 10px;
    border-radius: 6px;
    background: #F1F3EA;
    color: var(--muted);
    font-size: 13px;
    font-weight: 600;
  }

  .article-back {
    margin-left: auto;
  }

  /* 相关推荐 */
  .related-section {
    background: #ECEFE7;
    padding: 76px 0;
  }

  .related-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 28px;
  }

  .related-title-wrap {
    position: relative;
    padding-left: 18px;
  }

  .related-title-wrap::before {
    content: "";
    position: absolute;
    left: 0;
    top: 4px;
    bottom: 4px;
    width: 6px;
    border-radius: 6px;
    background: var(--accent);
  }

  .related-title {
    font-size: 30px;
    color: var(--primary);
    font-weight: 800;
    line-height: 1.3;
  }

  .related-desc {
    margin-top: 6px;
    color: var(--muted);
    font-size: 15px;
  }

  .related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 36px;
  }

  .related-card {
    display: block;
    background: #fff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    border-bottom: 3px solid transparent;
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
  }

  .related-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-bottom-color: var(--primary);
  }

  .related-card-img {
    position: relative;
    padding-top: 64%;
    background: #DCE2CF;
    overflow: hidden;
  }

  .related-card-img img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
  }

  .related-card:hover .related-card-img img {
    transform: scale(1.03);
  }

  .related-card-img .badge {
    position: absolute;
    left: 14px;
    top: 14px;
  }

  .related-card-body {
    padding: 20px 20px 24px;
  }

  .related-card-body h3 {
    font-size: 17px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 8px;
    line-height: 1.45;
  }

  .related-card-body p {
    font-size: 14px;
    line-height: 1.75;
    color: var(--muted);
  }

  .related-more {
    margin-top: 36px;
    text-align: center;
  }

  /* 报名 CTA */
  .cta-section {
    position: relative;
    background: var(--dark);
    color: #fff;
    padding: 74px 0;
    overflow: hidden;
  }

  .cta-section::before {
    content: "";
    position: absolute;
    right: -90px;
    top: -110px;
    width: 360px;
    height: 360px;
    background: radial-gradient(circle, rgba(205, 242, 71, .16) 0%, rgba(205, 242, 71, 0) 68%);
    pointer-events: none;
  }

  .cta-section::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 6px;
    background: repeating-linear-gradient(135deg, var(--accent) 0 20px, transparent 20px 38px);
    opacity: .5;
  }

  .cta-inner {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
  }

  .cta-text {
    flex: 1 1 560px;
  }

  .cta-title {
    font-size: clamp(26px, 3vw, 34px);
    line-height: 1.3;
    color: #fff;
    font-weight: 800;
  }

  .cta-title span {
    color: var(--accent);
  }

  .cta-text p {
    margin-top: 16px;
    color: rgba(255, 255, 255, .72);
    font-size: 15px;
    line-height: 1.8;
    max-width: 620px;
  }

  .cta-note {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 18px;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .12);
    padding: 8px 14px;
    border-radius: 999px;
    color: #FFE3B0;
    font-size: 13px;
  }

  .cta-buttons {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    gap: 14px;
  }

  /* 未找到 */
  .not-found-section {
    background: #fff;
    padding: 110px 20px;
    text-align: center;
  }

  .not-found-main {
    max-width: 520px;
    margin: 0 auto;
  }

  .not-found-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 84px;
    height: 84px;
    background: var(--bg);
    border-radius: 22px;
    color: var(--primary);
    font-size: 30px;
    font-weight: 900;
    margin-bottom: 26px;
  }

  .not-found-main h1 {
    font-size: 30px;
    color: var(--primary);
    margin-bottom: 12px;
    font-weight: 800;
  }

  .not-found-main p {
    color: var(--muted);
    margin-bottom: 28px;
  }

  /* 页脚 */
  .site-footer {
    background: var(--dark);
    color: rgba(255, 255, 255, .76);
    font-size: 14px;
  }

  .site-footer .footer-top {
    display: grid;
    grid-template-columns: 1.6fr .8fr .9fr 1.1fr;
    gap: 46px;
    padding: 64px 0 34px;
  }

  .footer-brand-name {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-size: 19px;
    font-weight: 800;
    margin-bottom: 12px;
  }

  .footer-brand-name .brand-mark {
    width: 38px;
    height: 38px;
    font-size: 14px;
  }

  .footer-about {
    color: rgba(255, 255, 255, .58);
    line-height: 1.9;
    max-width: 360px;
  }

  .site-footer .footer-title {
    font-size: 16px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 16px;
  }

  .footer-links {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .footer-links a {
    color: rgba(255, 255, 255, .68);
    line-height: 1.5;
  }

  .footer-links a:hover {
    color: var(--accent);
  }

  .footer-contact p {
    margin-bottom: 12px;
    color: rgba(255, 255, 255, .55);
    line-height: 1.7;
  }

  .footer-contact strong {
    color: rgba(255, 255, 255, .88);
    font-weight: 700;
  }

  .footer-contact a {
    color: var(--accent);
  }

  .footer-contact a:hover {
    color: #fff;
  }

  .footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .08);
    padding: 20px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
    color: rgba(255, 255, 255, .42);
    font-size: 13px;
  }

  /* 响应式 */
  @media (max-width: 1023.98px) {
    .container {
      padding-left: 16px;
      padding-right: 16px;
    }

    .main-nav {
      display: none;
    }

    .header-actions {
      display: none;
    }

    .nav-toggle {
      display: inline-flex;
      margin-left: auto;
    }

    .mobile-menu .mobile-actions .btn {
      display: inline-flex;
    }

    .header-cta {
      display: none;
    }

    .article-main {
      padding: 48px 0 56px;
    }

    .article-content {
      max-width: 100%;
    }

    .article-footer {
      max-width: 100%;
    }

    .related-head {
      align-items: flex-start;
      flex-direction: column;
    }

    .related-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 18px;
      margin-top: 24px;
    }

    .cta-inner {
      flex-direction: column;
      align-items: flex-start;
      gap: 22px;
    }

    .cta-buttons {
      flex-direction: row;
      flex-wrap: wrap;
    }

    .site-footer .footer-top {
      grid-template-columns: 1fr 1fr;
      gap: 40px 28px;
      padding-top: 50px;
    }
  }

  @media (min-width: 640px) and (max-width: 1023.98px) {
    .cta-text {
      flex-basis: 100%;
    }
  }

  @media (max-width: 639.98px) {
    .container {
      padding-left: 16px;
      padding-right: 16px;
    }

    .site-header {
      position: sticky;
      top: 0;
    }

    .header-inner {
      min-height: 68px;
      gap: 12px;
    }

    .brand-mark {
      width: 38px;
      height: 38px;
      font-size: 14px;
    }

    .brand-text strong {
      font-size: 17px;
    }

    .brand-text em {
      display: none;
    }

    .nav-toggle {
      margin-left: auto;
    }

    .article-main {
      padding: 36px 0 40px;
    }

    .article-kicker {
      gap: 8px;
    }

    .article-title {
      font-size: 26px;
      line-height: 1.4;
    }

    .article-meta {
      gap: 10px 18px;
      font-size: 13px;
      flex-direction: column;
      gap: 6px;
    }

    .article-summary {
      margin-top: 20px;
      padding: 14px 16px;
      -webkit-line-clamp: 3;
    }

    .article-content {
      margin-top: 32px;
    }

    .article-content p {
      font-size: 15.5px;
      line-height: 1.9;
    }

    .article-content h2 {
      font-size: 22px;
      margin-top: 32px;
    }

    .article-content h3 {
      font-size: 19px;
      margin-top: 28px;
    }

    .article-footer {
      margin-top: 32px;
      flex-direction: column;
      align-items: flex-start;
    }

    .article-back {
      margin-left: 0;
    }

    .related-section {
      padding: 54px 0;
    }

    .related-title {
      font-size: 25px;
    }

    .related-grid {
      grid-template-columns: 1fr;
      gap: 16px;
    }

    .related-card {
      display: flex;
      align-items: stretch;
    }

    .related-card-img {
      flex: 0 0 36%;
      padding-top: 0;
      min-height: 110px;
    }

    .related-card-body {
      flex: 1;
      padding: 14px 16px;
    }

    .related-card-body h3 {
      font-size: 15px;
    }

    .related-card-body p {
      display: none;
    }

    .cta-section {
      padding: 54px 0;
    }

    .cta-title {
      font-size: 24px;
    }

    .cta-buttons {
      width: 100%;
    }

    .cta-buttons .btn {
      width: 100%;
    }

    .site-footer .footer-top {
      grid-template-columns: 1fr;
      gap: 28px;
      padding-top: 44px;
    }

    .site-footer .footer-top>div {
      margin-bottom: 12px;
    }

    .footer-bottom {
      flex-direction: column;
      align-items: flex-start;
    }
  }

/* roulang page: category1 */
:root{
  --green:#0B3D2D;
  --lime:#CDF247;
  --deep:#081F17;
  --bg:#F6F5EF;
  --white:#FFFFFF;
  --text:#1E2822;
  --muted:#5A665E;
  --orange:#FF6B2C;
  --line:#E2E7E0;
  --radius:16px;
  --radius-sm:10px;
  --shadow:0 2px 10px rgba(0,0,0,.05);
  --shadow-lg:0 16px 40px rgba(0,0,0,.10);
  --container:1200px;
  --section-space:96px;
  --transition:all .25s ease;
}
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}
body{
  font-family:-apple-system,BlinkMacSystemFont,"PingFang SC","Microsoft YaHei","Noto Sans SC","Helvetica Neue",Arial,sans-serif;
  background:var(--bg);
  color:var(--text);
  line-height:1.7;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}
img{max-width:100%;display:block}
a{text-decoration:none;color:inherit}
button,input,select{font-family:inherit;border:0}
a:focus-visible,button:focus-visible,input:focus-visible{
  outline:3px solid rgba(205,242,71,.85);
  outline-offset:3px;
  border-radius:6px;
}
.container{max-width:var(--container);margin-inline:auto;padding-inline:24px}

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  min-height:48px;
  padding:0 22px;
  border-radius:999px;
  font-size:16px;
  font-weight:700;
  line-height:1;
  cursor:pointer;
  border:1px solid transparent;
  transition:var(--transition);
  white-space:nowrap;
  text-align:center;
}
.btn-sm{min-height:36px;padding:0 16px;font-size:14px}
.btn-lg{min-height:56px;padding:0 30px;font-size:17px}
.btn-primary{background:var(--green);color:#fff}
.btn-primary:hover{
  background:var(--lime);
  color:var(--green);
  transform:translateX(2px);
  box-shadow:0 8px 20px rgba(11,61,45,.15);
}
.btn-lime{background:var(--lime);color:var(--green)}
.btn-lime:hover{
  background:var(--green);
  color:#fff;
  transform:translateY(-2px);
  box-shadow:0 14px 30px rgba(0,0,0,.18);
}
.btn-ghost{
  background:transparent;
  color:var(--green);
  border-color:rgba(11,61,45,.28);
}
.btn-ghost:hover{
  border-color:var(--green);
  background:rgba(11,61,45,.06);
  color:var(--green);
  transform:translateY(-2px);
}
.btn-white{
  background:#fff;
  color:var(--green);
}
.btn-white:hover{
  background:var(--lime);
  color:var(--green);
  transform:translateY(-2px);
}

/* Header */
.site-header{
  position:sticky;
  top:0;
  z-index:100;
  background:rgba(8,31,23,.96);
  border-bottom:1px solid rgba(255,255,255,.06);
  transition:var(--transition);
  backdrop-filter:blur(14px);
}
.site-header.is-scrolled{
  background:rgba(255,255,255,.97);
  border-bottom:1px solid rgba(11,61,45,.09);
  box-shadow:0 10px 30px rgba(0,0,0,.08);
}
.header-row{
  position:relative;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:28px;
  min-height:80px;
}
.brand{
  display:inline-flex;
  align-items:center;
  flex-shrink:0;
  gap:10px;
}
.brand-flag{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:40px;
  height:40px;
  border-radius:12px;
  background:var(--lime);
  color:var(--green);
  font-weight:900;
  font-size:14px;
  line-height:1;
  letter-spacing:.5px;
}
.brand-text{
  color:#fff;
  font-size:22px;
  font-weight:900;
  letter-spacing:1px;
  line-height:1.1;
  transition:var(--transition);
}
.brand-text small{
  font-size:12px;
  font-weight:600;
  letter-spacing:2px;
  color:rgba(255,255,255,.72);
  margin-left:2px;
}
.site-header.is-scrolled .brand-text{color:var(--text)}
.site-header.is-scrolled .brand-text small{color:var(--muted)}

.main-nav{
  flex:1;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
}
.nav-links{
  display:flex;
  align-items:center;
  gap:8px;
  flex-wrap:wrap;
}
.main-nav a{
  position:relative;
  display:inline-block;
  padding:10px 12px;
  color:#fff;
  font-weight:600;
  font-size:15px;
  white-space:nowrap;
  transition:var(--transition);
}
.main-nav a::after{
  content:"";
  position:absolute;
  left:12px;
  right:12px;
  bottom:4px;
  height:2px;
  border-radius:2px;
  background:transparent;
  transform:scaleX(.4);
  transform-origin:left;
  transition:var(--transition);
}
.main-nav a:hover::after,
.main-nav a.is-active::after{
  background:var(--lime);
  transform:scaleX(1);
}
.main-nav a.is-active{color:var(--lime);font-weight:700}
.site-header.is-scrolled .main-nav a{color:var(--text)}
.site-header.is-scrolled .main-nav a:hover{color:var(--green)}
.site-header.is-scrolled .main-nav a.is-active{color:var(--green)}
.site-header.is-scrolled .main-nav a.is-active::after{background:var(--green)}
.nav-mobile-tools{display:none}

.header-actions{
  display:flex;
  align-items:center;
  gap:12px;
  flex-shrink:0;
}
.search-area{
  position:relative;
  display:flex;
  align-items:center;
}
.search-area svg{
  position:absolute;
  left:13px;
  width:16px;
  height:16px;
  color:rgba(255,255,255,.65);
  pointer-events:none;
  transition:var(--transition);
}
.search-area input{
  width:164px;
  height:38px;
  padding:0 30px 0 36px;
  border-radius:999px;
  background:rgba(255,255,255,.12);
  color:#fff;
  font-size:14px;
  transition:var(--transition);
}
.search-area input::placeholder{color:rgba(255,255,255,.62)}
.search-area input:focus{
  background:#fff;
  color:var(--text);
  box-shadow:0 0 0 3px rgba(205,242,71,.4);
}
.site-header.is-scrolled .search-area svg{color:var(--muted)}
.site-header.is-scrolled .search-area input{background:var(--bg);color:var(--text)}
.site-header.is-scrolled .search-area input::placeholder{color:var(--muted)}
.auth-link{
  color:#fff;
  font-size:14px;
  font-weight:600;
  padding:8px 4px;
  transition:var(--transition);
}
.auth-link:hover{color:var(--lime)}
.site-header.is-scrolled .auth-link{color:var(--text)}
.site-header.is-scrolled .auth-link:hover{color:var(--green)}
.nav-toggle{
  display:none;
  width:44px;
  height:44px;
  background:#fff;
  border-radius:12px;
  align-items:center;
  justify-content:center;
  cursor:pointer;
}
.nav-toggle span,.nav-toggle span::before,.nav-toggle span::after{
  content:"";
  display:block;
  width:20px;
  height:2px;
  background:var(--green);
  border-radius:9px;
  transition:var(--transition);
}
.nav-toggle span{position:relative}
.nav-toggle span::before{position:absolute;top:-6px;left:0}
.nav-toggle span::after{position:absolute;top:6px;left:0}
.nav-toggle.is-open span{background:transparent}
.nav-toggle.is-open span::before{top:0;transform:rotate(45deg)}
.nav-toggle.is-open span::after{top:0;transform:rotate(-45deg)}

/* Hero */
.cat-hero{
  position:relative;
  overflow:hidden;
  padding:88px 0 82px;
  background:linear-gradient(100deg,rgba(8,31,23,.95) 20%,rgba(11,61,45,.82)),url('/assets/images/backpic/back-1.webp') center/cover no-repeat;
  color:#fff;
}
.cat-hero .container{position:relative;z-index:2}
.breadcrumb{
  display:flex;
  align-items:center;
  flex-wrap:wrap;
  gap:10px;
  font-size:14px;
  color:rgba(255,255,255,.68);
  margin-bottom:24px;
}
.breadcrumb a{color:rgba(255,255,255,.68);transition:var(--transition)}
.breadcrumb a:hover{color:var(--lime)}
.breadcrumb-sep{opacity:.5}
.breadcrumb [aria-current="page"]{color:#fff;font-weight:600}
.cat-hero h1{
  max-width:820px;
  font-size:56px;
  font-weight:900;
  line-height:1.15;
  letter-spacing:1px;
  margin-bottom:20px;
}
.cat-hero .hero-lead{
  max-width:660px;
  color:rgba(255,255,255,.9);
  font-size:18px;
  line-height:1.8;
  margin-bottom:30px;
}
.hero-facts{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  padding-top:6px;
}
.fact-pill{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:8px 16px;
  border-radius:999px;
  background:rgba(255,255,255,.12);
  border:1px solid rgba(205,242,71,.25);
  color:#fff;
  font-size:14px;
}
.fact-pill::before{
  content:"";
  width:8px;
  height:8px;
  border-radius:50%;
  background:var(--lime);
  box-shadow:0 0 0 4px rgba(205,242,71,.18);
}
.cat-hero::after{
  content:"JIHUI SPORTS";
  position:absolute;
  right:-20px;
  bottom:-26px;
  font-size:120px;
  font-weight:900;
  line-height:1;
  letter-spacing:6px;
  color:rgba(255,255,255,.05);
  pointer-events:none;
  user-select:none;
}
/* Sections */
.section{padding:var(--section-space) 0}
.section-head{
  margin-bottom:42px;
  max-width:760px;
}
.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:9px;
  font-size:13px;
  font-weight:700;
  letter-spacing:3px;
  color:var(--green);
  text-transform:uppercase;
  margin-bottom:12px;
}
.eyebrow::before{
  content:"";
  width:24px;
  height:3px;
  background:var(--lime);
  border-radius:3px;
}
.section-head h2,
.section-title{
  font-size:36px;
  line-height:1.25;
  color:var(--green);
  font-weight:900;
  letter-spacing:.5px;
}
.section-lead{
  color:var(--muted);
  font-size:16px;
  margin-top:16px;
}

/* Directory */
.directory-section{background:var(--bg)}
.feature-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:30px;
  margin-bottom:38px;
}
.feature-card{
  display:flex;
  flex-direction:column;
  background:var(--white);
  border-radius:var(--radius);
  overflow:hidden;
  box-shadow:var(--shadow);
  transition:var(--transition);
}
.feature-card:hover{
  transform:translateY(-6px);
  box-shadow:var(--shadow-lg);
}
.feature-card__image{
  position:relative;
  aspect-ratio:4/3;
  overflow:hidden;
}
.feature-card__image img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform .5s ease;
}
.feature-card:hover .feature-card__image img{transform:scale(1.04)}
.feature-card__label{
  position:absolute;
  top:14px;
  left:14px;
  z-index:2;
  background:var(--lime);
  color:var(--green);
  font-size:13px;
  font-weight:800;
  padding:6px 12px;
  border-radius:999px;
  box-shadow:0 4px 14px rgba(0,0,0,.16);
}
.feature-card__body{
  padding:24px;
  display:flex;
  flex-direction:column;
  flex:1;
}
.feature-card__body h3{
  font-size:22px;
  color:var(--green);
  font-weight:800;
  margin-bottom:12px;
}
.feature-card__body p{
  color:var(--muted);
  font-size:15px;
  line-height:1.75;
  margin-bottom:18px;
}
.feature-tags{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin-bottom:16px;
}
.tag{
  display:inline-flex;
  padding:5px 12px;
  border-radius:999px;
  background:#F0F3EE;
  color:var(--green);
  font-size:13px;
  font-weight:600;
}
.card-foot{
  margin-top:auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  flex-wrap:wrap;
  gap:12px;
}
.card-state{
  display:inline-flex;
  align-items:center;
  gap:7px;
  color:var(--green);
  font-size:14px;
  font-weight:700;
}
.card-state::before{
  content:"";
  width:8px;
  height:8px;
  border-radius:50%;
  background:var(--lime);
  box-shadow:0 0 0 4px rgba(205,242,71,.28);
}
.arrow-link{
  display:inline-flex;
  align-items:center;
  gap:6px;
  color:var(--green);
  font-weight:700;
  font-size:15px;
  transition:var(--transition);
}
.arrow-link::after{content:"→";transition:var(--transition)}
.arrow-link:hover{color:var(--muted)}
.arrow-link:hover::after{transform:translateX(4px);color:var(--green)}

.project-row{
  display:grid;
  grid-template-columns:210px 1fr auto;
  align-items:center;
  gap:24px;
  padding:18px;
  background:#fff;
  border:1px solid rgba(11,61,45,.08);
  border-radius:18px;
  margin-bottom:14px;
  box-shadow:0 2px 6px rgba(0,0,0,.03);
  transition:var(--transition);
}
.project-row:hover{
  border-left:5px solid var(--lime);
  box-shadow:var(--shadow);
  transform:translateX(4px);
}
.project-row__thumb{
  overflow:hidden;
  border-radius:14px;
  aspect-ratio:4/3;
}
.project-row__thumb img{
  width:100%;
  height:100%;
  object-fit:cover;
}
.project-row__main{
  min-width:0;
}
.project-row__top{
  display:flex;
  align-items:flex-start;
  flex-wrap:wrap;
  gap:8px 14px;
  justify-content:space-between;
}
.project-row__top h3{
  font-size:20px;
  color:var(--green);
  font-weight:800;
}
.pr-status{
  display:inline-flex;
  align-items:center;
  gap:6px;
  font-size:13px;
  color:var(--green);
  background:#F2F9E8;
  padding:5px 12px;
  border-radius:999px;
  font-weight:700;
}
.pr-status::before{
  content:"";
  width:7px;
  height:7px;
  background:var(--lime);
  border-radius:50%;
}
.project-row__desc{
  color:var(--muted);
  font-size:15px;
  line-height:1.75;
  margin:8px 0 12px;
}
.project-facts{
  display:flex;
  flex-wrap:wrap;
  gap:10px 20px;
}
.project-facts span{
  color:var(--muted);
  font-size:13px;
  display:inline-flex;
  gap:5px;
  align-items:center;
}
.project-facts span b{color:var(--green);font-weight:600}
.project-row__action{
  display:flex;
  flex-direction:column;
  align-items:flex-end;
  gap:10px;
  padding-left:8px;
  border-left:1px dashed var(--line);
}

/* Process */
.process-section{
  background:var(--deep);
  color:#fff;
  position:relative;
  overflow:hidden;
}
.process-section::before{
  content:"01 / 02 / 03 / 04";
  position:absolute;
  right:24px;
  top:20px;
  font-size:74px;
  font-weight:900;
  letter-spacing:8px;
  color:rgba(255,255,255,.035);
  line-height:1;
  pointer-events:none;
}
.process-section .eyebrow{color:var(--lime)}
.process-section .section-title{color:#fff}
.process-section .section-lead{color:rgba(255,255,255,.72)}
.process-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:28px;
  counter-reset:process;
  position:relative;
  z-index:2;
}
.process-item{
  position:relative;
  padding:30px 0 0 18px;
  counter-increment:process;
}
.process-item::after{
  content:counter(process,decimal-leading-zero);
  position:absolute;
  top:0;
  left:0;
  font-size:42px;
  font-weight:900;
  color:transparent;
  -webkit-text-stroke:1px var(--lime);
  line-height:1;
  opacity:.9;
}
.process-item h3{
  color:var(--lime);
  font-size:19px;
  font-weight:800;
  margin:42px 0 10px;
}
.process-item p{
  color:rgba(255,255,255,.72);
  font-size:15px;
  line-height:1.75;
}
.process-item + .process-item{
  border-left:1px solid rgba(255,255,255,.1);
}

/* Check Guide */
.check-section{background:var(--bg)}
.check-layout{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:36px;
  align-items:start;
}
.check-copy{
  background:#fff;
  border-radius:var(--radius);
  padding:36px;
  box-shadow:var(--shadow);
}
.check-copy h3{
  font-size:25px;
  color:var(--green);
  font-weight:800;
  margin-bottom:14px;
}
.check-copy > p{
  color:var(--muted);
  font-size:16px;
  line-height:1.8;
  margin-bottom:22px;
}
.fee-block{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:16px;
  margin-bottom:26px;
}
.fee-item{
  background:var(--bg);
  border-radius:14px;
  padding:20px;
}
.fee-item span{
  display:block;
  color:var(--muted);
  font-size:13px;
  margin-bottom:8px;
}
.fee-item strong{
  color:var(--green);
  font-size:20px;
  font-weight:800;
  line-height:1.3;
}
.fee-item small{display:block;color:var(--muted);font-size:13px;margin-top:6px}
.check-list{
  list-style:none;
  border-top:2px solid var(--bg);
  padding-top:10px;
}
.check-list li{
  display:flex;
  align-items:flex-start;
  gap:12px;
  padding:12px 0;
  border-bottom:1px dashed var(--line);
  color:var(--text);
  font-size:15px;
}
.check-list li::before{
  content:"✓";
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:22px;
  height:22px;
  background:var(--lime);
  border-radius:50%;
  color:var(--green);
  font-weight:900;
  font-size:13px;
  flex-shrink:0;
  margin-top:3px;
}
.check-note{
  background:var(--green);
  border-radius:var(--radius);
  color:#fff;
  padding:34px;
  position:sticky;
  top:108px;
}
.check-note::before{
  content:"!";
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:40px;
  height:40px;
  border-radius:50%;
  background:var(--lime);
  color:var(--green);
  font-size:22px;
  font-weight:900;
  margin-bottom:18px;
}
.check-note h3{
  color:#fff;
  font-size:22px;
  font-weight:800;
  margin-bottom:12px;
}
.check-note p{
  color:rgba(255,255,255,.78);
  font-size:15px;
  line-height:1.8;
}
.check-note .contact-note{
  margin-top:20px;
  padding-top:18px;
  border-top:1px solid rgba(255,255,255,.15);
  font-size:14px;
}
.check-note a{
  color:var(--lime);
  font-weight:700;
}
.check-note a:hover{text-decoration:underline}

/* FAQ */
.faq-section{background:#fff}
.faq-wrap{
  max-width:900px;
  margin-inline:auto;
}
.faq-list{
  list-style:none;
}
.faq-list li{
  border-top:1px solid var(--line);
  transition:var(--transition);
}
.faq-list li:last-child{border-bottom:1px solid var(--line)}
.accordion-title{
  display:block;
  padding:18px 0 18px 4px;
  color:var(--text);
  font-size:17px;
  font-weight:700;
  line-height:1.6;
  background:transparent!important;
  border:0!important;
  outline:0!important;
  transition:var(--transition);
  cursor:pointer;
}
.accordion-title:hover{
  color:var(--green);
  padding-left:14px;
}
.accordion-title:focus-visible{
  color:var(--green);
  padding-left:12px;
}
.faq-q{display:block;padding-right:52px}
.faq-toggle{
  position:absolute;
  right:14px;
  top:50%;
  transform:translateY(-50%);
  width:28px;
  height:28px;
  text-align:center;
  border-radius:50%;
  background:var(--bg);
  color:var(--green);
  line-height:1;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:18px;
  font-weight:800;
  transition:var(--transition);
}
.accordion-title .faq-toggle{position:absolute}
.faq-toggle::before{content:"+";transition:var(--transition)}
.accordion-item.is-active .faq-toggle::before{content:"−"}
.accordion-item.is-active .faq-title{
  background:var(--bg);
}
.accordion-item.is-active .accordion-title{
  background:linear-gradient(90deg,rgba(217,242,71,.12),transparent)!important;
  padding-left:14px;
}
.accordion-content{
  border:0!important;
  background:transparent!important;
  padding:0 46px 26px 18px;
  color:var(--muted);
  font-size:15px;
  line-height:1.85;
}
footer .accordion-content p{margin-bottom:0}

/* CTA */
.cta-section{
  padding:80px 0;
  background:linear-gradient(105deg,var(--green),var(--deep));
  color:#fff;
}
.cta-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:36px;
}
.cta-inner .eyebrow{color:var(--lime)}
.cta-inner h2{
  color:#fff;
  font-size:34px;
  font-weight:900;
  line-height:1.3;
  margin-bottom:12px;
}
.cta-inner p{
  max-width:590px;
  color:rgba(255,255,255,.76);
  font-size:16px;
  line-height:1.8;
}
.cta-actions{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  justify-content:flex-end;
  flex-shrink:0;
}
/* Footer */
.site-footer{
  background:var(--deep);
  color:rgba(255,255,255,.76);
  font-size:14px;
}
.footer-top{
  display:grid;
  grid-template-columns:1.4fr .8fr .75fr .8fr;
  gap:42px;
  padding:64px 0 46px;
}
.footer-brand{
  display:inline-flex;
  align-items:center;
  gap:10px;
  margin-bottom:18px;
}
.brand-mark{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:40px;
  height:40px;
  border-radius:12px;
  background:var(--lime);
  color:var(--green);
  font-weight:900;
  font-size:14px;
  line-height:1;
}
.footer-brand-name{
  display:inline-flex;
  align-items:center;
  gap:10px;
  color:#fff;
  font-size:22px;
  font-weight:900;
}
.footer-about{
  color:rgba(255,255,255,.55);
  line-height:1.8;
  max-width:340px;
  margin-top:14px;
}
.footer-title{
  color:#fff;
  font-size:16px;
  font-weight:800;
  margin-bottom:18px;
}
.footer-links{
  display:flex;
  flex-direction:column;
  gap:12px;
  align-items:flex-start;
}
.footer-links a{
  color:rgba(255,255,255,.68);
  line-height:1.5;
  transition:var(--transition);
  position:relative;
}
.footer-links a:hover{
  color:var(--lime);
  padding-left:6px;
}
.footer-contact p{
  margin-bottom:12px;
  line-height:1.8;
  color:rgba(255,255,255,.66);
}
.footer-contact strong{
  color:#fff;
  font-weight:600;
}
.footer-contact a{
  color:var(--lime);
}
.footer-bottom{
  border-top:1px solid rgba(255,255,255,.1);
  padding:22px 0;
  display:flex;
  justify-content:space-between;
  gap:14px;
  flex-wrap:wrap;
  color:rgba(255,255,255,.45);
  font-size:13px;
}

/* Responsive */
@media (max-width:1023px){
  .section{padding:72px 0}
  .main-nav{
    order:6;
    flex:1 0 100%;
    display:none;
    width:100%;
    max-height:calc(100vh - 80px);
    overflow-y:auto;
    border-top:1px solid rgba(255,255,255,.2);
    padding:14px 0 22px;
  }
  .site-header.menu-open .main-nav{display:block}
  .nav-links{
    flex-direction:column;
    align-items:flex-start;
    width:100%;
  }
  .main-nav a{
    width:100%;
    border-radius:10px;
    padding:14px 8px !important;
  }
  .main-nav a::after{display:none}
  .main-nav a.is-active{
    background:rgba(205,242,71,.1);
    color:var(--lime);
  }
  .site-header.is-scrolled .main-nav a.is-active{
    color:var(--lime);
  }
  .mobile-tools{
    display:flex;
    flex-direction:column;
    gap:12px;
    margin-top:14px;
    padding-top:18px;
    border-top:1px solid rgba(255,255,255,.1);
  }
  .mobile-tools .search-area{
    width:100%;
  }
  .mobile-tools .search-area input{
    width:100%;
    background:rgba(255,255,255,.1);
  }
  .mobile-tools .auth-link{
    display:block;
    padding:12px 4px;
  }
  .nav-mobile-tools{
    display:flex;
    gap:12px;
    flex-wrap:wrap;
    margin-top:20px;
    padding-top:16px;
    border-top:1px solid rgba(255,255,255,.12);
  }
  .nav-mobile-tools .search-area{flex:1 1 100%}
  .nav-mobile-tools .search-area input{width:100%}
  .nav-mobile-tools .auth-link{color:#fff;flex:1}
  .nav-mobile-tools .btn{flex:1 1 auto}
  .header-actions{display:none}
  .nav-toggle{display:inline-flex}
  .nav-toggle{display:inline-flex}
  .header-row{min-height:72px}
  .project-row{
    grid-template-columns:150px 1fr;
  }
  .project-row__action{
    grid-column:1 / -1;
    flex-direction:row;
    align-items:center;
    justify-content:space-between;
    border-left:0;
    border-top:1px dashed var(--line);
    padding:14px 0 0;
  }
  .check-layout{
    grid-template-columns:1fr;
  }
  .check-note{
    position:static;
  }
  .process-grid{
    grid-template-columns:repeat(2,1fr);
    gap:18px 20px;
  }
  .footer-top{
    grid-template-columns:1fr 1fr;
    gap:40px;
  }
  .cta-inner{
    flex-direction:column;
    align-items:flex-start;
  }
  .cta-actions{justify-content:flex-start}
}
@media (max-width:639px){
  .section{padding:58px 0}
  :root{--section-space:58px}
  .cat-hero{padding:62px 0}
  .cat-hero h1{font-size:34px}
  .cat-hero .hero-lead{
    font-size:16px;
  }
  .hero-facts{flex-direction:column}
  .fact-pill{width:100%}
  .section-title,.section-head h2{font-size:27px}
  .feature-grid{grid-template-columns:1fr;gap:20px}
  .project-row{
    grid-template-columns:1fr;
    padding:14px;
  }
  .project-row__thumb{
    aspect-ratio:16/9;
  }
  .project-facts{
    gap:8px 16px;
  }
  .footer-top{
    grid-template-columns:1fr;
    gap:32px;
    padding-top:46px;
  }
  .brand-text{font-size:18px}
  .brand-flag{width:36px;height:36px;font-size:12px}
  .check-copy,.check-note{padding:24px}
  .fee-block{grid-template-columns:1fr 1fr}
  .process-grid{grid-template-columns:1fr}
  .process-item + .process-item{
    border-left:0;
    border-top:1px solid rgba(255,255,255,.08);
    margin-top:10px;
    padding-top:34px;
  }
  .accordion-title{
    font-size:15px;
    padding-right:50px;
  }
  .cta-section{padding:46px 0}
  .cta-inner h2{font-size:26px}
  .btn,.btn-lg{
    width:100%;
  }
  .cta-actions .btn{flex:1 1 100%}
  .header-row{
    gap:12px;
  }
  .footer-bottom{flex-direction:column}
  .main-nav{
    margin-inline:-24px;
    padding-inline:24px;
    width:auto;
  }
}
@media (max-width:380px){
  .brand-text small{display:none}
  .hero-lead br{display:none}
  .footer-actions .btn{}
}

/* roulang page: category2 */
:root{
  --green-900:#081F17;
  --green-800:#0B3D2D;
  --green-700:#12513A;
  --lime:#CDF247;
  --bg:#F6F5EF;
  --white:#FFFFFF;
  --ink:#1E2822;
  --muted:#5A665E;
  --border:#E3E5DC;
  --orange:#FF6B2C;
  --shadow-sm:0 2px 10px rgba(0,0,0,.05);
  --shadow-md:0 12px 30px rgba(8,31,23,.10);
  --radius:16px;
  --radius-sm:10px;
  --container:1200px;
  --font-base:-apple-system,BlinkMacSystemFont,"PingFang SC","Microsoft YaHei","Noto Sans SC",sans-serif;
}
*,*::before,*::after{box-sizing:border-box;}
html{scroll-behavior:smooth;font-size:100%;}
body{margin:0;font-family:var(--font-base);background:var(--bg);color:var(--ink);line-height:1.75;font-feature-settings:"tnum";-webkit-font-smoothing:antialiased;}
img{max-width:100%;height:auto;display:block;}
a{color:inherit;text-decoration:none;transition:color .2s ease;}
ul{list-style:none;margin:0;padding:0;}
p{margin:0 0 1rem;}
.container{max-width:var(--container);margin-left:auto;margin-right:auto;padding-left:24px;padding-right:24px;}
.grid-x{display:flex;flex-wrap:wrap;}
.cell{flex:0 0 auto;}
.small-12{flex-basis:100%;max-width:100%;}
@media screen and (min-width:640px){
  .medium-6{flex-basis:50%;max-width:50%;}
  .medium-4{flex-basis:33.3333%;max-width:33.3333%;}
}
@media screen and (min-width:1024px){
  .large-5{flex-basis:41.6667%;max-width:41.6667%;}
  .large-6{flex-basis:50%;max-width:50%;}
  .large-7{flex-basis:58.3333%;max-width:58.3333%;}
  .large-4{flex-basis:33.3333%;max-width:33.3333%;}
  .large-8{flex-basis:66.6667%;max-width:66.6667%;}
  .large-3{flex-basis:25%;max-width:25%;}
}
.grid-padding-x{padding-left:.75rem;padding-right:.75rem;}
@media screen and (max-width:639px){.grid-padding-x{padding-left:0;padding-right:0;}}
.grid-margin-x{margin-left:-.75rem;margin-right:-.75rem;}
.grid-margin-x>*{padding-left:.75rem;padding-right:.75rem;}
.sr-only{position:absolute!important;width:1px;height:1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;}
.hidden{display:none!important;}

/* 按钮 */
.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:8px;
  padding:0 24px;height:48px;border-radius:10px;font-size:16px;font-weight:600;
  border:2px solid transparent;cursor:pointer;transition:all .25s ease;font-family:var(--font-base);
  background:var(--green-800);color:#fff;white-space:nowrap;
}
.btn:hover{background:var(--lime);color:var(--green-800);transform:translateX(2px);box-shadow:0 8px 20px rgba(205,242,71,.12);}
.btn:active{transform:translateY(1px) scale(.99);}
.btn:focus-visible{outline:2px solid var(--lime);outline-offset:3px;}
.btn-lime{background:var(--lime);color:var(--green-900);}
.btn-lime:hover{background:var(--green-800);color:#fff;}
.btn-ghost{background:transparent;color:#fff;border-color:rgba(255,255,255,.55);}
.btn-ghost:hover{background:rgba(255,255,255,.12);border-color:#fff;color:#fff;}
.btn-sm{height:36px;padding:0 18px;font-size:14px;border-radius:8px;}

/* section spacing */
.section{padding-top:96px;padding-bottom:96px;}
.section-top{border-top:1px solid var(--border);}
.bg-white{background:var(--white);}
.bg-deep{background:var(--green-900);color:#fff;}
.bg-lime-soft{background:linear-gradient(180deg,#F1FBE2 0%,var(--bg) 100%);}

/* site header */
.site-header{
  position:fixed;top:0;left:0;right:0;z-index:1000;
  background:linear-gradient(180deg,rgba(8,31,23,.72),rgba(8,31,23,.18));
  padding:10px 0;transition:background .35s ease,box-shadow .35s ease;
}
.site-header.is-scrolled{background:rgba(255,255,255,.96);box-shadow:0 4px 24px rgba(8,31,23,.08);}
.site-header .container{display:flex;align-items:center;justify-content:space-between;gap:20px;}
.brand-logo{display:inline-flex;align-items:center;gap:10px;flex-shrink:0;}
.brand-mark{
  width:42px;height:42px;border-radius:12px;background:var(--lime);color:var(--green-900);
  display:inline-flex;align-items:center;justify-content:center;font-weight:800;font-size:15px;
  letter-spacing:-.02em;box-shadow:0 0 0 3px rgba(205,242,247,0.08);
}
.brand-text{font-size:22px;font-weight:800;color:#fff;letter-spacing:.02em;line-height:1;transition:color .3s;}
.brand-text em{font-style:normal;font-size:.72em;font-weight:500;margin-left:2px;opacity:.74;}
.site-header.is-scrolled .brand-text{color:var(--ink);}

.main-nav{display:flex;align-items:center;gap:28px;margin-left:auto;}
.main-nav a{
  position:relative;color:rgba(255,255,255,.86);font-size:15px;font-weight:500;line-height:1.2;
  padding:8px 2px;transition:color .22s ease;
}
.main-nav a::after{
  content:"";position:absolute;left:0;right:0;bottom:0;height:2px;border-radius:2px;
  background:var(--lime);transform:scaleX(0);transform-origin:left;transition:transform .26s ease;
}
.main-nav a:hover{color:var(--lime);}
.main-nav a:hover::after,.main-nav a.is-active::after{transform:scaleX(1);}
.main-nav a.is-active{color:#fff;}
.main-nav a.is-active:hover{color:var(--lime);}
.site-header.is-scrolled .main-nav a{color:var(--ink);}
.site-header.is-scrolled .main-nav a.is-active{color:var(--green-800);}
.site-header.is-scrolled .main-nav a::after{background:var(--green-800);}

.header-tools{display:flex;align-items:center;gap:14px;flex-shrink:0;margin-left:16px;}
.header-tools .nav-search{display:flex;align-items:center;gap:8px;}
.header-tools .nav-search input{
  height:38px;border:0;border-radius:19px;background:rgba(255,255,255,.14);color:#fff;
  padding:0 16px;width:170px;font-size:14px;transition:all .24s;
}
.header-tools .nav-search input::placeholder{color:rgba(255,255,255,.75);}
.header-tools .nav-search input:focus{background:#fff;color:var(--ink);outline:none;border:2px solid var(--lime);width:190px;}
.site-header.is-scrolled .header-tools .nav-search input{background:#F0F1EC;color:var(--ink);}
.site-header.is-scrolled .header-tools .nav-search input::placeholder{color:var(--muted);}
.site-header.is-scrolled .header-tools .nav-search input:focus{background:#fff;border-color:var(--green-800);}
.header-tools .header-login{font-size:14px;color:#fff;font-weight:500;padding:6px 2px;border-bottom:1px solid transparent;}
.site-header.is-scrolled .header-tools .header-login{color:var(--ink);}
.header-tools .header-login:hover{border-bottom-color:var(--lime);color:var(--lime);}
.site-header.is-scrolled .header-tools .header-login:hover{color:var(--green-800);border-bottom-color:var(--green-800);}
.btn.header-cta{height:38px;padding:0 18px;font-size:14px;border-radius:10px;}

.nav-toggle{
  display:none;background:transparent;border:0;cursor:pointer;width:40px;height:40px;
  align-items:center;justify-content:center;color:#fff;font-size:22px;padding:0;border-radius:8px;
}
.nav-toggle:hover{background:rgba(255,255,255,.12);}
.site-header.is-scrolled .nav-toggle{color:var(--ink);}
.mobile-menu{
  display:none;background:rgba(8,31,23,.98);padding:24px;border-radius:0 0 20px 20px;
  position:absolute;top:100%;left:16px;right:16px;z-index:99;
  box-shadow:0 20px 40px rgba(0,0,0,.28);
}
.mobile-menu.is-open{display:block;}
.mobile-menu nav{display:flex;flex-direction:column;gap:4px;margin-bottom:18px;}
.mobile-menu nav a{color:#fff;padding:10px 0;font-size:16px;border-bottom:1px solid rgba(255,255,255,.08);}
.mobile-menu nav a.is-active{color:var(--lime);}
.mobile-menu .btn{width:100%;margin-top:6px;}
.mobile-menu .mobile-search{display:block;width:100%;height:42px;border-radius:10px;border:0;background:rgba(255,255,255,.12);color:#fff;padding:0 16px;margin-bottom:14px;font-size:14px;}
.mobile-menu .mobile-search:focus{outline:none;border:2px solid var(--lime);background:#fff;color:var(--ink);}
.mobile-menu .mobile-search::placeholder{color:rgba(255,255,255,.65);}

/* hero */
.page-hero{
  position:relative;background:
    linear-gradient(100deg,rgba(8,31,23,.96) 0%,rgba(11,61,45,.82) 48%,rgba(8,31,23,.55) 100%),
    url("/assets/images/backpic/back-1.webp") center/cover no-repeat;
  margin-top:0;padding:170px 0 90px;color:#fff;overflow:hidden;
}
.page-hero::after{
  content:"";position:absolute;right:-70px;bottom:-40px;width:360px;height:360px;
  background:repeating-linear-gradient(135deg,rgba(205,242,71,.14) 0 2px,transparent 2px 16px);
  transform:rotate(-8deg);border-radius:30px;
}
.hero-breadcrumb{display:flex;flex-wrap:wrap;align-items:center;gap:8px;font-size:14px;color:rgba(255,255,255,.66);margin-bottom:22px;}
.hero-breadcrumb a:hover{color:var(--lime);}
.hero-breadcrumb i{font-size:11px;color:rgba(255,255,255,.42);}
.hero-eyebrow{
  display:inline-flex;align-items:center;gap:8px;background:rgba(205,242,71,.12);
  border:1px solid rgba(205,242,71,.32);color:var(--lime);
  padding:6px 14px;border-radius:40px;font-size:13px;font-weight:600;letter-spacing:.02em;
  margin-bottom:22px;
}
.page-hero h1{
  font-size:62px;line-height:1.1;font-weight:800;color:#fff;letter-spacing:-.02em;
  margin:0 0 20px;max-width:660px;
}
.hero-lead{
  font-size:18px;line-height:1.8;color:rgba(255,255,255,.86);max-width:620px;
  margin:0 0 26px;
}
.hero-tags{display:flex;flex-wrap:wrap;gap:10px;margin-bottom:34px;}
.hero-tag{
  display:inline-flex;align-items:center;gap:7px;background:rgba(255,255,255,.1);
  border:1px solid rgba(255,255,255,.18);backdrop-filter:blur(6px);
  padding:8px 16px;border-radius:30px;font-size:14px;font-weight:500;color:#fff;
}
.hero-tag i{color:var(--lime);font-size:12px;}
.hero-btns{display:flex;flex-wrap:wrap;gap:14px;align-items:center;}
.hero-stats{
  position:relative;display:flex;flex-wrap:wrap;gap:36px;margin-top:54px;z-index:2;
  border-top:1px solid rgba(255,255,255,.14);padding-top:26px;max-width:620px;
}
.hero-stats div{flex:1 0 150px;}
.hero-stats strong{
  display:block;font-size:34px;line-height:1.15;color:var(--lime);font-weight:800;letter-spacing:-.01em;
}
.hero-stats span{font-size:13px;color:rgba(255,255,255,.68);}

/* topic inner nav */
.topic-jump-nav{
  background:var(--green-800);color:#fff;position:relative;z-index:8;
  border-bottom:1px solid rgba(255,255,255,.06);
}
.topic-jump-nav .container{
  display:flex;align-items:center;justify-content:space-between;gap:28px;
  padding-top:20px;padding-bottom:20px;flex-wrap:wrap;
}
.topic-jump-nav .jump-label{
  display:flex;align-items:center;gap:10px;font-weight:700;color:var(--lime);letter-spacing:.04em;
}
.topic-jump-nav .jump-links{display:flex;flex-wrap:wrap;gap:6px;}
.topic-jump-nav a{
  display:inline-flex;align-items:center;gap:6px;padding:6px 14px;border-radius:6px;
  color:rgba(255,255,255,.86);font-size:14px;font-weight:500;border:1px solid transparent;
}
.topic-jump-nav a span{font-weight:800;color:var(--lime);}
.topic-jump-nav a:hover{background:rgba(255,255,255,.08);border-color:rgba(205,242,71,.22);color:var(--lime);}
.topic-jump-nav a:focus-visible{outline:2px solid var(--lime);outline-offset:2px;}

/* section head */
.section-head{margin-bottom:52px;}
.section-head .sub-label{
  color:var(--green-800);font-size:13px;font-weight:700;letter-spacing:.08em;
  display:flex;align-items:center;gap:10px;margin-bottom:12px;text-transform:uppercase;
}
.section-head .sub-label::before{content:"";width:17px;height:4px;background:var(--lime);border-radius:3px;}
.bg-deep .section-head .sub-label{color:var(--lime);}
.section-head h2{
  font-size:42px;line-height:1.2;font-weight:800;color:var(--ink);margin:0 0 14px;letter-spacing:-.015em;
}
.bg-deep .section-head h2{color:#fff;}
.section-head .section-lead{
  font-size:17px;color:var(--muted);max-width:720px;margin:0;
}
.bg-deep .section-head .section-lead{color:rgba(255,255,255,.7);}
.section-head .highlight{color:var(--green-700);}
.bg-deep .section-head .highlight{color:var(--lime);}

/* split feature blocks */
.split-block{padding:90px 0;}
.split-block:nth-of-type(even){background:var(--bg);}
.split-block .number-block{
  display:flex;gap:40px;align-items:center;flex-wrap:wrap;
}
.split-block .number-block.no-row{flex-direction:row-reverse;}
.media-col{flex:1 1 45%;min-width:320px;position:relative;}
.content-col{flex:1 1 45%;min-width:330px;padding:12px 0;}
.media-frame{
  border-radius:26px;overflow:hidden;box-shadow:var(--shadow-md);position:relative;
  aspect-ratio:4/3;background:var(--green-800);
}
.media-frame img{width:100%;height:100%;object-fit:cover;transition:transform .5s ease;}
.media-frame:hover img{transform:scale(1.04);}
.media-tag{
  position:absolute;left:18px;top:18px;background:var(--lime);color:var(--green-900);
  font-size:13px;font-weight:800;letter-spacing:.05em;padding:6px 13px;border-radius:30px;z-index:2;
  box-shadow:0 6px 18px rgba(0,0,0,.16);
}
.content-col .num-caption{
  display:flex;align-items:center;gap:13px;margin-bottom:18px;
}
.num-caption .num{
  width:52px;height:52px;border-radius:16px;background:var(--green-800);color:var(--lime);
  display:flex;align-items:center;justify-content:center;font-size:18px;font-weight:900;
  box-shadow:0 0 0 6px rgba(11,61,45,.08);letter-spacing:.02em;
}
.num-caption .cat{font-weight:700;font-size:15px;color:var(--green-700);letter-spacing:.02em;}
.content-col h2{
  font-size:36px;line-height:1.25;font-weight:800;color:var(--ink);
  margin:0 0 18px;letter-spacing:-.015em;
}
.content-col .desc{font-size:16px;line-height:1.9;color:var(--muted);margin-bottom:26px;}
.feature-checklist{display:grid;gap:12px;margin-bottom:26px;}
.feature-checklist li{
  display:flex;align-items:flex-start;gap:10px;background:var(--white);border-radius:12px;
  border:1px solid var(--border);padding:12px 16px;font-size:15px;color:var(--ink);
  box-shadow:0 1px 4px rgba(0,0,0,.02);transition:border-color .2s,box-shadow .2s;
}
.feature-checklist li:hover{border-color:var(--green-800);box-shadow:var(--shadow-sm);}
.feature-checklist i{
  color:var(--green-800);background:rgba(205,242,71,.48);width:24px;height:24px;border-radius:8px;
  display:flex;align-items:center;justify-content:center;font-size:12px;flex-shrink:0;margin-top:3px;
}
.feature-checklist strong{font-weight:700;margin-right:6px;}
.content-col .topic-link{
  display:inline-flex;align-items:center;gap:8px;font-weight:700;color:var(--green-800);
  border-bottom:2px solid var(--lime);padding-bottom:4px;font-size:15px;
}
.content-col .topic-link i{transition:transform .25s;}
.content-col .topic-link:hover{color:var(--green-900);}
.content-col .topic-link:hover i{transform:translateX(4px);}
.bg-deep .mode-deco{display:none;}

/* more topics list */
.more-topics{background:var(--green-900);color:#fff;position:relative;overflow:hidden;}
.more-topics::before{
  content:"PROJECTS";position:absolute;right:-20px;bottom:10px;font-size:180px;font-weight:900;
  color:rgba(255,255,255,.03);letter-spacing:-.04em;white-space:nowrap;line-height:1;
}
.topic-list{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:14px;border-top:1px solid rgba(255,255,255,.08);padding-top:28px;position:relative;z-index:2;}
.topic-list li{
  background:rgba(255,255,255,.05);border:1px solid rgba(255,255,255,.1);border-radius:14px;
  padding:18px 20px;display:flex;gap:16px;align-items:flex-start;transition:all .25s ease;
}
.topic-list li:hover{background:rgba(255,255,255,.09);transform:translateX(3px);border-color:var(--lime);}
.topic-list i{
  font-size:14px;color:var(--lime);background:rgba(205,242,71,.13);width:36px;height:36px;
  border-radius:10px;display:flex;align-items:center;justify-content:center;flex-shrink:0;
}
.topic-list h3{font-size:16px;font-weight:700;color:#fff;margin:0 0 6px;}
.topic-list p{font-size:14px;color:rgba(255,255,255,.62);margin:0;line-height:1.7;}

/* prep steps */
.step-box{
  background:var(--white);border-radius:20px;border:1px solid var(--border);height:100%;
  padding:28px;box-shadow:var(--shadow-sm);position:relative;transition:all .28s ease;overflow:hidden;
}
.step-box::before{content:"";position:absolute;left:0;top:0;bottom:0;width:5px;background:var(--lime);}
.step-box:hover{box-shadow:var(--shadow-md);transform:translateY(-4px);}
.step-index{font-size:14px;font-weight:900;color:var(--green-800);letter-spacing:.1em;margin-bottom:20px;background:rgba(205,242,71,.35);display:inline-block;padding:4px 10px;border-radius:6px;}
.step-box h3{font-size:20px;font-weight:800;margin:0 0 12px;color:var(--ink);}
.step-box p{font-size:15px;line-height:1.85;color:var(--muted);margin:0;}
.prep-note{
  margin-top:36px;background:#F0F1EC;border-radius:16px;display:flex;gap:14px;padding:16px 20px;
  align-items:flex-start;font-size:15px;color:var(--ink);
}
.prep-note i{color:var(--green-800);font-size:19px;margin-top:4px;}
.prep-note p{margin:0;}

/* FAQ */
.faq-wrap .faq-list{display:grid;gap:12px;}
.faq-item{
  background:var(--white);border:1px solid var(--border);border-radius:16px;
  transition:box-shadow .25s,border-color .25s;
}
.faq-item.is-active{border-color:var(--green-800);box-shadow:0 10px 26px rgba(11,61,45,.06);}
.faq-item-title{
  width:100%;text-align:left;background:transparent;border:0;cursor:pointer;
  display:flex;align-items:center;justify-content:space-between;gap:18px;
  padding:20px 24px;font-family:var(--font-base);font-size:17px;font-weight:700;color:var(--ink);
  border-radius:16px;
}
.faq-item-title:hover{color:var(--green-800);}
.faq-item-title:focus-visible{outline:2px solid var(--lime);outline-offset:2px;border-radius:14px;}
.faq-item-title .icon{
  width:26px;height:26px;background:var(--lime);border-radius:50%;color:var(--green-900);
  display:flex;align-items:center;justify-content:center;flex-shrink:0;
  font-size:14px;transition:transform .25s;
}
.faq-item.is-active .icon{transform:rotate(135deg);}
.faq-item-answer{display:none;padding:0 24px 22px;font-size:15px;color:var(--muted);line-height:1.95;border-top:1px dashed var(--border);margin-top:0;}
.faq-item-answer p{margin:14px 0 0;}
.faq-item.is-active .faq-item-answer{display:block;}
.faq-more{display:flex;align-items:center;justify-content:center;margin-top:32px;}
.faq-more a{font-weight:600;color:var(--green-800);border-bottom:2px solid var(--lime);padding-bottom:2px;}

/* CTA */
.cta-block{background:linear-gradient(120deg,var(--green-900),#114D37);position:relative;overflow:hidden;}
.cta-block::before{
  content:"";position:absolute;width:460px;height:180px;background:var(--lime);
  right:-80px;top:60px;transform:rotate(-18deg);opacity:.10;border-radius:40px;
}
.cta-block::after{
  content:"";position:absolute;width:1px;background:rgba(255,255,255,.12);top:0;bottom:0;
  left:8%;transform:skewX(-12deg);
}
.cta-card{
  background:rgba(255,255,255,.06);border:1px solid rgba(255,255,255,.12);backdrop-filter:blur(8px);
  border-radius:28px;padding:54px 58px;position:relative;overflow:hidden;
}
.cta-text h2{font-size:38px;font-weight:800;color:#fff;margin:0 0 16px;line-height:1.2;}
.cta-text p{color:rgba(255,255,255,.78);font-size:17px;max-width:580px;margin:0;}
.cta-actions{display:flex;flex-wrap:wrap;gap:16px;margin-top:34px;}
.cta-contact{margin-top:38px;display:flex;flex-wrap:wrap;gap:33px;border-top:1px solid rgba(255,255,255,.14);padding-top:22px;}
.cta-contact div{font-size:14px;color:rgba(255,255,255,.72);}
.cta-contact strong{display:block;color:#fff;font-size:15px;margin-bottom:2px;}

/* footer */
.site-footer{
  background:var(--green-900);color:rgba(255,255,255,.76);padding-top:62px;
  font-size:14px;line-height:1.9;
}
.site-footer .footer-top{
  display:grid;grid-template-columns:minmax(280px,1.5fr) 1fr 1fr 1.2fr;
  gap:44px;padding-bottom:42px;border-bottom:1px solid rgba(255,255,255,.09);
}
.footer-brand-name{display:flex;align-items:center;gap:10px;margin-bottom:14px;}
.footer-brand-name .brand-mark{
  width:46px;height:46px;background:var(--lime);color:var(--green-900);
  border-radius:14px;display:flex;align-items:center;justify-content:center;font-weight:900;font-size:16px;
}
.footer-brand-name>span:last-child{color:#fff;font-weight:800;font-size:21px;}
.footer-about{font-size:14px;line-height:1.9;color:rgba(255,255,255,.6);max-width:420px;margin-bottom:14px;}
.footer-title{color:#fff;font-size:16px;font-weight:700;margin-bottom:16px;}
.footer-links{display:flex;flex-direction:column;gap:7px;}
.footer-links a{width:fit-content;color:rgba(255,255,255,.66);}
.footer-links a:hover{color:var(--lime);}
.footer-contact p{margin-bottom:12px;font-size:14px;}
.footer-contact strong{display:block;color:rgba(255,255,255,.86);}
.footer-contact a{color:var(--lime);}
.footer-bottom{
  padding:20px 0;font-size:13px;color:rgba(255,255,255,.48);
  display:flex;flex-wrap:wrap;justify-content:space-between;gap:10px;
}

/* responsive */
@media screen and (max-width:1024px){
  .main-nav{display:none;}
  .site-header .header-tools .nav-search{display:none;}
  .header-tools .header-login,.btn.header-cta{display:none;}
  .nav-toggle{display:inline-flex;}
  .footer-top{grid-template-columns:1fr 1fr;}
}
@media screen and (max-width:860px){
  .footer-top{grid-template-columns:1fr;}
}
@media screen and (max-width:840px){
  .split-block .number-block,.split-block .number-block.no-row{flex-direction:column;gap:30px;}
  .media-col,.content-col{flex:1 1 100%;min-width:auto;}
  .topic-list{grid-template-columns:1fr;}
}
@media screen and (max-width:640px){
  .container{padding-left:16px;padding-right:16px;}
  .page-hero{padding:132px 0 58px;}
  .page-hero h1{font-size:38px;}
  .hero-lead{font-size:16px;}
  .hero-stats{gap:14px;margin-top:34px;}
  .hero-stats div{flex-basis:calc(33% - 12px);}
  .section-head h2{font-size:30px;}
  .content-col h2{font-size:27px;}
  .section{padding-top:56px;padding-bottom:56px;}
  .split-block{padding:56px 0;}
  .topic-jump-nav .container{flex-direction:column;align-items:flex-start;gap:10px;}
  .footer-bottom{flex-direction:column;}
  .cta-card{padding:34px 22px;border-radius:20px;}
  .cta-text h2{font-size:28px;}
  .brand-text{font-size:19px;}
  .brand-mark{width:38px;height:38px;border-radius:11px;font-size:14px;}
  .faq-item-title{font-size:16px;padding:17px 18px;}
  .faq-item-answer{padding:0 18px 18px;}
  .cta-contact{flex-direction:column;gap:18px;}
}
@media screen and (max-width:380px){
  .hero-tags{gap:7px;}
  .hero-btns .btn{width:100%;}
  .hero-stats strong{font-size:26px;}
  .page-hero h1{font-size:34px;}
}
@media (prefers-reduced-motion:reduce){
  *,*::before,*::after{transition:none!important;animation:none!important;}
}

/* roulang page: category3 */
:root {
            --green: #0B3D2D;
            --lime: #CDF247;
            --dark: #081F17;
            --ink: #FEFFF5;
            --bg: #F6F5EF;
            --white: #FFFFFF;
            --text: #1E2822;
            --muted: #5A665E;
            --line: #DDE3D6;
            --orange: #FF6B2C;
            --radius: 16px;
            --shadow: 0 2px 10px rgba(0, 0, 0, .05);
            --shadow-hover: 0 8px 22px rgba(0, 0, 0, .08);
            --space-lg: 96px;
            --space-sm: 56px;
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            margin: 0;
            font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", "Microsoft YaHei", "Noto Sans SC", sans-serif;
            color: var(--text);
            background: var(--bg);
            line-height: 1.7;
            font-size: 16px;
            -webkit-font-smoothing: antialiased;
        }

        body.is-locked {
            overflow: hidden;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        a {
            color: var(--green);
            text-decoration: none;
            transition: color .2s ease, background .2s ease, border-color .2s ease, transform .2s ease;
        }

        button,
        input {
            font-family: inherit;
            font-size: inherit;
        }

        h1,
        h2,
        h3,
        h4,
        p,
        ul,
        figure {
            margin: 0;
        }

        h1,
        h2,
        h3,
        h4 {
            line-height: 1.25;
            color: var(--text);
        }

        ::selection {
            background: var(--lime);
            color: var(--green);
        }

        :focus-visible {
            outline: 2px solid var(--lime);
            outline-offset: 3px;
        }

        [id] {
            scroll-margin-top: 90px;
        }

        .container {
            max-width: 1200px;
            margin-left: auto;
            margin-right: auto;
            padding-left: 24px;
            padding-right: 24px;
        }

        .section {
            padding-top: var(--space-lg);
            padding-bottom: var(--space-lg);
        }

        .section-tight {
            padding-top: 56px;
            padding-bottom: 56px;
        }

        .section-bg-white {
            background: var(--white);
        }

        .section-bg-soft {
            background: #EEF2E6;
        }

        .section-bg-dark {
            background: var(--dark);
            color: #F6F5EF;
        }

        .section-bg-dark h2,
        .section-bg-dark h3 {
            color: var(--white);
        }

        .sr-only {
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0, 0, 0, 0);
            white-space: nowrap;
            border: 0;
        }

        .section-head {
            display: flex;
            align-items: flex-end;
            justify-content: space-between;
            gap: 20px;
            margin-bottom: 32px;
            flex-wrap: wrap;
        }

        .section-kicker {
            color: var(--green);
            font-size: 13px;
            font-weight: 700;
            letter-spacing: .1em;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 8px;
        }

        .section-kicker::before {
            content: "";
            width: 18px;
            height: 4px;
            background: var(--lime);
            border-radius: 999px;
        }

        .section-bg-dark .section-kicker {
            color: var(--lime);
        }

        .section-title {
            font-size: clamp(28px, 3.6vw, 38px);
            font-weight: 800;
            letter-spacing: -.02em;
        }

        .section-subnote {
            color: var(--muted);
            max-width: 360px;
            font-size: 15px;
        }

        .section-bg-dark .section-subnote {
            color: rgba(255, 255, 255, .72);
        }

        .grid-x.grid-padding-x>.cell {
            padding-left: 12px;
            padding-right: 12px;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            border: 1px solid transparent;
            border-radius: 12px;
            font-weight: 700;
            line-height: 1;
            cursor: pointer;
            transition: background .22s ease, color .22s ease, border-color .22s ease, transform .22s ease;
            min-height: 48px;
            padding: 0 22px;
            font-size: 16px;
        }

        .btn-primary {
            background: var(--green);
            color: #fff;
        }

        .btn-primary:hover {
            background: var(--lime);
            color: var(--green);
            transform: translateX(2px);
        }

        .btn-lime {
            background: var(--lime);
            color: var(--green);
        }

        .btn-lime:hover {
            background: var(--white);
            color: var(--green);
            transform: translateX(2px);
        }

        .btn-outline {
            background: transparent;
            border-color: rgba(255, 255, 255, .35);
            color: #fff;
        }

        .btn-outline:hover {
            background: var(--white);
            color: var(--green);
            border-color: var(--white);
        }

        .btn-sm {
            min-height: 36px;
            padding: 0 14px;
            font-size: 14px;
            border-radius: 10px;
        }

        .site-header {
            position: sticky;
            top: 0;
            z-index: 99;
            background: rgba(8, 31, 23, .88);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(255, 255, 255, .08);
            transition: background .25s ease, box-shadow .25s ease, border-color .25s ease;
        }

        .site-header.is-scrolled {
            background: rgba(255, 255, 255, .96);
            border-color: rgba(11, 61, 45, .1);
            box-shadow: 0 6px 24px rgba(8, 31, 23, .08);
        }

        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            min-height: 76px;
            gap: 28px;
            padding-top: 10px;
            padding-bottom: 10px;
        }

        .brand-logo {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            flex-shrink: 0;
        }

        .brand-mark {
            width: 38px;
            height: 38px;
            border-radius: 10px;
            background: var(--lime);
            color: var(--green);
            font-weight: 900;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
            letter-spacing: -.02em;
        }

        .brand-name {
            color: #fff;
            font-weight: 900;
            font-size: 21px;
            letter-spacing: -.02em;
        }

        .brand-name .brand-sub {
            font-size: 13px;
            font-weight: 500;
            opacity: .7;
            margin-left: 2px;
        }

        .site-header.is-scrolled .brand-name {
            color: var(--dark);
        }

        .site-header.is-scrolled .brand-name .brand-sub {
            color: var(--muted);
            opacity: 1;
        }

        .nav-wrap {
            display: flex;
            align-items: center;
            justify-content: flex-end;
            gap: 24px;
            flex: 1;
            min-width: 0;
        }

        .main-nav {
            display: flex;
            align-items: center;
            gap: clamp(12px, 1.8vw, 28px);
            flex-wrap: nowrap;
        }

        .main-nav a {
            color: rgba(255, 255, 255, .88);
            font-size: 15px;
            font-weight: 600;
            position: relative;
            padding: 8px 2px;
            white-space: nowrap;
            line-height: 1.4;
        }

        .main-nav a::after {
            content: "";
            position: absolute;
            left: 0;
            right: 0;
            bottom: 2px;
            height: 2px;
            background: var(--lime);
            border-radius: 999px;
            transform: scaleX(0);
            transform-origin: left center;
            transition: transform .22s ease;
        }

        .main-nav a:hover,
        .main-nav a:focus-visible {
            color: var(--lime);
        }

        .main-nav a:hover::after,
        .main-nav a:focus-visible::after,
        .main-nav a.is-active::after {
            transform: scaleX(1);
        }

        .main-nav a.is-active {
            color: var(--lime);
        }

        .site-header.is-scrolled .main-nav a {
            color: var(--text);
        }

        .site-header.is-scrolled .main-nav a:hover,
        .site-header.is-scrolled .main-nav a:focus-visible,
        .site-header.is-scrolled .main-nav a.is-active {
            color: var(--green);
        }

        .site-header.is-scrolled .main-nav a::after {
            background: var(--green);
        }

        .nav-tools {
            display: flex;
            align-items: center;
            gap: 14px;
            flex-shrink: 0;
        }

        .header-search {
            display: flex;
            align-items: center;
            background: rgba(255, 255, 255, .12);
            border: 1px solid rgba(255, 255, 255, .18);
            border-radius: 999px;
            padding: 0 12px;
            min-height: 36px;
        }

        .site-header.is-scrolled .header-search {
            background: #F0F1EC;
            border-color: #E2E7DC;
        }

        .header-search input {
            border: 0;
            background: transparent;
            color: #fff;
            font-size: 13px;
            padding: 8px 4px;
            width: 132px;
            outline: none;
        }

        .site-header.is-scrolled .header-search input {
            color: var(--text);
        }

        .header-search input::placeholder {
            color: rgba(255, 255, 255, .55);
        }

        .site-header.is-scrolled .header-search input::placeholder {
            color: #9AA39C;
        }

        .search-icon {
            width: 14px;
            height: 14px;
            border: 2px solid rgba(255, 255, 255, .6);
            border-radius: 50%;
            display: inline-block;
            position: relative;
            flex-shrink: 0;
        }

        .search-icon::after {
            content: "";
            position: absolute;
            width: 2px;
            height: 6px;
            background: rgba(255, 255, 255, .6);
            right: -4px;
            border-radius: 999px;
            transform: rotate(-45deg);
            bottom: -4px;
        }

        .site-header.is-scrolled .search-icon {
            border-color: var(--muted);
        }

        .site-header.is-scrolled .search-icon::after {
            background: var(--muted);
        }

        .login-link {
            color: #fff;
            font-size: 14px;
            font-weight: 600;
            background: transparent;
            border: 0;
            cursor: pointer;
            padding: 8px 4px;
        }

        .site-header.is-scrolled .login-link {
            color: var(--text);
        }

        .login-link:hover {
            color: var(--lime);
        }

        .site-header.is-scrolled .login-link:hover {
            color: var(--green);
        }

        .nav-toggle {
            display: none;
            width: 42px;
            height: 42px;
            border: 0;
            border-radius: 10px;
            background: rgba(255, 255, 255, .1);
            cursor: pointer;
            align-items: center;
            justify-content: center;
            flex-direction: column;
            gap: 5px;
            flex-shrink: 0;
        }

        .site-header.is-scrolled .nav-toggle {
            background: #E9EDE3;
        }

        .nav-toggle span {
            display: block;
            width: 18px;
            height: 2px;
            background: #fff;
            border-radius: 99px;
            transition: transform .2s ease, opacity .2s ease, background .2s ease;
        }

        .site-header.is-scrolled .nav-toggle span {
            background: var(--dark);
        }

        .site-header.nav-open .nav-toggle span:nth-child(1) {
            transform: translateY(7px) rotate(45deg);
        }

        .site-header.nav-open .nav-toggle span:nth-child(2) {
            opacity: 0;
        }

        .site-header.nav-open .nav-toggle span:nth-child(3) {
            transform: translateY(-7px) rotate(-45deg);
        }

        .page-hero {
            position: relative;
            background: linear-gradient(100deg, rgba(8, 31, 23, .96) 0%, rgba(9, 42, 31, .88) 52%, rgba(11, 61, 45, .62) 100%), url('/assets/images/backpic/back-1.webp') center / cover no-repeat;
            color: #fff;
            padding: 76px 0 72px;
            overflow: hidden;
        }

        .page-hero::after {
            content: "DATA / RANK";
            position: absolute;
            right: -20px;
            top: 30px;
            font-size: clamp(120px, 16vw, 200px);
            font-weight: 900;
            color: rgba(255, 255, 255, .04);
            line-height: 1;
            letter-spacing: -.05em;
            pointer-events: none;
        }

        .page-hero .hero-title {
            color: #fff;
            font-size: clamp(42px, 6.4vw, 66px);
            font-weight: 900;
            max-width: 760px;
            letter-spacing: -.03em;
            line-height: 1.1;
            margin-top: 12px;
            margin-bottom: 20px;
        }

        .page-hero .hero-kicker {
            color: var(--lime);
            font-size: 14px;
            font-weight: 700;
            letter-spacing: .08em;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .page-hero .hero-desc {
            color: rgba(255, 255, 255, .82);
            font-size: 17px;
            max-width: 720px;
            line-height: 1.85;
            margin-bottom: 28px;
        }

        .tag-filter {
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            gap: 10px;
        }

        .tag-filter .filter-label {
            color: rgba(255, 255, 255, .6);
            font-size: 13px;
            margin-right: 4px;
        }

        .filter-chip {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 8px 15px;
            border-radius: 999px;
            background: rgba(255, 255, 255, .12);
            border: 1px solid rgba(255, 255, 255, .16);
            color: #fff;
            font-size: 14px;
            font-weight: 600;
            transition: background .2s ease, border-color .2s ease, color .2s ease, transform .2s ease;
        }

        .filter-chip:hover {
            background: var(--lime);
            color: var(--green);
            border-color: var(--lime);
            transform: translateY(-1px);
        }

        .stat-band {
            background: var(--white);
            border-bottom: 1px solid #EAEEE4;
            padding: 28px 0;
        }

        .stat-band-inner {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
        }

        .stat-card {
            display: flex;
            align-items: center;
            gap: 14px;
            padding: 4px 8px;
        }

        .stat-icon {
            width: 48px;
            height: 48px;
            background: #EDF5D0;
            border-radius: 14px;
            color: var(--green);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            font-weight: 900;
            font-size: 18px;
        }

        .stat-num {
            font-size: 30px;
            color: var(--green);
            font-weight: 900;
            line-height: 1;
            letter-spacing: -.02em;
            font-feature-settings: "tnum";
        }

        .stat-num small {
            font-size: 14px;
            font-weight: 600;
            color: var(--muted);
            margin-left: 4px;
        }

        .stat-label {
            display: block;
            color: var(--muted);
            font-size: 13px;
        }

        .rank-board {
            background: var(--white);
            border-radius: 20px;
            border: 1px solid #E4E9DF;
            box-shadow: var(--shadow);
            padding: 12px 24px;
        }

        .rank-item {
            display: grid;
            grid-template-columns: 52px minmax(190px, 250px) 1fr 70px;
            align-items: center;
            gap: 20px;
            padding: 20px 4px;
            border-bottom: 1px solid #EDF0E8;
            transition: background .2s ease, transform .2s ease;
        }

        .rank-item:last-child {
            border-bottom: 0;
        }

        .rank-item:hover {
            background: #F9FBF1;
            transform: translateX(2px);
        }

        .rank-no {
            width: 42px;
            height: 42px;
            border-radius: 12px;
            background: #EEF1E9;
            color: var(--muted);
            font-weight: 800;
            display: flex;
            align-items: center;
            justify-content: center;
            font-feature-settings: "tnum";
            font-size: 17px;
        }

        .rank-item.is-top .rank-no {
            background: var(--green);
            color: var(--lime);
        }

        .rank-main {
            min-width: 0;
        }

        .rank-name-line {
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            gap: 8px;
        }

        .rank-name-line h3 {
            font-size: 17px;
            font-weight: 700;
            letter-spacing: -.01em;
        }

        .rank-tag {
            display: inline-flex;
            background: #F0F3E9;
            color: var(--green);
            border-radius: 999px;
            font-size: 12px;
            padding: 3px 8px;
        }

        .rank-main p {
            color: var(--muted);
            font-size: 13px;
            margin-top: 4px;
        }

        .top-flag {
            display: inline-block;
            background: var(--lime);
            color: var(--dark);
            border-radius: 999px;
            padding: 2px 8px;
            font-size: 12px;
            font-weight: 700;
        }

        .rank-meter {
            display: flex;
            align-items: center;
            gap: 14px;
        }

        .rank-meter .meter {
            height: 8px;
            background: #E8ECE3;
            border-radius: 99px;
            flex: 1;
            overflow: hidden;
        }

        .rank-meter .meter span {
            display: block;
            height: 100%;
            background: var(--green);
            border-radius: 99px;
        }

        .rank-meter .heat-no {
            display: inline-flex;
            align-items: baseline;
            gap: 2px;
            justify-content: flex-end;
        }

        .rank-meter .heat-no strong {
            color: var(--green);
            font-size: 22px;
            font-weight: 900;
            font-feature-settings: "tnum";
        }

        .rank-meter .heat-no small {
            color: var(--muted);
            font-size: 12px;
        }

        .data-note {
            margin-top: 20px;
            font-size: 13px;
            color: var(--muted);
            border-left: 3px solid var(--lime);
            padding-left: 14px;
        }

        .table-scroll {
            overflow-x: auto;
            background: var(--white);
            border-radius: 20px;
            border: 1px solid #E4E9DF;
            box-shadow: var(--shadow);
        }

        .data-table {
            width: 100%;
            border-collapse: collapse;
            min-width: 720px;
            background: var(--white);
        }

        .data-table th {
            background: var(--green);
            color: #fff;
            font-size: 14px;
            font-weight: 700;
            padding: 14px 18px;
            text-align: left;
            white-space: nowrap;
        }

        .data-table th:first-child {
            border-radius: 20px 0 0 0;
        }

        .data-table th:last-child {
            border-radius: 0 20px 0 0;
        }

        .data-table td {
            padding: 15px 18px;
            border-bottom: 1px solid #ECEFE8;
            font-size: 15px;
            vertical-align: middle;
        }

        .data-table tr:last-child td {
            border-bottom: 0;
        }

        .data-table tbody tr:hover {
            background: #F8FAF2;
        }

        .status-tag {
            display: inline-flex;
            align-items: center;
            gap: 5px;
            font-size: 13px;
            font-weight: 700;
            padding: 4px 10px;
            border-radius: 999px;
        }

        .status-tag.open {
            background: #E4F7B0;
            color: #274D09;
        }

        .status-tag.wait {
            background: #FFF0DE;
            color: #B4461B;
        }

        .status-tag.end {
            background: #ECEFE9;
            color: #667168;
        }

        .column-block {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 48px;
            align-items: center;
        }

        .dark-card {
            background: var(--dark);
            border-radius: 20px;
            padding: 34px;
            color: #fff;
            height: 100%;
            position: relative;
            overflow: hidden;
        }

        .dark-card::after {
            content: "";
            position: absolute;
            right: -24px;
            bottom: -24px;
            width: 90px;
            height: 90px;
            background: rgba(205, 242, 71, .12);
            transform: rotate(20deg);
        }

        .dark-card .data-group-label {
            color: var(--lime);
            font-size: 13px;
            font-weight: 700;
            letter-spacing: .08em;
        }

        .dark-card h3 {
            color: #fff;
            font-size: 21px;
            font-weight: 800;
            margin: 10px 0 16px;
        }

        .dark-card p {
            color: rgba(255, 255, 255, .7);
            font-size: 14px;
            line-height: 1.8;
        }

        .metric-list {
            display: flex;
            flex-direction: column;
            gap: 14px;
            margin-top: 24px;
        }

        .metric-list span {
            display: grid;
            grid-template-columns: 22px 1fr;
            gap: 8px;
            color: rgba(255, 255, 255, .82);
            font-size: 14px;
        }

        .decimal-mark {
            width: 8px;
            height: 8px;
            background: var(--lime);
            transform: rotate(45deg);
            margin-top: 7px;
        }

        .photo-figure {
            border-radius: 20px;
            overflow: hidden;
            box-shadow: var(--shadow-hover);
            background: #E5E9DF;
        }

        .photo-figure img {
            width: 100%;
            object-fit: cover;
            aspect-ratio: 4 / 3;
        }

        .photo-figure figcaption {
            padding: 10px 16px;
            font-size: 13px;
            color: var(--muted);
            background: var(--white);
        }

        .feature-list {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
            margin-top: 36px;
        }

        .feature-list .feature-block {
            background: var(--white);
            border-radius: 18px;
            padding: 26px;
            box-shadow: var(--shadow);
            border: 1px solid #E8ECE2;
            transition: transform .2s ease, box-shadow .2s ease;
        }

        .feature-list .feature-block:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-hover);
        }

        .feature-number {
            color: var(--green);
            font-size: 13px;
            font-weight: 900;
            letter-spacing: .06em;
        }

        .feature-list h3 {
            font-size: 17px;
            margin: 12px 0 8px;
        }

        .feature-list p {
            color: var(--muted);
            font-size: 14px;
            line-height: 1.8;
        }

        .faq-list {
            max-width: 860px;
            margin: 0 auto;
        }

        .faq-item {
            background: var(--white);
            border: 1px solid #E7EBE1;
            border-radius: 16px;
            margin-bottom: 14px;
            overflow: hidden;
            transition: box-shadow .2s ease, border-color .2s ease;
        }

        .faq-item.is-open {
            box-shadow: var(--shadow);
            border-color: #C8D9A8;
        }

        .faq-q {
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 18px;
            border: 0;
            background: transparent;
            text-align: left;
            padding: 20px 24px;
            font-size: 16px;
            font-weight: 700;
            color: var(--text);
            cursor: pointer;
        }

        .faq-q .faq-plus {
            width: 24px;
            height: 24px;
            border-radius: 50%;
            background: #EEF1E9;
            color: var(--green);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            font-weight: 700;
            transition: transform .2s ease, background .2s ease, color .2s ease;
            flex-shrink: 0;
        }

        .faq-item.is-open .faq-q .faq-plus {
            transform: rotate(45deg);
            background: var(--lime);
            color: var(--green);
        }

        .faq-a {
            max-height: 0;
            overflow: hidden;
            transition: max-height .28s ease;
        }

        .faq-item.is-open .faq-a {
            max-height: 300px;
        }

        .faq-a-inner {
            padding: 0 24px 22px;
            color: var(--muted);
            font-size: 15px;
            line-height: 1.9;
            border-top: 1px solid #EEF1E9;
            padding-top: 16px;
            margin: 0 24px 20px;
            padding-right: 0;
            padding-left: 0;
        }

        .cta-area {
            background: linear-gradient(135deg, #081F17 0%, #0B3D2D 68%, #123F2F 100%);
            border-radius: 24px;
            padding: 48px 48px;
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 34px;
            margin: var(--space-lg) 0;
        }

        .cta-area::before {
            content: "";
            position: absolute;
            top: 0;
            right: 0;
            width: 220px;
            height: 220px;
            background: repeating-linear-gradient(-45deg, rgba(205, 242, 71, .1) 0, rgba(205, 242, 71, .1) 2px, transparent 2px, transparent 12px);
        }

        .cta-copy {
            position: relative;
            z-index: 1;
        }

        .cta-copy h2 {
            color: #fff;
            font-size: clamp(26px, 3vw, 36px);
            font-weight: 900;
            margin: 10px 0 12px;
            letter-spacing: -.02em;
        }

        .cta-copy p {
            color: rgba(255, 255, 255, .72);
            max-width: 640px;
            font-size: 15px;
        }

        .cta-action {
            position: relative;
            z-index: 1;
            flex-shrink: 0;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .cta-action small {
            color: rgba(255, 255, 255, .6);
            font-size: 13px;
            text-align: center;
        }

        .site-footer {
            background: var(--dark);
            color: rgba(255, 255, 255, .75);
            font-size: 14px;
        }

        .site-footer .container {
            padding-top: 48px;
            padding-bottom: 24px;
        }

        .footer-top {
            display: grid;
            grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
            gap: 40px;
            padding-bottom: 32px;
            border-bottom: 1px solid rgba(255, 255, 255, .1);
        }

        .footer-brand-name {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 21px;
            font-weight: 900;
            color: #fff;
            margin-bottom: 14px;
        }

        .footer-brand-name .brand-mark {
            width: 36px;
            height: 36px;
            background: var(--lime);
            color: var(--dark);
            border-radius: 10px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 13px;
            font-weight: 900;
        }

        .footer-about {
            color: rgba(255, 255, 255, .6);
            font-size: 13px;
            line-height: 1.9;
            max-width: 280px;
        }

        .footer-title {
            color: #fff;
            font-size: 14px;
            font-weight: 700;
            margin-bottom: 14px;
        }

        .footer-links {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .footer-links a {
            color: rgba(255, 255, 255, .62);
            font-size: 13px;
            line-height: 1.6;
            width: fit-content;
        }

        .footer-links a:hover {
            color: var(--lime);
        }

        .footer-contact p {
            margin-bottom: 10px;
            font-size: 13px;
            color: rgba(255, 255, 255, .62);
        }

        .footer-contact strong {
            color: rgba(255, 255, 255, .9);
        }

        .footer-contact a {
            color: rgba(255, 255, 255, .8);
        }

        .footer-contact a:hover {
            color: var(--lime);
        }

        .footer-bottom {
            display: flex;
            justify-content: space-between;
            gap: 16px;
            flex-wrap: wrap;
            padding-top: 20px;
            color: rgba(255, 255, 255, .45);
            font-size: 13px;
        }

        @media (max-width: 1120px) {
            .header-search {
                display: none;
            }

            .main-nav {
                gap: 12px;
            }
        }

        @media (max-width: 1023px) {
            .nav-wrap {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: var(--dark);
                border-radius: 0 0 18px 18px;
                padding: 20px 24px 24px;
                flex-direction: column;
                align-items: stretch;
                border-top: 1px solid rgba(255, 255, 255, .08);
                box-shadow: 0 16px 30px rgba(0, 0, 0, .2);
            }

            .site-header.nav-open .nav-wrap {
                display: flex;
            }

            .site-header.is-scrolled .nav-toggle span {
                background: #fff;
            }

            .site-header.nav-open .main-nav {
                flex-direction: column;
                align-items: flex-start;
                gap: 8px;
            }

            .main-nav a {
                color: #fff;
            }

            .site-header.is-scrolled .main-nav a {
                color: #fff;
            }

            .main-nav a.is-active {
                color: var(--lime);
            }

            .nav-tools {
                flex-wrap: wrap;
                justify-content: space-between;
                margin-top: 16px;
                padding-top: 16px;
                border-top: 1px solid rgba(255, 255, 255, .12);
            }

            .login-link {
                color: var(--lime);
            }

            .site-header.is-scrolled .login-link {
                color: var(--lime);
            }

            .header-search {
                display: flex;
                width: 100%;
                order: 3;
                margin-top: 12px;
            }

            .header-search input {
                width: 100%;
            }

            .nav-toggle {
                display: flex;
            }

            .stat-band-inner {
                grid-template-columns: repeat(2, 1fr);
                gap: 16px;
            }

            .rank-item {
                grid-template-columns: 46px 1fr;
                gap: 14px;
            }

            .rank-meter {
                grid-column: 1 / 3;
            }

            .column-block {
                grid-template-columns: 1fr;
                gap: 28px;
            }

            .feature-list {
                grid-template-columns: 1fr;
                gap: 16px;
            }

            .cta-area {
                flex-direction: column;
                align-items: flex-start;
                padding: 36px 24px;
            }

            .footer-top {
                grid-template-columns: 1fr 1fr;
                gap: 32px;
            }
        }

        @media (max-width: 700px) {
            .container {
                padding-left: 16px;
                padding-right: 16px;
            }

            .section {
                padding-top: var(--space-sm);
                padding-bottom: var(--space-sm);
            }

            .brand-name {
                font-size: 18px;
            }

            .header-inner {
                gap: 12px;
            }

            .page-hero {
                padding: 54px 0 58px;
            }

            .page-hero .hero-title {
                font-size: 36px;
            }

            .page-hero .hero-desc {
                font-size: 15px;
            }

            .tag-filter {
                gap: 8px;
            }

            .filter-chip {
                font-size: 13px;
                padding: 7px 12px;
            }

            .stat-band-inner {
                grid-template-columns: 1fr;
                gap: 10px;
            }

            .stat-card {
                padding: 8px 0;
                border-bottom: 1px solid #EDF0E8;
            }

            .stat-card:last-child {
                border-bottom: 0;
            }

            .section-title {
                font-size: 27px;
            }

            .section-head {
                align-items: flex-start;
                flex-direction: column;
                gap: 10px;
            }

            .rank-board {
                padding: 8px 16px;
            }

            .rank-item {
                grid-template-columns: 1fr;
                gap: 12px;
                padding: 18px 2px;
            }

            .rank-no {
                width: 34px;
                height: 34px;
                font-size: 15px;
            }

            .rank-meter {
                grid-column: auto;
            }

            .rank-meter .heat-no strong {
                font-size: 19px;
            }

            .table-scroll {
                border-radius: 14px;
            }

            .data-table th,
            .data-table td {
                padding: 12px 14px;
                font-size: 14px;
            }

            .dark-card {
                padding: 24px;
            }

            .footer-top {
                grid-template-columns: 1fr;
                gap: 26px;
            }

            .footer-bottom {
                flex-direction: column;
            }

            .cta-area {
                margin-top: 40px;
                margin-bottom: 40px;
            }

            .cta-action {
                width: 100%;
            }

            .cta-action .btn {
                width: 100%;
            }
        }

        @media print {
            .site-header,
            .cta-area,
            .site-footer {
                display: none !important;
            }
        }
