:root {
  --bg: #ffffff;
  --bg-soft: #f4f6f9;
  --bg-dark: #0c1828;
  --bg-navy: #142840;
  --text: #1a2332;
  --muted: #5a6578;
  --line: #d8dee6;
  --gold: #b8960c;
  --gold-light: #d4af37;
  --gold-soft: rgba(184, 150, 12, 0.1);
  --navy: #0f2744;
  --navy-light: #1a3a5c;
  --container: 1140px;
  --radius: 6px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: "Noto Sans TC", "Inter", system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

body.lang-en .lang-zh { display: none !important; }
body.lang-zh .lang-en { display: none !important; }

a { color: inherit; text-decoration: none; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.narrow { max-width: 760px; }

.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  background: var(--gold);
  color: var(--bg-dark);
  padding: 10px 16px;
  border-radius: var(--radius);
  z-index: 100;
  font-size: 0.9rem;
  font-weight: 600;
}
.skip-link:focus { top: 16px; outline: 2px solid var(--navy); outline-offset: 2px; }

.top-bar {
  background: var(--bg-dark);
  color: rgba(255,255,255,0.85);
  font-size: 0.8rem;
}
.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 38px;
  flex-wrap: wrap;
  gap: 8px;
}
.top-bar-contact {
  display: flex;
  align-items: center;
  gap: 12px;
}
.top-bar a { color: #fff; font-weight: 500; }
.top-bar a:hover { color: var(--gold-light); }
.top-bar .divider { opacity: 0.3; }

.eyebrow {
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.eyebrow-light { color: rgba(255,255,255,0.7); }

h1, h2, h3, h4 {
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2rem, 4.5vw, 3rem); margin-bottom: 20px; }
h2 { font-size: clamp(1.55rem, 3vw, 2.1rem); margin-bottom: 14px; }
h3 { font-size: 1.05rem; font-weight: 600; margin-bottom: 8px; }

.lead { font-size: 1.02rem; color: var(--muted); max-width: 580px; margin-bottom: 28px; line-height: 1.8; }

.section-head.centered { text-align: center; margin-left: auto; margin-right: auto; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  font-family: inherit;
  letter-spacing: 0.02em;
}
.btn:hover { transform: translateY(-1px); }
.btn-gold {
  background: var(--gold);
  color: var(--bg-dark);
  border-color: var(--gold);
}
.btn-gold:hover { background: var(--gold-light); }
.btn-outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.4);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.btn-block { width: 100%; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  height: 76px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.brand-mark {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  background: var(--navy);
  color: var(--gold);
  border-radius: var(--radius);
  font-size: 0.75rem;
  font-weight: 800;
  font-family: "Inter", sans-serif;
  letter-spacing: 0.02em;
}
.brand-text {
  display: flex;
  flex-direction: column;
  font-weight: 700;
  font-size: 1rem;
  color: var(--text);
  line-height: 1.15;
  font-family: "Inter", sans-serif;
  letter-spacing: 0.03em;
}
.brand-sub {
  font-size: 0.62rem;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.1em;
}
.nav-links {
  display: flex;
  gap: 26px;
  margin-left: auto;
}
.nav-links a {
  font-size: 0.88rem;
  color: var(--muted);
  font-weight: 500;
}
.nav-links a:hover { color: var(--navy); }
.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}
.header-cta { padding: 10px 18px; font-size: 0.85rem; }

.lang-switch {
  display: flex;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.lang-btn {
  padding: 6px 12px;
  font-size: 0.76rem;
  font-weight: 700;
  background: transparent;
  border: none;
  cursor: pointer;
  color: var(--muted);
  font-family: inherit;
}
.lang-btn.active {
  background: var(--gold-soft);
  color: var(--gold);
}
.lang-btn:focus-visible {
  outline: 2px solid var(--navy);
  outline-offset: -2px;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  width: 22px;
  height: 2px;
  background: var(--text);
}

.hero {
  position: relative;
  padding: 88px 0 72px;
  background: var(--bg-dark);
  color: #fff;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 75% 15%, rgba(184, 150, 12, 0.1) 0%, transparent 55%),
    radial-gradient(ellipse 50% 50% at 5% 85%, rgba(26, 58, 92, 0.5) 0%, transparent 50%);
  pointer-events: none;
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: center;
}
.hero h1 { color: #fff; }
.hero .lead { color: rgba(255,255,255,0.75); }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-panel {
  display: grid;
  gap: 14px;
}
.hero-stat {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius);
  padding: 22px 24px;
}
.hero-stat strong {
  display: block;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--gold);
  font-family: "Inter", sans-serif;
  letter-spacing: 0.02em;
  margin-bottom: 4px;
}
.hero-stat span { font-size: 0.85rem; color: rgba(255,255,255,0.7); }

.trust-bar {
  background: #fff;
  border-bottom: 1px solid var(--line);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 24px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--muted);
}
.trust-icon {
  color: var(--gold);
  font-size: 0.55rem;
  flex-shrink: 0;
}

.stats { background: var(--bg-soft); }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 52px 24px;
}
.stat { text-align: center; }
.stat strong {
  display: block;
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--navy);
  font-family: "Inter", sans-serif;
  letter-spacing: -0.03em;
  margin-bottom: 6px;
}
.stat span { font-size: 0.85rem; color: var(--muted); }

