:root {
  --ink: #0d1424;
  --muted: #697386;
  --line: #e4e8f0;
  --paper: #f5f7fb;
  --white: #ffffff;
  --navy: #070c19;
  --blue: #5968ff;
  --blue-dark: #4052df;
  --cyan: #6df2ff;
  --green: #12a66a;
  --red: #e5485d;
  --gold: #f0a600;
  --shadow: 0 18px 55px rgba(19, 31, 58, 0.10);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Microsoft YaHei", "PingFang SC", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

body.auth-page {
  background: #f3f6fb;
}

img {
  max-width: 100%;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  color: inherit;
}

main {
  min-height: calc(100vh - 220px);
}

[hidden] {
  display: none !important;
}

.content-width,
.product-detail-width,
.coins-width,
.promotion-width,
.account-width,
.orders-width,
.checkout-width,
.exchange-width {
  width: min(1180px, calc(100% - 48px));
  margin-left: auto;
  margin-right: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: 72px;
  padding: 0 clamp(22px, 5vw, 78px);
  display: flex;
  align-items: center;
  gap: 30px;
  color: #f8fbff;
  background: #080d1a;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.03em;
  white-space: nowrap;
}

.brand-logo {
  width: 58px;
  height: 44px;
  display: block;
  object-fit: contain;
}

.main-nav {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2.1vw, 34px);
  font-size: 14px;
}

.main-nav > a {
  position: relative;
  color: #bcc5d6;
  white-space: nowrap;
}

.main-nav > a:hover,
.main-nav > a.active {
  color: #ffffff;
}

.main-nav > a::after {
  content: "";
  position: absolute;
  left: 50%;
  right: 50%;
  bottom: -25px;
  height: 2px;
  background: var(--cyan);
  transition: left 0.2s ease, right 0.2s ease;
}

.main-nav > a:hover::after,
.main-nav > a.active::after {
  left: 0;
  right: 0;
}

.menu-button,
.mobile-auth {
  display: none;
}

.menu-button {
  width: 42px;
  height: 40px;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 10px;
  background: transparent;
  cursor: pointer;
}

.menu-button span {
  width: 20px;
  height: 2px;
  margin: 4px auto;
  display: block;
  background: #ffffff;
}

.header-actions,
.auth-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.auth-login,
.auth-register {
  min-height: 38px;
  padding: 0 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 700;
}

