:root {
  --bg: #4ab38d;
  --bg-deep: #3a9d7a;
  --bg-soft: #dff6ea;
  --surface: rgba(255, 255, 255, 0.84);
  --surface-strong: rgba(248, 255, 250, 0.96);
  --line: rgba(255, 255, 255, 0.42);
  --green: #2f915d;
  --green-strong: #22784b;
  --green-soft: #6fd0a5;
  --text: #27553c;
  --text-strong: #234a34;
  --text-soft: #5d7e6d;
  --yellow: #f2df66;
  --danger: #e26464;
  --shadow: 0 24px 60px rgba(28, 103, 71, 0.22);
  --radius-xl: 34px;
  --radius-lg: 26px;
  --radius-md: 18px;
  --container: min(1240px, calc(100vw - 48px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: "Segoe UI", "Microsoft YaHei", "PingFang SC", sans-serif;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.08) 8%, transparent 8%, transparent 12%, rgba(255, 255, 255, 0.08) 12%, rgba(255, 255, 255, 0.08) 13%, transparent 13%),
    radial-gradient(circle at top right, rgba(213, 255, 233, 0.28), transparent 28%),
    linear-gradient(135deg, var(--bg) 0%, #55c29a 50%, var(--bg-deep) 100%);
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: auto;
  pointer-events: none;
  opacity: 0.22;
  z-index: -1;
}

body::before {
  top: -120px;
  right: 6%;
  width: 380px;
  height: 120vh;
  border: 10px solid rgba(255, 255, 255, 0.42);
  border-radius: 190px;
  transform: rotate(8deg);
}

body::after {
  bottom: -160px;
  right: 16%;
  width: 260px;
  height: 95vh;
  border: 6px solid rgba(255, 255, 255, 0.26);
  border-radius: 160px;
  transform: rotate(10deg);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

button {
  font: inherit;
}

[v-cloak] {
  display: none;
}

.site-shell {
  min-height: 100vh;
  padding: 18px 0 34px;
}

.topbar,
.page-main,
.site-footer {
  width: var(--container);
  margin: 0 auto;
}

.topbar {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 16px 20px;
  border-radius: 999px;
  background: rgba(247, 255, 251, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.52);
  box-shadow: 0 14px 30px rgba(24, 88, 60, 0.14);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand-logo {
  width: 72px;
  height: 72px;
  flex: 0 0 72px;
  filter: drop-shadow(0 8px 18px rgba(41, 109, 74, 0.12));
}

.brand-text {
  min-width: 0;
}

.brand-text strong,
.brand-text small {
  display: block;
}

.brand-text strong {
  font-size: 1.1rem;
  color: var(--text-strong);
  line-height: 1.3;
}

.brand-text small {
  margin-top: 5px;
  font-size: 0.72rem;
  color: var(--text-soft);
  letter-spacing: 0.03em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
}

.nav-links a {
  padding: 10px 16px;
  border-radius: 999px;
  color: var(--text-soft);
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--green-strong);
  background: rgba(141, 227, 186, 0.22);
  transform: translateY(-1px);
}

.page-main {
  padding-top: 26px;
}

.landing-grid {
  display: grid;
  grid-template-columns: minmax(360px, 0.95fr) minmax(0, 1.05fr);
  gap: 26px;
  align-items: stretch;
}

.landing-left,
.landing-right,
.page-panel,
.quick-card,
.detail-card,
.contact-panel,
.record-panel {
  border: 1px solid rgba(255, 255, 255, 0.48);
  background: var(--surface);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.landing-left {
  position: relative;
  overflow: hidden;
  padding: 28px 24px 32px;
  min-height: 670px;
}

.landing-left::before {
  content: "";
  position: absolute;
  left: -40px;
  right: -40px;
  top: 240px;
  height: 220px;
  border: 2px solid rgba(61, 132, 97, 0.34);
  border-radius: 50%;
}

.landing-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.landing-badges span,
.page-tag {
  display: inline-flex;
  align-items: center;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--green-strong);
  font-weight: 700;
}

.hero-title-board {
  position: relative;
  margin-top: 120px;
  padding: 26px 24px;
  border-radius: 18px;
  background: rgba(250, 255, 252, 0.95);
  border: 4px solid rgba(154, 230, 193, 0.8);
  box-shadow: 0 24px 50px rgba(37, 110, 76, 0.2);
}

.hero-title-board::before,
.hero-title-board::after {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(120, 214, 165, 0.9);
}

.hero-title-board::before {
  top: -44px;
  left: 60px;
}

.hero-title-board::after {
  right: 28px;
  bottom: -38px;
}

.hero-title-board h1 {
  margin: 0;
  color: var(--green);
  font-size: clamp(2.8rem, 4vw, 4.4rem);
  line-height: 1.14;
  letter-spacing: 0.02em;
}

.hero-subline {
  margin-top: 18px;
  color: rgba(37, 78, 58, 0.76);
  line-height: 1.9;
  font-size: 1rem;
}

.landing-left-bottom {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 28px;
}

.qr-strip {
  display: flex;
  gap: 14px;
  align-items: end;
}

.qr-card {
  width: 94px;
}

.qr-placeholder {
  aspect-ratio: 1;
  border-radius: 10px;
  border: 2px solid rgba(255, 255, 255, 0.78);
  background:
    linear-gradient(90deg, rgba(35, 120, 76, 0.1) 0, rgba(35, 120, 76, 0.1) 8%, transparent 8%, transparent 16%, rgba(35, 120, 76, 0.1) 16%, rgba(35, 120, 76, 0.1) 24%, transparent 24%),
    linear-gradient(rgba(35, 120, 76, 0.1) 0, rgba(35, 120, 76, 0.1) 8%, transparent 8%, transparent 16%, rgba(35, 120, 76, 0.1) 16%, rgba(35, 120, 76, 0.1) 24%, transparent 24%),
    rgba(255, 255, 255, 0.9);
  box-shadow: 0 14px 30px rgba(37, 110, 76, 0.18);
}

.qr-card span {
  display: block;
  margin-top: 8px;
  font-size: 0.76rem;
  text-align: center;
  color: var(--text-strong);
  font-weight: 700;
}

.landing-right {
  position: relative;
  padding: 24px 22px 26px;
  overflow: hidden;
}

.landing-right::before,
.landing-right::after {
  content: "+";
  position: absolute;
  display: grid;
  place-items: center;
  width: 74px;
  height: 74px;
  border-radius: 50%;
  background: rgba(247, 255, 251, 0.92);
  color: rgba(141, 227, 186, 0.9);
  font-size: 3.2rem;
  font-weight: 700;
  box-shadow: 0 16px 30px rgba(37, 110, 76, 0.16);
}

.landing-right::before {
  top: 18px;
  left: 22px;
}

.landing-right::after {
  right: 18px;
  bottom: 24px;
}

.accelerator-chip {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 500px;
  margin: 0 auto 18px;
  min-height: 74px;
  border-radius: 999px;
  background: linear-gradient(180deg, #62c483 0%, #4eaf6b 100%);
  border: 4px solid rgba(248, 255, 250, 0.85);
  color: #fff;
  font-size: clamp(1.6rem, 2.4vw, 2.5rem);
  font-weight: 800;
  box-shadow: 0 22px 40px rgba(50, 131, 86, 0.24);
}

.accelerator-list {
  display: grid;
  gap: 18px;
  margin-top: 18px;
}

.accelerator-item {
  padding: 22px 24px;
  border-radius: 24px;
  background: rgba(200, 241, 220, 0.68);
  border: 1px solid rgba(255, 255, 255, 0.46);
}

.accelerator-item h3 {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--green);
  font-size: 1.7rem;
}

.accelerator-item h3::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--danger);
  flex: 0 0 10px;
}

