:root {
  --bg: #0b0d12;
  --bg-2: #141821;
  --panel: rgba(255,255,255,0.05);
  --panel-border: rgba(255,255,255,0.10);
  --text: #f5f7fb;
  --muted: #b9c0cf;
  --primary: #f3c766;
  --primary-2: #8ec5ff;
  --shadow: 0 18px 44px rgba(0,0,0,0.35);
  --radius: 22px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC",
    "Hiragino Sans GB", "Microsoft YaHei", "Noto Sans SC", Arial, sans-serif;
  line-height: 1.65;
  background:
    radial-gradient(circle at top left, rgba(243,199,102,0.10), transparent 25%),
    radial-gradient(circle at right top, rgba(142,197,255,0.10), transparent 25%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
  min-height: 100vh;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(100% - 32px, var(--container));
  margin: 0 auto;
}

.bg-grid {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: radial-gradient(circle at center, black 35%, transparent 90%);
}

.bg-glow {
  position: fixed;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.18;
  z-index: 0;
  pointer-events: none;
}

.glow-1 {
  left: -90px;
  top: -60px;
  background: #f3c766;
}

.glow-2 {
  right: -90px;
  top: 160px;
  background: #8ec5ff;
}

.site-header,
main,
.site-footer {
  position: relative;
  z-index: 1;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(14px);
  background: rgba(11,13,18,0.62);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.nav {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
}

.brand-mark {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(243,199,102,0.22), rgba(142,197,255,0.22));
  border: 1px solid rgba(255,255,255,0.12);
}

.menu {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.menu a {
  color: var(--muted);
}

.menu a:hover {
  color: var(--text);
}

.hero {
  padding: 84px 0 52px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 28px;
  align-items: center;
}

.badge,
.section-kicker {
  display: inline-block;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(243,199,102,0.10);
  border: 1px solid rgba(243,199,102,0.24);
  color: #f9df9d;
  font-size: 0.82rem;
  font-weight: 700;
}

h1 {
  margin: 18px 0 16px;
  font-size: clamp(2.3rem, 5vw, 4.6rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

h1 span {
  background: linear-gradient(90deg, #fff6d9, #f3c766, #8ec5ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.lead {
  max-width: 720px;
  color: var(--muted);
  font-size: 1.04rem;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
}

.cta-row.center {
  justify-content: center;
}

.btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border-radius: 14px;
  font-weight: 700;
  transition: transform .2s ease;
  border: 1px solid transparent;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: #15120a;
  background: linear-gradient(135deg, #fde7a2, #f3c766);
  box-shadow: 0 10px 28px rgba(243,199,102,0.18);
}

.btn-secondary {
  color: var(--text);
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.12);
}

.feature-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.feature-pills span {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  color: #e6ebf7;
  font-size: .94rem;
}

.glass-card {
  background: var(--panel);
  border: 1px solid var(--panel-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.info-card,
.service-card,
.contact-box,
.legal-card {
  padding: 28px;
}

.card-kicker {
  color: #f7daa0;
  font-size: .84rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.info-card h3 {
  margin: 12px 0 10px;
  font-size: 1.6rem;
}

.info-card p,
.service-card p,
.legal-card p,
.legal-card li,
.contact-box p,
.section-head p {
  color: var(--muted);
}

.info-list {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.info-list div {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
}

.info-list strong {
  color: #fff2cb;
}

.section {
  padding: 42px 0 64px;
}

.section-head {
  max-width: 760px;
  margin-bottom: 24px;
}

.section-head h2 {
  margin: 14px 0 10px;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
}

.cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 22px;
}

.service-card .icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(243,199,102,0.18), rgba(142,197,255,0.16));
  border: 1px solid rgba(255,255,255,0.10);
  font-size: 1.4rem;
}

.service-card h3 {
  margin: 16px 0 6px;
  font-size: 1.36rem;
}

.en {
  margin: 0 0 10px;
  color: #c7d7f3;
  font-size: .96rem;
}

.contact-box {
  text-align: center;
  max-width: 880px;
  margin: 0 auto;
}

.contact-handle {
  margin-top: 10px;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  color: #fff2cb;
}

.site-footer {
  padding: 26px 0 40px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-brand {
  font-weight: 800;
  font-size: 1.05rem;
}

.footer-text {
  color: var(--muted);
  font-size: .92rem;
  margin-top: 4px;
}

.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--muted);
}

.footer-links a:hover {
  color: var(--text);
}

.legal-page {
  padding: 60px 0 80px;
}

.legal-card {
  max-width: 920px;
  margin: 0 auto;
}

.legal-card h1 {
  margin-top: 0;
  font-size: clamp(2rem, 4vw, 3rem);
}

.legal-card h2 {
  margin-top: 28px;
  font-size: 1.3rem;
}

.back-home {
  display: inline-flex;
  margin-top: 22px;
  color: #f7daa0;
}

@media (max-width: 960px) {
  .hero-grid,
  .cards {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .nav {
    padding: 10px 0;
    align-items: flex-start;
    flex-direction: column;
  }

  .menu {
    gap: 14px;
  }

  .btn {
    width: 100%;
  }

  .info-card,
  .service-card,
  .contact-box,
  .legal-card {
    padding: 22px;
  }
}