.auth-login {
  color: #dce4f4;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.auth-register {
  color: #07101c;
  background: linear-gradient(135deg, #ffffff, #75efff);
}

.account-menu {
  position: relative;
}

.account-menu summary {
  list-style: none;
}

.account-menu summary::-webkit-details-marker {
  display: none;
}

.account-trigger {
  min-height: 40px;
  padding: 6px 11px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #e4ebf7;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 11px;
  cursor: pointer;
}

.account-avatar {
  width: 27px;
  height: 27px;
  display: grid;
  place-items: center;
  color: #07101a;
  border-radius: 8px;
  background: linear-gradient(135deg, #ffffff, #6feeff);
  font-size: 12px;
  font-weight: 900;
}

.account-name {
  max-width: 100px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.account-dropdown {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  width: 230px;
  padding: 10px;
  display: grid;
  gap: 4px;
  color: #253049;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: #ffffff;
  box-shadow: 0 22px 55px rgba(3, 8, 21, 0.25);
}

.account-dropdown a,
.account-dropdown button {
  width: 100%;
  padding: 10px;
  display: block;
  border: 0;
  border-radius: 8px;
  background: transparent;
  text-align: left;
  cursor: pointer;
}

.account-dropdown a:hover,
.account-dropdown button:hover {
  background: #f2f5fb;
}

.account-summary {
  padding: 8px 10px 12px;
  display: grid;
  gap: 4px;
  border-bottom: 1px solid var(--line);
}

.account-summary span {
  overflow: hidden;
  color: var(--muted);
  font-size: 11px;
  text-overflow: ellipsis;
}

.logout-form {
  margin: 0;
}

.hero {
  position: relative;
  width: min(1380px, calc(100% - 64px));
  height: 460px;
  margin: 24px auto 0;
  overflow: hidden;
  color: #ffffff;
  border-radius: 18px;
  background: #050a17;
  box-shadow: 0 0 0 24px #ffffff;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transform: scale(1.025);
  background: radial-gradient(circle at 74% 35%, var(--slide-glow), transparent 31%), linear-gradient(120deg, #030713 15%, #0b1632 58%, #020711);
  transition: opacity 0.7s ease, transform 0.8s ease, visibility 0.7s;
}

.slide-active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

.hero-inner {
  width: min(1180px, calc(100% - 120px));
  height: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
}

.hero-copy {
  position: relative;
  z-index: 5;
}

.eyebrow,
.section-kicker,
.coins-kicker {
  margin: 0 0 14px;
  color: var(--accent, var(--blue));
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.hero h1 {
  max-width: 680px;
  margin: 0;
  font-size: clamp(38px, 4.1vw, 58px);
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.hero-description {
  max-width: 560px;
  margin: 18px 0 24px;
  color: #c5d0e4;
  font-size: 16px;
  line-height: 1.75;
}

.hero-buttons,
.hero-points {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  min-height: 44px;
  padding: 0 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  border-radius: 11px;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
}

.button-primary {
  color: #07101b;
  background: var(--accent, var(--cyan));
  box-shadow: 0 12px 30px rgba(93, 225, 255, 0.22);
}

.button-ghost {
  color: #f5f8ff;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.06);
}

.hero-points {
  margin-top: 24px;
  gap: 22px;
  color: #94a0b8;
  font-size: 12px;
}

.hero-visual {
  position: relative;
  height: 370px;
}

.orbit,
.platform {
  position: absolute;
  left: 50%;
  top: 58%;
  border: 1px solid var(--accent);
  border-radius: 50%;
  transform: translate(-50%, -50%) rotate(-8deg);
}

.orbit-one {
  width: 480px;
  height: 245px;
  opacity: 0.62;
  box-shadow: 0 0 38px var(--slide-glow);
}

.orbit-two {
  width: 360px;
  height: 175px;
  opacity: 0.36;
  border-style: dashed;
  animation: orbitPulse 3.4s ease-in-out infinite;
}

.platform {
  width: 300px;
  height: 130px;
  background: rgba(45, 80, 190, 0.22);
  box-shadow: inset 0 0 50px rgba(60, 130, 255, 0.25);
}

.platform span {
  position: absolute;
  inset: 20px 34px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
}

.light-beam {
  position: absolute;
  left: 50%;
  top: 10px;
  width: 210px;
  height: 330px;
  background: linear-gradient(to bottom, rgba(94, 236, 255, 0), rgba(94, 236, 255, 0.18), rgba(94, 236, 255, 0));
  transform: translateX(-50%) skewX(-13deg);
}

.code-window {
  position: absolute;
  left: 50%;
  top: 45%;
  width: 290px;
  height: 190px;
  padding: 20px;
  border: 1px solid rgba(130, 210, 255, 0.65);
  border-radius: 16px;
  background: linear-gradient(145deg, #15264f, #080e21);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.45);
  transform: translate(-50%, -50%) rotate(5deg);
}

.window-top {
  display: flex;
  gap: 6px;
}

.window-top i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #60e9ff;
}

.code-line {
  height: 8px;
  margin-top: 18px;
  border-radius: 8px;
  background: linear-gradient(90deg, #55e9ff, #6677ff);
}

.line-long { width: 82%; }
.line-mid { width: 62%; }
.line-short { width: 43%; }
.faded { opacity: 0.36; }

.window-badge {
  position: absolute;
  right: -18px;
  bottom: 18px;
  padding: 9px 12px;
  color: #07101b;
  border-radius: 9px;
  background: var(--accent);
  font-size: 11px;
  font-weight: 900;
}

.floating-card {
  position: absolute;
  z-index: 3;
  display: grid;
  place-items: center;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 13px;
  background: linear-gradient(145deg, #2665ee, #592fd0);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.28);
  font-size: 12px;
  font-weight: 900;
}

.card-top {
  left: 42px;
  top: 65px;
  width: 58px;
  height: 58px;
}

.card-side {
  right: 5px;
  top: 116px;
  min-width: 118px;
  height: 48px;
  padding: 0 14px;
}

.slider-arrow {
  position: absolute;
  z-index: 10;
  top: 50%;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.20);
  border-radius: 50%;
  color: #ffffff;
  background: rgba(0, 0, 0, 0.34);
  font-size: 27px;
  cursor: pointer;
  transform: translateY(-50%);
}

.arrow-left { left: 20px; }
.arrow-right { right: 20px; }

.slider-dots {
  position: absolute;
  z-index: 10;
  left: 50%;
  bottom: 20px;
  display: flex;
  gap: 8px;
  transform: translateX(-50%);
}

.dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.38);
  cursor: pointer;
}

.dot-active {
  width: 38px;
  background: #ffffff;
}

.quick-strip {
  position: relative;
  z-index: 20;
  width: min(1040px, calc(100% - 40px));
  min-height: 92px;
  margin: -14px auto 0;
  padding: 22px 34px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid rgba(16, 24, 40, 0.06);
  border-radius: 18px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.announcement-banner {
  position: relative;
  width: calc(100% - 32px);
  max-width: 1536px;
  height: clamp(280px, 33vw, 506px);
  margin: 28px auto 0;
  overflow: hidden;
  border-radius: 20px;
  background: #07101f;
  box-shadow: 0 0 0 10px #ffffff, 0 22px 55px rgba(20, 34, 64, 0.12);
}

.announcement-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

.announcement-slide.is-active {
  opacity: 1;
  visibility: visible;
}

.announcement-arrow {
  position: absolute;
  z-index: 3;
  top: 50%;
  width: 48px;
  height: 48px;
  padding: 0 0 4px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 50%;
  color: #ffffff;
  background: rgba(5, 11, 24, 0.55);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(8px);
  transform: translateY(-50%);
  font: 300 34px/1 Arial, sans-serif;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.announcement-arrow:hover {
  border-color: rgba(255, 255, 255, 0.9);
  background: rgba(5, 11, 24, 0.82);
  transform: translateY(-50%) scale(1.06);
}

.announcement-arrow:focus-visible {
  outline: 3px solid #6df2ff;
  outline-offset: 3px;
}

.announcement-arrow-left { left: 20px; }
.announcement-arrow-right { right: 20px; }

.announcement-banner-empty {
  width: 100%;
  height: 100%;
  display: grid;
  place-content: center;
  gap: 8px;
  color: #ffffff;
  text-align: center;
  background: radial-gradient(circle at 65% 30%, #164674, transparent 35%), linear-gradient(135deg, #050b18, #101d3e);
}

.announcement-banner-empty span {
  color: #6df2ff;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.2em;
}

.announcement-banner-empty strong { font-size: clamp(28px, 4vw, 52px); }
.announcement-banner-empty p { margin: 0; color: #9daac2; font-size: 12px; }

.home-announcement {
  width: min(1120px, calc(100% - 64px));
  margin: 18px auto 0;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid #d9e2ff;
  border-radius: 12px;
  background: #f2f5ff;
}

.home-announcement span {
  padding: 4px 8px;
  color: #ffffff;
  border-radius: 6px;
  background: #4f6cff;
  font-size: 10px;
  font-weight: 900;
}

.home-announcement p {
  margin: 0;
  color: #4b5874;
  font-size: 12px;
}

.quick-strip div {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  border-right: 1px solid var(--line);
}

.quick-strip div:last-child { border-right: 0; }
.quick-strip strong { font-size: 18px; }
.quick-strip span { color: var(--muted); font-size: 12px; }

.category-section {
  padding-top: 92px;
}

.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
}

.section-kicker {
  color: var(--blue);
}

.section-heading h2,
.service-banner h2,
.coin-home-banner h2 {
  margin: 0;
  font-size: clamp(28px, 3vw, 42px);
  letter-spacing: -0.04em;
}

.text-button {
  padding: 6px 0;
  border: 0;
  color: var(--muted);
  background: transparent;
  cursor: pointer;
}

.text-button span {
  color: var(--blue);
}

.categories {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(105px, 1fr));
  border-bottom: 1px solid #d8dde8;
}

.category {
  position: relative;
  min-height: 118px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.category::after {
  content: "";
  position: absolute;
  left: 15%;
  right: 15%;
  bottom: -1px;
  height: 3px;
  background: transparent;
}

.category-active::after {
  background: var(--blue);
}

.category-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: #ffffff;
  border-radius: 16px;
  background: var(--category-color, #5261f0);
  box-shadow: 0 12px 24px rgba(82, 97, 240, 0.22);
  font-size: 17px;
  font-weight: 900;
}

.category-icon img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.products-section {
  padding: 40px 0 90px;
}

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

.product-card {
  min-height: 438px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
  border: 1px solid rgba(26, 36, 62, 0.07);
  border-radius: 15px;
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(29, 41, 78, 0.05);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 44px rgba(29, 41, 78, 0.12);
}

.product-topline {
  width: 100%;
  display: flex;
  justify-content: space-between;
  color: #98a2b3;
  font-size: 10px;
  letter-spacing: 0.08em;
}

.product-icon {
  width: 60px;
  height: 60px;
  margin: 14px 0 16px;
  display: grid;
  place-items: center;
  color: #ffffff;
  border-radius: 17px;
  background: var(--product-color, var(--blue));
  box-shadow: 0 12px 25px rgba(72, 91, 220, 0.24);
  font-size: 25px;
  font-weight: 900;
}

.product-icon.has-image {
  overflow: hidden;
  background: #f2f5fb;
}

.product-icon.has-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.product-card h3 {
  margin: 0;
  font-size: 17px;
  text-align: center;
}

.sales {
  margin: 10px 0 6px;
  color: #ff5162;
  font-size: 12px;
}

.purchase-time {
  margin: 0;
  color: #7b8498;
  font-size: 11px;
}

.product-coin-reward {
  margin: 12px 0 0;
  padding: 6px 9px;
  display: flex;
  align-items: center;
  gap: 5px;
  color: #9a6100;
  border-radius: 99px;
  background: #fff5cf;
  font-size: 10px;
  font-weight: 800;
}

.product-coin-reward img {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.tags {
  min-height: 49px;
  margin-top: 14px;
  display: flex;
  align-content: flex-start;
  justify-content: center;
  flex-wrap: wrap;
  gap: 5px;
}

.tags span {
  padding: 3px 7px;
  color: #858fa2;
  border: 1px solid #d9dde6;
  border-radius: 99px;
  font-size: 10px;
}

.product-card-price {
  width: 100%;
  margin-top: auto;
  padding-top: 14px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  border-top: 1px solid #eef0f5;
}

.product-card-price > div {
  display: flex;
  align-items: baseline;
}

.product-card-price span,
.product-card-price strong {
  color: #ff4d5f;
  font-weight: 900;
}

.product-card-price strong {
  font-size: 23px;
  line-height: 1;
}

.product-card-price small {
  margin-left: 3px;
  color: #8993a5;
  font-size: 10px;
}

.product-card-price del {
  color: #a6adba;
  font-size: 10px;
}

.product-card-actions {
  width: 100%;
  margin-top: 12px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.product-card-actions a {
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 9px;
  font-size: 11px;
  font-weight: 800;
}

.product-card-detail {
  color: #4d576c;
  border: 1px solid #dce1eb;
}

.product-card-buy {
  color: #ffffff;
  background: linear-gradient(135deg, #6576ff, #4859dc);
}

.products-empty {
  min-height: 220px;
  padding: 65px 24px;
  text-align: center;
  border: 1px dashed #d4dbe7;
  border-radius: 18px;
  background: #ffffff;
}

.products-empty strong {
  font-size: 20px;
}

.products-empty p {
  color: var(--muted);
}

.company-profile {
  margin-bottom: 74px;
}

.company-profile-heading {
  margin-bottom: 24px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}

.company-profile-heading h2 {
  margin: 4px 0 6px;
  font-size: clamp(28px, 3vw, 40px);
  letter-spacing: -0.04em;
}

.company-profile-heading > div > p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.company-profile-link {
  min-height: 48px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex: 0 0 auto;
  color: #384157;
  border: 1px solid #c8cfdd;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 800;
  transition: color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.company-profile-link:hover {
  color: var(--blue);
  border-color: #8fa0ff;
  transform: translateY(-2px);
}

.company-profile-panel {
  min-height: 470px;
  padding: 42px;
  display: grid;
  grid-template-columns: minmax(170px, 0.65fr) minmax(310px, 1.1fr) minmax(280px, 1fr);
  align-items: stretch;
  gap: 36px;
  overflow: hidden;
  border: 1px solid #edf0f5;
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 28px 70px rgba(27, 44, 88, 0.08);
}

.company-profile-stats {
  display: grid;
  align-content: space-between;
  gap: 24px;
}

.company-profile-stats article {
  display: grid;
  gap: 9px;
}

.company-profile-stats span {
  color: #5f687b;
  font-size: 12px;
}

.company-profile-stats strong {
  color: #0c1327;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(30px, 3vw, 43px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.045em;
}

.company-profile-features {
  display: grid;
  align-content: center;
  gap: 16px;
}

.company-profile-features article {
  min-height: 78px;
  padding: 14px 18px;
  display: grid;
  grid-template-columns: 42px 1fr;
  align-items: center;
  gap: 14px;
  border: 1px solid #eef1f6;
  border-radius: 18px;
  background: #f7f8fb;
}

.company-profile-features b {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: #ffffff;
  border-radius: 14px;
  background: linear-gradient(145deg, #6e78ff, #4358ef);
  box-shadow: 0 10px 22px rgba(73, 90, 235, 0.22);
  font-size: 11px;
}

.company-profile-features div {
  min-width: 0;
  display: grid;
  gap: 5px;
}

.company-profile-features strong {
  color: #1a2236;
  font-size: 15px;
}

.company-profile-features span {
  color: #7a8497;
  font-size: 11px;
  line-height: 1.55;
}

.company-profile-visual {
  position: relative;
  min-height: 360px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 22px;
  background: radial-gradient(circle at 68% 70%, rgba(0, 226, 247, 0.9), transparent 33%), radial-gradient(circle at 42% 42%, rgba(37, 94, 255, 0.72), transparent 42%), linear-gradient(145deg, #edf4ff, #f6fbff);
}

.company-profile-visual::before,
.company-profile-visual::after,
.company-profile-visual i {
  content: "";
  position: absolute;
  border: 1px solid rgba(72, 108, 255, 0.18);
  border-radius: 50%;
}

.company-profile-visual::before { width: 330px; height: 330px; }
.company-profile-visual::after { width: 245px; height: 245px; }
.company-profile-visual i:first-child { width: 170px; height: 170px; }
.company-profile-visual i:nth-child(2) { width: 410px; height: 410px; }

.company-profile-visual img {
  position: relative;
  z-index: 2;
  width: min(88%, 330px);
  max-height: 330px;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 26px 28px rgba(7, 53, 146, 0.24));
}

.about-page {
  background: #eef2fa;
}

.about-page-width {
  width: min(1180px, calc(100% - 48px));
  margin-left: auto;
  margin-right: auto;
}

.about-page-hero {
  position: relative;
  padding: 68px 0 58px;
  overflow: hidden;
  background: radial-gradient(circle at 50% 38%, rgba(86, 117, 255, 0.16), transparent 30%), radial-gradient(circle at 82% 75%, rgba(56, 224, 245, 0.13), transparent 25%), linear-gradient(180deg, #f2f5ff, #eaf0fb);
}

.about-page-heading {
  position: relative;
  z-index: 3;
  text-align: center;
}

.about-page-heading h1 {
  margin: 7px 0 10px;
  color: #10182c;
  font-size: clamp(40px, 5vw, 66px);
  line-height: 1.08;
  letter-spacing: -0.06em;
}

.about-page-heading > p:last-child {
  margin: 0;
  color: #66728a;
  font-size: 16px;
}

.about-page-showcase {
  position: relative;
  min-height: 590px;
  margin-top: 22px;
  padding: 68px 0 18px;
  display: grid;
  align-content: space-between;
  gap: 30px;
}

.about-page-orbit {
  position: absolute;
  z-index: 0;
  top: -18px;
  left: 50%;
  width: 530px;
  height: 530px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(77, 103, 242, 0.14);
  border-radius: 50%;
  background: radial-gradient(circle at 63% 68%, rgba(0, 226, 244, 0.88), transparent 27%), radial-gradient(circle at 42% 40%, rgba(38, 86, 248, 0.82), transparent 41%), radial-gradient(circle at 50% 50%, #c9ddff 0, #edf4ff 64%, transparent 65%);
  box-shadow: inset -36px -30px 70px rgba(77, 77, 219, 0.16), 0 40px 100px rgba(72, 98, 199, 0.16);
  transform: translateX(-50%);
}

.about-page-orbit::before,
.about-page-orbit::after,
.about-page-orbit i,
.about-page-orbit span {
  content: "";
  position: absolute;
  border: 1px solid rgba(83, 105, 231, 0.18);
  border-radius: 50%;
  transform: rotate(-16deg);
}

.about-page-orbit::before { width: 720px; height: 260px; }
.about-page-orbit::after { width: 650px; height: 205px; }
.about-page-orbit i:first-child { width: 390px; height: 390px; transform: none; }
.about-page-orbit i:nth-child(2) { width: 295px; height: 295px; transform: none; }
.about-page-orbit span { width: 585px; height: 150px; border-width: 8px; border-color: rgba(255, 255, 255, 0.54); }

.about-page-orbit img {
  position: relative;
  z-index: 2;
  width: min(62%, 320px);
  max-height: 320px;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 24px 35px rgba(14, 38, 118, 0.3));
}

.about-page-stats {
  position: relative;
  z-index: 2;
  width: min(650px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.about-page-stats article {
  display: grid;
  gap: 8px;
  text-align: center;
}

.about-page-stats strong {
  color: #4f5ff0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(30px, 4vw, 44px);
  font-style: italic;
  line-height: 1;
}

.about-page-stats span {
  color: #182039;
  font-size: 12px;
  font-weight: 800;
}

.about-page-feature-row {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.about-page-feature-row article {
  min-height: 86px;
  padding: 16px 18px;
  display: grid;
  grid-template-columns: 40px 1fr;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(217, 224, 239, 0.92);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.93);
  box-shadow: 0 14px 34px rgba(40, 55, 110, 0.12);
  backdrop-filter: blur(12px);
}

.about-page-feature-row b {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  color: #ffffff;
  border-radius: 13px;
  background: linear-gradient(145deg, #7180ff, #4858ee);
  font-size: 10px;
}

.about-page-feature-row div {
  min-width: 0;
  display: grid;
  gap: 4px;
}

.about-page-feature-row strong {
  font-size: 14px;
}

.about-page-feature-row span {
  color: #7a8498;
  font-size: 9px;
  line-height: 1.5;
}

.about-page-story {
  padding: 88px 0;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  align-items: start;
  gap: 70px;
}

.about-page-story-main h2 {
  margin: 8px 0 26px;
  font-size: clamp(38px, 5vw, 58px);
  letter-spacing: -0.055em;
}

.about-page-richtext {
  max-width: 700px;
  color: #535f75;
  font-size: 16px;
  line-height: 2;
}

.about-page-values {
  display: grid;
  gap: 16px;
}

.about-page-values article {
  padding: 26px;
  border: 1px solid #e3e8f2;
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 18px 45px rgba(33, 50, 92, 0.08);
}

.about-page-values span {
  color: var(--blue);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.about-page-values h3 {
  margin: 14px 0 9px;
  font-size: 20px;
}

.about-page-values p {
  margin: 0;
  color: #6b768a;
  font-size: 12px;
  line-height: 1.8;
}

.about-page-cta {
  margin-bottom: 80px;
  padding: 38px 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  color: #ffffff;
  border-radius: 24px;
  background: radial-gradient(circle at 80% 20%, rgba(70, 224, 255, 0.24), transparent 25%), linear-gradient(125deg, #0b1229, #293d9c);
  box-shadow: 0 26px 65px rgba(26, 42, 99, 0.2);
}

.about-page-cta .section-kicker { color: #77efff; }
.about-page-cta h2 { margin: 7px 0 0; font-size: clamp(25px, 3vw, 36px); }
.about-page-cta > a { min-height: 48px; padding: 0 20px; display: inline-flex; align-items: center; gap: 12px; flex: 0 0 auto; border: 1px solid rgba(255, 255, 255, 0.25); border-radius: 12px; font-size: 12px; font-weight: 800; }

/* 企业采购独立页 */
.enterprise-width { width: min(1180px, calc(100% - 48px)); margin-right: auto; margin-left: auto; }
.enterprise-hero { position: relative; overflow: hidden; padding: 82px 0 72px; background: radial-gradient(circle at 88% 26%, rgba(59,224,240,.26), transparent 28%), radial-gradient(circle at 58% 12%, rgba(103,94,255,.2), transparent 28%), linear-gradient(135deg,#f4f6ff 0%,#eef3ff 55%,#e8fbff 100%); }
.enterprise-hero::before { content: ""; position: absolute; left: -120px; bottom: -200px; width: 440px; height: 440px; border: 1px solid rgba(82,100,235,.12); border-radius: 50%; box-shadow: 0 0 0 65px rgba(82,100,235,.035),0 0 0 130px rgba(82,100,235,.025); }
.enterprise-hero-grid { position: relative; z-index: 1; min-height: 560px; display: grid; grid-template-columns: minmax(0,1.04fr) minmax(420px,.96fr); align-items: center; gap: 60px; }
.enterprise-hero-copy { position: relative; z-index: 2; }
.enterprise-hero-copy h1 { max-width: 680px; margin: 12px 0 22px; color: #10182c; font-size: clamp(48px,6vw,78px); line-height: 1.08; letter-spacing: -.065em; }
.enterprise-hero-copy > p:not(.section-kicker) { max-width: 620px; margin: 0; color: #5d6981; font-size: 18px; line-height: 1.9; }
.enterprise-hero-actions { margin-top: 38px; display: flex; flex-wrap: wrap; gap: 14px; }
.enterprise-hero-actions a { min-height: 52px; padding: 0 26px; display: inline-flex; align-items: center; justify-content: center; border-radius: 12px; font-size: 14px; font-weight: 850; transition: transform .2s ease,box-shadow .2s ease; }
.enterprise-hero-actions a:hover { transform: translateY(-2px); }
.enterprise-primary-action { color: #fff; background: linear-gradient(135deg,#6875ff,#4959e9); box-shadow: 0 15px 32px rgba(74,88,232,.28); }
.enterprise-secondary-action { color: #4654d4; border: 1px solid rgba(76,91,218,.38); background: rgba(255,255,255,.68); }
.enterprise-hero-facts { margin-top: 54px; display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 18px; }
.enterprise-hero-facts article { padding-right: 18px; display: grid; gap: 6px; border-right: 1px solid rgba(79,96,160,.18); }
.enterprise-hero-facts article:last-child { border-right: 0; }
.enterprise-hero-facts strong { color: #26368f; font-size: 25px; font-weight: 900; }
.enterprise-hero-facts span { color: #778299; font-size: 11px; }
.enterprise-hero-visual { position: relative; min-height: 520px; display: grid; place-items: center; }
.enterprise-visual-rings { position: relative; width: min(470px,100%); aspect-ratio: 1; display: grid; place-items: center; border: 1px solid rgba(85,104,230,.18); border-radius: 50%; background: radial-gradient(circle at 65% 66%,rgba(42,221,244,.9),transparent 25%),radial-gradient(circle at 40% 40%,rgba(71,95,244,.82),transparent 47%),linear-gradient(145deg,#dae7ff,#f6fbff); box-shadow: inset -38px -32px 75px rgba(56,75,195,.16),0 38px 95px rgba(47,72,168,.18); }
.enterprise-visual-rings::before,.enterprise-visual-rings::after,.enterprise-visual-rings i,.enterprise-visual-rings span { content: ""; position: absolute; border: 1px solid rgba(86,104,220,.22); border-radius: 50%; }
.enterprise-visual-rings::before { width: 118%; height: 52%; transform: rotate(-12deg); }
.enterprise-visual-rings::after { width: 106%; height: 42%; border-width: 8px; border-color: rgba(255,255,255,.55); transform: rotate(-12deg); }
.enterprise-visual-rings i:first-child { width: 74%; height: 74%; }
.enterprise-visual-rings i:nth-child(2) { width: 54%; height: 54%; }
.enterprise-visual-rings img { position: relative; z-index: 3; width: min(64%,300px); max-height: 300px; object-fit: contain; filter: drop-shadow(0 22px 36px rgba(15,35,111,.32)); }
.enterprise-visual-chip { position: absolute; z-index: 4; padding: 11px 16px; color: #263153; border: 1px solid rgba(211,220,244,.9); border-radius: 12px; background: rgba(255,255,255,.94); box-shadow: 0 14px 34px rgba(41,59,126,.13); font-size: 11px; }
.enterprise-visual-chip::before { content: ""; width: 7px; height: 7px; margin-right: 8px; display: inline-block; border-radius: 50%; background: #6272f4; box-shadow: 0 0 0 4px rgba(98,114,244,.13); }
.enterprise-visual-chip.chip-one { top: 13%; left: 0; }
.enterprise-visual-chip.chip-two { top: 30%; right: -2%; }
.enterprise-visual-chip.chip-three { right: 7%; bottom: 15%; }
.enterprise-section { padding: 92px 0; }
.enterprise-section-heading { max-width: 760px; margin: 0 auto 46px; text-align: center; }
.enterprise-section-heading h2 { margin: 8px 0 13px; color: #111a30; font-size: clamp(34px,4vw,52px); letter-spacing: -.045em; }
.enterprise-section-heading > p:last-child { margin: 0; color: #758096; font-size: 14px; line-height: 1.8; }
.enterprise-benefit-grid { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 20px; }
.enterprise-benefit-card { position: relative; min-height: 250px; padding: 50px 28px 28px; overflow: hidden; border: 1px solid #e1e6f1; border-radius: 22px; background: #fff; box-shadow: 0 20px 55px rgba(37,52,100,.09); }
.enterprise-benefit-card::after { content: ""; position: absolute; right: -45px; bottom: -55px; width: 145px; height: 145px; border-radius: 50%; background: radial-gradient(circle,#dffbff,rgba(227,234,255,.28) 58%,transparent 60%); }
.enterprise-benefit-card > b { width: 58px; height: 58px; display: grid; place-items: center; color: #fff; border-radius: 18px; background: linear-gradient(145deg,#6d7bff,#4254df); box-shadow: 0 13px 27px rgba(75,91,224,.28); font-size: 13px; }
.enterprise-benefit-card h3 { margin: 27px 0 12px; color: #141d34; font-size: 22px; }
.enterprise-benefit-card p { position: relative; z-index: 1; margin: 0; color: #69758a; font-size: 13px; line-height: 1.9; }
.enterprise-solution { margin-bottom: 92px; padding: 58px; display: grid; grid-template-columns: minmax(0,1.25fr) minmax(320px,.75fr); gap: 44px; color: #fff; border-radius: 30px; background: radial-gradient(circle at 86% 18%,rgba(64,225,244,.2),transparent 25%),linear-gradient(135deg,#0c142d,#253a91); box-shadow: 0 30px 75px rgba(26,43,105,.22); }
.enterprise-solution-main h2 { margin: 9px 0 24px; font-size: clamp(35px,4vw,52px); letter-spacing: -.045em; }
.enterprise-solution-main > div { max-width: 710px; color: #c5cee0; font-size: 15px; line-height: 2; }
.enterprise-solution-aside { display: grid; gap: 16px; }
.enterprise-solution-aside article { padding: 24px; border: 1px solid rgba(255,255,255,.14); border-radius: 18px; background: rgba(255,255,255,.07); backdrop-filter: blur(10px); }
.enterprise-solution-aside span { color: #68edff; font-size: 9px; font-weight: 900; letter-spacing: .14em; }
.enterprise-solution-aside h3 { margin: 11px 0 8px; font-size: 19px; }
.enterprise-solution-aside p { margin: 0; color: #bcc6dc; font-size: 11px; line-height: 1.8; }
.enterprise-process { padding: 92px 0; background: linear-gradient(180deg,#f4f7fd,#eef2fa); }
.enterprise-process-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 22px; }
.enterprise-process-grid article { position: relative; padding: 32px; display: grid; grid-template-columns: 56px 1fr; align-items: start; gap: 20px; border: 1px solid #e0e6f1; border-radius: 22px; background: #fff; box-shadow: 0 17px 45px rgba(38,53,102,.08); }
.enterprise-process-grid article:not(:last-child)::after { content: "→"; position: absolute; top: 50%; right: -19px; z-index: 2; width: 36px; height: 36px; display: grid; place-items: center; color: #5969e9; border: 1px solid #dfe4f2; border-radius: 50%; background: #fff; transform: translateY(-50%); }
.enterprise-process-grid b { width: 56px; height: 56px; display: grid; place-items: center; color: #fff; border-radius: 17px; background: linear-gradient(145deg,#6676fb,#4556dc); }
.enterprise-process-grid h3 { margin: 2px 0 10px; font-size: 19px; }
.enterprise-process-grid p { margin: 0; color: #6d788d; font-size: 12px; line-height: 1.8; }
.enterprise-cta { margin-top: 88px; margin-bottom: 88px; padding: 44px 48px; display: flex; align-items: center; justify-content: space-between; gap: 30px; color: #fff; border-radius: 26px; background: radial-gradient(circle at 85% 22%,rgba(73,231,244,.25),transparent 25%),linear-gradient(125deg,#111a39,#334aac); box-shadow: 0 26px 68px rgba(25,43,108,.22); }
.enterprise-cta h2 { margin: 8px 0 0; font-size: clamp(28px,3.4vw,42px); }
.enterprise-cta > div > p:last-child { max-width: 720px; margin: 11px 0 0; color: #c3cce2; font-size: 12px; line-height: 1.7; }
.enterprise-cta > a { min-height: 50px; padding: 0 21px; display: inline-flex; align-items: center; gap: 12px; flex: 0 0 auto; border: 1px solid rgba(255,255,255,.28); border-radius: 12px; background: rgba(255,255,255,.06); font-size: 12px; font-weight: 850; }

@media (max-width: 1000px) {
  .enterprise-hero-grid { grid-template-columns: 1fr; }
  .enterprise-hero-copy { text-align: center; }
  .enterprise-hero-copy h1,.enterprise-hero-copy > p:not(.section-kicker) { margin-right: auto; margin-left: auto; }
  .enterprise-hero-actions { justify-content: center; }
  .enterprise-hero-facts { max-width: 680px; margin-right: auto; margin-left: auto; }
  .enterprise-hero-visual { min-height: 500px; }
  .enterprise-benefit-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .enterprise-solution { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .enterprise-width { width: calc(100% - 28px); }
  .enterprise-hero { padding: 54px 0 42px; }
  .enterprise-hero-grid { min-height: 0; gap: 28px; }
  .enterprise-hero-copy h1 { font-size: 46px; }
  .enterprise-hero-copy > p:not(.section-kicker) { font-size: 14px; }
  .enterprise-hero-actions { display: grid; grid-template-columns: 1fr 1fr; }
  .enterprise-hero-actions a { padding: 0 12px; }
  .enterprise-hero-facts { margin-top: 34px; gap: 10px; }
  .enterprise-hero-facts article { padding-right: 8px; }
  .enterprise-hero-facts strong { font-size: 20px; }
  .enterprise-hero-facts span { font-size: 9px; }
  .enterprise-hero-visual { min-height: 350px; }
  .enterprise-visual-rings { width: min(310px,86vw); }
  .enterprise-visual-chip { padding: 8px 10px; font-size: 9px; }
  .enterprise-visual-chip.chip-one { left: 0; }
  .enterprise-visual-chip.chip-two { right: 0; }
  .enterprise-section,.enterprise-process { padding: 65px 0; }
  .enterprise-benefit-grid,.enterprise-process-grid { grid-template-columns: 1fr; }
  .enterprise-benefit-card { min-height: 0; }
  .enterprise-solution { margin-bottom: 65px; padding: 30px 24px; border-radius: 22px; }
  .enterprise-process-grid article:not(:last-child)::after { content: "↓"; top: auto; right: 50%; bottom: -19px; transform: translateX(50%); }
  .enterprise-cta { margin-top: 65px; margin-bottom: 65px; padding: 32px 24px; align-items: stretch; flex-direction: column; }
  .enterprise-cta > a { justify-content: center; }
}

.editorial-home {
  margin-bottom: 74px;
}

/* 首页联盟合作 */
.alliance-home {
  margin-bottom: 74px;
  scroll-margin-top: 96px;
}

.alliance-home-shell {
  position: relative;
  overflow: hidden;
  padding: 58px;
  color: #ffffff;
  border-radius: 30px;
  background:
    radial-gradient(circle at 84% 14%, rgba(65, 226, 244, 0.27), transparent 28%),
    radial-gradient(circle at 62% 0%, rgba(106, 92, 255, 0.25), transparent 32%),
    linear-gradient(132deg, #09132e 0%, #172c71 57%, #28449b 100%);
  box-shadow: 0 30px 76px rgba(30, 48, 116, 0.24);
}

.alliance-home-shell::before {
  content: "";
  position: absolute;
  left: -160px;
  bottom: -250px;
  width: 460px;
  height: 460px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(255, 255, 255, 0.025), 0 0 0 140px rgba(255, 255, 255, 0.018);
}

.alliance-home-hero {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(330px, 0.92fr);
  align-items: center;
  gap: 54px;
}

.alliance-home-copy .section-kicker {
  color: #6df1ff;
}

.alliance-home-copy h2 {
  max-width: 650px;
  margin: 10px 0 18px;
  font-size: clamp(38px, 4.5vw, 60px);
  line-height: 1.13;
  letter-spacing: -0.055em;
}

.alliance-home-copy > p:not(.section-kicker) {
  max-width: 650px;
  margin: 0;
  color: #c8d4eb;
  font-size: 14px;
  line-height: 1.9;
}

.alliance-home-actions {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.alliance-home-actions a,
.alliance-home-actions button {
  min-height: 50px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  border-radius: 12px;
  font: inherit;
  font-size: 13px;
  font-weight: 850;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.alliance-home-actions a:hover,
.alliance-home-actions button:hover {
  transform: translateY(-2px);
}

.alliance-home-primary {
  color: #122049;
  background: linear-gradient(135deg, #79f7d0, #65e7ff);
  box-shadow: 0 14px 30px rgba(68, 229, 238, 0.23);
}

.alliance-home-secondary {
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.25) !important;
  background: rgba(255, 255, 255, 0.07);
}

.alliance-home-visual {
  min-height: 330px;
  display: grid;
  place-items: center;
}

.alliance-home-orbit {
  position: relative;
  width: min(330px, 100%);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 1px solid rgba(135, 233, 255, 0.28);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(85, 112, 241, 0.34), rgba(30, 54, 135, 0.1) 58%, transparent 59%);
}

.alliance-home-orbit::before,
.alliance-home-orbit::after,
.alliance-home-orbit > i {
  content: "";
  position: absolute;
  border: 1px solid rgba(128, 230, 255, 0.26);
  border-radius: 50%;
}

.alliance-home-orbit::before { width: 116%; height: 46%; transform: rotate(-14deg); }
.alliance-home-orbit::after { width: 94%; height: 94%; }
.alliance-home-orbit > i:first-child { width: 68%; height: 68%; }
.alliance-home-orbit > i:nth-child(2) { width: 132%; height: 30%; transform: rotate(18deg); }

.alliance-home-logo {
  position: relative;
  z-index: 3;
  width: 144px;
  height: 144px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.23);
  border-radius: 34px;
  background: rgba(7, 16, 48, 0.55);
  box-shadow: 0 26px 55px rgba(0, 12, 54, 0.35);
  backdrop-filter: blur(12px);
  transform: rotate(-5deg);
}

.alliance-home-logo img {
  width: 118px;
  max-height: 118px;
  object-fit: contain;
  filter: drop-shadow(0 13px 22px rgba(0, 0, 0, 0.32));
}

.alliance-chip {
  position: absolute;
  z-index: 4;
  padding: 10px 14px;
  color: #21315a;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 14px 30px rgba(4, 14, 51, 0.2);
  font-size: 10px;
  font-weight: 850;
}

.alliance-chip::before {
  content: "";
  width: 7px;
  height: 7px;
  margin-right: 7px;
  display: inline-block;
  border-radius: 50%;
  background: #596dff;
}

.alliance-chip-one { top: 11%; left: -7%; }
.alliance-chip-two { top: 35%; right: -12%; }
.alliance-chip-three { right: 1%; bottom: 9%; }

.alliance-home-grid {
  position: relative;
  z-index: 2;
  margin-top: 44px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.alliance-home-card {
  min-height: 190px;
  padding: 25px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.075);
  backdrop-filter: blur(10px);
  transition: transform 0.2s ease, background 0.2s ease;
}

.alliance-home-card:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.11);
}

.alliance-home-card > span {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  color: #07142f;
  border-radius: 12px;
  background: linear-gradient(135deg, #82f6d0, #66ddff);
  font-size: 10px;
  font-weight: 900;
}

.alliance-home-card h3 {
  margin: 19px 0 9px;
  font-size: 19px;
}

.alliance-home-card p {
  margin: 0;
  color: #c1cee4;
  font-size: 11px;
  line-height: 1.85;
}

.alliance-home-process {
  position: relative;
  z-index: 2;
  margin-top: 18px;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 16px;
  background: rgba(3, 11, 37, 0.28);
}

.alliance-home-process strong {
  margin-right: auto;
  font-size: 12px;
}

.alliance-home-process span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #d3dcef;
  font-size: 10px;
  white-space: nowrap;
}

.alliance-home-process span b {
  color: #72f0e3;
  font-size: 9px;
}

.alliance-home-process i {
  color: rgba(255, 255, 255, 0.38);
  font-style: normal;
}

@media (max-width: 1000px) {
  .alliance-home-shell { padding: 44px; }
  .alliance-home-hero { grid-template-columns: 1fr; gap: 20px; }
  .alliance-home-copy { text-align: center; }
  .alliance-home-copy h2,
  .alliance-home-copy > p:not(.section-kicker) { margin-right: auto; margin-left: auto; }
  .alliance-home-actions { justify-content: center; }
  .alliance-home-visual { min-height: 320px; }
}

@media (max-width: 760px) {
  .alliance-home { margin-bottom: 54px; }
  .alliance-home-shell { padding: 34px 21px 24px; border-radius: 22px; }
  .alliance-home-copy h2 { font-size: 37px; }
  .alliance-home-copy > p:not(.section-kicker) { font-size: 12px; }
  .alliance-home-actions { display: grid; grid-template-columns: 1fr; }
  .alliance-home-actions a,
  .alliance-home-actions button { width: 100%; }
  .alliance-home-visual { min-height: 270px; }
  .alliance-home-orbit { width: min(245px, 78vw); }
  .alliance-home-logo { width: 112px; height: 112px; border-radius: 27px; }
  .alliance-home-logo img { width: 90px; max-height: 90px; }
  .alliance-chip { padding: 7px 9px; font-size: 8px; }
  .alliance-chip-one { left: -4%; }
  .alliance-chip-two { right: -7%; }
  .alliance-home-grid { margin-top: 26px; grid-template-columns: 1fr; gap: 11px; }
  .alliance-home-card { min-height: 0; padding: 21px; }
  .alliance-home-process { align-items: flex-start; flex-direction: column; }
  .alliance-home-process strong { margin-bottom: 4px; }
  .alliance-home-process i { display: none; }
}

/* 联盟合作独立页 */
.alliance-page {
  background: #f4f6fb;
}

.alliance-width {
  width: min(1180px, calc(100% - 48px));
  margin-right: auto;
  margin-left: auto;
}

.alliance-hero {
  position: relative;
  overflow: hidden;
  padding: 78px 0 70px;
  color: #ffffff;
  background:
    radial-gradient(circle at 82% 26%, rgba(55, 226, 244, 0.3), transparent 27%),
    radial-gradient(circle at 59% 4%, rgba(103, 93, 255, 0.28), transparent 31%),
    linear-gradient(128deg, #071026 0%, #142b70 58%, #2949a4 100%);
}

.alliance-hero::before {
  content: "";
  position: absolute;
  left: -180px;
  bottom: -290px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 50%;
  box-shadow: 0 0 0 78px rgba(255, 255, 255, 0.025), 0 0 0 156px rgba(255, 255, 255, 0.018);
}

.alliance-hero-grid {
  position: relative;
  z-index: 1;
  min-height: 570px;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(430px, 0.96fr);
  align-items: center;
  gap: 62px;
}

.alliance-hero-copy .section-kicker {
  color: #6cf0ff;
}

.alliance-hero-copy h1 {
  max-width: 690px;
  margin: 13px 0 23px;
  font-size: clamp(50px, 6vw, 76px);
  line-height: 1.08;
  letter-spacing: -0.065em;
}

.alliance-hero-copy > p:not(.section-kicker) {
  max-width: 650px;
  margin: 0;
  color: #c6d2e8;
  font-size: 17px;
  line-height: 1.95;
}

.alliance-hero-actions {
  margin-top: 37px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.alliance-hero-actions a,
.alliance-hero-actions button {
  min-height: 54px;
  padding: 0 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 13px;
  font: inherit;
  font-size: 14px;
  font-weight: 850;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.alliance-hero-actions a:hover,
.alliance-hero-actions button:hover {
  transform: translateY(-2px);
}

.alliance-primary-action {
  color: #10204b;
  background: linear-gradient(135deg, #7bf6cb, #61e5ff);
  box-shadow: 0 15px 35px rgba(56, 226, 235, 0.23);
}

.alliance-secondary-action {
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.27) !important;
  background: rgba(255, 255, 255, 0.07);
}

.alliance-hero-tags {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.alliance-hero-tags span {
  padding: 8px 12px;
  color: #cbd7ec;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.045);
  font-size: 10px;
}

.alliance-hero-visual {
  position: relative;
  min-height: 520px;
  display: grid;
  place-items: center;
}

.alliance-planet {
  position: relative;
  width: min(450px, 100%);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 1px solid rgba(139, 234, 255, 0.26);
  border-radius: 50%;
  background:
    radial-gradient(circle at 68% 72%, rgba(52, 226, 241, 0.9), transparent 24%),
    radial-gradient(circle at 41% 40%, rgba(76, 99, 240, 0.83), transparent 48%),
    linear-gradient(145deg, rgba(174, 209, 255, 0.58), rgba(38, 66, 157, 0.22));
  box-shadow: inset -40px -35px 80px rgba(11, 27, 93, 0.26), 0 38px 88px rgba(3, 12, 48, 0.26);
}

.alliance-planet::before,
.alliance-planet::after,
.alliance-planet i,
.alliance-planet span {
  content: "";
  position: absolute;
  border: 1px solid rgba(145, 235, 255, 0.27);
  border-radius: 50%;
}

.alliance-planet::before { width: 120%; height: 48%; transform: rotate(-13deg); }
.alliance-planet::after { width: 108%; height: 39%; border-width: 7px; border-color: rgba(255, 255, 255, 0.25); transform: rotate(-13deg); }
.alliance-planet i:first-child { width: 73%; height: 73%; }
.alliance-planet i:nth-child(2) { width: 53%; height: 53%; }
.alliance-planet span { width: 130%; height: 27%; transform: rotate(18deg); }

.alliance-planet img {
  position: relative;
  z-index: 3;
  width: min(62%, 280px);
  max-height: 280px;
  object-fit: contain;
  filter: drop-shadow(0 22px 34px rgba(4, 16, 67, 0.4));
}

.alliance-visual-chip {
  position: absolute;
  z-index: 4;
  padding: 11px 16px;
  color: #263257;
  border: 1px solid rgba(219, 228, 248, 0.9);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 15px 34px rgba(3, 15, 59, 0.22);
  font-size: 11px;
}

.alliance-visual-chip::before {
  content: "";
  width: 7px;
  height: 7px;
  margin-right: 8px;
  display: inline-block;
  border-radius: 50%;
  background: #6274f5;
  box-shadow: 0 0 0 4px rgba(98, 116, 245, 0.14);
}

.alliance-visual-chip.chip-one { top: 12%; left: -1%; }
.alliance-visual-chip.chip-two { top: 33%; right: -4%; }
.alliance-visual-chip.chip-three { right: 7%; bottom: 13%; }

.alliance-section,
.alliance-channels {
  padding-top: 92px;
  padding-bottom: 92px;
}

.alliance-section-heading {
  max-width: 780px;
  margin: 0 auto 46px;
  text-align: center;
}

.alliance-section-heading h2 {
  margin: 9px 0 13px;
  color: #10192f;
  font-size: clamp(34px, 4vw, 52px);
  letter-spacing: -0.05em;
}

.alliance-section-heading > p:last-child {
  margin: 0;
  color: #758096;
  font-size: 14px;
  line-height: 1.85;
}

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

.alliance-option-card {
  position: relative;
  min-height: 290px;
  padding: 34px;
  overflow: hidden;
  border: 1px solid #dfe5f0;
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 20px 52px rgba(35, 50, 98, 0.09);
}

.alliance-option-card::after {
  content: "";
  position: absolute;
  right: -45px;
  bottom: -55px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle, #dffbff, rgba(227, 234, 255, 0.28) 58%, transparent 60%);
}

.alliance-option-card > b {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  color: #ffffff;
  border-radius: 16px;
  background: linear-gradient(145deg, #6c7cff, #4356dc);
  box-shadow: 0 13px 27px rgba(75, 91, 224, 0.27);
  font-size: 12px;
}

.alliance-option-card h3 {
  margin: 25px 0 11px;
  color: #131d34;
  font-size: 23px;
}

.alliance-option-card p {
  position: relative;
  z-index: 1;
  margin: 0 0 22px;
  color: #69758a;
  font-size: 13px;
  line-height: 1.9;
}

.alliance-option-card a,
.alliance-option-card button {
  position: relative;
  z-index: 2;
  padding: 0;
  color: #4d5cdd;
  border: 0;
  background: transparent;
  font: inherit;
  font-size: 11px;
  font-weight: 850;
  cursor: pointer;
}

.alliance-benefits,
.alliance-steps {
  padding: 92px 0;
  background: linear-gradient(180deg, #edf2fb, #f5f7fc);
}

.alliance-benefit-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.alliance-benefit-grid article {
  min-height: 150px;
  padding: 26px;
  display: grid;
  grid-template-columns: 58px 1fr;
  align-items: start;
  gap: 20px;
  border: 1px solid #dfe5f0;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 16px 42px rgba(39, 53, 99, 0.07);
}

.alliance-benefit-grid article > span {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  color: #ffffff;
  border-radius: 17px;
  background: linear-gradient(145deg, #6878fb, #4457de);
  font-size: 11px;
  font-weight: 900;
}

.alliance-benefit-grid h3 {
  margin: 3px 0 9px;
  color: #16213a;
  font-size: 19px;
}

.alliance-benefit-grid p {
  margin: 0;
  color: #6c788d;
  font-size: 12px;
  line-height: 1.85;
}

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

.alliance-channel-grid article {
  min-height: 230px;
  padding: 29px;
  border: 1px solid #e0e6f0;
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 18px 48px rgba(37, 51, 98, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.alliance-channel-grid article:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 58px rgba(37, 51, 98, 0.13);
}

.alliance-channel-grid b {
  color: #5264e8;
  font-size: 11px;
  letter-spacing: 0.1em;
}

.alliance-channel-grid h3 {
  margin: 29px 0 11px;
  color: #151f37;
  font-size: 21px;
}

.alliance-channel-grid p {
  margin: 0;
  color: #6d798e;
  font-size: 12px;
  line-height: 1.9;
}

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

.alliance-step-grid article {
  position: relative;
  padding: 31px;
  display: grid;
  grid-template-columns: 58px 1fr;
  align-items: start;
  gap: 20px;
  border: 1px solid #dde4f0;
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 17px 45px rgba(38, 53, 102, 0.08);
}

.alliance-step-grid article:not(:last-child)::after {
  content: "→";
  position: absolute;
  top: 50%;
  right: -20px;
  z-index: 2;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  color: #5969e9;
  border: 1px solid #dfe4f2;
  border-radius: 50%;
  background: #ffffff;
  transform: translateY(-50%);
}

.alliance-step-grid b {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  color: #ffffff;
  border-radius: 17px;
  background: linear-gradient(145deg, #6676fb, #4556dc);
}

.alliance-step-grid h3 { margin: 2px 0 10px; color: #172039; font-size: 19px; }
.alliance-step-grid p { margin: 0; color: #6d788d; font-size: 12px; line-height: 1.8; }

.alliance-cta {
  margin-top: 88px;
  margin-bottom: 88px;
  padding: 46px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  color: #ffffff;
  border-radius: 28px;
  background: radial-gradient(circle at 84% 20%, rgba(65, 229, 244, 0.26), transparent 26%), linear-gradient(125deg, #101a3a, #334cac);
  box-shadow: 0 27px 70px rgba(25, 43, 108, 0.22);
}

.alliance-cta h2 {
  margin: 8px 0 0;
  font-size: clamp(29px, 3.5vw, 43px);
  letter-spacing: -0.04em;
}

.alliance-cta > div:first-child > p:last-child {
  max-width: 700px;
  margin: 11px 0 0;
  color: #c5cee2;
  font-size: 12px;
  line-height: 1.8;
}

.alliance-cta-actions {
  display: flex;
  flex: 0 0 auto;
  gap: 10px;
}

.alliance-cta-actions a,
.alliance-cta-actions button {
  min-height: 50px;
  padding: 0 19px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.07);
  font: inherit;
  font-size: 11px;
  font-weight: 850;
  cursor: pointer;
}

.alliance-cta-actions a {
  color: #182450;
  border-color: transparent;
  background: linear-gradient(135deg, #7bf5cb, #66e5ff);
}

@media (max-width: 1000px) {
  .alliance-hero-grid { grid-template-columns: 1fr; }
  .alliance-hero-copy { text-align: center; }
  .alliance-hero-copy h1,
  .alliance-hero-copy > p:not(.section-kicker) { margin-right: auto; margin-left: auto; }
  .alliance-hero-actions,
  .alliance-hero-tags { justify-content: center; }
  .alliance-hero-visual { min-height: 480px; }
  .alliance-option-grid,
  .alliance-channel-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .alliance-step-grid { grid-template-columns: 1fr; }
  .alliance-step-grid article:not(:last-child)::after { content: "↓"; top: auto; right: 50%; bottom: -20px; transform: translateX(50%); }
  .alliance-cta { align-items: stretch; flex-direction: column; }
  .alliance-cta-actions { align-self: flex-start; }
}

@media (max-width: 760px) {
  .alliance-width { width: calc(100% - 28px); }
  .alliance-hero { padding: 54px 0 42px; }
  .alliance-hero-grid { min-height: 0; gap: 28px; }
  .alliance-hero-copy h1 { font-size: 45px; }
  .alliance-hero-copy > p:not(.section-kicker) { font-size: 14px; }
  .alliance-hero-actions { display: grid; grid-template-columns: 1fr 1fr; }
  .alliance-hero-actions a,
  .alliance-hero-actions button { padding: 0 12px; }
  .alliance-hero-visual { min-height: 350px; }
  .alliance-planet { width: min(300px, 83vw); }
  .alliance-visual-chip { padding: 8px 10px; font-size: 9px; }
  .alliance-visual-chip.chip-one { left: 0; }
  .alliance-visual-chip.chip-two { right: 0; }
  .alliance-section,
  .alliance-channels,
  .alliance-benefits,
  .alliance-steps { padding-top: 64px; padding-bottom: 64px; }
  .alliance-option-grid,
  .alliance-benefit-grid,
  .alliance-channel-grid { grid-template-columns: 1fr; }
  .alliance-option-card { min-height: 0; padding: 28px 24px; }
  .alliance-benefit-grid article { grid-template-columns: 52px 1fr; padding: 22px; }
  .alliance-benefit-grid article > span { width: 52px; height: 52px; }
  .alliance-channel-grid article { min-height: 0; }
  .alliance-cta { margin-top: 64px; margin-bottom: 64px; padding: 32px 24px; border-radius: 22px; }
  .alliance-cta-actions { width: 100%; display: grid; grid-template-columns: 1fr; }
}

.editorial-heading,
.articles-library-heading {
  margin-bottom: 24px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}

.editorial-heading h2,
.articles-library-heading h2 {
  margin: 5px 0 6px;
  font-size: clamp(28px, 3vw, 40px);
  letter-spacing: -0.045em;
}

.editorial-heading > div > p:last-child,
.articles-library-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.editorial-heading > a {
  padding: 10px 0;
  color: #4d5adf;
  font-size: 12px;
  font-weight: 800;
}

.editorial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-flow: dense;
  grid-auto-rows: 230px;
  gap: 18px;
}

.editorial-card {
  position: relative;
  min-height: 230px;
  overflow: hidden;
  color: #ffffff;
  border-radius: 20px;
  background: #0d1530;
  box-shadow: 0 18px 45px rgba(30, 43, 82, 0.13);
}

.editorial-card-featured {
  min-height: 478px;
  grid-column: span 2;
  grid-row: span 2;
}

.editorial-grid-single .editorial-card-featured {
  grid-column: 1 / -1;
}

.editorial-card-media,
.editorial-card-shade {
  position: absolute;
  inset: 0;
}

.editorial-card-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.editorial-card-placeholder {
  display: grid;
  place-items: center;
  background: radial-gradient(circle at 75% 25%, rgba(74, 231, 255, 0.5), transparent 26%), radial-gradient(circle at 35% 70%, rgba(141, 79, 255, 0.45), transparent 30%), linear-gradient(135deg, #07112b, #2849a5);
}

.editorial-card-placeholder img {
  width: 44%;
  height: 44%;
  object-fit: contain;
  filter: drop-shadow(0 18px 25px rgba(0, 0, 0, 0.25));
}

.editorial-card-shade {
  z-index: 1;
  background: linear-gradient(180deg, rgba(2, 8, 21, 0.04) 15%, rgba(2, 8, 21, 0.9) 100%);
}

.editorial-card-copy {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 22px;
}

.editorial-card-copy > span {
  color: #c9d3e9;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.editorial-card-copy h3 {
  margin: 8px 0 0;
  font-size: 18px;
  line-height: 1.35;
}

.editorial-card-featured .editorial-card-copy {
  max-width: 650px;
  padding: 34px;
}

.editorial-card-featured .editorial-card-copy h3 {
  font-size: clamp(26px, 3vw, 38px);
}

.editorial-card-copy p {
  display: none;
  margin: 12px 0 0;
  color: #d3dbee;
  font-size: 12px;
  line-height: 1.7;
}

.editorial-card-featured .editorial-card-copy p {
  display: block;
  max-width: 550px;
}

.editorial-card-copy b {
  margin-top: 15px;
  display: inline-block;
  font-size: 10px;
}

.editorial-card:hover .editorial-card-media img {
  transform: scale(1.04);
}

.article-page-width {
  width: min(1180px, calc(100% - 48px));
  margin-left: auto;
  margin-right: auto;
}

.articles-page-hero {
  padding: 76px 0 72px;
  color: #ffffff;
  background: radial-gradient(circle at 75% 20%, rgba(70, 225, 255, 0.22), transparent 23%), radial-gradient(circle at 25% 80%, rgba(127, 71, 255, 0.22), transparent 25%), linear-gradient(135deg, #071020, #1c306d);
}

.articles-page-hero .section-kicker { color: #74efff; }
.articles-page-hero h1 { margin: 8px 0 12px; font-size: clamp(44px, 6vw, 76px); line-height: 1.05; letter-spacing: -0.06em; }
.articles-page-hero p:last-child { max-width: 620px; margin: 0; color: #bdc9e1; font-size: 15px; line-height: 1.8; }

.articles-library {
  padding: 72px 0 90px;
}

.articles-library-heading > span {
  color: #7a8497;
  font-size: 11px;
}

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

.article-library-card {
  overflow: hidden;
  border: 1px solid #e2e7f0;
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 18px 48px rgba(27, 42, 79, 0.08);
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.article-library-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 26px 58px rgba(27, 42, 79, 0.14);
}

.article-library-cover {
  height: 220px;
  overflow: hidden;
}

.article-library-cover img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.article-library-copy {
  padding: 22px;
}

.article-library-copy > span {
  color: #7a8498;
  font-size: 9px;
  font-weight: 800;
}

.article-library-copy h2 {
  margin: 10px 0 8px;
  font-size: 21px;
  line-height: 1.4;
}

.article-library-copy p {
  min-height: 44px;
  margin: 0;
  display: -webkit-box;
  overflow: hidden;
  color: #737e91;
  font-size: 11px;
  line-height: 1.8;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.article-library-copy b {
  margin-top: 18px;
  display: flex;
  justify-content: space-between;
  color: #4f60e7;
  font-size: 10px;
}

.article-library-copy i { font-style: normal; }
.articles-empty { padding: 80px 24px; text-align: center; border: 1px dashed #ccd5e5; border-radius: 20px; background: #ffffff; }
.articles-empty strong { font-size: 22px; }
.articles-empty p { color: var(--muted); }

.article-reading-width {
  width: min(900px, calc(100% - 48px));
  margin-left: auto;
  margin-right: auto;
}

.article-detail {
  padding: 34px 0 86px;
}

.article-detail.article-font-system { font-family: system-ui, -apple-system, "Segoe UI", "Microsoft YaHei", sans-serif; }
.article-detail.article-font-sans { font-family: "Microsoft YaHei", "PingFang SC", "Noto Sans CJK SC", sans-serif; }
.article-detail.article-font-serif { font-family: "Noto Serif SC", "Source Han Serif SC", "Songti SC", SimSun, serif; }
.article-detail.article-font-kai { font-family: KaiTi, STKaiti, "楷体", serif; }

.article-back-link {
  margin-bottom: 20px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #5968e9;
  font-size: 11px;
  font-weight: 800;
}

.article-detail-cover {
  margin: 0 0 38px;
  overflow: hidden;
  border-radius: 22px;
  background: #dfe7f7;
  box-shadow: 0 24px 60px rgba(25, 41, 80, 0.12);
}

.article-detail-cover img {
  width: 100%;
  max-height: 560px;
  display: block;
  object-fit: cover;
}

.article-detail-heading {
  padding: 0 18px 34px;
  border-bottom: 1px solid #e0e5ee;
}

.article-detail-heading h1 {
  margin: 8px 0 15px;
  font-size: var(--article-title-size, 56px);
  line-height: 1.22;
  letter-spacing: -0.05em;
}

.article-detail-heading > p:not(.section-kicker) {
  margin: 0;
  color: #6b768a;
  font-size: 15px;
  line-height: 1.8;
}

.article-author {
  margin-top: 24px;
  display: flex;
  align-items: center;
  gap: 11px;
}

.article-author img {
  width: 44px;
  height: 44px;
  padding: 4px;
  object-fit: contain;
  border-radius: 50%;
  background: #0d1425;
}

.article-author div { display: grid; gap: 3px; }
.article-author strong { font-size: 12px; }
.article-author span { color: #8a93a3; font-size: 9px; }

.article-detail-body {
  padding: 46px 18px 18px;
  color: #303a4e;
  font-size: var(--article-body-size, 16px);
  line-height: var(--article-line-height, 2.15);
}

.article-detail-body p,.article-detail-body div { margin: 0 0 1.25em; }
.article-detail-body h2 { margin: 1.8em 0 .65em; color: #151f35; font-size: 1.65em; line-height: 1.4; letter-spacing: -.025em; }
.article-detail-body h3 { margin: 1.5em 0 .55em; color: #18243a; font-size: 1.3em; line-height: 1.5; }
.article-detail-body strong { color: #172036; font-weight: 800; }
.article-detail-body ul,.article-detail-body ol { margin: 1em 0 1.35em; padding-left: 1.6em; }
.article-detail-body li { margin: .35em 0; }
.article-detail-body blockquote { margin: 1.5em 0; padding: .8em 1.15em; color: #58657d; border-left: 4px solid #6072ef; border-radius: 0 10px 10px 0; background: #eef2ff; }
.article-detail-body .article-text-large { font-size: 1.45em; line-height: 1.45; }
.article-detail-body .article-inline-image { margin: 2em 0; padding: 0; }
.article-detail-body .article-inline-image img { width: auto; max-width: 100%; max-height: 780px; display: block; margin: 0 auto; object-fit: contain; border-radius: 18px; box-shadow: 0 18px 45px rgba(22,34,64,.13); }
.article-detail-body .article-inline-image figcaption { margin-top: .65em; color: #7c879b; font-size: .82em; line-height: 1.6; text-align: center; }

.article-detail-images {
  padding: 18px 0;
  display: grid;
  gap: 28px;
}

.article-detail-images figure {
  margin: 0;
  overflow: hidden;
  border-radius: 18px;
  background: #e6ebf4;
  box-shadow: 0 18px 48px rgba(25, 41, 80, 0.09);
}

.article-detail-images img { width: 100%; display: block; }

.article-detail-footer {
  margin-top: 48px;
  padding: 22px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #929aaa;
  border-top: 1px solid #e0e5ee;
  font-size: 9px;
  letter-spacing: 0.14em;
}

.article-detail-footer a { color: #4f60e7; font-weight: 800; letter-spacing: 0; }
.article-related { padding: 0 0 90px; }
.article-related-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.article-related-grid > a { overflow: hidden; border: 1px solid #e2e7f0; border-radius: 17px; background: #ffffff; }
.article-related-grid img { width: 100%; height: 150px; display: block; object-fit: cover; }
.article-related-grid div { padding: 17px; }
.article-related-grid span { color: #8a93a3; font-size: 8px; }
.article-related-grid h3 { margin: 8px 0 16px; font-size: 16px; line-height: 1.45; }
.article-related-grid b { color: #5363e8; font-size: 9px; }

.coin-home-banner,
.service-banner {
  margin-bottom: 74px;
  padding: 34px 38px;
  display: grid;
  align-items: center;
  gap: 26px;
  border-radius: 22px;
}

.coin-home-banner {
  grid-template-columns: 84px 1fr auto;
  color: #ffffff;
  background: linear-gradient(125deg, #101a42, #2a3e9c);
  box-shadow: var(--shadow);
}

.coin-home-orb {
  width: 78px;
  height: 78px;
}

.coin-home-orb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.coin-home-banner p:last-child {
  margin: 10px 0 0;
  color: #c9d2ea;
  font-size: 13px;
}

.coin-home-banner > a {
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 10px;
  font-size: 12px;
  font-weight: 800;
}

.service-banner {
  grid-template-columns: 1fr auto;
  color: #ffffff;
  background: linear-gradient(120deg, #080d1b, #182340);
}

.service-list {
  display: flex;
  gap: 14px;
}

.service-list span {
  padding: 12px 14px;
  display: grid;
  gap: 4px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  font-size: 11px;
}

.service-list b {
  color: var(--cyan);
  font-size: 10px;
}

.site-footer {
  padding: 44px 0;
  color: #b5bfd1;
  background: #080d19;
}

.footer-inner {
  width: min(1180px, calc(100% - 48px));
  margin: auto;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 24px;
}

.footer-inner p {
  margin: 12px 0 0;
  font-size: 12px;
}

.footer-inner .footer-support {
  margin-top: 6px;
  color: #77839a;
  font-size: 10px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 12px;
}

.footer-nav-grid {
  width: min(760px, 100%);
  display: grid;
  grid-template-columns: repeat(5, minmax(100px, 1fr));
  align-items: start;
  gap: 30px;
}

.footer-nav-column {
  display: grid;
  align-content: start;
  gap: 11px;
}

.footer-nav-column h3 {
  margin: 0 0 8px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;
}

.footer-nav-column a,
.footer-nav-column button {
  width: fit-content;
  padding: 0;
  border: 0;
  color: #9da9bd;
  background: transparent;
  font: inherit;
  font-size: 12px;
  line-height: 1.5;
  text-decoration: none;
  cursor: pointer;
  transition: color 0.2s ease, transform 0.2s ease;
}

.footer-nav-column a:hover,
.footer-nav-column button:hover {
  color: #60e6ff;
  transform: translateX(3px);
}

.copyright {
  grid-column: 1 / 3;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 11px;
}

.flash {
  position: fixed;
  z-index: 200;
  top: 84px;
  left: 50%;
  width: min(560px, calc(100% - 32px));
  padding: 13px 18px;
  border-radius: 12px;
  background: #ffffff;
  box-shadow: var(--shadow);
  transform: translateX(-50%);
}

.flash-success { color: #08784c; border: 1px solid #9ae5c1; background: #eafbf2; }
.flash-error { color: #a52737; border: 1px solid #f4b7be; background: #fff0f2; }

.auth-shell {
  min-height: 700px;
  padding: 100px 20px 80px;
  display: grid;
  place-items: center;
  background: radial-gradient(circle at 50% 10%, #dce5ff, transparent 36%), #f4f6fb;
}

.auth-panel {
  width: min(470px, 100%);
  padding: 38px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.auth-panel h1 {
  margin: 5px 0 8px;
  font-size: 34px;
}

.auth-panel > p {
  color: var(--muted);
}

.auth-panel form,
.coin-exchange-form {
  display: grid;
  gap: 16px;
}

.auth-panel form {
  margin-top: 27px;
}

.auth-panel label,
.form-label,
.coin-exchange-form label {
  display: grid;
  gap: 7px;
  color: #4d586d;
  font-size: 12px;
  font-weight: 800;
}

.auth-panel input,
.form-label input,
.coin-exchange-form input,
.coin-exchange-form select {
  width: 100%;
  min-height: 46px;
  padding: 0 13px;
  color: var(--ink);
  border: 1px solid #d6dce7;
  border-radius: 10px;
  background: #ffffff;
  outline: none;
}

.auth-panel input:focus,
.form-label input:focus,
.coin-exchange-form input:focus,
.coin-exchange-form select:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(89, 104, 255, 0.12);
}

.auth-panel .button {
  width: 100%;
}

.auth-switch {
  margin: 22px 0 0 !important;
  text-align: center;
  font-size: 12px;
}

.auth-switch a {
  color: var(--blue);
  font-weight: 800;
}

.product-detail-hero {
  padding: 45px 0 64px;
  color: #ffffff;
  background: linear-gradient(125deg, #071024, #1a2d69);
}

.product-detail-hero nav {
  display: flex;
  gap: 8px;
  color: #abb7cf;
  font-size: 12px;
}

.product-detail-grid {
  margin-top: 40px;
  display: grid;
  grid-template-columns: 360px 1fr;
  align-items: center;
  gap: 70px;
}

.product-detail-visual {
  min-height: 320px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.06);
}

.product-detail-visual > span {
  width: 130px;
  height: 130px;
  display: grid;
  place-items: center;
  border-radius: 30px;
  background: var(--product-color, var(--blue));
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.28);
  font-size: 48px;
  font-weight: 900;
}

.product-detail-visual.has-image > span {
  width: 100%;
  height: 100%;
  min-height: 320px;
  align-self: stretch;
  justify-self: stretch;
  overflow: hidden;
  border-radius: inherit;
  background: #ffffff;
  box-shadow: none;
}

.product-detail-visual.has-image > span img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.product-detail-copy h1 {
  margin: 0;
  font-size: clamp(38px, 4vw, 58px);
}

.product-detail-copy > p:not(.section-kicker) {
  max-width: 650px;
  color: #c5cfe2;
  line-height: 1.8;
}

.product-price {
  margin: 24px 0;
  display: flex;
  align-items: baseline;
  gap: 12px;
}

.product-price strong {
  color: var(--cyan);
  font-size: 36px;
}

.product-price del,
.product-price span {
  color: #9aa7bd;
}

.product-coin-line {
  margin: 0 0 26px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.product-coin-mark {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.product-coin-line div {
  display: grid;
  gap: 4px;
}

.product-coin-line span {
  color: #a9b5ca;
  font-size: 11px;
}

.product-detail-content {
  padding: 70px 0 95px;
}

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

.product-highlights article,
.product-info-columns section {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 12px 35px rgba(25, 38, 70, 0.05);
}

.product-highlights h3,
.product-info-columns h2 {
  margin-top: 0;
}

.product-highlights p,
.product-info-columns li {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.8;
}

.product-info-columns {
  margin-top: 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.product-info-columns ul {
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
  list-style: none;
}

.coins-hero,
.promotion-hero,
.account-hero,
.orders-hero,
.admin-hero,
.order-detail-hero,
.coin-exchange-hero {
  color: #ffffff;
  background: linear-gradient(125deg, #061025, #263b88);
}

.coins-hero {
  min-height: 480px;
  display: flex;
  align-items: center;
}

.coins-hero-inner {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  align-items: center;
  gap: 40px;
}

.coins-hero h1 {
  margin: 0;
  font-size: clamp(46px, 5vw, 72px);
  line-height: 1.08;
}

.coins-hero p:last-of-type {
  color: #c6d0e3;
}

.coins-hero-actions {
  margin-top: 28px;
  display: flex;
  gap: 10px;
}

.coins-hero-actions a {
  padding: 12px 18px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 10px;
  font-weight: 800;
}

.coins-hero-actions a:first-child {
  color: #07101b;
  border: 0;
  background: var(--cyan);
}

.coins-visual {
  position: relative;
  min-height: 330px;
}

.huanling-coin-hero-main {
  position: absolute;
  left: 20px;
  top: 10px;
  width: 255px;
  height: 255px;
  object-fit: contain;
}

.coin-rate-card {
  position: absolute;
  right: 10px;
  bottom: 24px;
  width: 210px;
  padding: 18px;
  display: grid;
  gap: 6px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 14px;
  background: #0b1020;
}

.coin-rate-card span {
  color: #a9b4c9;
  font-size: 11px;
}

.coin-rate-card strong {
  color: #ffd34f;
}

.coins-rules,
.coins-product-section {
  padding-top: 72px;
}

.coins-section-heading p {
  margin: 0 0 10px;
  color: var(--blue);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.coins-section-heading h2 {
  margin: 0;
  font-size: 34px;
}

.coins-rule-grid {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.coins-rule-grid article {
  position: relative;
  min-height: 250px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #ffffff;
}

.coins-rule-grid article > span {
  color: #d4d9e3;
  font-size: 36px;
  font-weight: 900;
}

.coins-rule-icon img {
  width: 58px;
  height: 58px;
  object-fit: contain;
}

.coins-rule-grid p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.coins-product-list {
  margin-top: 28px;
  display: grid;
  gap: 10px;
}

.coins-product-list > a {
  padding: 16px 20px;
  display: grid;
  grid-template-columns: 56px 1fr auto 30px;
  align-items: center;
  gap: 16px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: #ffffff;
}

.coins-product-icon,
.order-product-icon,
.checkout-product-icon {
  display: grid;
  place-items: center;
  color: #ffffff;
  background: var(--coin-product-color, var(--product-color, var(--blue)));
  font-weight: 900;
}

.coins-product-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
}

.coins-product-list h3,
.coins-product-list p {
  margin: 0;
}

.coins-product-list p {
  margin-top: 5px;
  color: var(--muted);
  font-size: 11px;
}

.coins-product-list strong {
  color: var(--gold);
}

.coins-notes {
  margin-top: 70px;
  margin-bottom: 90px;
  padding: 34px;
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 40px;
  border-radius: 20px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.coins-notes ul {
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
  list-style: none;
}

.coins-notes li {
  color: var(--muted);
}

.promotion-hero {
  min-height: 360px;
  display: flex;
  align-items: center;
}

.promotion-hero p,
.order-detail-hero p,
.admin-hero p {
  color: var(--cyan);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.promotion-hero h1 {
  margin: 0 0 18px;
  font-size: clamp(45px, 5vw, 68px);
  line-height: 1.06;
}

.promotion-hero span {
  color: #c4cee2;
}

.promotion-content {
  padding: 70px 0 95px;
}

.promo-login-callout {
  padding: 55px;
  text-align: center;
  border-radius: 24px;
  color: #ffffff;
  background: linear-gradient(135deg, #07132d, #30469c);
}

.promo-login-callout .button {
  margin: 12px 4px 0;
}

.promotion-dashboard {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.promotion-dashboard h2 {
  margin: 0;
  font-size: 34px;
}

.referral-code {
  padding: 14px 20px;
  display: grid;
  gap: 5px;
  border-radius: 14px;
  background: #edf1ff;
}

.referral-code span {
  color: var(--muted);
  font-size: 10px;
}

.referral-code strong {
  color: var(--blue);
  letter-spacing: 0.1em;
}

.referral-main-link {
  margin: 24px 0;
  padding: 18px;
  display: grid;
  grid-template-columns: 58px 1fr auto;
  align-items: center;
  gap: 16px;
  border: 1px solid #dce3f4;
  border-radius: 17px;
  background: #f7f9ff;
}

.referral-main-link img {
  width: 56px;
  height: 56px;
  object-fit: contain;
}

.referral-main-link div {
  min-width: 0;
  display: grid;
  gap: 6px;
}

.referral-main-link span {
  color: var(--muted);
  font-size: 11px;
}

.referral-main-link code {
  overflow: hidden;
  color: var(--blue-dark);
  text-overflow: ellipsis;
  white-space: nowrap;
}

.copy-link {
  min-height: 38px;
  padding: 0 14px;
  border: 0;
  border-radius: 9px;
  color: #ffffff;
  background: var(--blue);
  cursor: pointer;
}

.promo-stat-grid,
.account-stat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.promo-stat-grid article,
.account-stat-grid article {
  padding: 23px;
  display: grid;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #ffffff;
}

.promo-stat-grid span,
.account-stat-grid span {
  color: var(--muted);
  font-size: 11px;
}

.promo-stat-grid strong,
.account-stat-grid strong {
  font-size: 24px;
}

.referral-list {
  margin-top: 22px;
  display: grid;
  gap: 10px;
}

.referral-list article {
  padding: 16px;
  display: grid;
  grid-template-columns: 52px 1fr auto;
  align-items: center;
  gap: 14px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: #ffffff;
}

.referral-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  color: #ffffff;
  border-radius: 13px;
  background: var(--ref-color, var(--blue));
  font-weight: 900;
}

.referral-list h3,
.referral-list p {
  margin: 0;
}

.referral-list p {
  margin-top: 5px;
  color: var(--muted);
  font-size: 11px;
}

.referral-list article > strong {
  color: var(--gold);
}

.account-hero,
.orders-hero,
.admin-hero,
.order-detail-hero {
  min-height: 270px;
  padding: 70px 0 45px;
}

.account-hero h1,
.orders-hero h1,
.admin-hero h1,
.order-detail-hero h1 {
  margin: 0 0 10px;
  font-size: clamp(38px, 4vw, 54px);
}

.account-hero p:last-child,
.orders-hero span,
.admin-hero span {
  color: #bcc7dc;
}

.account-content,
.orders-content,
.admin-content {
  padding: 45px 0 90px;
}

.coin-wallet-panel {
  padding: 26px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 30px;
  color: #ffffff;
  border-radius: 20px;
  background: linear-gradient(125deg, #101a43, #2f45a2);
  box-shadow: var(--shadow);
}

.coin-wallet-main {
  display: flex;
  align-items: center;
  gap: 18px;
}

.coin-wallet-icon {
  width: 76px;
  height: 76px;
}

.coin-wallet-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.coin-wallet-main > div:last-child {
  display: grid;
  gap: 5px;
}

.coin-wallet-main span,
.coin-wallet-main p {
  margin: 0;
  color: #c6d0e3;
  font-size: 11px;
}

.coin-wallet-main strong {
  font-size: 34px;
}

.coin-wallet-stats {
  display: flex;
  align-items: center;
  gap: 25px;
}

.coin-wallet-stats > div {
  display: grid;
  gap: 5px;
}

.coin-wallet-stats span {
  color: #bdc8dd;
  font-size: 10px;
}

.coin-wallet-links {
  display: grid;
  gap: 5px;
  font-size: 11px;
}

.account-stat-grid {
  margin-top: 18px;
}

.account-stat-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
}

.coin-ledger {
  margin-top: 20px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #ffffff;
}

.coin-ledger-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
}

.coin-ledger-heading h2 {
  margin: 0;
}

.coin-ledger-heading > span {
  color: var(--muted);
  font-size: 11px;
}

.coin-ledger-list {
  margin-top: 18px;
  display: grid;
}

.coin-ledger-list article {
  padding: 14px 0;
  display: grid;
  grid-template-columns: 38px 1fr auto;
  align-items: center;
  gap: 12px;
  border-top: 1px solid var(--line);
}

.coin-ledger-mark {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: #eef2f8;
}

.coin-ledger-list article > div:nth-child(2) {
  display: grid;
  gap: 4px;
}

.coin-ledger-list span {
  color: var(--muted);
  font-size: 10px;
}

.earned { color: var(--green); }
.spent { color: var(--red); }

.coin-ledger-empty {
  margin-top: 20px;
  padding: 25px;
  display: flex;
  align-items: center;
  gap: 14px;
  border-radius: 14px;
  background: #f6f8fc;
}

.coin-ledger-empty img {
  width: 50px;
  height: 50px;
}

.coin-ledger-empty p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 11px;
}

.account-links {
  margin-top: 18px;
  display: flex;
  gap: 10px;
}

.account-links a {
  padding: 12px 15px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #ffffff;
  font-size: 12px;
  font-weight: 800;
}

.orders-empty,
.empty-state {
  min-height: 460px;
  padding: 120px 24px 80px;
  text-align: center;
}

.orders-empty p,
.empty-copy {
  color: var(--muted);
}

.orders-list {
  display: grid;
  gap: 14px;
}

.order-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 17px;
  background: #ffffff;
}

.order-card-head,
.order-card-footer {
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  background: #f8fafc;
}

.order-card-head div {
  display: flex;
  align-items: center;
  gap: 10px;
}

.order-card-head span,
.order-card-footer {
  color: var(--muted);
  font-size: 11px;
}

.order-card-body {
  padding: 18px;
  display: grid;
  grid-template-columns: 56px 1fr auto;
  align-items: center;
  gap: 15px;
}

.order-product-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
}

.order-card-body h2,
.order-card-body p {
  margin: 0;
}

.order-card-body p {
  margin-top: 5px;
  color: var(--muted);
  font-size: 11px;
}

.order-price {
  display: grid;
  gap: 5px;
  text-align: right;
}

.order-price span {
  color: var(--muted);
  font-size: 10px;
}

.order-card-footer a {
  margin-left: auto;
  color: var(--blue);
  font-weight: 800;
}

[class^="status-"],
[class*=" status-"] {
  padding: 6px 9px;
  border-radius: 99px;
  color: #536078;
  background: #edf1f6;
  font-size: 10px;
}

.status-completed,
.status-paid { color: #08794d; background: #e7f8ef; }
.status-pending_payment,
.status-processing { color: #9a6200; background: #fff4cf; }
.status-cancelled,
.status-refunded { color: #a52b3c; background: #fdebed; }

.order-detail-layout {
  margin-top: -32px;
  margin-bottom: 90px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 20px;
}

.order-detail-main,
.order-detail-aside {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.order-detail-product {
  padding-bottom: 20px;
  display: grid;
  grid-template-columns: 56px 1fr auto;
  align-items: center;
  gap: 15px;
  border-bottom: 1px solid var(--line);
}

.order-detail-product h2,
.order-detail-product p {
  margin: 0;
}

.order-detail-product p {
  color: var(--muted);
  font-size: 11px;
}

.order-timeline {
  margin-top: 26px;
}

.order-timeline article {
  padding: 0 0 24px;
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 12px;
}

.order-timeline i {
  width: 10px;
  height: 10px;
  margin-top: 5px;
  border-radius: 50%;
  background: var(--blue);
}

.order-timeline p,
.order-timeline span {
  color: var(--muted);
  font-size: 11px;
}

.order-detail-aside dl {
  display: grid;
  gap: 14px;
}

.order-detail-aside dl div {
  display: flex;
  justify-content: space-between;
  gap: 15px;
}

.order-detail-aside dt {
  color: var(--muted);
}

.order-detail-aside dd {
  margin: 0;
  font-weight: 800;
}

.order-detail-aside > p {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.7;
}

.checkout-page {
  padding: 60px 0 90px;
}

.checkout-heading {
  margin-bottom: 26px;
}

.checkout-heading h1 {
  margin: 0;
  font-size: 42px;
}

.checkout-heading > p:last-child {
  color: var(--muted);
}

.checkout-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  align-items: start;
  gap: 20px;
}

.checkout-main,
.checkout-summary {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #ffffff;
}

.checkout-product {
  display: grid;
  grid-template-columns: 62px 1fr auto;
  align-items: center;
  gap: 15px;
}

.checkout-product-icon {
  width: 58px;
  height: 58px;
  border-radius: 15px;
}

.checkout-product h2,
.checkout-product p {
  margin: 0;
}

.checkout-product p,
.checkout-product span {
  margin-top: 5px;
  color: var(--muted);
  font-size: 11px;
}

.checkout-coin-box {
  margin: 22px 0;
  padding: 20px;
  border-radius: 15px;
  background: #fff8df;
}

.checkout-coin-heading {
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.checkout-coin-icon {
  width: 44px;
  height: 44px;
}

.checkout-coin-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.checkout-coin-heading h2,
.checkout-coin-heading p {
  margin: 0;
}

.checkout-coin-heading p {
  color: #8c6a21;
  font-size: 11px;
}

.checkout-submit {
  width: 100%;
}

.checkout-summary {
  position: sticky;
  top: 92px;
}

.checkout-summary > div {
  padding: 13px 0;
  display: flex;
  justify-content: space-between;
  border-top: 1px solid var(--line);
}

.checkout-summary span,
.checkout-summary p {
  color: var(--muted);
  font-size: 11px;
}

.coin-exchange-hero {
  min-height: 330px;
  padding: 40px 0 60px;
}

.coin-exchange-hero nav {
  display: flex;
  gap: 8px;
  color: #aebad0;
  font-size: 11px;
}

.coin-exchange-hero h2 {
  margin: 45px 0 15px;
  font-size: 42px;
}

.coin-exchange-hero > div > div > span {
  color: #bdc8db;
}

.coin-exchange-content {
  padding-bottom: 90px;
}

.coin-exchange-layout {
  margin-top: -38px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  align-items: start;
  gap: 20px;
}

.coin-exchange-form,
.exchange-side-card,
.exchange-history {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.exchange-form-title {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.exchange-form-title h1,
.exchange-form-title p {
  margin: 0;
}

.exchange-balance {
  display: grid;
  grid-template-columns: 34px auto;
  column-gap: 8px;
}

.exchange-balance img {
  width: 34px;
  height: 34px;
  grid-row: 1 / 4;
}

.exchange-balance span,
.exchange-balance small {
  color: var(--muted);
  font-size: 9px;
}

.exchange-input-hint,
.exchange-security-note {
  margin: -8px 0 0;
  color: var(--muted);
  font-size: 10px;
}

.coin-exchange-form button:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.exchange-side-card ol {
  margin: 0;
  padding: 0;
  display: grid;
  gap: 18px;
  list-style: none;
}

.exchange-side-card li {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 12px;
}

.exchange-side-card li > span {
  color: var(--blue);
  font-weight: 900;
}

.exchange-side-card strong,
.exchange-side-card p {
  margin: 0;
}

.exchange-side-card p {
  margin-top: 5px;
  color: var(--muted);
  font-size: 11px;
}

.exchange-history {
  margin-top: 20px;
  box-shadow: none;
}

.data-list {
  display: grid;
  gap: 10px;
}

.data-list article {
  padding: 14px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr auto;
  align-items: center;
  gap: 16px;
  border: 1px solid var(--line);
  border-radius: 12px;
}

.data-list article > div {
  display: grid;
  gap: 4px;
}

.data-list span {
  color: var(--muted);
  font-size: 10px;
}

.admin-heading {
  margin: 32px 0 14px;
}

.admin-heading p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 11px;
}

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

.admin-stat-grid article {
  padding: 22px;
  display: grid;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: #ffffff;
}

.admin-stat-grid span {
  color: var(--muted);
  font-size: 11px;
}

.admin-stat-grid strong {
  font-size: 28px;
}

.admin-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: #ffffff;
}

.admin-table-wrap table {
  width: 100%;
  border-collapse: collapse;
  font-size: 12px;
}

.admin-table-wrap th,
.admin-table-wrap td {
  padding: 13px 14px;
  border-bottom: 1px solid #edf0f5;
  text-align: left;
  white-space: nowrap;
}

.admin-table-wrap th {
  color: var(--muted);
  background: #f7f9fc;
}

.admin-table-wrap button {
  min-height: 32px;
  padding: 0 10px;
  border: 0;
  border-radius: 8px;
  color: #ffffff;
  background: var(--blue-dark);
  cursor: pointer;
}

.admin-table-wrap button.danger {
  background: #c93649;
}

.admin-actions {
  display: flex;
  gap: 6px;
}

.inline-form {
  display: inline;
  margin: 0;
}

@keyframes orbitPulse {
  0%, 100% { opacity: 0.28; }
  50% { opacity: 0.62; }
}

@media (max-width: 1100px) {
  .site-header {
    gap: 18px;
  }

  .main-nav {
    gap: 12px;
    font-size: 13px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }

  .footer-nav-grid {
    width: 100%;
  }

  .copyright {
    grid-column: 1;
  }

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

  .company-profile-panel {
    padding: 32px;
    grid-template-columns: 170px minmax(280px, 1fr) 240px;
    gap: 24px;
  }

  .company-profile-visual {
    min-height: 330px;
  }

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

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

  .hero-inner {
    width: calc(100% - 100px);
  }

  .hero-visual {
    transform: scale(0.82);
  }

  .product-detail-grid {
    grid-template-columns: 300px 1fr;
    gap: 45px;
  }
}

@media (max-width: 760px) {
  .site-header {
    height: 64px;
    padding: 0 16px;
    justify-content: space-between;
  }

  .announcement-banner {
    width: calc(100% - 20px);
    height: 190px;
    margin-top: 10px;
    border-radius: 14px;
    box-shadow: 0 0 0 6px #ffffff;
  }

  .announcement-arrow {
    width: 38px;
    height: 38px;
    padding-bottom: 3px;
    font-size: 27px;
  }

  .announcement-arrow-left { left: 10px; }
  .announcement-arrow-right { right: 10px; }

  .home-announcement {
    width: calc(100% - 28px);
    align-items: flex-start;
  }

  .brand-logo {
    width: 50px;
    height: 38px;
  }

  .header-actions {
    display: none;
  }

  .menu-button {
    display: block;
  }

  .main-nav {
    position: absolute;
    left: 12px;
    right: 12px;
    top: 72px;
    padding: 12px;
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 4px;
    border: 1px solid #27324a;
    border-radius: 14px;
    background: #0a1020;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.35);
  }

  .main-nav.nav-open {
    display: flex;
  }

  .main-nav > a,
  .mobile-auth a {
    padding: 11px 10px;
    display: block !important;
    border-radius: 8px;
  }

  .main-nav > a:hover,
  .mobile-auth a:hover {
    background: #141d33;
  }

  .main-nav > a::after {
    display: none;
  }

  .mobile-auth {
    padding-top: 6px;
    display: grid;
    border-top: 1px solid #263149;
  }

  .content-width,
  .product-detail-width,
  .coins-width,
  .promotion-width,
  .account-width,
  .orders-width,
  .checkout-width,
  .exchange-width,
  .footer-inner {
    width: calc(100% - 28px);
  }

  .hero {
    width: calc(100% - 20px);
    height: 600px;
    margin-top: 10px;
    border-radius: 14px;
    box-shadow: 0 0 0 10px #ffffff;
  }

  .hero-inner {
    width: calc(100% - 42px);
    padding: 40px 0 20px;
    display: block;
  }

  .hero h1 {
    font-size: 38px;
  }

  .hero-description {
    font-size: 14px;
  }

  .hero-points {
    gap: 9px 14px;
  }

  .hero-visual {
    position: absolute;
    left: 50%;
    bottom: -25px;
    width: 440px;
    height: 280px;
    transform: translateX(-50%) scale(0.63);
  }

  .slider-arrow {
    top: auto;
    bottom: 18px;
  }

  .slider-dots {
    bottom: 34px;
  }

  .quick-strip {
    grid-template-columns: repeat(2, 1fr);
    padding: 18px;
  }

  .quick-strip div {
    padding: 10px 0;
  }

  .quick-strip div:nth-child(2) {
    border-right: 0;
  }

  .category-section {
    padding-top: 64px;
  }

  .section-heading {
    align-items: flex-start;
  }

  .section-heading .text-button {
    display: none;
  }

  .categories {
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: minmax(88px, 1fr);
    overflow-x: auto;
    overscroll-behavior-inline: contain;
  }

  .category {
    min-height: 102px;
  }

  .category-icon {
    width: 45px;
    height: 45px;
  }

  .category > span:last-child {
    font-size: 11px;
  }

  .products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px;
  }

  .product-card {
    min-height: 420px;
    padding: 14px 11px;
  }

  .product-card h3 {
    font-size: 15px;
  }

  .product-card-actions {
    grid-template-columns: 1fr;
  }

  .company-profile {
    margin-bottom: 54px;
  }

  .company-profile-heading {
    margin-bottom: 18px;
    align-items: flex-start;
    flex-direction: column;
  }

  .company-profile-heading h2 {
    font-size: 30px;
  }

  .company-profile-link {
    min-height: 42px;
    padding: 0 17px;
  }

  .company-profile-panel {
    min-height: 0;
    padding: 22px;
    grid-template-columns: 1fr;
    gap: 26px;
    border-radius: 18px;
  }

  .company-profile-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  .company-profile-stats article {
    gap: 7px;
  }

  .company-profile-stats span {
    font-size: 10px;
  }

  .company-profile-stats strong {
    font-size: clamp(21px, 7vw, 30px);
  }

  .company-profile-features {
    gap: 10px;
  }

  .company-profile-features article {
    min-height: 70px;
    padding: 12px 14px;
    grid-template-columns: 38px 1fr;
    gap: 11px;
    border-radius: 15px;
  }

  .company-profile-features b {
    width: 38px;
    height: 38px;
    border-radius: 12px;
  }

  .company-profile-visual {
    min-height: 260px;
  }

  .company-profile-visual img {
    width: min(80%, 260px);
    max-height: 240px;
  }

  .about-page-width {
    width: calc(100% - 28px);
  }

  .about-page-hero {
    padding: 44px 0 36px;
  }

  .about-page-heading h1 {
    font-size: 40px;
  }

  .about-page-heading > p:last-child {
    font-size: 13px;
  }

  .about-page-showcase {
    min-height: 0;
    margin-top: 28px;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 22px;
  }

  .about-page-orbit {
    position: relative;
    top: auto;
    left: auto;
    width: min(310px, 88vw);
    height: min(310px, 88vw);
    margin: 0 auto;
    transform: none;
  }

  .about-page-orbit::before { width: 390px; height: 140px; }
  .about-page-orbit::after { width: 350px; height: 110px; }
  .about-page-orbit span { width: 330px; height: 82px; border-width: 5px; }
  .about-page-orbit i:first-child { width: 230px; height: 230px; }
  .about-page-orbit i:nth-child(2) { width: 175px; height: 175px; }

  .about-page-orbit img {
    width: min(64%, 200px);
    max-height: 200px;
  }

  .about-page-stats {
    order: 2;
    gap: 8px;
  }

  .about-page-stats strong {
    font-size: clamp(22px, 7vw, 30px);
  }

  .about-page-stats span {
    font-size: 9px;
  }

  .about-page-feature-row {
    order: 3;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .about-page-feature-row article {
    min-height: 72px;
    padding: 12px 14px;
  }

  .about-page-story {
    padding: 56px 0;
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .about-page-story-main h2 {
    margin-bottom: 18px;
    font-size: 38px;
  }

  .about-page-richtext {
    font-size: 14px;
    line-height: 1.9;
  }

  .about-page-values article {
    padding: 21px;
  }

  .about-page-cta {
    margin-bottom: 54px;
    padding: 28px 22px;
    align-items: flex-start;
    flex-direction: column;
    border-radius: 18px;
  }

  .about-page-cta > a {
    width: 100%;
    justify-content: center;
  }

  .editorial-home {
    margin-bottom: 54px;
  }

  .editorial-heading {
    align-items: flex-start;
  }

  .editorial-heading > a {
    white-space: nowrap;
  }

  .editorial-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 250px;
    gap: 12px;
  }

  .editorial-card-featured {
    min-height: 360px;
    grid-column: auto;
    grid-row: auto;
  }

  .editorial-card-featured .editorial-card-copy {
    padding: 24px;
  }

  .editorial-card-featured .editorial-card-copy h3 {
    font-size: 25px;
  }

  .article-page-width,
  .article-reading-width {
    width: calc(100% - 28px);
  }

  .articles-page-hero {
    padding: 52px 0;
  }

  .articles-library {
    padding: 52px 0 64px;
  }

  .articles-library-grid,
  .article-related-grid {
    grid-template-columns: 1fr;
  }

  .article-library-cover {
    height: 210px;
  }

  .article-detail {
    padding-top: 22px;
  }

  .article-detail-cover {
    margin-bottom: 28px;
    border-radius: 15px;
  }

  .article-detail-heading {
    padding: 0 4px 28px;
  }

  .article-detail-heading h1 {
    font-size: min(var(--article-title-size, 56px), 34px);
  }

  .article-detail-body {
    padding: 34px 4px 12px;
  }

  .article-detail-images {
    gap: 16px;
  }

  .article-detail-images figure {
    border-radius: 14px;
  }

  .coin-home-banner,
  .service-banner {
    padding: 27px 21px;
    grid-template-columns: 1fr;
  }

  .coin-home-banner {
    grid-template-columns: 58px 1fr;
  }

  .coin-home-orb {
    width: 58px;
    height: 58px;
  }

  .coin-home-banner > a {
    grid-column: 1 / 3;
    text-align: center;
  }

  .service-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }

  .footer-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .footer-nav-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px 20px;
  }

  .copyright {
    grid-column: 1;
  }

  .product-detail-grid,
  .product-highlights,
  .product-info-columns,
  .coins-hero-inner,
  .coins-rule-grid,
  .coins-notes,
  .order-detail-layout,
  .checkout-layout,
  .coin-exchange-layout {
    grid-template-columns: 1fr;
  }

  .product-detail-grid {
    gap: 30px;
  }

  .product-detail-visual {
    min-height: 240px;
  }

  .product-detail-visual.has-image > span {
    min-height: 240px;
  }

  .coins-hero {
    min-height: 690px;
    padding: 55px 0 30px;
    align-items: flex-start;
  }

  .coins-hero h1 {
    font-size: 46px;
  }

  .coins-visual {
    min-height: 290px;
  }

  .huanling-coin-hero-main {
    width: 190px;
    height: 190px;
  }

  .coins-product-list > a {
    grid-template-columns: 48px 1fr auto;
    padding: 13px;
  }

  .coins-product-list p,
  .coins-product-arrow {
    display: none;
  }

  .promotion-hero h1 {
    font-size: 42px;
  }

  .promo-login-callout {
    padding: 38px 20px;
  }

  .promotion-dashboard,
  .coin-ledger-heading,
  .exchange-form-title {
    align-items: stretch;
    flex-direction: column;
  }

  .referral-main-link {
    grid-template-columns: 46px 1fr;
  }

  .referral-main-link button {
    grid-column: 1 / 3;
  }

  .promo-stat-grid,
  .account-stat-grid {
    grid-template-columns: 1fr;
  }

  .coin-wallet-panel {
    grid-template-columns: 1fr;
  }

  .coin-wallet-stats {
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    flex-wrap: wrap;
  }

  .account-links {
    flex-direction: column;
  }

  .order-card-head,
  .order-card-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .order-card-body,
  .order-detail-product,
  .checkout-product {
    grid-template-columns: 52px 1fr;
  }

  .order-price,
  .order-detail-product > strong,
  .checkout-product > strong {
    grid-column: 1 / 3;
    padding-top: 12px;
    border-top: 1px solid var(--line);
    text-align: left;
  }

  .order-card-footer a {
    margin-left: 0;
  }

  .checkout-summary {
    position: static;
  }

  .data-list article {
    grid-template-columns: 1fr 1fr;
  }

  .admin-actions {
    flex-wrap: wrap;
  }

  .admin-stat-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* 幻灵商城 */
.rewards-width { width: min(1180px, calc(100% - 48px)); margin-inline: auto; }
.rewards-hero { padding: 62px 0; color: #fff; background: radial-gradient(circle at 78% 30%, rgba(51,218,255,.24), transparent 28%), linear-gradient(125deg,#081126,#172b70 58%,#3748be); }
.rewards-hero > div { display: flex; align-items: center; justify-content: space-between; gap: 35px; }
.rewards-hero p,.rewards-heading p { margin: 0 0 12px; color: #63efff; font-size: 11px; font-weight: 900; letter-spacing: .2em; }
.rewards-hero h1 { margin: 0 0 16px; max-width: 720px; font-size: clamp(34px,5vw,62px); line-height: 1.12; letter-spacing: -.05em; }
.rewards-hero span { color: #c9d5ee; line-height: 1.8; }
.rewards-hero aside { min-width: 220px; padding: 25px; border: 1px solid rgba(255,255,255,.16); border-radius: 20px; background: rgba(3,10,27,.35); backdrop-filter: blur(15px); }
.rewards-hero aside span { display: block; font-size: 12px; }
.rewards-hero aside strong { display: block; margin: 8px 0; font-size: 30px; }
.rewards-hero aside a { color: #73efff; font-size: 12px; font-weight: 800; }
.rewards-content { padding-block: 58px 90px; }
.rewards-heading { margin-bottom: 24px; display: flex; align-items: end; justify-content: space-between; gap: 20px; }
.rewards-heading h2 { margin: 0; font-size: 32px; }
.rewards-heading > a { color: #5265ed; font-size: 12px; font-weight: 800; }
.reward-product-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 22px; }
.reward-product-card { overflow: hidden; display: flex; flex-direction: column; border: 1px solid #e2e7f1; border-radius: 22px; background: #fff; box-shadow: 0 18px 45px rgba(19,34,73,.08); transition: transform .2s ease,box-shadow .2s ease,border-color .2s ease; }
.reward-product-card:hover { border-color: #d8def4; box-shadow: 0 22px 52px rgba(19,34,73,.12); transform: translateY(-3px); }
.reward-product-image { aspect-ratio: 4/3; overflow: hidden; background: linear-gradient(135deg,#edf1ff,#dffcff); }
.reward-product-image { position: relative; }
.reward-product-image img { width: 100%; height: 100%; object-fit: cover; }
.reward-product-image > span { position: absolute; inset: 0; display: grid; place-items: center; color: #fff; background: rgba(4,11,30,.65); font-size: 18px; font-weight: 900; }
.reward-product-copy { padding: 22px 22px 18px; display: flex; flex: 1; flex-direction: column; }
.reward-product-copy h3 { margin: 4px 0 8px; color: #111a30; font-size: 21px; line-height: 1.25; }
.reward-product-copy > p { margin: 0; color: #7a8499; font-size: 13px; line-height: 1.7; }
.reward-product-copy > span { color: #6f7a90; font-size: 13px; line-height: 1.7; }
.reward-product-copy .reward-eyebrow { color: #6070d8; font-size: 10px; font-weight: 900; letter-spacing: .11em; }
.reward-description { margin-top: 0 !important; min-height: 22px; white-space: pre-line; }
.reward-product-description { white-space: pre-line; }
.reward-product-meta { margin: 17px 0 13px; padding: 14px 0; display: flex; align-items: center; justify-content: space-between; gap: 14px; border-top: 1px solid #edf0f6; border-bottom: 1px solid #edf0f6; }
.reward-price { color: #ff5574; font-size: 22px; font-weight: 900; }
.reward-price { margin: 0; display: flex; align-items: center; gap: 7px; }
.reward-price img { width: 30px; height: 30px; object-fit: contain; }
.reward-price small { color: #8a94a9; font-size: 11px; }
.reward-stock { padding: 7px 9px; display: inline-flex; align-items: center; gap: 5px; color: #647086; border: 1px solid #e1e6f0; border-radius: 999px; background: #f7f9fc; font-size: 10px; font-weight: 700; white-space: nowrap; }
.reward-stock i { width: 6px; height: 6px; border-radius: 50%; background: #43b982; box-shadow: 0 0 0 3px rgba(67,185,130,.12); }
.reward-stock b { color: #27344e; font-size: 11px; }
.reward-stock.is-low { color: #b26c19; border-color: #f1ddb8; background: #fff8ec; }
.reward-stock.is-low i { background: #f2a43b; box-shadow: 0 0 0 3px rgba(242,164,59,.13); }
.reward-stock.is-empty { color: #b04a57; border-color: #f0d4d8; background: #fff4f5; }
.reward-stock.is-empty i { background: #dc5869; box-shadow: 0 0 0 3px rgba(220,88,105,.12); }
.reward-stock.is-ready { color: #24805b; border-color: #cdebdc; background: #f0fbf6; }
.reward-login-button,.reward-redeem-box > summary { width: 100%; padding: 13px 16px; display: block; border: 0; border-radius: 12px; color: #fff; background: linear-gradient(135deg,#5f70ff,#4255dc); font-size: 13px; font-weight: 850; text-align: center; cursor: pointer; }
.reward-product-card > .reward-login-button,.reward-product-card > .reward-redeem-box { width: calc(100% - 44px); margin: 0 22px 22px; }
.reward-login-button[disabled] { opacity: .5; cursor: not-allowed; }
.reward-redeem-box > summary { list-style: none; }
.reward-redeem-box > summary::-webkit-details-marker { display: none; }
.reward-redeem-box form { margin-top: 12px; padding: 15px; display: grid; gap: 12px; border-radius: 14px; background: #f5f7fb; }
.reward-redeem-box label { display: grid; gap: 6px; color: #4d5870; font-size: 11px; font-weight: 700; }
.reward-redeem-box input,.reward-redeem-box textarea { width: 100%; padding: 10px 11px; border: 1px solid #dce2ef; border-radius: 9px; background: #fff; font: inherit; }
.reward-redeem-box button { padding: 11px; border: 0; border-radius: 9px; color: #fff; background: #111b38; font-weight: 800; cursor: pointer; }
.reward-history { margin-top: 62px; }
.rewards-empty { padding: 60px 30px; border: 1px dashed #ccd4e4; border-radius: 22px; text-align: center; background: #fff; }

@media (max-width: 900px) {
  .reward-product-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .rewards-hero > div { align-items: stretch; flex-direction: column; }
  .rewards-hero aside { min-width: 0; }
}
@media (max-width: 620px) {
  .rewards-width { width: min(100% - 28px,1180px); }
  .rewards-hero { padding: 42px 0; }
  .reward-product-grid { grid-template-columns: 1fr; }
  .reward-product-meta { align-items: flex-start; flex-direction: column; gap: 10px; }
  .rewards-heading { align-items: flex-start; flex-direction: column; }
}

/* 右侧快捷工具栏与客服弹窗 */
.floating-tools { position: fixed; z-index: 85; right: 18px; top: 55%; width: 76px; overflow: hidden; display: grid; border: 1px solid #e3e7f0; border-radius: 14px; background: rgba(255,255,255,.96); box-shadow: 0 12px 35px rgba(17,29,58,.14); transform: translateY(-50%); backdrop-filter: blur(12px); }
.floating-tools a,.floating-tools button { min-height: 72px; padding: 8px 4px; display: grid; place-items: center; align-content: center; gap: 5px; border: 0; border-bottom: 1px solid #edf0f5; color: #536077; background: transparent; font: inherit; text-align: center; cursor: pointer; transition: color .18s ease,background .18s ease; }
.floating-tools > :last-child { border-bottom: 0; }
.floating-tools a:hover,.floating-tools button:hover { color: #4f62ee; background: #f4f6ff; }
.floating-tools span { color: #6575ef; font-size: 23px; line-height: 1; }
.floating-tools button:first-child span { color: #ff941f; }
.floating-tools b { font-size: 11px; font-weight: 700; white-space: nowrap; }
.support-modal[hidden] { display: none !important; }
.support-modal { position: fixed; z-index: 130; inset: 0; display: grid; place-items: center; padding: 20px; opacity: 0; transition: opacity .18s ease; }
.support-modal.is-open { opacity: 1; }
.support-modal-backdrop { position: absolute; inset: 0; border: 0; background: rgba(3,8,20,.68); cursor: pointer; }
.support-modal-dialog { position: relative; width: min(390px,100%); padding: 28px; border: 1px solid rgba(91,112,255,.16); border-radius: 24px; background: #fff; box-shadow: 0 30px 90px rgba(0,0,0,.28); transform: translateY(12px) scale(.98); transition: transform .18s ease; }
.support-modal.is-open .support-modal-dialog { transform: none; }
.support-modal-close { position: absolute; top: 12px; right: 14px; width: 34px; height: 34px; border: 0; border-radius: 50%; color: #6e7890; background: #f1f4fa; font-size: 23px; cursor: pointer; }
.support-modal-heading { display: flex; align-items: center; gap: 13px; }
.support-modal-heading > span { width: 52px; height: 52px; display: grid; place-items: center; border-radius: 16px; color: #fff; background: linear-gradient(145deg,#56ddff,#5966f1); font-size: 25px; }
.support-modal-heading small { color: #5b6ef3; font-size: 9px; font-weight: 900; letter-spacing: .15em; }
.support-modal-heading h2 { margin: 4px 0 0; font-size: 22px; }
.support-modal-copy { margin: 20px 0 16px; color: #647087; font-size: 13px; line-height: 1.8; text-align: center; }
.support-qr { width: min(250px,100%); aspect-ratio: 1; margin: auto; padding: 10px; display: grid; place-items: center; border: 2px solid #50ded7; border-radius: 18px; background: #fff; }
.support-qr img { width: 100%; height: 100%; object-fit: contain; }
.support-qr-empty { color: #8993a7; border-style: dashed; background: #f7f9fc; font-size: 12px; text-align: center; }
.support-modal-tip { margin: 14px 0 0; color: #4f62e9; font-size: 12px; text-align: center; }
.support-modal-open { overflow: hidden; }

@media (max-width: 760px) {
  .floating-tools { right: 12px; left: 12px; top: auto; bottom: 12px; width: auto; grid-template-columns: repeat(4,1fr); border-radius: 14px; transform: none; }
  .floating-tools a,.floating-tools button { min-height: 58px; border-right: 1px solid #edf0f5; border-bottom: 0; }
  .floating-tools > :last-child { border-right: 0; }
  .floating-tools span { font-size: 19px; }
  .floating-tools b { font-size: 10px; }
  .site-footer { padding-bottom: 100px; }
}

/* 在线支付 */
.checkout-plan-box { min-width: 0; margin: 22px 0; padding: 22px; border: 1px solid #e2e7f2; border-radius: 18px; background: #fff; }
.checkout-plan-box legend { padding: 0; color: #10182c; font-size: 18px; font-weight: 900; }
.checkout-plan-list { margin-top: 16px; display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 12px; }
.checkout-plan-option { position: relative; min-width: 0; cursor: pointer; }
.checkout-plan-option > input { position: absolute; opacity: 0; pointer-events: none; }
.checkout-plan-card { min-height: 94px; padding: 15px; display: grid; grid-template-columns: 24px minmax(0,1fr) auto; align-items: center; gap: 11px; border: 1px solid #dce2ef; border-radius: 15px; background: #fafbff; transition: border-color .18s ease,box-shadow .18s ease,transform .18s ease,background .18s ease; }
.checkout-plan-card > i { width: 22px; height: 22px; display: grid; place-items: center; color: transparent; border: 1px solid #cdd5e5; border-radius: 50%; background: #fff; font-size: 11px; font-style: normal; font-weight: 900; }
.checkout-plan-copy,.checkout-plan-price { min-width: 0; display: grid; gap: 5px; }
.checkout-plan-copy b { overflow: hidden; color: #11192e; font-size: 15px; text-overflow: ellipsis; white-space: nowrap; }
.checkout-plan-copy small { overflow: hidden; color: #8892a7; font-size: 10px; text-overflow: ellipsis; white-space: nowrap; }
.checkout-plan-price { justify-items: end; }
.checkout-plan-price strong { color: #ff4f68; font-size: 17px; }
.checkout-plan-price del { color: #a4adbf; font-size: 10px; }
.checkout-plan-option > input:checked + .checkout-plan-card { border-color: #5b6cf4; background: #f3f5ff; box-shadow: 0 0 0 3px rgba(91,108,244,.12); transform: translateY(-1px); }
.checkout-plan-option > input:checked + .checkout-plan-card > i { color: #fff; border-color: #5b6cf4; background: #5b6cf4; }
.checkout-plan-option > input:focus-visible + .checkout-plan-card { outline: 3px solid rgba(91,108,244,.25); outline-offset: 2px; }
.order-plan-badge { width: fit-content; margin-top: 7px; padding: 5px 9px; display: inline-flex; color: #4055de; border: 1px solid #dbe0ff; border-radius: 999px; background: #f1f3ff; font-size: 10px; font-weight: 800; }
.checkout-coupon-box { position: relative; isolation: isolate; overflow: hidden; margin: 22px 0; padding: 24px; border: 1px solid #dce3ff; border-radius: 20px; background: linear-gradient(135deg,#f8faff 0%,#fff 50%,#f6f4ff 100%); box-shadow: 0 14px 38px rgba(55,72,148,.07); }
.checkout-coupon-box::before { content: ""; position: absolute; z-index: -1; top: -70px; right: -40px; width: 190px; height: 190px; border-radius: 50%; background: radial-gradient(circle,rgba(102,86,241,.15),rgba(102,86,241,0) 68%); }
.checkout-coupon-heading { margin-bottom: 18px; display: grid; grid-template-columns: 48px minmax(0,1fr) auto; align-items: center; gap: 14px; }
.checkout-coupon-icon { width: 48px; height: 48px; display: grid; place-items: center; color: #fff; border-radius: 15px; background: linear-gradient(135deg,#586ff2,#7951ec); box-shadow: 0 9px 22px rgba(91,91,232,.24); font-size: 22px; font-weight: 900; }
.checkout-coupon-title { min-width: 0; }
.checkout-coupon-title > span { color: #5267eb; font-size: 9px; font-weight: 900; letter-spacing: .16em; }
.checkout-coupon-title h2 { margin: 3px 0 4px; color: #10182c; font-size: 19px; line-height: 1.2; }
.checkout-coupon-title p { margin: 0; color: #7d879c; font-size: 11px; line-height: 1.6; }
.checkout-coupon-heading > small { padding: 7px 10px; color: #5968bb; border: 1px solid #dce2ff; border-radius: 999px; background: rgba(255,255,255,.72); font-size: 9px; font-weight: 800; white-space: nowrap; }
.checkout-coupon-entry { display: grid; grid-template-columns: minmax(0,1fr) 112px; gap: 10px; }
.checkout-coupon-input { min-width: 0; min-height: 52px; padding: 0 15px; display: flex; align-items: center; gap: 11px; border: 1px solid #d7deed; border-radius: 14px; background: #fff; box-shadow: 0 7px 20px rgba(27,41,84,.05); transition: border-color .18s ease,box-shadow .18s ease; }
.checkout-coupon-input:focus-within { border-color: #6878f2; box-shadow: 0 0 0 4px rgba(91,108,244,.11),0 7px 20px rgba(27,41,84,.05); }
.checkout-coupon-input > span { width: 26px; height: 26px; flex: 0 0 auto; display: grid; place-items: center; color: #596cf0; border-radius: 8px; background: #edf0ff; font-size: 12px; font-weight: 900; }
.checkout-coupon-entry input { width: 100%; min-width: 0; height: 50px; padding: 0; color: #18213a; border: 0; outline: 0; background: transparent; font-size: 14px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.checkout-coupon-entry input::placeholder { color: #a2abba; font-weight: 500; letter-spacing: 0; }
.checkout-coupon-entry button { min-height: 52px; padding: 0 15px; border: 0; border-radius: 14px; color: #fff; background: linear-gradient(115deg,#5267eb,#714ff1); box-shadow: 0 10px 22px rgba(88,86,231,.23); font-size: 12px; font-weight: 900; cursor: pointer; transition: transform .18s ease,box-shadow .18s ease,opacity .18s ease; }
.checkout-coupon-entry button:hover { transform: translateY(-1px); box-shadow: 0 13px 25px rgba(88,86,231,.28); }
.checkout-coupon-entry button:disabled { opacity: .6; cursor: wait; transform: none; }
.checkout-coupon-feedback { min-height: 18px; margin: 11px 1px 0; display: flex; align-items: center; gap: 7px; color: #7e899e; font-size: 11px; line-height: 1.5; }
.checkout-coupon-feedback i { width: 6px; height: 6px; flex: 0 0 auto; border-radius: 50%; background: #aab3c5; }
.checkout-coupon-feedback.is-success { color: #159562; font-weight: 800; }
.checkout-coupon-feedback.is-success i { background: #18a66d; box-shadow: 0 0 0 4px rgba(24,166,109,.1); }
.checkout-coupon-feedback.is-error { color: #d14355; font-weight: 800; }
.checkout-coupon-feedback.is-error i { background: #d14355; box-shadow: 0 0 0 4px rgba(209,67,85,.1); }
.checkout-summary .checkout-discount-row strong { color: #16a36d; }
.checkout-payment-box { padding: 24px; border: 1px solid #e2e7f2; border-radius: 18px; background: #fff; }
.checkout-payment-box h2 { margin: 0 0 16px; font-size: 18px; }
.payment-methods { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 12px; }
.payment-method { position: relative; cursor: pointer; }
.payment-method input { position: absolute; opacity: 0; pointer-events: none; }
.payment-method span { min-height: 74px; padding: 16px 18px; display: grid; gap: 4px; border: 1px solid #dce2ef; border-radius: 14px; color: #18213a; background: #f8faff; transition: border .18s ease,box-shadow .18s ease,background .18s ease; }
.payment-method small { color: #8892a7; font-size: 11px; }
.payment-method input:checked + span { border-color: #5b6cf4; background: #f1f3ff; box-shadow: 0 0 0 3px rgba(91,108,244,.12); }
.payment-unavailable { padding: 14px 16px; border-radius: 12px; color: #a64141; background: #fff2f2; font-size: 13px; }
.checkout-submit[disabled] { opacity: .5; cursor: not-allowed; }
@media (max-width: 620px) { .checkout-coupon-box { padding: 19px; } .checkout-coupon-heading { grid-template-columns: 42px minmax(0,1fr); gap: 11px; } .checkout-coupon-icon { width: 42px; height: 42px; border-radius: 13px; font-size: 19px; } .checkout-coupon-heading > small { display: none; } .checkout-coupon-entry { grid-template-columns: minmax(0,1fr) 88px; } .checkout-coupon-entry button { padding: 0 10px; } }
.payment-redirect-page { min-height: 68vh; padding: 80px 20px; display: grid; place-items: center; background: #f4f6fb; }
.payment-redirect-card { width: min(520px,100%); padding: 42px; display: grid; justify-items: center; gap: 16px; border: 1px solid #e1e6f0; border-radius: 26px; background: #fff; box-shadow: 0 24px 70px rgba(20,34,72,.1); text-align: center; }
.payment-redirect-card h1 { margin: 0; font-size: clamp(28px,5vw,42px); }
.payment-redirect-card > p:not(.section-kicker) { margin: 0; color: #6d7890; line-height: 1.8; }
.payment-redirect-card form { display: grid; }
.payment-redirect-card > a { color: #6570a0; font-size: 13px; }
.payment-loader { width: 58px; height: 58px; border: 5px solid #e9edff; border-top-color: #5b6df2; border-radius: 50%; animation: payment-spin .8s linear infinite; }
@keyframes payment-spin { to { transform: rotate(360deg); } }
.payment-success-banner { width: min(1180px,calc(100% - 40px)); margin: 28px auto 0; padding: 20px 24px; display: flex; align-items: center; gap: 16px; border: 1px solid #b9edd6; border-radius: 18px; color: #123d2d; background: #ecfff6; box-shadow: 0 14px 35px rgba(18,112,73,.08); }
.payment-success-banner > span { width: 48px; height: 48px; flex: 0 0 auto; display: grid; place-items: center; border-radius: 50%; color: #fff; background: #20b777; font-size: 24px; font-weight: 900; }
.payment-success-banner strong { font-size: 18px; }
.payment-success-banner p { margin: 5px 0 0; color: #477565; font-size: 13px; }
.payment-success-banner button { margin-left: auto; padding: 12px 17px; border: 0; border-radius: 11px; color: #fff; background: #179c65; font-weight: 800; cursor: pointer; }
.order-contact-card,.order-payment-card { padding: 24px; display: flex; align-items: center; justify-content: space-between; gap: 22px; border: 1px solid #dfe5f1; border-radius: 20px; background: #fff; }
.order-contact-card { border-color: #c9eddf; background: linear-gradient(135deg,#f2fff9,#fff); }
.order-contact-card small,.order-payment-card small { color: #596cf0; font-size: 9px; font-weight: 900; letter-spacing: .16em; }
.order-contact-card h2,.order-payment-card h2 { margin: 7px 0 4px; font-size: 21px; }
.order-contact-card p,.order-payment-card p { margin: 0; color: #758097; font-size: 12px; }

@media (max-width: 620px) {
  .checkout-plan-list { grid-template-columns: 1fr; }
  .checkout-plan-card { grid-template-columns: 24px minmax(0,1fr); }
  .checkout-plan-price { grid-column: 2; justify-items: start; grid-auto-flow: column; justify-content: start; align-items: baseline; }
  .payment-methods { grid-template-columns: 1fr; }
  .payment-redirect-card { padding: 32px 22px; }
  .payment-success-banner,.order-contact-card,.order-payment-card { align-items: stretch; flex-direction: column; }
  .payment-success-banner button { width: 100%; margin-left: 0; }
}

/* 精选服务独立页面 */
.services-hero { position: relative; min-height: 430px; overflow: hidden; color: #fff; background: radial-gradient(circle at 78% 32%,rgba(47,207,255,.24),transparent 26%),radial-gradient(circle at 62% 110%,rgba(111,75,255,.25),transparent 34%),linear-gradient(135deg,#07101f,#101d43 58%,#0b2551); }
.services-hero::before { content: ""; position: absolute; inset: 0; opacity: .1; background-image: linear-gradient(rgba(255,255,255,.18) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.18) 1px,transparent 1px); background-size: 48px 48px; mask-image: linear-gradient(90deg,#000,transparent 78%); }
.services-hero-inner { position: relative; min-height: 430px; display: grid; grid-template-columns: minmax(0,1.25fr) minmax(300px,.75fr); align-items: center; gap: 70px; }
.services-hero-copy { position: relative; z-index: 2; max-width: 720px; }
.services-hero-copy .section-kicker { color: #5ee7ff; }
.services-hero-copy h1 { margin: 14px 0 18px; font-size: clamp(44px,6vw,76px); line-height: 1.04; letter-spacing: -.065em; }
.services-hero-copy > p:not(.section-kicker) { max-width: 660px; margin: 0 0 28px; color: #b9c6df; font-size: 15px; line-height: 1.9; }
.services-hero-copy .button { min-width: 144px; }
.services-hero-stats { position: relative; z-index: 2; display: grid; gap: 12px; }
.services-hero-stats article { padding: 18px 20px; display: flex; align-items: center; justify-content: space-between; gap: 15px; border: 1px solid rgba(255,255,255,.13); border-radius: 16px; background: rgba(255,255,255,.07); backdrop-filter: blur(14px); }
.services-hero-stats strong { color: #72efff; font-size: 25px; }
.services-hero-stats span { color: #d8e1f2; font-size: 12px; }
.services-hero-orbit { position: absolute; right: -210px; bottom: -300px; width: 620px; height: 620px; display: grid; place-items: center; border: 1px solid rgba(93,231,255,.14); border-radius: 50%; }
.services-hero-orbit i { position: absolute; inset: 90px; border: 1px solid rgba(107,112,255,.18); border-radius: 50%; }
.services-hero-orbit i:nth-child(2) { inset: 180px; }
.services-hero-orbit span { color: rgba(255,255,255,.06); font-size: 120px; font-weight: 900; }
.services-category-section { padding-top: 72px; }
.services-products-section { padding-top: 48px; }
.services-products-heading { margin-bottom: 24px; display: flex; align-items: end; justify-content: space-between; gap: 20px; }
.services-products-heading h2 { margin: 6px 0 0; font-size: clamp(30px,4vw,46px); }
.services-products-heading > span { color: var(--muted); font-size: 12px; }
.services-products-grid { grid-template-columns: repeat(4,minmax(0,1fr)); }
.services-product-card { min-height: 500px; }
.services-product-description { min-height: 42px; margin: 7px 0 3px; overflow: hidden; color: #7b8598; font-size: 11px; line-height: 1.8; text-align: center; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; }
.services-product-card .product-card-price small { max-width: 105px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.services-support-cta { margin-bottom: 90px; padding: 34px 40px; display: flex; align-items: center; justify-content: space-between; gap: 30px; color: #fff; border-radius: 24px; background: radial-gradient(circle at 85% 20%,rgba(54,215,255,.22),transparent 28%),linear-gradient(135deg,#0b1734,#1c2e6f); box-shadow: 0 24px 60px rgba(29,48,111,.16); }
.services-support-cta h2 { margin: 7px 0 8px; font-size: clamp(26px,4vw,40px); }
.services-support-cta span { color: #b7c4df; font-size: 12px; }
.services-support-cta .button { flex: 0 0 auto; min-width: 150px; border: 0; cursor: pointer; }

@media (max-width: 1180px) {
  .services-products-grid { grid-template-columns: repeat(3,minmax(0,1fr)); }
}

@media (max-width: 820px) {
  .services-hero-inner { grid-template-columns: 1fr; gap: 30px; padding-top: 70px; padding-bottom: 70px; }
  .services-hero-stats { grid-template-columns: repeat(3,minmax(0,1fr)); }
  .services-hero-stats article { align-items: flex-start; flex-direction: column; }
  .services-products-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .services-support-cta { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 620px) {
  .services-hero { min-height: 0; }
  .services-hero-inner { min-height: 0; padding-top: 54px; padding-bottom: 54px; }
  .services-hero-copy h1 { font-size: 43px; }
  .services-hero-copy > p:not(.section-kicker) { font-size: 13px; }
  .services-hero-stats { grid-template-columns: 1fr; }
  .services-hero-stats article { padding: 13px 16px; align-items: center; flex-direction: row; }
  .services-category-section { padding-top: 52px; }
  .services-products-heading { align-items: flex-start; flex-direction: column; }
  .services-products-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .services-product-card { min-height: 470px; }
  .services-product-description { min-height: 38px; font-size: 10px; }
  .services-support-cta { margin-bottom: 70px; padding: 27px 23px; }
  .services-support-cta .button { width: 100%; }
}
