:root {
  --bg: #071311;
  --bg-soft: #0e1b18;
  --paper: #f5f7f6;
  --card: #ffffff;
  --card-soft: #ecf2ef;
  --text: #10211b;
  --muted: #5d6c67;
  --line: #dbe4df;
  --brand: #1df098;
  --brand-dark: #0f6f4a;
  --shadow: 0 18px 40px rgba(5, 18, 14, 0.12);
  --radius: 18px;
  --container: 1160px;
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--text);
  background: var(--paper);
  font-family: Arial, "PingFang SC", "Microsoft YaHei", sans-serif;
  line-height: 1.65;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.container {
  width: min(calc(100% - 32px), var(--container));
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 8px;
  z-index: 999;
  background: #fff;
  color: var(--text);
  padding: 10px 14px;
  border-radius: 999px;
  box-shadow: var(--shadow);
}

.skip-link:focus { left: 16px; }

.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;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(7, 19, 17, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-wordmark {
  width: 132px;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 14px;
}

.site-nav a:hover,
.site-nav a:focus-visible { color: #fff; }

.nav-cta {
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--brand);
  color: #07311f;
  font-weight: 700;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  background: transparent;
  color: #fff;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.menu-toggle span:not(.sr-only) {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 78px 0 86px;
  background:
    radial-gradient(circle at top, rgba(29, 240, 152, 0.18), transparent 34%),
    linear-gradient(180deg, #081311, #0e1b18 58%, #f5f7f6 58.1%, #f5f7f6);
  color: #fff;
}

.hero-grid {
  display: grid;
  gap: 28px;
  align-items: start;
}

.hero-copy {
  text-align: center;
  max-width: 880px;
  margin: 0 auto;
}

.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  color: rgba(255, 255, 255, 0.72);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 12px;
  font-weight: 700;
}

.hero h1,
.section-head h2,
.register-strip h2 {
  margin: 0;
  letter-spacing: -0.04em;
  line-height: 1.06;
  word-break: keep-all;
  overflow-wrap: normal;
}

.hero h1 {
  max-width: 11ch;
  margin-inline: auto;
  font-size: clamp(3rem, 5.8vw, 4.7rem);
}

.hero-lead {
  margin: 18px auto 0;
  max-width: 760px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 18px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 14px;
  font-weight: 700;
  transition: transform .18s ease, background-color .18s ease, border-color .18s ease;
}

.btn:hover,
.btn:focus-visible { transform: translateY(-1px); }

.btn-primary {
  background: var(--brand);
  color: #07311f;
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
  color: #fff;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 18px;
}

.meta-pill,
.status-row span,
.status-row strong,
.support-banner p,
.section-head p,
.reason-card p,
.entry-card span,
.footer-links,
.footer-meta p {
  color: inherit;
}

.meta-pill {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.9);
  font-size: 13px;
}

.hero-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 14px;
  width: min(100%, 720px);
  margin: 22px auto 0;
}

.status-card,
.status-note,
.reason-card,
.entry-card,
.register-strip,
.support-banner,
.faq-item,
.footer-grid > div {
  box-shadow: var(--shadow);
}

.status-card {
  background: rgba(10, 25, 21, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 22px;
}

.status-top {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: space-between;
  color: #fff;
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 0 6px rgba(29, 240, 152, 0.12);
}

.status-icon {
  width: 28px;
  height: 28px;
}

.status-rows {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.status-row {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 12px;
  align-items: center;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.88);
}

.status-row span {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.58);
}

.status-row.active {
  background: linear-gradient(90deg, rgba(29, 240, 152, 0.16), rgba(29, 240, 152, 0.06));
  border: 1px solid rgba(29, 240, 152, 0.22);
}

.status-note {
  background: rgba(255, 255, 255, 0.92);
  color: var(--text);
  border-radius: 18px;
  padding: 18px 20px;
}

.status-note p { margin: 0; color: var(--muted); }

