:root {
  color-scheme: light;
  --ink: #0d1526;
  --text: #263248;
  --muted: #68778d;
  --line: #e2eaf5;
  --paper: #ffffff;
  --blue: #2f7df6;
  --blue-deep: #1660dc;
  --green: #16b26b;
  --amber: #f0a124;
  --rose: #ef6262;
  --shadow: 0 18px 46px rgba(42, 76, 122, 0.12);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: #f7f9fc;
  font-family: "Microsoft YaHei", "Segoe UI", Arial, sans-serif;
  font-size: 15px;
  line-height: 1.65;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 74px;
  padding: 0 clamp(18px, 6vw, 120px);
  border-bottom: 1px solid rgba(219, 228, 241, 0.88);
  background: rgba(247, 250, 255, 0.94);
  backdrop-filter: blur(18px);
}
.brand { display: inline-flex; align-items: center; min-width: 150px; }
.brand img { width: 128px; height: auto; }
.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 2vw, 30px);
  color: #111827;
  font-size: 16px;
  font-weight: 800;
  white-space: nowrap;
}
.nav a { padding: 26px 0 24px; }
.nav a:hover,
.nav a[aria-current="page"] { color: var(--blue); }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  border: 1px solid var(--blue);
  border-radius: 6px;
  padding: 10px 20px;
  color: var(--blue);
  background: #fff;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
}
.button.primary {
  color: #fff;
  background: var(--blue);
  box-shadow: 0 12px 24px rgba(47, 125, 246, 0.22);
}
.button:hover { border-color: var(--blue-deep); color: var(--blue-deep); }
.button.primary:hover { color: #fff; background: var(--blue-deep); }
.hero {
  min-height: 320px;
  display: grid;
  align-items: center;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(120deg, rgba(234, 242, 255, 0.94), rgba(242, 247, 255, 0.92)),
    url("/assets/traneasy/PC0.f806888e.png") center / cover no-repeat;
}
.hero-inner,
.page,
.footer-inner {
  width: min(1180px, calc(100vw - 40px));
  margin: 0 auto;
}
.hero-inner { padding: 58px 0; }
.hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(36px, 4vw, 54px);
  line-height: 1.2;
  letter-spacing: 0;
}
.hero p {
  max-width: 760px;
  margin: 18px 0 0;
  color: #0f4f96;
  font-size: 18px;
  font-weight: 800;
}
.page { padding: 64px 0 84px; }
.section-title {
  margin-bottom: 28px;
  text-align: center;
}
.section-title h2 {
  margin: 0;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.26;
  letter-spacing: 0;
}
.section-title p {
  max-width: 720px;
  margin: 10px auto 0;
  color: var(--muted);
}
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.cards.two { grid-template-columns: repeat(2, 1fr); }
.cards.four { grid-template-columns: repeat(4, 1fr); }
.card {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 26px;
  background: var(--paper);
  box-shadow: var(--shadow);
}
.card.featured {
  border-color: rgba(47, 125, 246, 0.5);
  box-shadow: 0 22px 60px rgba(42, 76, 122, 0.16);
}
.card h2,
.card h3 {
  margin: 0 0 12px;
  color: #172033;
  font-size: 22px;
  line-height: 1.32;
  letter-spacing: 0;
}
.card p { margin: 0; color: var(--muted); }
.card ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}
.card li { margin: 8px 0; }
.price {
  display: block;
  margin: 10px 0 16px;
  color: var(--blue);
  font-size: 30px;
  font-weight: 900;
}
.media-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  align-items: center;
}
.media-panel {
  border-radius: 8px;
  background: rgba(255,255,255,0.66);
}
.download-box {
  display: grid;
  gap: 18px;
  justify-items: start;
}
.download-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  width: 100%;
}
.meta {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px;
  background: #fff;
}
.meta span {
  display: block;
  color: var(--muted);
  font-weight: 800;
}
.meta strong {
  display: block;
  margin-top: 6px;
  color: #172033;
}
.notice {
  margin-top: 28px;
  padding: 24px;
  border: 1px solid #bdebd5;
  border-radius: 8px;
  color: #0d5f41;
  background: #effaf5;
}
.footer {
  border-top: 1px solid var(--line);
  color: #5d6b80;
  background: #eef4fb;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  padding: 30px 0;
  font-size: 14px;
}
@media (max-width: 980px) {
  .site-header {
    position: static;
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
    padding-top: 14px;
    padding-bottom: 14px;
  }
  .nav {
    width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
  }
  .nav a { padding: 4px 0; }
  .cards,
  .cards.two,
  .cards.four,
  .media-grid,
  .download-meta { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  body { font-size: 14px; }
  .brand img { width: 118px; }
  .button { width: 100%; }
}