.section { padding: 80px 0; }
.section-soft { background: var(--bg-soft); }
.section-dark {
  background: var(--bg-navy);
  color: #fff;
}
.section-dark h2 { color: #fff; }
.section-head { margin-bottom: 44px; max-width: 640px; }

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-top: 3px solid var(--gold);
  border-radius: var(--radius);
  padding: 28px;
  transition: box-shadow 0.2s;
}
.card:hover {
  box-shadow: 0 10px 32px rgba(15, 39, 68, 0.08);
}
.card-num {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.1em;
  margin-bottom: 14px;
  font-family: "Inter", sans-serif;
}
.card p { font-size: 0.9rem; color: var(--muted); }

.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: start;
}
.about-copy p { color: var(--muted); margin-bottom: 18px; }
.check-list {
  list-style: none;
  display: grid;
  gap: 12px;
  margin-top: 24px;
}
.check-list li {
  padding-left: 22px;
  position: relative;
  font-size: 0.94rem;
  font-weight: 500;
}
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 7px;
  height: 7px;
  background: var(--gold);
  transform: rotate(45deg);
}
.about-aside { display: grid; gap: 14px; }
.info-box {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px 22px;
}
.info-box.highlight {
  border-color: var(--gold);
  background: var(--gold-soft);
}
.info-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}

.approach-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.approach-card {
  background: #fff;
  border: 1px solid var(--line);
  border-left: 4px solid var(--navy);
  border-radius: var(--radius);
  padding: 28px;
}
.approach-card p { font-size: 0.9rem; color: var(--muted); margin-top: 8px; }

.governance-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.governance-lead { color: rgba(255,255,255,0.75); max-width: 480px; line-height: 1.8; }
.governance-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.governance-tags span {
  padding: 10px 18px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius);
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  background: rgba(255,255,255,0.05);
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.step {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
}
.step-num {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  background: var(--navy);
  color: var(--gold);
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 16px;
  font-family: "Inter", sans-serif;
}
.step p { font-size: 0.88rem; color: var(--muted); }

.faq-list { display: grid; gap: 10px; }
.faq-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.faq-item summary {
  padding: 18px 22px;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  float: right;
  color: var(--gold);
  font-size: 1.1rem;
}
.faq-item[open] summary::after { content: "−"; }
.faq-item p {
  padding: 0 22px 18px;
  font-size: 0.9rem;
  color: var(--muted);
}

.cta-section {
  background: var(--bg-dark);
  color: #fff;
}
.cta-section h2 { color: #fff; }
.contact-lead { color: rgba(255,255,255,0.75); margin-bottom: 28px; max-width: 420px; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
.contact-info {
  font-style: normal;
  font-size: 0.94rem;
  line-height: 1.85;
  color: rgba(255,255,255,0.85);
}
.contact-info a { color: #fff; border-bottom: 1px solid rgba(255,255,255,0.3); }
.contact-info a:hover { border-color: var(--gold); color: var(--gold-light); }
.contact-form {
  background: #fff;
  border-radius: var(--radius);
  padding: 32px;
  display: grid;
  gap: 18px;
}
.field label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 7px;
  color: var(--muted);
}
.field input,
.field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font: inherit;
  color: var(--text);
  background: #fff;
  resize: vertical;
}
.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(15, 39, 68, 0.1);
}
.form-note { font-size: 0.76rem; color: var(--muted); }
.form-status { min-height: 20px; font-size: 0.86rem; color: var(--muted); }

.site-footer {
  background: var(--bg-dark);
  color: rgba(255,255,255,0.75);
  padding: 52px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 36px;
}
.footer-brand {
  font-weight: 700;
  font-size: 0.95rem;
  color: #fff;
  margin-bottom: 10px;
  font-family: "Inter", sans-serif;
  letter-spacing: 0.03em;
}
.footer-desc { font-size: 0.86rem; margin-bottom: 8px; }
.footer-col h4 {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.footer-col a {
  display: block;
  font-size: 0.86rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 10px;
}
.footer-col a:hover { color: var(--gold-light); }
.footer-address { font-size: 0.86rem; color: rgba(255,255,255,0.5); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
}

.mobile-cta {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 40;
  background: var(--gold);
  color: var(--bg-dark);
  padding: 14px 22px;
  border-radius: var(--radius);
  font-size: 0.88rem;
  font-weight: 700;
  box-shadow: 0 8px 24px rgba(184, 150, 12, 0.35);
}

.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.reveal.in { opacity: 1; transform: none; }

@media (max-width: 960px) {
  .hero-grid, .about-grid, .contact-grid, .governance-grid { grid-template-columns: 1fr; }
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .approach-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  .nav-links, .header-cta { display: none; }
  .nav-toggle { display: flex; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 1px solid var(--line);
    padding: 12px 24px 20px;
    margin-left: 0;
  }
  .nav-links.open a { padding: 14px 0; border-bottom: 1px solid var(--line); }
  .header-inner { position: relative; }
  .top-bar-inner { justify-content: center; text-align: center; height: auto; padding: 8px 0; }
  .top-bar-contact { flex-wrap: wrap; justify-content: center; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .card-grid, .steps { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; align-items: flex-start; }
  .mobile-cta { display: inline-flex; }
  .hero { padding: 56px 0 48px; }
  .section { padding: 56px 0; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { transition: none; opacity: 1; transform: none; }
  .btn:hover { transform: none; }
}