.accelerator-item h3::after {
  content: "";
  width: 132px;
  height: 6px;
  border-radius: 999px;
  background: var(--yellow);
  margin-left: 6px;
}

.accelerator-item p {
  margin: 14px 0 0;
  color: rgba(39, 85, 60, 0.9);
  line-height: 1.78;
  font-size: 1rem;
}

.section-stack {
  display: grid;
  gap: 22px;
  margin-top: 26px;
}

.page-panel {
  padding: 26px;
}

.page-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.page-panel-header h2,
.detail-card h3,
.record-panel h3,
.contact-panel h3 {
  margin: 0;
}

.page-panel-header h2 {
  color: var(--text-strong);
  font-size: clamp(1.8rem, 2.4vw, 2.6rem);
}

.page-panel-header p {
  margin: 0;
  color: var(--text-soft);
}

.stat-grid,
.quick-grid,
.detail-grid,
.contact-grid {
  display: grid;
  gap: 18px;
}

.stat-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.stat-card,
.quick-card,
.detail-card,
.contact-panel {
  padding: 22px;
  border-radius: var(--radius-lg);
  background: rgba(248, 255, 250, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.54);
}

.stat-card strong {
  display: block;
  color: var(--green);
  font-size: 2rem;
}

.stat-card span {
  display: block;
  margin-top: 8px;
  color: var(--text-soft);
}

.quick-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.quick-card {
  position: relative;
  overflow: hidden;
}

.quick-card::after {
  content: "";
  position: absolute;
  top: -26px;
  right: -26px;
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: rgba(163, 236, 199, 0.42);
}

.quick-card h3,
.detail-card h3,
.contact-panel h3 {
  color: var(--green);
  font-size: 1.3rem;
}

.quick-card p,
.detail-card p,
.about-copy p,
.contact-panel p,
.detail-card li,
.policy-shell p,
.policy-shell li {
  color: var(--text-soft);
  line-height: 1.85;
}

.quick-link {
  display: inline-flex;
  margin-top: 14px;
  color: var(--green-strong);
  font-weight: 700;
}

.page-hero {
  padding: 24px 26px;
  border-radius: var(--radius-xl);
  background: rgba(248, 255, 250, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.52);
  box-shadow: var(--shadow);
}