.section {
  padding: 72px 0;
  color: var(--text);
}

.section-alt {
  background: #fff;
}

.section-head {
  max-width: 760px;
  margin-bottom: 24px;
}

.section-kicker {
  color: #6d7a75;
  margin-bottom: 10px;
}

.section-head h2,
.register-strip h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--text);
}

.section-head p:last-child {
  margin-bottom: 0;
  color: var(--muted);
}

.reason-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.reason-card,
.entry-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
}

.reason-card h3 {
  margin: 0 0 8px;
  font-size: 20px;
}

.reason-card p {
  margin: 0;
  color: var(--muted);
}

.support-banner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 18px;
  align-items: center;
  margin-top: 20px;
  padding: 20px 22px;
  border-radius: 22px;
  background: linear-gradient(180deg, #ffffff, #eef4f1);
  border: 1px solid var(--line);
}

.support-banner h3 {
  margin: 0 0 8px;
  font-size: 22px;
}

.support-banner p {
  margin: 0;
  color: var(--muted);
}

.support-banner img {
  border-radius: 18px;
}

.entry-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.entry-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 146px;
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.entry-card:hover,
.entry-card:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(29, 240, 152, 0.35);
  box-shadow: 0 22px 48px rgba(5, 18, 14, 0.14);
}

.entry-card strong {
  display: block;
  margin-bottom: 10px;
  font-size: 20px;
}

.entry-card span { color: var(--muted); }

.register-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  background: linear-gradient(135deg, #0d1d19, #17322a);
  color: #fff;
  border-radius: 24px;
  padding: 26px 28px;
}

.register-strip h2,
.register-strip p {
  color: #fff;
}

.register-strip p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.76);
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
}

.faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  border: 0;
  background: transparent;
  font: inherit;
  text-align: left;
  font-weight: 700;
  cursor: pointer;
}

.faq-icon {
  position: relative;
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  inset: 50% auto auto 0;
  width: 18px;
  height: 2px;
  background: var(--brand-dark);
  border-radius: 999px;
  transform: translateY(-50%);
}

.faq-icon::after {
  transform: translateY(-50%) rotate(90deg);
  transition: transform .2s ease;
}

.faq-item.is-open .faq-icon::after {
  transform: translateY(-50%) rotate(180deg);
}

.faq-panel {
  padding: 0 20px 18px;
  color: var(--muted);
}

.site-footer {
  background: var(--bg);
  color: rgba(255, 255, 255, 0.84);
  padding: 36px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.95fr 1fr;
  gap: 20px;
}

.footer-logo {
  width: 142px;
  margin-bottom: 10px;
}

.footer-links {
  display: grid;
  gap: 10px;
}

.footer-links a:hover,
.footer-links a:focus-visible,
.footer-meta a:hover,
.footer-meta a:focus-visible {
  color: #fff;
}

.footer-meta {
  text-align: right;
}

.footer-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 16px;
  border-radius: 14px;
  background: var(--brand);
  color: #0a3020;
  font-weight: 700;
  margin-bottom: 10px;
}

.footer-meta p { margin: 0; }

@media (max-width: 1080px) {
  .reason-grid,
  .entry-grid,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .support-banner,
  .register-strip {
    grid-template-columns: 1fr;
  }

  .footer-meta { text-align: left; }
}

@media (max-width: 760px) {
  .hero,
  .section {
    padding: 60px 0;
  }

  .menu-toggle { display: inline-flex; }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    background: rgba(7, 19, 17, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    box-shadow: var(--shadow);
  }

  .site-nav.is-open { display: flex; }
  .site-nav a { padding: 12px 10px; }
  .nav-cta { text-align: center; margin-top: 6px; }

  .reason-grid,
  .entry-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .status-row {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .hero h1 {
    max-width: 12ch;
  }

  .hero-lead {
    font-size: 16px;
  }

  .register-strip {
    padding: 22px 20px;
  }
}