.page-hero h1 {
  margin: 14px 0 10px;
  color: var(--green);
  font-size: clamp(2.2rem, 3.2vw, 3.4rem);
}

.page-hero p {
  margin: 0;
  max-width: 58rem;
  color: var(--text-soft);
  line-height: 1.9;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 22px;
  margin-top: 24px;
}

.about-copy,
.detail-card {
  padding: 24px;
  border-radius: var(--radius-lg);
  background: rgba(248, 255, 250, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.54);
  box-shadow: var(--shadow);
}

.about-copy p {
  margin: 0 0 14px;
}

.detail-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.service-page-grid,
.network-page-grid {
  display: grid;
  gap: 22px;
  margin-top: 24px;
}

.service-page-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.network-page-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.service-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.service-index {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(111, 208, 165, 0.28);
  color: var(--green);
  font-weight: 800;
}

.detail-card ul {
  margin: 14px 0 0;
  padding-left: 18px;
}

.contact-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 24px;
}

.contact-panel strong {
  color: var(--text-strong);
}

.contact-main {
  margin-top: 24px;
  padding: 26px;
  border-radius: var(--radius-xl);
  background: rgba(248, 255, 250, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.54);
  box-shadow: var(--shadow);
}

.contact-main h2 {
  margin: 0;
  color: var(--green);
  font-size: 2rem;
}

.contact-main p {
  color: var(--text-soft);
  line-height: 1.88;
}

.mobile-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  padding: 14px 20px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(180deg, #59bd78 0%, #3c985d 100%);
  box-shadow: 0 18px 30px rgba(47, 145, 93, 0.22);
  font-weight: 800;
}

.site-footer {
  margin-top: 26px;
  padding: 24px 28px;
  border-radius: var(--radius-xl);
  background: rgba(248, 255, 250, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: var(--shadow);
}

.footer-head,
.footer-links {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.footer-meta,
.footer-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  color: var(--text-soft);
}

.footer-separator {
  color: rgba(93, 126, 109, 0.42);
}

.icp-link {
  color: var(--green-strong);
  font-weight: 700;
}

.record-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  color: var(--green-strong);
  background: rgba(226, 247, 236, 0.9);
  font-weight: 700;
}

.record-layout {
  margin-top: 18px;
}

.record-panel {
  padding: 22px;
}

.record-table {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.record-row {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  border: 1px solid rgba(144, 216, 180, 0.38);
}

.record-row span,
.record-row strong {
  display: flex;
  align-items: center;
  min-height: 60px;
  padding: 14px 18px;
}

.record-row span {
  background: rgba(226, 247, 236, 0.72);
  color: var(--text-strong);
  font-weight: 700;
}

.record-row strong {
  background: rgba(255, 255, 255, 0.86);
  color: var(--text-soft);
}

.policy-page {
  min-height: 100vh;
  padding: 40px 0;
}

.policy-shell {
  width: min(920px, calc(100vw - 32px));
  margin: 0 auto;
  padding: 32px;
  border-radius: var(--radius-xl);
  background: rgba(248, 255, 250, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.52);
  box-shadow: var(--shadow);
}

.policy-shell h1,
.policy-shell h2 {
  color: var(--green);
}

.policy-shell ul {
  padding-left: 20px;
}

@media (max-width: 1180px) {
  .topbar {
    flex-wrap: wrap;
    justify-content: center;
  }

  .brand {
    width: 100%;
    justify-content: center;
  }

  .nav-links {
    margin-left: 0;
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
  }

  .landing-grid,
  .about-grid,
  .service-page-grid,
  .network-page-grid,
  .contact-grid,
  .stat-grid,
  .quick-grid {
    grid-template-columns: 1fr 1fr;
  }

  .landing-left,
  .landing-right {
    min-height: auto;
  }

  .landing-left-bottom {
    position: static;
    margin-top: 30px;
  }
}

@media (max-width: 760px) {
  :root {
    --container: min(100vw - 24px, 100vw - 24px);
  }

  body::before,
  body::after {
    display: none;
  }

  .topbar,
  .page-main,
  .site-footer {
    width: var(--container);
  }

  .brand {
    gap: 10px;
  }

  .brand-logo {
    width: 60px;
    height: 60px;
    flex-basis: 60px;
  }

  .brand-text strong {
    font-size: 0.98rem;
  }

  .brand-text small {
    font-size: 0.64rem;
  }

  .landing-grid,
  .about-grid,
  .service-page-grid,
  .network-page-grid,
  .contact-grid,
  .stat-grid,
  .quick-grid,
  .detail-grid {
    grid-template-columns: 1fr;
  }

  .hero-title-board {
    margin-top: 42px;
  }

  .hero-title-board h1 {
    font-size: 2.4rem;
  }

  .accelerator-item h3 {
    font-size: 1.34rem;
    flex-wrap: wrap;
  }

  .accelerator-item h3::after {
    width: 86px;
  }

  .footer-head,
  .footer-links {
    align-items: stretch;
  }

  .record-row {
    grid-template-columns: 1fr;
  }

  .record-row span,
  .record-row strong {
    min-height: auto;
  }
}
