:root {
  --bg: #f4f6fb;
  --sidebar: #ffffff;
  --panel: #ffffff;
  --line: #e6ebf4;
  --text: #24324a;
  --muted: #7e8aa5;
  --blue: #2f6bff;
  --blue-dark: #2354cc;
  --green: #12b54f;
  --sand: #f7c267;
  --danger: #ffa7a2;
  --pink: #ff84c8;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--bg);
  font-family: "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
}

.login-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
  background:
    radial-gradient(circle at top left, rgba(47, 107, 255, 0.12), transparent 28%),
    linear-gradient(180deg, #f7f9fe 0%, #eef2f9 100%);
}

.login-card,
.erp-panel,
.stat-card {
  background: var(--panel);
  border: 1px solid var(--line);
  box-shadow: 0 10px 24px rgba(44, 63, 109, 0.05);
}

.login-card {
  width: min(420px, 100%);
  padding: 28px;
  border-radius: 24px;
}

.brand-chip {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(47, 107, 255, 0.1);
  color: var(--blue-dark);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2 {
  margin: 12px 0 8px;
}

.muted {
  color: var(--muted);
}

.stack-form {
  display: grid;
  gap: 16px;
}

label span {
  display: block;
  margin-bottom: 6px;
  font-size: 14px;
  font-weight: 600;
}

input,
select,
button,
.button-link {
  border-radius: 4px;
  font: inherit;
}

input,
select {
  width: 100%;
  height: 32px;
  padding: 6px 10px;
  border: 1px solid var(--line);
  background: #f7f8fc;
}

button,
.button-link {
  border: none;
  padding: 11px 16px;
  background: linear-gradient(135deg, var(--blue), #4f88ff);
  color: white;
  cursor: pointer;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

button.secondary,
.button-link.secondary {
  background: #eef4ff;
  color: var(--blue-dark);
  border: 1px solid #d6e2ff;
}

.help-box,
.alert,
.token-box {
  margin-top: 16px;
  padding: 14px;
  border-radius: 16px;
  background: #f5f8ff;
}

.alert.error {
  background: #fff1f1;
  color: #b13131;
}

.erp-page {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 220px 1fr;
}

.erp-sidebar {
  background: var(--sidebar);
  border-right: 1px solid var(--line);
  padding: 18px 0;
}

.erp-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 24px 18px;
  border-bottom: 1px solid var(--line);
}

.erp-logo-mark {
  color: var(--blue);
  font-size: 22px;
}

.erp-logo-text {
  font-size: 18px;
  font-weight: 800;
}

.erp-nav {
  padding: 12px 8px;
}

.erp-nav-item,
.erp-nav-subitem,
.erp-nav-title {
  display: block;
  padding: 12px 16px;
  color: #4d5d79;
  text-decoration: none;
  font-size: 15px;
}

.erp-nav-group {
  margin: 4px 0;
}

.erp-nav-subitem {
  padding-left: 28px;
}

.erp-nav-subitem.active,
.erp-nav-title.active {
  color: var(--blue);
  background: #f3f7ff;
}

.erp-main {
  padding: 18px;
}

.erp-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}

.erp-topbar-title {
  font-size: 22px;
  font-weight: 800;
}

.erp-topbar-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.erp-lang,
.erp-user,
.ghost-btn {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 8px;
  padding: 8px 12px;
}

.erp-user {
  display: flex;
  align-items: center;
  gap: 8px;
}

.erp-avatar {
  width: 28px;
  height: 28px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  background: var(--blue);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
}

.ghost-btn {
  color: #49617f;
}

.erp-panel {
  border-radius: 8px;
  padding: 14px 16px;
}

.filter-panel,
.pager-panel {
  margin-bottom: 14px;
}

.toolbar-grid {
  display: grid;
  gap: 12px;
}

.toolbar-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 12px;
  align-items: center;
}

.toolbar-field {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 150px;
}

.toolbar-field span {
  margin: 0;
  white-space: nowrap;
  font-size: 14px;
  font-weight: 500;
}

.toolbar-field.short {
  min-width: 120px;
}

.toolbar-field.wide {
  min-width: 340px;
  flex: 1 1 340px;
}

.toolbar-field input,
.toolbar-field select {
  min-width: 0;
}

.range-fields {
  display: flex;
  align-items: center;
  gap: 8px;
}

.range-fields input {
  width: 84px;
}

.dash {
  color: #94a0b8;
}

.toolbar-count {
  color: var(--muted);
}

.toggle-field {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #55657f;
}

.fake-switch {
  min-width: 40px;
  text-align: center;
  padding: 5px 10px;
  border-radius: 999px;
  background: #edf1f7;
  color: #8d9ab0;
  font-size: 12px;
  font-weight: 700;
}

.mini-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 7px 16px;
  border-radius: 4px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  border: 1px solid transparent;
  white-space: nowrap;
}

.mini-btn.primary,
.mini-btn.blue {
  background: var(--blue);
  color: #fff;
}

.mini-btn.blue-outline {
  background: #fff;
  color: var(--blue);
  border-color: #b9cdfd;
}

.mini-btn.light {
  background: #fff;
  color: var(--blue);
  border-color: #b9cdfd;
}

.mini-btn.green {
  background: var(--green);
  color: #fff;
}

.mini-btn.danger {
  background: var(--danger);
  color: #fff;
}

.mini-btn.sand {
  background: var(--sand);
  color: #fff;
}

.mini-btn.pale {
  background: #87b5ff;
  color: #fff;
}

.batch-toolbar {
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.checkbox-line {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.toolbar-balance {
  padding: 8px 12px;
  border-radius: 4px;
  background: #f6f7fb;
  min-width: 86px;
  text-align: center;
}

.toolbar-wide {
  min-width: 180px;
}

.product-checkbox,
#selectAllProducts {
  width: 16px;
  height: 16px;
}

.pager-row {
  display: flex;
  gap: 18px;
  justify-content: center;
  align-items: center;
  color: #5e6c83;
  flex-wrap: wrap;
}

.pager-numbers {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.pager-link,
.pager-arrow {
  min-width: 26px;
  padding: 4px 8px;
  border-radius: 4px;
  color: #5f6f8a;
  text-decoration: none;
  text-align: center;
}

.pager-link.active {
  color: var(--blue);
  background: #eef4ff;
}

.pager-arrow.disabled {
  opacity: 0.4;
  pointer-events: none;
}

.page-size-form select {
  width: 92px;
  background: #fff;
}

.product-list {
  display: grid;
  gap: 16px;
}

.product-card {
  display: grid;
  grid-template-columns: 28px 360px 1fr;
  gap: 14px;
  align-items: start;
}

.product-media-col {
  display: grid;
  gap: 12px;
}

.main-image-wrap {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: 6px;
  overflow: hidden;
  background: #f2f4f8;
  border: 1px solid var(--line);
}

.main-image,
.thumb-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.image-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  padding: 0;
  background: #ff5247;
  color: #fff;
  font-size: 18px;
  line-height: 1;
}

.no-image {
  height: 100%;
  display: grid;
  place-items: center;
  color: var(--muted);
}

.thumb-section {
  background: #fafbfe;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 10px;
}

.thumb-title {
  cursor: pointer;
  list-style: none;
  margin-bottom: 8px;
  font-size: 13px;
  color: #5c6b86;
}

.thumb-title::-webkit-details-marker,
.desc-title::-webkit-details-marker {
  display: none;
}

.sortable-hint {
  color: #98a3b8;
  font-size: 12px;
}

.thumb-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.thumb-card {
  position: relative;
  width: 60px;
  text-align: center;
}

.thumb-card img {
  height: 58px;
  border-radius: 4px;
  border: 1px solid var(--line);
  margin-bottom: 4px;
}

.thumb-card span {
  display: block;
  font-size: 12px;
  color: #5d6c86;
}

.draggable-thumb {
  cursor: grab;
  user-select: none;
}

.draggable-thumb:active {
  cursor: grabbing;
}

.thumb-card.dragging {
  opacity: 0.45;
  transform: scale(0.96);
}

.gallery-main.drag-over {
  outline: 2px dashed #29b6ff;
  outline-offset: 4px;
  background: rgba(41, 182, 255, 0.08);
  border-radius: 8px;
}

.gallery-main .thumb-card:first-child img {
  border-color: #1f7aff;
  box-shadow: 0 0 0 2px rgba(31, 122, 255, 0.25);
}

.thumb-delete {
  position: absolute;
  top: -6px;
  right: -6px;
  width: 18px;
  height: 18px;
  min-width: 18px;
  padding: 0;
  border-radius: 999px;
  background: #ff3b30;
  color: #fff;
  font-size: 12px;
  line-height: 18px;
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.15s ease, transform 0.15s ease;
}

.thumb-card:hover .thumb-delete {
  opacity: 1;
  transform: scale(1);
}

.gallery .thumb-card {
  width: 52px;
}

.gallery .thumb-card img {
  height: 52px;
}

.product-headline {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.headline-left {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.meta-id {
  color: #8190aa;
}

.meta-chip {
  display: inline-flex;
  align-items: center;
  padding: 4px 8px;
  border-radius: 4px;
  background: #f1f4fa;
  color: #6c7a93;
  font-size: 12px;
}

.meta-chip.accent {
  color: var(--blue);
  background: #eef4ff;
}

.meta-chip.muted {
  background: #f7f8fb;
}

.meta-chip.pink {
  color: #ff5cb8;
  background: #fff0f8;
}

.product-title-bar {
  padding: 10px 12px;
  background: #f7f8fc;
  border-radius: 4px;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 12px;
}

.detail-box,
.desc-box {
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  padding: 12px;
}

.detail-box {
  margin-bottom: 12px;
}

.detail-line {
  display: flex;
  gap: 8px;
  margin-bottom: 8px;
  word-break: break-word;
}

.detail-line:last-child {
  margin-bottom: 0;
}

.detail-label {
  min-width: 72px;
  color: #64748b;
}

.desc-title {
  list-style: none;
  cursor: pointer;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 10px;
}

.desc-content {
  color: #46556f;
  line-height: 1.7;
  white-space: pre-wrap;
}

.empty-panel {
  text-align: center;
  color: var(--muted);
  padding: 36px 18px;
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(13, 20, 35, 0.42);
  display: grid;
  place-items: center;
  z-index: 30;
}

.modal-backdrop.hidden,
.page-toast.hidden {
  display: none;
}

.export-modal {
  width: min(400px, calc(100vw - 24px));
  background: #fff;
  border-radius: 8px;
  padding: 28px 32px;
  box-shadow: 0 18px 50px rgba(15, 30, 70, 0.22);
}

.modal-title {
  font-size: 18px;
  font-weight: 800;
  text-align: center;
  margin-bottom: 24px;
}

.modal-summary {
  font-size: 15px;
  margin-bottom: 14px;
}

.modal-estimate {
  padding: 8px 12px;
  border-radius: 4px;
  background: #e8f8e9;
  color: #1f9b45;
  font-weight: 700;
  margin-bottom: 16px;
}

.modal-field {
  display: block;
  margin-bottom: 12px;
}

.modal-field span {
  display: inline;
}

.modal-hint {
  color: #91a0b6;
  font-size: 12px;
}

.modal-field select {
  margin-top: 8px;
  background: #fff;
}

.modal-checkbox {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
  margin-bottom: 16px;
}

.modal-checkbox span {
  margin: 0;
  font-weight: 500;
}

.modal-group {
  margin-bottom: 16px;
}

.modal-group-title {
  font-weight: 700;
  margin-bottom: 10px;
}

.radio-card {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 6px;
  margin-bottom: 8px;
  cursor: pointer;
}

.radio-card.active {
  border-color: var(--blue);
  background: #eef4ff;
}

.radio-card span {
  margin: 0;
  font-weight: 500;
}

.modal-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 16px;
}

.ghost-action,
.primary-action {
  min-width: 88px;
  padding: 10px 16px;
  border-radius: 4px;
}

.ghost-action {
  background: #eef1f5;
  color: #5d6e8b;
}

.primary-action {
  background: var(--blue);
  color: #fff;
}

.page-toast {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 40;
  background: #23314a;
  color: #fff;
  padding: 10px 14px;
  border-radius: 6px;
  box-shadow: 0 10px 24px rgba(12, 22, 44, 0.2);
}

.task-modal {
  width: min(520px, calc(100vw - 24px));
  background: #fff;
  border-radius: 8px;
  padding: 24px 24px 18px;
  box-shadow: 0 18px 50px rgba(15, 30, 70, 0.22);
}

.settings-modal {
  width: min(640px, calc(100vw - 24px));
}

.settings-copy {
  color: #a8bee2;
  line-height: 1.7;
  margin-bottom: 16px;
}

.settings-field {
  display: block;
}

.settings-field span {
  display: block;
  margin-bottom: 10px;
  color: #dbe8ff;
}

.settings-textarea {
  width: 100%;
  min-height: 260px;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid rgba(94, 152, 242, 0.18);
  background: rgba(9, 20, 39, 0.94);
  color: #eaf3ff;
  resize: vertical;
  line-height: 1.6;
  font: inherit;
}

.settings-tips {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 12px;
  color: #8ea4cc;
  font-size: 13px;
  flex-wrap: wrap;
}

.task-modal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.icon-close {
  width: 34px;
  height: 34px;
  padding: 0;
  border-radius: 999px;
  background: #f1f4fa;
  color: #5c6d89;
  font-size: 20px;
}

.task-list {
  display: grid;
  gap: 10px;
  max-height: 60vh;
  overflow: auto;
}

.task-item {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 14px;
  background: #fafbfe;
}

.task-item-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
}

.task-status {
  display: inline-flex;
  padding: 4px 10px;
  border-radius: 999px;
  background: #e8f8e9;
  color: #1f9b45;
  font-size: 12px;
  font-weight: 700;
}

.task-item-line {
  margin-bottom: 4px;
  color: #52627d;
  font-size: 14px;
}

.task-item-line:last-child {
  margin-bottom: 0;
}

.task-empty,
.task-loading {
  padding: 28px 12px;
  text-align: center;
  color: var(--muted);
}

@media (max-width: 1280px) {
  .product-card {
    grid-template-columns: 28px 1fr;
  }

  .product-content-col {
    grid-column: 1 / -1;
  }
}

@media (max-width: 980px) {
  .erp-page {
    grid-template-columns: 1fr;
  }

  .erp-sidebar {
    display: none;
  }

  .erp-main {
    padding: 12px;
  }

  .erp-topbar {
    flex-direction: column;
    align-items: flex-start;
  }

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

  .product-check-col {
    display: none;
  }
}

/* Heilong Data theme */
:root {
  --bg: #07101f;
  --sidebar: rgba(6, 15, 31, 0.92);
  --panel: rgba(10, 22, 43, 0.86);
  --line: rgba(101, 157, 255, 0.18);
  --text: #e7f0ff;
  --muted: #8ea4cc;
  --blue: #1d8fff;
  --blue-dark: #0e63d8;
  --green: #12c977;
  --sand: #f4b35f;
  --danger: #ff8b9b;
  --pink: #ff73be;
}

body {
  background:
    radial-gradient(circle at 80% 12%, rgba(39, 155, 255, 0.18), transparent 22%),
    radial-gradient(circle at 18% 0%, rgba(44, 96, 255, 0.16), transparent 25%),
    linear-gradient(180deg, #040915 0%, #07111f 52%, #050c17 100%);
  color: var(--text);
}

.login-page {
  padding: 0;
  background:
    linear-gradient(135deg, rgba(3, 9, 20, 0.92), rgba(3, 11, 24, 0.74)),
    url("/public/heilong-data-login.png") center center / cover no-repeat;
}

.login-shell {
  width: min(1320px, calc(100% - 48px));
  min-height: calc(100vh - 48px);
  display: grid;
  grid-template-columns: 1.25fr minmax(360px, 420px);
  align-items: center;
  gap: 32px;
}

.login-hero {
  position: relative;
  min-height: 680px;
  border-radius: 30px;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 54px;
  background:
    linear-gradient(90deg, rgba(2, 8, 19, 0.92) 5%, rgba(3, 10, 22, 0.58) 55%, rgba(3, 10, 22, 0.18) 100%),
    url("/public/heilong-data-login.png") center center / cover no-repeat;
  border: 1px solid rgba(98, 162, 255, 0.2);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.34);
}

.login-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.12), rgba(4, 11, 23, 0.5)),
    radial-gradient(circle at 22% 38%, rgba(44, 154, 255, 0.12), transparent 25%);
}

.login-hero-copy,
.login-card {
  position: relative;
  z-index: 1;
}

.brand-chip.dark {
  background: rgba(29, 143, 255, 0.14);
  color: #8ed0ff;
  border: 1px solid rgba(68, 164, 255, 0.28);
  box-shadow: inset 0 0 18px rgba(29, 143, 255, 0.08);
}

.dragon-title {
  margin: 22px 0 18px;
  font-size: clamp(60px, 7vw, 108px);
  line-height: 0.95;
  letter-spacing: 0.08em;
  color: #f7fbff;
  text-shadow: 0 0 28px rgba(102, 178, 255, 0.25);
}

.dragon-subtitle {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  margin: 0;
  color: rgba(230, 239, 255, 0.92);
  font-size: clamp(24px, 2vw, 38px);
  letter-spacing: 0.16em;
}

.dragon-subtitle::before,
.dragon-subtitle::after {
  content: "";
  width: 72px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #25c7ff, transparent);
}

.login-card.dark {
  width: 100%;
  padding: 34px 30px;
  border-radius: 28px;
  border: 1px solid rgba(94, 159, 255, 0.18);
  background: linear-gradient(180deg, rgba(7, 18, 37, 0.92), rgba(8, 19, 38, 0.86));
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(20px);
}

.login-card-head {
  margin-bottom: 24px;
}

.brand-stack {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-mark,
.erp-logo-mark {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(27, 135, 255, 0.18), rgba(49, 194, 255, 0.32));
  border: 1px solid rgba(120, 180, 255, 0.24);
  color: #dff3ff;
  font-weight: 800;
  letter-spacing: 0.08em;
  box-shadow: inset 0 0 20px rgba(37, 142, 255, 0.14);
}

.brand-name {
  font-size: 22px;
  font-weight: 800;
  color: #f6fbff;
}

.brand-desc,
.erp-logo-subtext,
.erp-topbar-subtitle {
  color: #89a3cd;
  font-size: 13px;
}

.stack-form.dark label span,
.login-card.dark .muted,
.login-card.dark .help-box {
  color: #b9cae8;
}

.stack-form.dark input {
  height: 42px;
  border-radius: 12px;
  border: 1px solid rgba(104, 153, 243, 0.16);
  background: rgba(8, 20, 39, 0.9);
  color: #eef5ff;
}

.stack-form.dark input:focus {
  outline: none;
  border-color: rgba(63, 163, 255, 0.56);
  box-shadow: 0 0 0 4px rgba(29, 143, 255, 0.12);
}

.help-box.dark {
  background: rgba(8, 17, 34, 0.68);
  border: 1px solid rgba(98, 148, 230, 0.14);
}

.help-box.dark code {
  color: #95d5ff;
}

.alert.error {
  border: 1px solid rgba(255, 119, 137, 0.2);
  background: rgba(66, 17, 26, 0.76);
  color: #ffbdc6;
}

.erp-page {
  min-height: 100vh;
  grid-template-columns: 280px 1fr;
  background:
    radial-gradient(circle at 85% 10%, rgba(34, 146, 255, 0.16), transparent 18%),
    linear-gradient(180deg, #030814 0%, #081222 100%);
}

.erp-sidebar {
  position: sticky;
  top: 0;
  height: 100vh;
  border-right: 1px solid rgba(103, 159, 255, 0.14);
  background:
    linear-gradient(180deg, rgba(4, 12, 24, 0.97), rgba(7, 16, 31, 0.94)),
    url("/public/heilong-data-login.png") 78% center / cover no-repeat;
}

.erp-sidebar::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(3, 10, 21, 0.96), rgba(5, 13, 28, 0.95));
  pointer-events: none;
}

.erp-logo,
.erp-nav {
  position: relative;
  z-index: 1;
}

.erp-logo {
  align-items: center;
  padding: 24px 24px 20px;
  border-bottom: 1px solid rgba(107, 153, 255, 0.12);
}

.erp-logo-copy {
  min-width: 0;
}

.erp-logo-text {
  font-size: 24px;
  color: #f1f7ff;
  letter-spacing: 0.08em;
}

.erp-nav-item,
.erp-nav-subitem,
.erp-nav-title {
  color: #8ea6cf;
  border-radius: 14px;
  margin: 4px 8px;
}

.erp-nav-item:hover,
.erp-nav-subitem:hover,
.erp-nav-title:hover {
  background: rgba(18, 54, 108, 0.44);
  color: #eff7ff;
}

.erp-nav-item:active,
.erp-nav-subitem:active {
  transform: translateY(1px);
}

.erp-nav-subitem.active,
.erp-nav-title.active {
  background: linear-gradient(90deg, rgba(18, 76, 161, 0.56), rgba(17, 49, 100, 0.24));
  color: #e8f3ff;
  box-shadow: inset 0 0 0 1px rgba(77, 148, 255, 0.2);
}

.erp-main {
  padding: 24px;
}

.erp-topbar {
  padding: 18px 22px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(8, 20, 39, 0.9), rgba(8, 19, 38, 0.78));
  border: 1px solid rgba(101, 152, 244, 0.14);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.18);
}

.erp-topbar-title {
  margin: 0;
  font-size: 28px;
  font-weight: 800;
  color: #f6fbff;
}

.erp-topbar-title-wrap {
  display: grid;
  gap: 4px;
}

.erp-lang,
.erp-user,
.ghost-btn,
.erp-panel,
.page-size-form select {
  border-color: rgba(99, 150, 235, 0.14);
  background: rgba(8, 18, 36, 0.86);
  color: #deebff;
}

.erp-user {
  border-radius: 12px;
}

.erp-avatar {
  background: linear-gradient(135deg, #147ef2, #39c8ff);
}

.ghost-btn {
  background: rgba(9, 21, 41, 0.82);
}

.erp-panel,
.login-card,
.stat-card {
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(9, 20, 39, 0.84), rgba(8, 19, 37, 0.76));
  border: 1px solid rgba(101, 152, 244, 0.14);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.16);
}

.toolbar-count,
.detail-label,
.thumb-title,
.sortable-hint,
.modal-hint,
.desc-title,
.empty-panel,
.checkbox-line,
.toggle-field,
.pager-row span,
label span {
  color: #a6badc;
}

.toggle-button {
  border: 1px solid rgba(99, 149, 232, 0.14);
  border-radius: 14px;
  padding: 8px 12px;
  background: rgba(9, 22, 43, 0.9);
  cursor: pointer;
}

.toggle-button.active {
  border-color: rgba(63, 152, 255, 0.6);
  box-shadow: inset 0 0 0 1px rgba(63, 152, 255, 0.12);
}

input,
select {
  border-radius: 12px;
  border: 1px solid rgba(99, 149, 232, 0.14);
  background: rgba(9, 22, 43, 0.94);
  color: #edf5ff;
}

input::placeholder {
  color: #7289b2;
}

.product-title-bar,
.detail-box,
.desc-box,
.thumb-section,
.main-image-wrap,
.page-size-form select,
.toolbar-balance,
.modal-checkbox,
.radio-card {
  background: rgba(7, 17, 34, 0.58);
  border-color: rgba(95, 147, 234, 0.12);
}

.main-image-wrap {
  border-radius: 18px;
}

.image-close {
  background: linear-gradient(135deg, #ff5e79, #ff8e65);
}

.meta-chip {
  background: rgba(14, 36, 72, 0.9);
  color: #d9e8ff;
  border: 1px solid rgba(84, 136, 228, 0.14);
}

.meta-chip.accent {
  background: rgba(17, 64, 131, 0.7);
}

.meta-chip.muted {
  background: rgba(13, 27, 48, 0.78);
  color: #92abd1;
}

.product-title-bar {
  color: #eff6ff;
}

.detail-box a {
  color: #74c7ff;
}

.mini-btn.blue,
.mini-btn.primary,
.primary-action,
button,
.button-link {
  background: linear-gradient(135deg, #0873ea, #31c7ff);
}

.mini-btn.light,
.mini-btn.blue-outline,
.ghost-action {
  background: rgba(13, 33, 65, 0.76);
  color: #dce9ff;
  border: 1px solid rgba(98, 149, 235, 0.16);
}

.mini-btn.danger {
  background: linear-gradient(135deg, #f36f84, #ff9c76);
}

.mini-btn.pale {
  background: linear-gradient(135deg, #1b66da, #56a4ff);
}

.mini-btn.sand {
  background: linear-gradient(135deg, #d9972c, #f4c15c);
}

.mini-btn.green {
  background: linear-gradient(135deg, #0aa565, #2ad98a);
}

.toolbar-balance {
  border: 1px solid rgba(99, 149, 232, 0.14);
  color: #dcecff;
  cursor: pointer;
}

.fake-switch.on {
  background: rgba(20, 155, 101, 0.2);
  color: #7ef0b4;
}

.fake-switch.off {
  background: rgba(255, 255, 255, 0.08);
  color: #9bb0d1;
}

.page-toast,
.modal-estimate {
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.2);
}

.export-modal,
.task-modal {
  background: linear-gradient(180deg, rgba(7, 18, 36, 0.98), rgba(8, 20, 40, 0.96));
  border: 1px solid rgba(94, 152, 242, 0.16);
  color: #eaf3ff;
}

.export-modal .modal-title,
.task-modal .modal-title {
  color: #f4f8ff;
}

.modal-summary {
  color: #a8bee2;
}

.modal-estimate {
  background: linear-gradient(135deg, rgba(17, 137, 84, 0.18), rgba(44, 207, 125, 0.16));
  border: 1px solid rgba(46, 197, 122, 0.22);
  color: #7bf0b0;
}

.modal-field,
.modal-group-title {
  color: #dbe8ff;
}

.modal-field select {
  background: rgba(9, 20, 39, 0.94);
  border-radius: 12px;
}

.modal-text-input {
  margin-top: 10px;
}

.modal-checkbox {
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 14px;
  background: rgba(9, 20, 39, 0.86);
}

.modal-checkbox input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: #1d8fff;
}

.modal-checkbox span {
  color: #cfdef7;
  line-height: 1.5;
}

.radio-card {
  justify-content: flex-start;
  gap: 12px;
  min-height: 64px;
  padding: 14px 16px;
  border-radius: 14px;
  background: rgba(9, 20, 39, 0.86);
}

.radio-card:hover {
  border-color: rgba(71, 147, 255, 0.34);
  background: rgba(13, 29, 56, 0.92);
}

.radio-card input[type="radio"] {
  width: 22px;
  height: 22px;
  accent-color: #1d8fff;
  flex: 0 0 auto;
}

.radio-card span {
  color: #cfe0fb;
  line-height: 1.45;
}

.radio-card.active {
  border-color: rgba(63, 152, 255, 0.78);
  background: linear-gradient(180deg, rgba(18, 67, 140, 0.38), rgba(10, 27, 53, 0.94));
  box-shadow: inset 0 0 0 1px rgba(84, 168, 255, 0.14);
}

.ghost-action,
.primary-action {
  border-radius: 12px;
}

.ghost-action {
  background: rgba(16, 35, 64, 0.92);
  color: #d7e8ff;
}

.primary-action {
  background: linear-gradient(135deg, #0e7bed, #31c8ff);
}

.task-list {
  gap: 12px;
}

.task-item {
  border-radius: 16px;
  background: rgba(8, 19, 37, 0.9);
  border: 1px solid rgba(91, 145, 234, 0.14);
}

.task-item-head b {
  color: #f2f7ff;
}

.task-item-line {
  color: #a9c0e2;
  line-height: 1.6;
}

.task-status {
  background: rgba(19, 166, 104, 0.16);
  color: #7ef0b4;
  border: 1px solid rgba(38, 203, 125, 0.18);
}

.task-empty,
.task-loading {
  padding: 28px 10px;
  text-align: center;
  color: #9ab1d5;
}

.task-item-actions {
  margin-top: 12px;
  display: flex;
  justify-content: flex-end;
}

.hide-images .product-media-col {
  display: none;
}

.hide-images .product-card {
  grid-template-columns: 28px 1fr;
}

.status-editor {
  margin-bottom: 12px;
  padding: 14px;
  border-radius: 14px;
  border: 1px solid rgba(91, 145, 234, 0.14);
  background: rgba(7, 17, 34, 0.58);
}

.status-editor-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.status-editor-title {
  color: #deebff;
  font-size: 14px;
  font-weight: 700;
}

.status-editor-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.status-field {
  display: grid;
  gap: 8px;
}

.status-field span {
  color: #a6badc;
  font-size: 13px;
  font-weight: 600;
}

.status-select {
  width: 100%;
}

@media (max-width: 980px) {
  .status-editor-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1280px) {
  .login-shell {
    grid-template-columns: 1fr;
    width: min(1180px, calc(100% - 32px));
    padding: 16px 0;
  }

  .login-hero {
    min-height: 440px;
  }
}

@media (max-width: 980px) {
  .login-page {
    padding: 16px;
  }

  .login-shell {
    width: 100%;
    min-height: auto;
  }

  .login-hero {
    min-height: 320px;
    padding: 28px;
  }

  .dragon-title {
    font-size: 48px;
  }

  .dragon-subtitle {
    font-size: 18px;
    letter-spacing: 0.08em;
  }

  .dragon-subtitle::before,
  .dragon-subtitle::after {
    width: 36px;
  }
}
.hidden {
  display: none !important;
}

.erp-nav-icon {
  width: 22px;
  height: 22px;
  display: inline-grid;
  place-items: center;
  border-radius: 8px;
  background: rgba(49, 145, 255, 0.12);
  color: #73b7ff;
  font-weight: 800;
  margin-right: 8px;
}

.erp-nav-item.active {
  color: #ffffff;
  border-color: rgba(48, 176, 255, 0.55);
  background: linear-gradient(135deg, rgba(24, 117, 255, 0.24), rgba(22, 209, 255, 0.12));
  box-shadow: inset 0 0 0 1px rgba(98, 188, 255, 0.14), 0 12px 34px rgba(0, 98, 255, 0.14);
}

.dashboard-page {
  display: grid;
  gap: 18px;
}

.dashboard-hero {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  padding: 24px;
  border: 1px solid rgba(92, 166, 255, 0.22);
  border-radius: 18px;
  background:
    radial-gradient(circle at top right, rgba(18, 183, 255, 0.18), transparent 34%),
    linear-gradient(135deg, rgba(9, 25, 48, 0.98), rgba(5, 16, 32, 0.96));
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.22);
}

.dashboard-hero h2 {
  margin: 0 0 8px;
  font-size: 28px;
  letter-spacing: 0.02em;
  color: #f3f8ff;
}

.dashboard-hero p {
  margin: 0;
  color: #8fb2dc;
}

.eyebrow {
  margin-bottom: 8px !important;
  color: #32c5ff !important;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.support-link,
.version-pill,
.account-badge {
  border: 1px solid rgba(59, 174, 255, 0.36);
  border-radius: 999px;
  padding: 10px 14px;
  color: #e7f4ff;
  background: rgba(21, 116, 255, 0.15);
  text-decoration: none;
  white-space: nowrap;
}

.plugin-grid,
.account-grid,
.plan-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
}

.plugin-card,
.pricing-group,
.account-card,
.plan-grid article {
  border: 1px solid rgba(97, 154, 224, 0.18);
  border-radius: 16px;
  background: rgba(7, 20, 38, 0.82);
  box-shadow: 0 14px 44px rgba(0, 0, 0, 0.16);
}

.plugin-card {
  padding: 18px;
}

.plugin-card-head {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: flex-start;
}

.plugin-card h3,
.pricing-group h4,
.account-card h3,
.plan-grid h4,
.section-head h3 {
  margin: 0;
  color: #f4f8ff;
}

.plugin-card p,
.plan-grid p {
  color: #8fb2dc;
  line-height: 1.7;
}

.meta-list,
.account-info-list {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.meta-list div,
.account-info-list div,
.quota-box div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 12px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.035);
  color: #93add1;
}

.meta-list b,
.account-info-list b {
  color: #eaf4ff;
  text-align: right;
}

.plugin-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.info-panel,
.pricing-section {
  padding: 20px;
}

.section-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  margin-bottom: 16px;
}

.section-head span {
  color: #7f9fc7;
}

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

.timeline-list div {
  display: flex;
  gap: 14px;
  padding: 12px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.035);
  color: #9fb7d7;
}

.timeline-list b {
  color: #54c7ff;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 14px;
}

.pricing-group {
  padding: 16px;
}

.price-list {
  display: grid;
  gap: 10px;
  margin-top: 12px;
}

.price-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 12px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.035);
}

.price-row b,
.price-row span {
  display: block;
}

.price-row b {
  color: #eaf4ff;
}

.price-row span {
  margin-top: 4px;
  color: #819fc2;
  font-size: 12px;
}

.price-row strong,
.quota-box strong {
  color: #33d6ff;
  white-space: nowrap;
}

.account-hero {
  background:
    radial-gradient(circle at top right, rgba(50, 220, 255, 0.16), transparent 35%),
    linear-gradient(135deg, rgba(8, 31, 58, 0.98), rgba(4, 16, 32, 0.96));
}

.quota-box {
  display: grid;
  gap: 12px;
}

.quota-box div {
  display: grid;
}

.quota-box strong {
  font-size: 34px;
}

.plan-grid article {
  padding: 16px;
}

.account-console .account-hero {
  grid-template-columns: auto 1fr auto;
}

.account-avatar {
  width: 68px;
  height: 68px;
  display: grid;
  place-items: center;
  border-radius: 22px;
  color: #061629;
  background: linear-gradient(135deg, #7ed7ff, #f5d276);
  font-size: 30px;
  font-weight: 900;
  box-shadow: 0 20px 48px rgba(56, 190, 255, 0.26);
}

.status-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
  color: #8fb2dc;
}

.status-badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  border-radius: 999px;
  padding: 5px 10px;
  font-size: 12px;
  font-weight: 800;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.status-open {
  color: #99ffd6;
  background: rgba(22, 210, 139, 0.14);
  border-color: rgba(22, 210, 139, 0.35);
}

.status-closed {
  color: #c9d5e8;
  background: rgba(123, 141, 166, 0.16);
  border-color: rgba(156, 174, 201, 0.22);
}

.status-warning {
  color: #ffe0a3;
  background: rgba(255, 181, 71, 0.14);
  border-color: rgba(255, 181, 71, 0.36);
}

.status-expired {
  color: #ffb3b3;
  background: rgba(255, 91, 91, 0.14);
  border-color: rgba(255, 91, 91, 0.34);
}

.account-section {
  padding: 20px;
}

.account-metric-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(160px, 1fr));
  gap: 14px;
}

.account-metric-grid article {
  min-height: 118px;
  padding: 16px;
  border: 1px solid rgba(75, 184, 255, 0.22);
  border-radius: 18px;
  background:
    radial-gradient(circle at top right, rgba(41, 194, 255, 0.13), transparent 40%),
    linear-gradient(145deg, rgba(7, 27, 54, 0.96), rgba(4, 15, 31, 0.92));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.025), 0 14px 40px rgba(0, 0, 0, 0.16);
}

.account-metric-grid span,
.account-metric-grid em {
  display: block;
  color: #8fb2dc;
  font-style: normal;
}

.account-metric-grid strong {
  display: block;
  margin: 10px 0;
  color: #f7fbff;
  font-size: 30px;
  line-height: 1;
}

.account-info-list.compact {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.plan-summary,
.quota-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
  margin-bottom: 16px;
}

.plan-summary > div,
.quota-strip > div {
  min-height: 88px;
  padding: 14px;
  border: 1px solid rgba(96, 174, 255, 0.14);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.035);
}

.plan-summary span,
.quota-strip span {
  display: block;
  color: #85a3c9;
  margin-bottom: 8px;
}

.plan-summary strong,
.quota-strip strong {
  color: #f5fbff;
  font-size: 24px;
}

.plan-summary em {
  margin-top: 10px;
  font-style: normal;
}

.plan-grid article.current {
  border-color: rgba(51, 214, 255, 0.45);
  background: linear-gradient(145deg, rgba(21, 99, 192, 0.18), rgba(6, 20, 39, 0.92));
}

.plan-card-head,
.license-head,
.quote-card-top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: flex-start;
}

.plan-grid ul {
  margin: 14px 0 0;
  padding-left: 18px;
  color: #9db8d8;
  line-height: 1.8;
}

.license-grid,
.device-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
  gap: 16px;
}

.license-card,
.device-card {
  padding: 18px;
  border: 1px solid rgba(92, 166, 255, 0.2);
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(9, 26, 50, 0.96), rgba(5, 16, 31, 0.9));
}

.license-head p,
.device-note {
  color: #8fb2dc;
  line-height: 1.7;
}

.license-meta {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 10px;
  margin-top: 14px;
}

.license-meta div {
  padding: 10px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.035);
}

.license-meta span {
  display: block;
  color: #829fc4;
  font-size: 12px;
}

.license-meta b {
  display: block;
  margin-top: 4px;
  color: #edf7ff;
}

.account-authority {
  gap: 18px;
}

.authority-hero {
  position: relative;
  overflow: hidden;
}

.authority-hero::after {
  content: "";
  position: absolute;
  inset: auto -90px -110px auto;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 210, 95, 0.2), transparent 64%);
  pointer-events: none;
}

.authority-hero-actions {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.usage-progress-card {
  display: grid;
  gap: 10px;
  margin: 0 0 16px;
  padding: 14px;
  border: 1px solid rgba(64, 190, 255, 0.18);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.035);
}

.usage-progress-card > div:first-child {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: #9fbde0;
}

.usage-progress-card b {
  color: #eef8ff;
}

.progress-track {
  overflow: hidden;
  height: 10px;
  border-radius: 999px;
  background: rgba(122, 154, 190, 0.22);
}

.progress-track i {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #1fd6ff, #ffd15d);
  box-shadow: 0 0 20px rgba(52, 199, 255, 0.34);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 14px;
}

.feature-card {
  display: grid;
  gap: 14px;
  padding: 16px;
  border: 1px solid rgba(92, 166, 255, 0.18);
  border-radius: 18px;
  background:
    radial-gradient(circle at top right, rgba(88, 117, 154, 0.11), transparent 45%),
    linear-gradient(145deg, rgba(8, 24, 46, 0.96), rgba(4, 15, 30, 0.92));
}

.feature-card.enabled {
  border-color: rgba(25, 213, 145, 0.28);
  background:
    radial-gradient(circle at top right, rgba(25, 213, 145, 0.12), transparent 42%),
    linear-gradient(145deg, rgba(8, 32, 48, 0.96), rgba(4, 15, 30, 0.92));
}

.feature-card h4 {
  margin: 8px 0 6px;
  color: #f3fbff;
  font-size: 17px;
}

.feature-card p {
  margin: 0;
  color: #8fb2dc;
  line-height: 1.65;
}

.feature-country {
  display: inline-flex;
  width: fit-content;
  border-radius: 999px;
  padding: 5px 10px;
  color: #071a30;
  background: linear-gradient(135deg, #89ddff, #ffd66b);
  font-size: 12px;
  font-weight: 900;
}

.feature-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.feature-footer small {
  color: #819fc2;
}

.account-authority .license-card,
.account-authority .device-card,
.account-authority .feature-card {
  min-height: 100%;
}

.product-plugin-card {
  position: relative;
  overflow: hidden;
}

.product-plugin-card::after {
  content: "";
  position: absolute;
  inset: auto -40px -80px auto;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: rgba(44, 192, 255, 0.12);
}

.plugin-log {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.plugin-log h4 {
  margin: 0 0 10px;
  color: #eaf4ff;
}

.plugin-log div {
  display: flex;
  gap: 10px;
  color: #8fb2dc;
  line-height: 1.6;
}

.plugin-log b {
  color: #35d4ff;
}

.pricing-console {
  background:
    radial-gradient(circle at 12% 12%, rgba(37, 132, 255, 0.14), transparent 26%),
    radial-gradient(circle at 88% 8%, rgba(255, 190, 80, 0.12), transparent 25%);
}

.pricing-hero {
  border-color: rgba(255, 202, 105, 0.24);
  background:
    radial-gradient(circle at top right, rgba(255, 193, 82, 0.16), transparent 34%),
    linear-gradient(135deg, rgba(7, 22, 48, 0.98), rgba(3, 10, 23, 0.96));
}

.pricing-zone {
  padding: 20px;
  border: 1px solid rgba(76, 163, 255, 0.18);
  border-radius: 20px;
  background: rgba(4, 15, 32, 0.64);
}

.quote-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 14px;
}

.quote-card {
  position: relative;
  overflow: hidden;
  padding: 16px;
  border: 1px solid rgba(83, 194, 255, 0.24);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(8, 34, 70, 0.95), rgba(5, 17, 34, 0.92)),
    radial-gradient(circle at top right, rgba(255, 205, 97, 0.18), transparent 40%);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.03), 0 16px 48px rgba(0, 0, 0, 0.18);
}

.quote-card h4 {
  margin: 14px 0 8px;
  color: #f5fbff;
}

.quote-card p {
  min-height: 36px;
  color: #8daed2;
  line-height: 1.6;
}

.region-tag,
.after-sale {
  border-radius: 999px;
  padding: 5px 9px;
  font-size: 12px;
}

.region-tag {
  color: #061629;
  background: linear-gradient(135deg, #ffd36c, #ffb84d);
  font-weight: 900;
}

.after-sale {
  color: #b9d8ff;
  background: rgba(72, 156, 255, 0.15);
}

.quote-price {
  margin: 14px 0;
  color: #ffd16a;
  font-size: 32px;
  font-weight: 900;
  letter-spacing: -0.02em;
  text-shadow: 0 0 24px rgba(255, 192, 80, 0.22);
}

.poster-pricing {
  gap: 22px;
  padding-bottom: 28px;
  background:
    radial-gradient(circle at 5% 4%, rgba(0, 132, 255, 0.22), transparent 26%),
    radial-gradient(circle at 92% 2%, rgba(255, 200, 85, 0.14), transparent 28%),
    linear-gradient(180deg, rgba(3, 10, 35, 0.94), rgba(3, 14, 32, 0.84));
}

.pricing-poster-hero {
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 30px;
  border: 1px solid rgba(80, 185, 255, 0.38);
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(4, 18, 55, 0.98), rgba(8, 30, 74, 0.92)),
    radial-gradient(circle at top right, rgba(255, 206, 94, 0.22), transparent 34%);
  box-shadow: 0 0 0 1px rgba(67, 186, 255, 0.12), 0 22px 70px rgba(0, 0, 0, 0.25);
}

.pricing-poster-hero::before {
  content: "";
  position: absolute;
  inset: -80px auto auto -60px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 160, 255, 0.24), transparent 62%);
}

.pricing-poster-hero h2 {
  position: relative;
  margin: 0;
  color: #ffe08a;
  font-size: clamp(34px, 5vw, 64px);
  font-weight: 1000;
  letter-spacing: 0.03em;
  text-shadow: 0 3px 0 rgba(90, 52, 9, 0.55), 0 0 30px rgba(255, 203, 82, 0.3);
}

.pricing-poster-hero p {
  position: relative;
  margin: 12px 0 0;
  color: #eef7ff;
  font-size: 18px;
  font-weight: 800;
}

.poster-section {
  border: 1px solid rgba(79, 190, 255, 0.35);
  border-radius: 24px;
  padding: 18px;
  background:
    linear-gradient(180deg, rgba(7, 28, 71, 0.92), rgba(3, 15, 41, 0.92)),
    radial-gradient(circle at 100% 0, rgba(0, 150, 255, 0.16), transparent 36%);
  box-shadow: inset 0 0 26px rgba(0, 154, 255, 0.12), 0 20px 60px rgba(0, 0, 0, 0.2);
}

.poster-section-title {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.poster-section-title span {
  width: 48px;
  height: 38px;
  display: grid;
  place-items: center;
  clip-path: polygon(0 0, 100% 0, 84% 100%, 0 100%);
  color: #ffffff;
  background: linear-gradient(135deg, #1475ff, #2cd4ff);
  font-size: 24px;
  font-weight: 1000;
  box-shadow: 0 0 28px rgba(36, 180, 255, 0.34);
}

.poster-section-title h3 {
  margin: 0;
  color: #eef8ff;
  font-size: 24px;
  letter-spacing: 0.04em;
}

.poster-group-grid {
  display: grid;
  gap: 14px;
}

.poster-price-group {
  overflow: hidden;
  border: 1px solid rgba(65, 173, 255, 0.28);
  border-radius: 18px;
  background: rgba(1, 13, 39, 0.62);
}

.poster-group-head {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  color: #43f1ff;
  background: linear-gradient(90deg, transparent, rgba(0, 183, 255, 0.16), transparent);
  font-weight: 900;
}

.poster-group-head em {
  color: #ffe08a;
  font-size: 12px;
  font-style: normal;
}

.poster-price-table {
  display: grid;
}

.poster-price-row {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) auto minmax(92px, auto);
  gap: 14px;
  align-items: center;
  padding: 10px 14px;
  border-top: 1px solid rgba(93, 180, 255, 0.18);
}

.poster-price-row:hover {
  background: rgba(39, 151, 255, 0.08);
}

.poster-resource {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.poster-resource b {
  color: #f6fbff;
  font-size: 16px;
}

.poster-resource small {
  display: block;
  margin-top: 3px;
  color: #97b9df;
  line-height: 1.5;
}

.flag-chip {
  width: 42px;
  height: 30px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
  font-size: 21px;
}

.poster-price {
  color: #ffd86f;
  font-size: 28px;
  font-weight: 1000;
  text-align: right;
  text-shadow: 0 2px 0 rgba(84, 48, 8, 0.6), 0 0 20px rgba(255, 202, 78, 0.28);
}

.pricing-guarantee {
  display: grid;
  grid-template-columns: repeat(4, minmax(140px, 1fr));
  gap: 12px;
}

.pricing-guarantee span {
  padding: 14px;
  border: 1px solid rgba(76, 190, 255, 0.32);
  border-radius: 16px;
  color: #ffe08a;
  background: rgba(4, 20, 52, 0.8);
  text-align: center;
  font-weight: 900;
  box-shadow: inset 0 0 18px rgba(0, 174, 255, 0.12);
}

@media (max-width: 820px) {
  .account-metric-grid {
    grid-template-columns: repeat(2, minmax(120px, 1fr));
  }

  .pricing-poster-hero {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .poster-price {
    text-align: left;
  }

  .pricing-guarantee {
    grid-template-columns: repeat(2, minmax(120px, 1fr));
  }
}

.products-workbench-page .erp-main {
  gap: 16px;
}

.product-topbar {
  align-items: stretch;
  gap: 18px;
}

.product-account-status {
  display: grid;
  grid-template-columns: repeat(4, minmax(110px, 1fr)) auto auto;
  align-items: center;
}

.account-state-card {
  min-width: 108px;
  padding: 9px 12px;
  border: 1px solid rgba(74, 178, 255, 0.18);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
}

.account-state-card span {
  display: block;
  color: #86a8cf;
  font-size: 12px;
}

.account-state-card b {
  display: block;
  margin-top: 3px;
  color: #f4fbff;
  font-size: 13px;
  white-space: nowrap;
}

.overview-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(150px, 1fr));
  gap: 14px;
}

.overview-card {
  position: relative;
  overflow: hidden;
  min-height: 116px;
  padding: 16px;
  border: 1px solid rgba(82, 180, 255, 0.22);
  border-radius: 18px;
  background:
    radial-gradient(circle at top right, rgba(36, 182, 255, 0.16), transparent 40%),
    linear-gradient(145deg, rgba(7, 27, 54, 0.96), rgba(4, 15, 31, 0.92));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.025), 0 14px 40px rgba(0, 0, 0, 0.14);
}

.overview-card.success {
  border-color: rgba(26, 212, 143, 0.28);
}

.overview-card.warning {
  border-color: rgba(255, 186, 73, 0.3);
}

.overview-card span,
.overview-card em {
  display: block;
  color: #8fb2dc;
  font-style: normal;
}

.overview-card strong {
  display: block;
  margin: 10px 0;
  color: #f6fbff;
  font-size: 32px;
  line-height: 1;
}

.product-command-center {
  display: grid;
  grid-template-columns: 1.05fr 1.45fr 1.1fr;
  gap: 14px;
}

.command-group {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  padding: 14px;
  border: 1px solid rgba(83, 170, 255, 0.14);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.026);
}

.command-title {
  width: 100%;
  color: #91b6de;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.mini-btn.cyan {
  color: #062033;
  background: linear-gradient(135deg, #29d8ff, #5df1d2);
  border-color: transparent;
}

.mini-btn.neutral {
  color: #d7e8ff;
  background: rgba(128, 153, 183, 0.16);
  border-color: rgba(149, 172, 204, 0.22);
}

.mini-btn.danger-outline {
  color: #ffb4b4;
  background: rgba(255, 98, 98, 0.08);
  border: 1px solid rgba(255, 98, 98, 0.35);
}

.compact-toggle {
  min-height: 36px;
  padding: 6px 8px 6px 12px;
}

.filter-section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 12px;
}

.filter-section-head h3 {
  margin: 0;
  color: #f4fbff;
  font-size: 18px;
}

.filter-section-head p {
  margin: 4px 0 0;
  color: #84a4cb;
}

.common-filter-row {
  display: grid;
  grid-template-columns: minmax(150px, 0.9fr) minmax(140px, 0.8fr) minmax(260px, 1.6fr) minmax(150px, 0.9fr) minmax(150px, 0.9fr) auto;
  align-items: end;
}

.search-btn {
  min-height: 40px;
}

.advanced-filter {
  margin-top: 12px;
  border-top: 1px solid rgba(99, 166, 234, 0.12);
  padding-top: 12px;
}

.advanced-filter summary {
  cursor: pointer;
  color: #6fd6ff;
  font-weight: 800;
}

.advanced-filter-row {
  margin-top: 12px;
}

.table-control-panel {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
}

.table-toolbar-left,
.table-toolbar-right {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.density-switch {
  display: inline-flex;
  padding: 4px;
  border: 1px solid rgba(84, 170, 255, 0.18);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
}

.density-control {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.density-control > span {
  color: #88a9cf;
  font-size: 12px;
  font-weight: 800;
}

.density-btn {
  border: 0;
  border-radius: 10px;
  padding: 7px 11px;
  color: #9db9dc;
  background: transparent;
  cursor: pointer;
  font-weight: 800;
}

.density-btn.active {
  color: #06182d;
  background: linear-gradient(135deg, #7ed7ff, #f4d36c);
}

.formal-empty {
  display: grid;
  justify-items: center;
  gap: 10px;
  padding: 42px 18px;
  text-align: center;
}

.formal-empty h3 {
  margin: 0;
  color: #f6fbff;
  font-size: 24px;
}

.formal-empty p,
.formal-empty li {
  color: #93b2d6;
}

.formal-empty ol {
  margin: 4px 0 8px;
  text-align: left;
  line-height: 1.9;
}

.empty-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.workbench-product-card {
  grid-template-columns: 28px 292px minmax(0, 1fr);
}

.workbench-row-meta {
  display: grid;
  grid-template-columns: repeat(6, minmax(120px, 1fr));
  gap: 8px;
  margin: 10px 0;
}

.workbench-row-meta div {
  padding: 9px 10px;
  border: 1px solid rgba(94, 162, 233, 0.12);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.032);
}

.workbench-row-meta span {
  display: block;
  color: #7f9fc4;
  font-size: 12px;
}

.workbench-row-meta b {
  display: block;
  overflow: hidden;
  margin-top: 3px;
  color: #eef7ff;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.compact-density .product-card {
  padding-top: 12px;
  padding-bottom: 12px;
}

.compact-density .desc-box,
.compact-density .status-editor {
  margin-top: 8px;
}

.compact-density .workbench-row-meta {
  grid-template-columns: repeat(6, minmax(90px, 1fr));
}

@media (max-width: 1180px) {
  .product-account-status,
  .overview-grid,
  .product-command-center,
  .common-filter-row {
    grid-template-columns: repeat(2, minmax(160px, 1fr));
  }

  .table-control-panel {
    align-items: flex-start;
    flex-direction: column;
  }

  .workbench-row-meta {
    grid-template-columns: repeat(3, minmax(120px, 1fr));
  }
}

@media (max-width: 760px) {
  .product-account-status,
  .overview-grid,
  .product-command-center,
  .common-filter-row,
  .workbench-row-meta {
    grid-template-columns: 1fr;
  }

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

/* 官网首页 */
.home-page {
  min-height: 100vh;
  margin: 0;
  color: #edf5ff;
  background:
    radial-gradient(circle at 72% 8%, rgba(0, 110, 255, 0.32), transparent 28%),
    radial-gradient(circle at 20% 20%, rgba(247, 194, 103, 0.16), transparent 20%),
    linear-gradient(135deg, #020812 0%, #04142a 45%, #061c38 100%);
  font-family: "Microsoft YaHei", "Segoe UI", sans-serif;
}

.home-page a {
  color: inherit;
}

.home-shell {
  width: min(1480px, calc(100% - 28px));
  margin: 14px auto;
  border: 1px solid rgba(210, 230, 255, 0.72);
  border-radius: 14px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(3, 16, 36, 0.88), rgba(3, 14, 31, 0.96)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.03) 0 1px, transparent 1px 96px);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.38);
}

.home-nav {
  position: sticky;
  top: 0;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  padding: 22px 50px;
  background: rgba(3, 13, 29, 0.78);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(83, 133, 200, 0.22);
}

.home-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-size: 22px;
  font-weight: 900;
  letter-spacing: 0.03em;
}

.home-brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  color: #f8c766;
  border: 1px solid rgba(248, 199, 102, 0.55);
  background: radial-gradient(circle, rgba(248, 199, 102, 0.18), rgba(41, 107, 255, 0.14));
  box-shadow: 0 0 28px rgba(0, 124, 255, 0.22);
}

.home-nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 14px;
  color: #cbd8eb;
}

.home-nav-links a,
.home-nav-cta,
.home-btn,
.home-next-link {
  text-decoration: none;
}

.home-nav-links a:hover {
  color: #f8c766;
}

.home-nav-cta {
  padding: 11px 24px;
  border-radius: 8px;
  color: #221704;
  font-weight: 900;
  background: linear-gradient(135deg, #ffe394, #f0b53e);
  box-shadow: 0 12px 36px rgba(240, 181, 62, 0.24);
}

.home-layer {
  padding: 54px 48px;
}

.home-layer-hero {
  position: relative;
  min-height: 760px;
  background:
    radial-gradient(circle at 76% 20%, rgba(0, 121, 255, 0.22), transparent 25%),
    radial-gradient(circle at 55% 70%, rgba(0, 95, 210, 0.2), transparent 24%);
}

.home-layer-hero::before,
.home-layer-solutions::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(59, 133, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(59, 133, 255, 0.055) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(circle at center, black, transparent 80%);
}

.home-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(420px, 0.97fr);
  align-items: center;
  gap: 40px;
}

.home-eyebrow,
.home-section-head p,
.home-final-cta p {
  margin: 0 0 14px;
  color: #f8c766;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.home-hero-copy h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(42px, 5.6vw, 78px);
  line-height: 1.08;
  letter-spacing: -0.05em;
}

.home-hero-copy h1 span {
  display: block;
  color: #ffd878;
}

.home-subtitle {
  width: min(690px, 100%);
  margin: 24px 0;
  color: #c6d5eb;
  font-size: 18px;
  line-height: 1.85;
}

.home-pain-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 0 0 34px;
}

.home-pain-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 18px;
  border: 1px solid rgba(80, 140, 218, 0.48);
  border-radius: 999px;
  color: #dce9fb;
  background: rgba(4, 22, 50, 0.68);
  box-shadow: inset 0 0 18px rgba(17, 103, 221, 0.16);
}

.home-hero-actions,
.home-final-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.home-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 170px;
  min-height: 54px;
  padding: 0 26px;
  border-radius: 8px;
  font-weight: 900;
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.home-btn-primary {
  color: #211605;
  background: linear-gradient(135deg, #ffe697, #efb23a);
  box-shadow: 0 18px 42px rgba(239, 178, 58, 0.25);
}

.home-btn-ghost {
  color: #e9f3ff;
  background: rgba(7, 25, 55, 0.62);
  border-color: rgba(139, 178, 229, 0.48);
}

.home-flow-line {
  margin: 24px 0 0;
  color: #cbd8eb;
  letter-spacing: 0.16em;
}

.home-hero-visual {
  position: relative;
  min-height: 460px;
}

.home-dragon-orbit {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 42%, rgba(0, 132, 255, 0.5), transparent 9%),
    conic-gradient(from 210deg, transparent 0 35%, rgba(35, 130, 255, 0.9) 47%, transparent 61% 100%);
  opacity: 0.86;
  transform: rotate(-12deg);
}

.home-dragon-orbit::before {
  content: "黑龙数据";
  position: absolute;
  top: 52px;
  right: 80px;
  font-size: 96px;
  font-weight: 900;
  letter-spacing: -0.12em;
  color: rgba(55, 146, 255, 0.14);
  text-shadow: 0 0 44px rgba(0, 119, 255, 0.55);
}

.home-globe {
  position: absolute;
  right: 26px;
  bottom: 22px;
  width: min(470px, 82%);
  aspect-ratio: 1.5;
  border-radius: 50%;
  border: 1px solid rgba(58, 145, 255, 0.35);
  background:
    radial-gradient(circle at 50% 55%, rgba(0, 105, 232, 0.2), transparent 52%),
    linear-gradient(transparent 48%, rgba(45, 134, 255, 0.32) 49% 51%, transparent 52%);
  box-shadow: inset 0 0 80px rgba(20, 110, 255, 0.24), 0 0 90px rgba(0, 94, 255, 0.2);
  transform: perspective(800px) rotateX(58deg);
}

.home-globe i {
  position: absolute;
  inset: 22%;
  border-radius: 50%;
  border: 1px solid rgba(56, 151, 255, 0.28);
}

.home-globe i:nth-child(2) {
  inset: 34% 8%;
}

.home-globe i:nth-child(3) {
  inset: 8% 38%;
}

.home-dragon-card {
  position: absolute;
  right: 58px;
  top: 38px;
  width: 260px;
  padding: 22px;
  border: 1px solid rgba(82, 154, 255, 0.36);
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(7, 26, 57, 0.88), rgba(8, 44, 91, 0.54));
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.22);
}

.home-dragon-card span {
  display: block;
  color: #6ab7ff;
  font-size: 12px;
  letter-spacing: 0.16em;
  margin-bottom: 8px;
}

.home-dragon-card strong {
  font-size: 22px;
  color: #fff;
}

.home-value-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 42px;
}

.home-value-grid article,
.home-resource-grid article,
.home-solution-grid article,
.home-process,
.home-full-features,
.home-final-cta {
  border: 1px solid rgba(79, 134, 205, 0.38);
  background: linear-gradient(145deg, rgba(8, 31, 66, 0.76), rgba(4, 18, 41, 0.72));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05), 0 22px 60px rgba(0, 0, 0, 0.18);
}

.home-value-grid article {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 18px;
  padding: 28px;
  border-radius: 12px;
}

.home-value-grid h3,
.home-resource-grid h3,
.home-solution-grid h3 {
  margin: 0 0 10px;
  font-size: 25px;
}

.home-value-grid p,
.home-resource-grid p,
.home-solution-grid p,
.home-process p,
.home-section-head span,
.home-final-cta span {
  margin: 0;
  color: #aebfd8;
  line-height: 1.75;
}

.home-value-icon {
  grid-row: span 2;
  display: grid;
  place-items: center;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  font-size: 38px;
  color: #ffe08a;
  background: radial-gradient(circle, rgba(255, 204, 92, 0.32), rgba(19, 78, 178, 0.38));
}

.home-mini-section {
  position: relative;
  z-index: 1;
  margin-top: 34px;
}

.home-section-head {
  position: relative;
  z-index: 1;
  text-align: center;
  margin-bottom: 34px;
}

.home-section-head.compact {
  margin-bottom: 18px;
}

.home-section-head h2,
.home-process h2,
.home-final-cta h2 {
  margin: 0 0 10px;
  font-size: clamp(28px, 3vw, 44px);
  letter-spacing: -0.04em;
}

.home-feature-strip,
.home-full-feature-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  padding: 20px;
  border: 1px solid rgba(79, 134, 205, 0.36);
  border-radius: 12px;
  background: rgba(7, 23, 52, 0.65);
}

.home-feature-strip span,
.home-full-feature-grid span {
  min-height: 64px;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 10px;
  color: #dce9fb;
  border-radius: 10px;
  background: rgba(13, 42, 84, 0.58);
  border: 1px solid rgba(98, 156, 230, 0.22);
}

.home-resource-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.home-resource-grid article {
  padding: 24px;
  border-radius: 12px;
}

.home-resource-grid strong {
  display: block;
  margin: 18px 0;
  color: #ffd979;
  font-size: 20px;
}

.home-resource-grid button {
  width: 100%;
  color: #211605;
  background: linear-gradient(135deg, #ffe697, #efb23a);
  border-radius: 8px;
}

.home-next-link {
  position: relative;
  z-index: 1;
  display: block;
  width: fit-content;
  margin: 32px auto 0;
  color: #d4e4f8;
}

.home-next-link::after {
  content: "⌄";
  display: block;
  text-align: center;
  color: #f8c766;
  font-size: 24px;
}

.home-layer-solutions {
  position: relative;
  background:
    radial-gradient(circle at 12% 5%, rgba(26, 107, 255, 0.18), transparent 20%),
    linear-gradient(180deg, rgba(4, 14, 31, 0.98), rgba(5, 17, 36, 0.98));
}

.home-solution-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.home-solution-grid article {
  min-height: 300px;
  padding: 32px;
  border-radius: 12px;
}

.home-solution-number {
  display: block;
  margin-bottom: 18px;
  color: #348dff;
  font-size: 38px;
  font-weight: 900;
}

.home-solution-number.green {
  color: #2fca75;
}

.home-solution-number.purple {
  color: #a167ff;
}

.home-solution-grid ul {
  display: grid;
  gap: 10px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
  color: #dce9fb;
}

.home-solution-grid li::before {
  content: "✓";
  margin-right: 10px;
  color: #72d994;
}

.home-process {
  position: relative;
  z-index: 1;
  margin-top: 32px;
  padding: 28px;
  border-radius: 12px;
  text-align: center;
}

.home-process-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin: 20px 0 14px;
}

.home-process-line span {
  display: inline-grid;
  place-items: center;
  min-width: 82px;
  min-height: 48px;
  border-radius: 999px;
  border: 1px solid rgba(102, 162, 234, 0.42);
  background: rgba(13, 42, 84, 0.6);
}

.home-process-line b {
  width: 38px;
  height: 1px;
  background: linear-gradient(90deg, transparent, #cbd8eb, transparent);
}

.home-full-features {
  position: relative;
  z-index: 1;
  margin-top: 32px;
  padding: 28px;
  border-radius: 12px;
}

.home-full-feature-grid {
  grid-template-columns: repeat(4, 1fr);
}

.home-final-cta {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-top: 34px;
  padding: 34px;
  border-radius: 12px;
  background:
    linear-gradient(135deg, rgba(12, 52, 101, 0.9), rgba(5, 21, 48, 0.9)),
    radial-gradient(circle at 82% 24%, rgba(248, 199, 102, 0.2), transparent 22%);
}

@media (max-width: 1120px) {
  .home-nav {
    padding: 18px 24px;
  }

  .home-nav-links {
    display: none;
  }

  .home-hero-grid,
  .home-value-grid,
  .home-resource-grid,
  .home-solution-grid {
    grid-template-columns: 1fr;
  }

  .home-hero-visual {
    min-height: 330px;
  }

  .home-feature-strip,
  .home-full-feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 720px) {
  .home-shell {
    width: 100%;
    margin: 0;
    border-radius: 0;
    border-left: 0;
    border-right: 0;
  }

  .home-layer {
    padding: 38px 18px;
  }

  .home-nav {
    gap: 12px;
  }

  .home-brand {
    font-size: 18px;
  }

  .home-nav-cta {
    padding: 9px 14px;
  }

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

  .home-feature-strip,
  .home-full-feature-grid {
    grid-template-columns: 1fr;
  }

  .home-value-grid article {
    grid-template-columns: 1fr;
  }

  .home-final-cta {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* 首页第一层优化：只增强首屏展示层 */
.home-shell {
  width: min(1520px, calc(100vw - 64px));
  margin: 12px auto;
}

.home-nav {
  min-height: 70px;
  padding: 0 clamp(34px, 4vw, 58px);
  gap: 24px;
}

.home-brand {
  min-width: 210px;
}

.home-brand-mark {
  position: relative;
  width: 42px;
  height: 42px;
  font-size: 18px;
  background:
    radial-gradient(circle at 35% 30%, rgba(255, 232, 163, 0.35), transparent 28%),
    linear-gradient(145deg, rgba(250, 191, 65, 0.22), rgba(23, 98, 219, 0.24));
}

.home-brand-mark::after {
  content: "";
  position: absolute;
  inset: -7px;
  border-radius: 50%;
  border: 1px solid rgba(248, 199, 102, 0.18);
}

.home-nav-links {
  flex: 1;
  justify-content: center;
  gap: clamp(24px, 2.6vw, 42px);
  font-size: 14px;
  font-weight: 700;
}

.home-nav-links a {
  position: relative;
  padding: 26px 0 23px;
  color: #d7e5f7;
}

.home-nav-links a.active,
.home-nav-links a:hover {
  color: #f8c766;
}

.home-nav-links a.active::after,
.home-nav-links a:hover::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 15px;
  width: 26px;
  height: 2px;
  border-radius: 99px;
  background: linear-gradient(90deg, transparent, #f8c766, transparent);
  transform: translateX(-50%);
}

.home-layer-hero {
  min-height: 760px;
  padding: 58px clamp(36px, 4.2vw, 66px) 42px;
  overflow: hidden;
}

.home-layer-hero::after {
  content: "";
  position: absolute;
  right: -9%;
  top: -10%;
  width: 58%;
  height: 68%;
  pointer-events: none;
  background: radial-gradient(circle, rgba(0, 119, 255, 0.2), transparent 62%);
  filter: blur(12px);
}

.home-hero-grid {
  grid-template-columns: minmax(560px, 0.54fr) minmax(500px, 0.46fr);
  gap: clamp(34px, 4vw, 66px);
  align-items: start;
}

.home-hero-copy {
  padding-top: 20px;
}

.home-eyebrow {
  margin-bottom: 18px;
  font-size: 13px;
  color: #ffd36d;
}

.home-hero-copy h1 {
  max-width: 760px;
  font-size: clamp(46px, 4.15vw, 66px);
  line-height: 1.08;
  letter-spacing: -0.055em;
  text-wrap: balance;
}

.home-hero-copy h1 span {
  margin-top: 4px;
  color: #ffd66f;
  text-shadow: 0 8px 32px rgba(238, 177, 54, 0.14);
}

.home-subtitle {
  width: min(720px, 100%);
  margin: 22px 0 21px;
  font-size: 17px;
  line-height: 1.82;
  color: #c8d8ee;
}

.home-pain-tags {
  gap: 11px;
  margin-bottom: 30px;
}

.home-pain-tags span {
  min-height: 36px;
  padding: 0 16px;
  font-size: 13px;
  border-color: rgba(83, 149, 232, 0.46);
  background:
    linear-gradient(180deg, rgba(8, 30, 63, 0.82), rgba(4, 18, 43, 0.72)),
    radial-gradient(circle at 12px center, rgba(0, 132, 255, 0.2), transparent 34%);
}

.home-layer-hero .home-btn {
  min-width: 164px;
  min-height: 48px;
  border-radius: 7px;
  font-size: 14px;
}

.home-layer-hero .home-btn-ghost {
  background: rgba(6, 22, 49, 0.78);
  border-color: rgba(103, 154, 220, 0.56);
}

.home-flow-line {
  margin-top: 20px;
  font-size: 14px;
  letter-spacing: 0.18em;
}

.home-hero-visual {
  min-height: 510px;
  margin-top: -6px;
}

.home-dragon-orbit {
  inset: -18px -18px 0 0;
  background:
    radial-gradient(circle at 43% 20%, rgba(0, 174, 255, 0.42), transparent 12%),
    radial-gradient(circle at 62% 48%, rgba(0, 94, 255, 0.28), transparent 28%),
    conic-gradient(from 210deg, transparent 0 28%, rgba(0, 118, 255, 0.18) 35%, rgba(52, 153, 255, 0.88) 48%, transparent 66% 100%);
  transform: rotate(-10deg) scale(1.08);
}

.home-dragon-orbit::before {
  top: 26px;
  right: 36px;
  font-size: clamp(88px, 9vw, 142px);
  letter-spacing: -0.18em;
  color: rgba(58, 150, 255, 0.12);
}

.home-dragon-silhouette {
  position: absolute;
  right: 48px;
  top: 14px;
  width: 380px;
  height: 210px;
  border-radius: 68% 38% 58% 42%;
  background:
    radial-gradient(circle at 28% 30%, #56bdff 0 3px, transparent 4px),
    linear-gradient(135deg, rgba(72, 174, 255, 0.95), rgba(0, 68, 170, 0.2) 42%, transparent 70%);
  clip-path: polygon(2% 42%, 20% 20%, 47% 7%, 86% 0, 73% 16%, 100% 23%, 67% 34%, 86% 52%, 48% 48%, 25% 68%, 0 72%);
  filter: drop-shadow(0 0 34px rgba(0, 132, 255, 0.72));
  opacity: 0.9;
}

.home-dragon-silhouette::before,
.home-dragon-silhouette::after {
  content: "";
  position: absolute;
  height: 2px;
  border-radius: 99px;
  background: linear-gradient(90deg, transparent, rgba(105, 194, 255, 0.85), transparent);
}

.home-dragon-silhouette::before {
  left: 42px;
  top: 72px;
  width: 250px;
  transform: rotate(-16deg);
}

.home-dragon-silhouette::after {
  left: 56px;
  top: 118px;
  width: 210px;
  transform: rotate(10deg);
}

.home-dragon-eye {
  position: absolute;
  right: 86px;
  top: 45px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ffd66f;
  box-shadow: 0 0 18px #ffd66f;
}

.home-dragon-horn,
.home-dragon-jaw {
  position: absolute;
  display: block;
  background: rgba(103, 197, 255, 0.8);
  filter: blur(0.1px);
}

.home-dragon-horn {
  right: 42px;
  top: 25px;
  width: 70px;
  height: 14px;
  clip-path: polygon(0 100%, 100% 0, 66% 100%);
}

.home-dragon-jaw {
  right: 30px;
  top: 92px;
  width: 90px;
  height: 18px;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}

.home-data-panel {
  position: absolute;
  right: 68px;
  top: 178px;
  width: 254px;
  padding: 20px 22px;
  border: 1px solid rgba(83, 155, 245, 0.54);
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(5, 26, 62, 0.92), rgba(12, 70, 139, 0.74));
  box-shadow: 0 22px 64px rgba(0, 0, 0, 0.25), 0 0 44px rgba(0, 124, 255, 0.24);
}

.home-data-panel span {
  display: block;
  width: 110px;
  height: 8px;
  margin-bottom: 16px;
  border-radius: 99px;
  background: linear-gradient(90deg, #2b79ff, #7ad0ff);
}

.home-data-panel strong,
.home-data-panel em {
  display: block;
}

.home-data-panel strong {
  font-size: 24px;
  color: #fff;
}

.home-data-panel em {
  margin-top: 8px;
  color: #78c6ff;
  font-style: normal;
  font-size: 12px;
  letter-spacing: 0.14em;
}

.home-dragon-card {
  right: 318px;
  top: 240px;
  width: 218px;
  padding: 18px;
  transform: rotate(-4deg);
}

.home-dragon-card strong {
  font-size: 19px;
}

.home-globe {
  right: 8px;
  bottom: 20px;
  width: min(620px, 96%);
  border-color: rgba(62, 151, 255, 0.44);
  box-shadow: inset 0 0 96px rgba(20, 110, 255, 0.28), 0 0 110px rgba(0, 94, 255, 0.24);
}

.home-commerce-dots {
  position: absolute;
  right: 18px;
  bottom: 92px;
  display: flex;
  gap: 12px;
}

.home-commerce-dots b {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  color: #eaf6ff;
  font-size: 12px;
  border: 1px solid rgba(101, 166, 239, 0.48);
  background: rgba(7, 32, 73, 0.76);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.2);
}

.home-value-grid {
  gap: 24px;
  margin-top: 34px;
}

.home-value-grid article {
  min-height: 138px;
  grid-template-columns: 84px 1fr;
  gap: 20px;
  padding: 28px 30px;
  border-radius: 12px;
  border-color: rgba(84, 151, 230, 0.46);
  background:
    linear-gradient(145deg, rgba(10, 37, 79, 0.84), rgba(5, 20, 49, 0.78)),
    radial-gradient(circle at 18% 20%, rgba(0, 111, 255, 0.22), transparent 32%);
}

.home-value-grid article:hover {
  border-color: rgba(248, 199, 102, 0.45);
  transform: translateY(-2px);
}

.home-value-icon {
  width: 78px;
  height: 78px;
  font-size: 0;
  background:
    radial-gradient(circle at 35% 30%, rgba(255, 232, 165, 0.36), transparent 25%),
    linear-gradient(145deg, rgba(34, 105, 231, 0.74), rgba(4, 35, 86, 0.78));
  box-shadow: inset 0 0 24px rgba(255, 255, 255, 0.08), 0 0 34px rgba(0, 118, 255, 0.2);
}

.home-value-icon::before {
  content: "";
  width: 34px;
  height: 34px;
  display: block;
  border-radius: 50%;
  border: 6px solid #ffd56d;
  border-right-color: transparent;
}

.home-value-grid article:nth-child(2) .home-value-icon {
  background:
    radial-gradient(circle at 35% 30%, rgba(255, 232, 165, 0.36), transparent 25%),
    linear-gradient(145deg, rgba(27, 136, 105, 0.76), rgba(5, 43, 74, 0.78));
}

.home-value-grid article:nth-child(2) .home-value-icon::before {
  width: 20px;
  height: 42px;
  border: 0;
  border-radius: 4px;
  background: #ffd56d;
  clip-path: polygon(48% 0, 100% 0, 68% 40%, 100% 40%, 30% 100%, 48% 55%, 0 55%);
}

.home-value-grid article:nth-child(3) .home-value-icon {
  background:
    radial-gradient(circle at 35% 30%, rgba(255, 232, 165, 0.42), transparent 25%),
    linear-gradient(145deg, rgba(153, 104, 36, 0.78), rgba(54, 37, 20, 0.78));
}

.home-value-grid article:nth-child(3) .home-value-icon::before {
  width: 42px;
  height: 30px;
  border: 0;
  border-radius: 0;
  background: #ffd56d;
  clip-path: polygon(0 100%, 8% 34%, 28% 62%, 50% 10%, 72% 62%, 92% 34%, 100% 100%);
}

.home-value-grid h3 {
  font-size: 25px;
}

.home-value-grid p {
  max-width: 420px;
  font-size: 14px;
}

.home-layer-hero .home-section-head.compact {
  margin-top: 6px;
}

.home-feature-strip {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  padding: 18px 20px;
  border-radius: 12px;
  background: rgba(6, 24, 55, 0.76);
}

.home-feature-strip span {
  position: relative;
  min-height: 84px;
  justify-items: start;
  padding: 16px 18px 16px 54px;
  text-align: left;
  font-size: 15px;
  font-weight: 800;
  background: transparent;
  border: 0;
  border-right: 1px solid rgba(99, 159, 229, 0.18);
}

.home-feature-strip span:last-child {
  border-right: 0;
}

.home-feature-strip span::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 20px;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 213, 109, 0.95), rgba(41, 123, 255, 0.78));
  box-shadow: 0 0 22px rgba(0, 124, 255, 0.18);
}

.home-feature-strip span:nth-child(2)::before {
  border-radius: 50%;
}

.home-feature-strip span:nth-child(3)::before {
  background: linear-gradient(135deg, #38bdf8, #0ea5e9);
}

.home-feature-strip span:nth-child(4)::before {
  background: linear-gradient(135deg, #ff9f45, #f05a28);
}

.home-feature-strip span:nth-child(5)::before {
  clip-path: polygon(50% 0, 100% 45%, 70% 45%, 70% 100%, 30% 100%, 30% 45%, 0 45%);
}

@media (max-width: 1280px) {
  .home-hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(420px, 0.78fr);
  }

  .home-hero-copy h1 {
    font-size: clamp(42px, 4vw, 58px);
  }
}

@media (max-width: 1120px) {
  .home-shell {
    width: min(100%, calc(100vw - 28px));
  }

  .home-hero-grid {
    grid-template-columns: 1fr;
  }

  .home-dragon-silhouette {
    right: 20%;
  }

  .home-feature-strip {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .home-feature-strip span {
    border: 1px solid rgba(99, 159, 229, 0.18);
    border-radius: 10px;
  }
}

@media (max-width: 720px) {
  .home-shell {
    width: 100%;
  }

  .home-layer-hero {
    padding: 34px 18px;
  }

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

  .home-feature-strip {
    grid-template-columns: 1fr;
  }

  .home-dragon-silhouette,
  .home-data-panel,
  .home-dragon-card {
    transform: scale(0.86);
    transform-origin: top right;
  }
}

/* 官网首页第一层重做：全屏官网感 + 1480px 内容区 */
.home-page {
  overflow-x: hidden;
  background:
    radial-gradient(circle at 73% 12%, rgba(20, 113, 255, 0.34), transparent 28%),
    radial-gradient(circle at 18% 0%, rgba(248, 199, 102, 0.12), transparent 18%),
    linear-gradient(115deg, #010610 0%, #031125 40%, #062a53 100%);
}

.home-page::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(84, 147, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(84, 147, 255, 0.05) 1px, transparent 1px),
    radial-gradient(circle, rgba(102, 169, 255, 0.26) 1px, transparent 1.5px);
  background-size: 88px 88px, 88px 88px, 96px 96px;
  mask-image: linear-gradient(90deg, transparent, black 14%, black 86%, transparent);
}

.home-shell {
  width: 100%;
  max-width: none;
  margin: 0;
  border: 0;
  border-radius: 0;
  overflow: visible;
  background:
    radial-gradient(circle at 82% 9%, rgba(0, 119, 255, 0.22), transparent 26%),
    linear-gradient(180deg, rgba(2, 12, 28, 0.92), rgba(3, 13, 29, 0.96));
  box-shadow: none;
}

.home-nav {
  width: 100%;
  margin: 0;
  padding: 0;
  border-bottom: 1px solid rgba(105, 157, 225, 0.22);
  background: rgba(2, 10, 23, 0.76);
  backdrop-filter: blur(22px);
}

.home-nav-inner {
  width: min(1480px, calc(100vw - 96px));
  min-height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
}

.home-brand {
  gap: 13px;
  font-size: 23px;
  letter-spacing: 0.01em;
}

.home-brand-mark {
  width: 43px;
  height: 43px;
  border-color: rgba(248, 199, 102, 0.72);
  background:
    radial-gradient(circle at 48% 42%, rgba(255, 216, 125, 0.28), transparent 35%),
    linear-gradient(145deg, rgba(12, 36, 68, 0.98), rgba(2, 15, 32, 0.98));
  box-shadow: 0 0 0 5px rgba(248, 199, 102, 0.06), 0 0 34px rgba(45, 133, 255, 0.38);
}

.home-nav-links {
  gap: 38px;
  font-size: 15px;
  font-weight: 700;
  color: rgba(228, 238, 255, 0.9);
}

.home-nav-links a {
  position: relative;
  padding: 28px 0 25px;
}

.home-nav-links a.active,
.home-nav-links a:hover {
  color: #ffd36f;
}

.home-nav-links a.active::after,
.home-nav-links a:hover::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 18px;
  width: 28px;
  height: 3px;
  border-radius: 999px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, #ffd36f, transparent);
}

.home-nav-cta {
  min-width: 106px;
  text-align: center;
  padding: 13px 24px;
  border-radius: 9px;
  color: #1c1303;
  background: linear-gradient(135deg, #ffe8a5 0%, #ffc24d 48%, #e9a72d 100%);
  box-shadow: 0 18px 42px rgba(236, 179, 66, 0.28);
}

.home-layer-hero {
  width: 100%;
  min-height: 820px;
  padding: 72px 0 46px;
  overflow: hidden;
  background:
    radial-gradient(circle at 73% 19%, rgba(0, 128, 255, 0.25), transparent 23%),
    radial-gradient(circle at 54% 82%, rgba(0, 88, 210, 0.16), transparent 30%),
    linear-gradient(180deg, rgba(2, 13, 30, 0.28), rgba(2, 13, 30, 0.88));
}

.home-layer-hero::before {
  inset: 0;
  background-image:
    linear-gradient(rgba(77, 146, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(77, 146, 255, 0.055) 1px, transparent 1px);
  background-size: 84px 84px;
  mask-image: radial-gradient(circle at 68% 30%, black, transparent 74%);
}

.home-layer-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 84% 38%, rgba(41, 134, 255, 0.24), transparent 28%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.22), transparent 38%, rgba(0, 38, 83, 0.18));
}

.home-hero-grid,
.home-value-grid,
.home-layer-hero .home-mini-section,
.home-next-link {
  width: min(1480px, calc(100vw - 96px));
  margin-left: auto;
  margin-right: auto;
}

.home-hero-grid {
  grid-template-columns: minmax(560px, 0.53fr) minmax(560px, 0.47fr);
  align-items: center;
  gap: 58px;
  min-height: 500px;
}

.home-hero-copy {
  max-width: 735px;
}

.home-eyebrow {
  margin-bottom: 20px;
  color: #ffd36f;
  font-size: 14px;
  letter-spacing: 0.12em;
}

.home-hero-copy h1 {
  max-width: 720px;
  margin-bottom: 22px;
  font-size: clamp(50px, 4.2vw, 76px);
  line-height: 1.08;
  letter-spacing: -0.055em;
  text-wrap: balance;
}

.home-hero-copy h1 span {
  display: block;
  width: fit-content;
  margin-top: 6px;
  padding-left: 58px;
  color: #ffd873;
  background: linear-gradient(90deg, #ffde7d, #ffc64c 58%, #fff3bf);
  background-clip: text;
  -webkit-background-clip: text;
  text-shadow: 0 14px 46px rgba(255, 200, 82, 0.14);
}

.home-hero-copy h1 span::before {
  content: "";
  display: inline-block;
  width: 72px;
  height: 8px;
  margin: 0 16px 12px -58px;
  border-radius: 999px;
  background: linear-gradient(90deg, #ffd66f, #f5b642);
  box-shadow: 0 0 24px rgba(247, 194, 80, 0.28);
}

.home-subtitle {
  max-width: 680px;
  font-size: 17px;
  line-height: 2;
  color: rgba(228, 239, 255, 0.9);
}

.home-pain-tags {
  margin-top: 25px;
  gap: 14px;
}

.home-pain-tags span {
  min-height: 34px;
  padding: 8px 17px;
  border-radius: 999px;
  border-color: rgba(82, 158, 255, 0.58);
  background: rgba(3, 20, 45, 0.72);
  box-shadow: inset 0 0 18px rgba(59, 142, 255, 0.08);
}

.home-hero-actions {
  margin-top: 34px;
  gap: 18px;
}

.home-layer-hero .home-btn {
  min-width: 164px;
  height: 54px;
  padding: 0 26px;
  border-radius: 8px;
  font-size: 15px;
}

.home-layer-hero .home-btn-primary {
  color: #201606;
  background: linear-gradient(135deg, #ffe9a7, #ffc24c 56%, #e6a22a);
  box-shadow: 0 20px 45px rgba(244, 183, 65, 0.22);
}

.home-layer-hero .home-btn-ghost {
  color: #edf6ff;
  border-color: rgba(128, 178, 245, 0.58);
  background: rgba(4, 18, 40, 0.68);
}

.home-flow-line {
  margin-top: 26px;
  font-size: 16px;
  letter-spacing: 0.09em;
  color: rgba(232, 242, 255, 0.94);
}

.home-hero-visual {
  position: relative;
  min-height: 520px;
  overflow: visible;
  background:
    radial-gradient(circle at 48% 34%, rgba(40, 143, 255, 0.34), transparent 24%),
    radial-gradient(circle at 70% 66%, rgba(0, 96, 255, 0.18), transparent 38%);
}

.home-hero-visual::before {
  content: "";
  position: absolute;
  inset: -40px -70px -20px 20px;
  background:
    radial-gradient(ellipse at 58% 54%, rgba(0, 132, 255, 0.2), transparent 42%),
    linear-gradient(115deg, transparent 25%, rgba(33, 130, 255, 0.12), transparent 72%);
  filter: blur(1px);
}

.home-hero-visual::after {
  content: "黑龙";
  position: absolute;
  right: 26px;
  top: 44px;
  color: rgba(62, 145, 255, 0.12);
  font-size: 128px;
  font-weight: 950;
  letter-spacing: -0.08em;
  transform: skewY(-8deg);
}

.home-dragon-silhouette {
  position: absolute;
  right: 42px;
  top: 0;
  width: 520px;
  height: 210px;
  opacity: 1;
  transform: rotate(-7deg);
  background:
    radial-gradient(ellipse at 28% 48%, rgba(92, 177, 255, 0.95) 0 16%, transparent 17%),
    radial-gradient(ellipse at 43% 44%, rgba(43, 142, 255, 0.8) 0 30%, transparent 31%),
    radial-gradient(ellipse at 66% 39%, rgba(8, 95, 220, 0.52) 0 33%, transparent 34%),
    linear-gradient(145deg, transparent 5%, rgba(27, 115, 245, 0.82) 24%, rgba(5, 52, 128, 0.45) 67%, transparent 85%);
  clip-path: polygon(2% 52%, 16% 19%, 44% 10%, 73% 0, 100% 19%, 75% 30%, 94% 45%, 67% 48%, 82% 72%, 52% 59%, 28% 86%, 34% 57%);
  filter: drop-shadow(0 0 32px rgba(49, 151, 255, 0.72));
}

.home-dragon-silhouette::before,
.home-dragon-silhouette::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.home-dragon-silhouette::before {
  right: 34px;
  top: 43px;
  width: 105px;
  height: 42px;
  border-top: 10px solid rgba(93, 186, 255, 0.76);
  border-right: 22px solid transparent;
  transform: skewX(-22deg);
}

.home-dragon-silhouette::after {
  left: 170px;
  top: -18px;
  width: 260px;
  height: 170px;
  border-top: 2px solid rgba(101, 185, 255, 0.35);
  border-radius: 50%;
  transform: rotate(-12deg);
}

.home-dragon-eye {
  position: absolute;
  right: 92px;
  top: 58px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ffd56a;
  box-shadow: 0 0 20px #ffd56a;
}

.home-dragon-horn {
  position: absolute;
  right: 158px;
  top: -14px;
  width: 84px;
  height: 80px;
  border-top: 7px solid rgba(120, 197, 255, 0.72);
  transform: rotate(-18deg);
}

.home-dragon-jaw {
  position: absolute;
  right: 52px;
  top: 93px;
  width: 72px;
  height: 16px;
  background: linear-gradient(90deg, rgba(89, 184, 255, 0.72), transparent);
  transform: skewX(-22deg);
}

.home-dragon-whisker {
  position: absolute;
  right: 96px;
  top: 80px;
  width: 245px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(110, 197, 255, 0.85), transparent);
  transform-origin: right center;
}

.home-dragon-whisker.one {
  transform: rotate(-18deg);
}

.home-dragon-whisker.two {
  top: 106px;
  transform: rotate(13deg);
}

.home-globe {
  left: 46px;
  right: auto;
  bottom: 14px;
  width: 610px;
  height: 290px;
  border-color: rgba(47, 136, 255, 0.34);
  background:
    radial-gradient(ellipse at center, rgba(0, 97, 255, 0.1), transparent 66%),
    repeating-radial-gradient(ellipse at center, rgba(91, 159, 255, 0.16) 0 1px, transparent 2px 48px);
  box-shadow: 0 0 80px rgba(18, 114, 255, 0.16);
}

.home-globe::before,
.home-globe::after {
  content: "";
  position: absolute;
  inset: 18% 7%;
  border: 1px solid rgba(78, 152, 255, 0.28);
  border-radius: 50%;
}

.home-globe::after {
  inset: 12% 28%;
  transform: rotate(90deg);
}

.home-dragon-orbit {
  width: 650px;
  height: 300px;
  right: -20px;
  bottom: 14px;
  border-color: rgba(46, 136, 255, 0.34);
  box-shadow: 0 0 54px rgba(32, 120, 255, 0.18);
}

.home-data-panel,
.home-dragon-card,
.home-visual-chip {
  position: absolute;
  z-index: 3;
  border: 1px solid rgba(106, 171, 255, 0.42);
  background: linear-gradient(145deg, rgba(4, 29, 67, 0.9), rgba(3, 18, 42, 0.64));
  box-shadow: 0 18px 58px rgba(0, 95, 220, 0.18);
  backdrop-filter: blur(10px);
}

.home-data-panel {
  right: 74px;
  top: 220px;
  min-width: 250px;
  padding: 24px 24px 20px;
  border-radius: 18px;
}

.home-data-panel span {
  display: block;
  width: 76px;
  height: 9px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: linear-gradient(90deg, #52b7ff, #0d65f2);
}

.home-data-panel strong {
  display: block;
  font-size: 23px;
  color: #ffffff;
}

.home-data-panel em {
  display: block;
  margin-top: 8px;
  color: rgba(214, 231, 255, 0.78);
  font-style: normal;
}

.home-dragon-card {
  left: 92px;
  top: 290px;
  padding: 19px 25px;
  border-radius: 18px;
  transform: rotate(-8deg);
}

.home-dragon-card span {
  display: block;
  margin-bottom: 8px;
  color: #66baff;
  font-size: 12px;
  letter-spacing: 0.18em;
}

.home-dragon-card strong {
  color: #ffffff;
  font-size: 20px;
}

.home-visual-chip {
  padding: 10px 15px;
  border-radius: 999px;
  color: rgba(232, 242, 255, 0.92);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.home-visual-chip-a {
  left: 185px;
  top: 168px;
}

.home-visual-chip-b {
  right: 260px;
  bottom: 96px;
  color: #ffd56d;
}

.home-commerce-dots {
  right: 70px;
  bottom: 72px;
  gap: 14px;
}

.home-commerce-dots b {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  color: #ffffff;
  border: 1px solid rgba(119, 178, 255, 0.5);
  background: rgba(7, 31, 70, 0.86);
}

.home-value-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
  margin-top: 52px;
}

.home-value-grid article {
  position: relative;
  min-height: 166px;
  padding: 34px 34px 28px 118px;
  border-radius: 12px;
  border: 1px solid rgba(91, 154, 235, 0.48);
  background:
    linear-gradient(145deg, rgba(8, 34, 77, 0.92), rgba(5, 22, 52, 0.82)),
    radial-gradient(circle at 18% 20%, rgba(45, 136, 255, 0.22), transparent 34%);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.05), 0 28px 70px rgba(0, 0, 0, 0.18);
}

.home-value-grid article::after {
  content: "";
  position: absolute;
  left: 34px;
  right: 34px;
  bottom: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255, 211, 111, 0.72), transparent);
}

.home-value-icon {
  position: absolute;
  left: 32px;
  top: 34px;
  width: 64px;
  height: 64px;
  font-size: 0;
  border-radius: 50%;
  background:
    radial-gradient(circle at 34% 28%, rgba(255, 255, 255, 0.28), transparent 22%),
    linear-gradient(145deg, #246bff, #083f9e);
  box-shadow: 0 0 34px rgba(37, 113, 255, 0.35);
}

.home-value-icon::before,
.home-value-icon::after {
  content: "";
  position: absolute;
}

.home-value-grid article:nth-child(1) .home-value-icon::before {
  inset: 14px;
  border: 5px solid #ffffff;
  border-right-color: transparent;
  border-radius: 50%;
}

.home-value-grid article:nth-child(1) .home-value-icon::after {
  right: 13px;
  top: 10px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #ffd36f;
}

.home-value-grid article:nth-child(2) .home-value-icon {
  background: linear-gradient(145deg, #178c83, #0d4b64);
}

.home-value-grid article:nth-child(2) .home-value-icon::before {
  left: 26px;
  top: 12px;
  width: 16px;
  height: 40px;
  background: #ffd36f;
  clip-path: polygon(42% 0, 100% 0, 62% 42%, 100% 42%, 25% 100%, 44% 55%, 0 55%);
}

.home-value-grid article:nth-child(3) .home-value-icon {
  background: linear-gradient(145deg, #c89535, #60451c);
}

.home-value-grid article:nth-child(3) .home-value-icon::before {
  left: 15px;
  top: 20px;
  width: 34px;
  height: 25px;
  background: #ffd36f;
  clip-path: polygon(0 100%, 12% 28%, 34% 58%, 50% 12%, 66% 58%, 88% 28%, 100% 100%);
}

.home-value-grid h3 {
  margin-bottom: 12px;
  font-size: 25px;
}

.home-value-grid p {
  max-width: 360px;
  font-size: 15px;
  line-height: 1.85;
}

.home-layer-hero .home-section-head.compact {
  margin-top: 42px;
  text-align: center;
}

.home-layer-hero .home-section-head.compact h2 {
  font-size: 36px;
  letter-spacing: -0.03em;
}

.home-feature-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  margin-top: 22px;
  padding: 0;
  border-radius: 12px;
  border: 1px solid rgba(88, 151, 228, 0.38);
  background: rgba(7, 29, 66, 0.72);
  box-shadow: inset 0 0 36px rgba(32, 118, 255, 0.08);
}

.home-feature-strip article {
  position: relative;
  min-height: 116px;
  padding: 25px 22px 22px 70px;
  border-right: 1px solid rgba(92, 151, 224, 0.18);
}

.home-feature-strip article:last-child {
  border-right: 0;
}

.home-feature-strip article::before {
  content: "";
  position: absolute;
  left: 24px;
  top: 29px;
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: linear-gradient(135deg, #ffffff, #58b4ff);
  box-shadow: 0 0 24px rgba(80, 168, 255, 0.2);
}

.home-feature-strip article:nth-child(2)::before {
  border-radius: 50%;
  background: linear-gradient(135deg, #ffffff, #7ea8d9);
}

.home-feature-strip article:nth-child(3)::before {
  background: linear-gradient(135deg, #25d7ff, #1470ff);
}

.home-feature-strip article:nth-child(4)::before {
  background: linear-gradient(135deg, #ffab66, #ff6a2d);
}

.home-feature-strip article:nth-child(5)::before {
  clip-path: polygon(50% 0, 100% 45%, 72% 45%, 72% 100%, 28% 100%, 28% 45%, 0 45%);
  border-radius: 0;
  background: linear-gradient(135deg, #ffffff, #ffd36f);
}

.home-feature-strip span {
  display: block;
  margin: 0 0 9px;
  color: #ffffff;
  font-size: 15px;
  font-weight: 900;
}

.home-feature-strip p {
  margin: 0;
  color: rgba(215, 228, 247, 0.74);
  font-size: 13px;
  line-height: 1.65;
}

@media (max-width: 1320px) {
  .home-nav-inner,
  .home-hero-grid,
  .home-value-grid,
  .home-layer-hero .home-mini-section,
  .home-next-link {
    width: min(1180px, calc(100vw - 56px));
  }

  .home-hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(420px, 0.9fr);
    gap: 34px;
  }

  .home-hero-copy h1 {
    font-size: clamp(44px, 4.7vw, 62px);
  }
}

@media (max-width: 1020px) {
  .home-nav-inner {
    min-height: auto;
    padding: 18px 0;
    flex-wrap: wrap;
  }

  .home-nav-links {
    order: 3;
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    gap: 18px 26px;
  }

  .home-nav-links a {
    padding: 8px 0 12px;
  }

  .home-layer-hero {
    padding-top: 46px;
  }

  .home-hero-grid {
    grid-template-columns: 1fr;
  }

  .home-hero-copy,
  .home-hero-copy h1,
  .home-subtitle {
    max-width: none;
  }

  .home-hero-visual {
    min-height: 420px;
  }

  .home-value-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 680px) {
  .home-nav-inner,
  .home-hero-grid,
  .home-value-grid,
  .home-layer-hero .home-mini-section,
  .home-next-link {
    width: calc(100vw - 32px);
  }

  .home-brand {
    font-size: 19px;
  }

  .home-nav-cta {
    padding: 10px 16px;
  }

  .home-hero-copy h1 {
    font-size: clamp(36px, 12vw, 48px);
  }

  .home-hero-copy h1 span {
    padding-left: 0;
  }

  .home-hero-copy h1 span::before {
    display: none;
  }

  .home-hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .home-layer-hero .home-btn {
    width: 100%;
  }

  .home-hero-visual {
    min-height: 320px;
  }

  .home-dragon-silhouette,
  .home-data-panel,
  .home-dragon-card,
  .home-visual-chip,
  .home-commerce-dots {
    transform: scale(0.78);
  }

  .home-dragon-silhouette {
    right: -110px;
  }

  .home-feature-strip {
    grid-template-columns: 1fr;
  }

  .home-feature-strip article {
    border-right: 0;
    border-bottom: 1px solid rgba(92, 151, 224, 0.18);
  }

  .home-feature-strip article:last-child {
    border-bottom: 0;
  }
}

/* 官网首页第一层视觉精修：龙形线稿、标题节奏、卡片质感 */
.home-layer-hero {
  padding-top: 66px;
  background:
    radial-gradient(circle at 74% 12%, rgba(0, 132, 255, 0.32), transparent 24%),
    radial-gradient(circle at 67% 48%, rgba(4, 99, 220, 0.22), transparent 28%),
    radial-gradient(circle at 26% 18%, rgba(247, 194, 93, 0.08), transparent 18%),
    linear-gradient(180deg, rgba(2, 13, 30, 0.18), rgba(2, 13, 30, 0.9));
}

.home-hero-grid {
  grid-template-columns: minmax(610px, 0.53fr) minmax(620px, 0.47fr);
  min-height: 560px;
}

.home-hero-copy h1 {
  max-width: 790px;
  font-size: clamp(54px, 4.55vw, 82px);
  line-height: 1.1;
  letter-spacing: -0.062em;
  color: #f4f8ff;
  text-shadow: 0 20px 50px rgba(0, 0, 0, 0.26);
}

.home-hero-copy h1 span {
  margin-top: 2px;
  padding-left: 0;
  line-height: 1.08;
  letter-spacing: -0.07em;
}

.home-hero-copy h1 span::before {
  width: 88px;
  height: 9px;
  margin: 0 18px 14px 0;
  vertical-align: middle;
}

.home-subtitle {
  margin-top: 18px;
  max-width: 720px;
  font-size: 18px;
  line-height: 1.9;
}

.home-pain-tags span::before {
  content: "";
  width: 8px;
  height: 8px;
  margin-right: 8px;
  display: inline-block;
  border-radius: 50%;
  background: #21a7ff;
  box-shadow: 0 0 14px rgba(33, 167, 255, 0.72);
}

.home-pain-tags span:nth-child(2)::before {
  background: #f7c665;
  box-shadow: 0 0 14px rgba(247, 198, 101, 0.7);
}

.home-pain-tags span:nth-child(3)::before {
  background: #9d65ff;
  box-shadow: 0 0 14px rgba(157, 101, 255, 0.72);
}

.home-pain-tags span:nth-child(4)::before {
  background: #34d36d;
  box-shadow: 0 0 14px rgba(52, 211, 109, 0.7);
}

.home-hero-visual {
  min-height: 560px;
  isolation: isolate;
  background:
    radial-gradient(circle at 60% 25%, rgba(49, 154, 255, 0.36), transparent 20%),
    radial-gradient(circle at 59% 58%, rgba(0, 91, 255, 0.22), transparent 42%);
}

.home-hero-visual::before {
  inset: -48px -86px -42px -6px;
  opacity: 0.95;
  background:
    radial-gradient(ellipse at 66% 27%, rgba(44, 149, 255, 0.32), transparent 30%),
    radial-gradient(ellipse at 51% 66%, rgba(20, 99, 255, 0.18), transparent 42%),
    conic-gradient(from 210deg at 55% 58%, transparent 0 16%, rgba(67, 159, 255, 0.16) 17% 21%, transparent 22% 56%, rgba(247, 198, 101, 0.11) 57% 60%, transparent 61%);
}

.home-hero-visual::after {
  right: 0;
  top: 44px;
  font-size: 156px;
  opacity: 0.9;
  color: rgba(50, 132, 255, 0.105);
}

.home-dragon-lineart {
  position: absolute;
  z-index: 5;
  right: -42px;
  top: -28px;
  width: 670px;
  height: 328px;
  overflow: visible;
  filter: drop-shadow(0 0 18px rgba(44, 156, 255, 0.46));
}

.home-dragon-stroke {
  fill: none;
  stroke: rgba(84, 181, 255, 0.78);
  stroke-width: 5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.home-dragon-head {
  fill: rgba(28, 116, 238, 0.2);
  stroke-width: 4;
}

.home-dragon-spine,
.home-dragon-neck {
  stroke: rgba(41, 145, 255, 0.62);
}

.home-dragon-hair,
.home-dragon-whisker-line {
  stroke: rgba(111, 200, 255, 0.46);
  stroke-width: 2.5;
}

.home-dragon-gold-eye {
  fill: #ffd56a;
  filter: drop-shadow(0 0 9px rgba(255, 213, 106, 0.9));
}

.home-world-map {
  position: absolute;
  z-index: 2;
  right: 62px;
  bottom: 36px;
  width: 520px;
  height: 250px;
  border-radius: 50%;
  opacity: 0.78;
  background:
    radial-gradient(circle at 28% 38%, rgba(45, 141, 255, 0.28) 0 5%, transparent 6%),
    radial-gradient(circle at 38% 55%, rgba(45, 141, 255, 0.24) 0 8%, transparent 9%),
    radial-gradient(circle at 57% 37%, rgba(45, 141, 255, 0.24) 0 9%, transparent 10%),
    radial-gradient(circle at 68% 56%, rgba(45, 141, 255, 0.18) 0 6%, transparent 7%);
  box-shadow: inset 0 0 60px rgba(58, 154, 255, 0.08);
}

.home-world-map span {
  position: absolute;
  border: 1px solid rgba(91, 169, 255, 0.22);
  border-radius: 50%;
}

.home-world-map span:nth-child(1) {
  inset: 10% 4%;
}

.home-world-map span:nth-child(2) {
  inset: 21% 22%;
  transform: rotate(90deg);
}

.home-world-map span:nth-child(3) {
  left: 6%;
  right: 6%;
  top: 48%;
  height: 1px;
  border-width: 1px 0 0;
  border-radius: 0;
}

.home-world-map span:nth-child(4) {
  inset: 35% 0 30%;
  transform: rotate(-8deg);
}

.home-dragon-silhouette {
  z-index: 3;
  right: 86px;
  top: 34px;
  width: 470px;
  height: 178px;
  opacity: 0.52;
  filter: blur(0.2px) drop-shadow(0 0 44px rgba(36, 143, 255, 0.7));
}

.home-data-panel {
  right: 82px;
  top: 236px;
  min-width: 282px;
  padding: 26px 27px 22px;
  border-radius: 18px;
  background:
    linear-gradient(145deg, rgba(7, 42, 91, 0.94), rgba(3, 22, 50, 0.74)),
    radial-gradient(circle at 28% 10%, rgba(80, 178, 255, 0.18), transparent 34%);
}

.home-data-panel strong {
  font-size: 25px;
  letter-spacing: 0.01em;
}

.home-dragon-card {
  z-index: 4;
  left: 92px;
  top: 312px;
  min-width: 235px;
  background: linear-gradient(145deg, rgba(5, 34, 78, 0.9), rgba(3, 17, 39, 0.72));
}

.home-visual-chip {
  z-index: 6;
  box-shadow: 0 12px 32px rgba(0, 88, 200, 0.18);
}

.home-visual-chip-a {
  left: 148px;
  top: 178px;
}

.home-visual-chip-b {
  right: 264px;
  bottom: 104px;
}

.home-globe {
  z-index: 1;
  left: 24px;
  bottom: 0;
  width: 660px;
  height: 315px;
  transform: rotate(-1deg);
  background:
    radial-gradient(ellipse at center, rgba(0, 97, 255, 0.13), transparent 60%),
    repeating-radial-gradient(ellipse at center, rgba(91, 159, 255, 0.19) 0 1px, transparent 2px 46px);
}

.home-dragon-orbit {
  z-index: 2;
  right: -42px;
  bottom: 20px;
  width: 705px;
  height: 320px;
  border-width: 2px 1px 0;
  transform: rotate(-8deg);
}

.home-commerce-dots {
  z-index: 6;
  right: 76px;
  bottom: 82px;
}

.home-commerce-dots b {
  box-shadow: inset 0 0 16px rgba(83, 160, 255, 0.12), 0 10px 26px rgba(0, 0, 0, 0.18);
}

.home-value-grid {
  gap: 28px;
  margin-top: 58px;
}

.home-value-grid article {
  min-height: 182px;
  padding: 38px 38px 32px 126px;
  border-color: rgba(93, 164, 255, 0.54);
  background:
    linear-gradient(145deg, rgba(8, 36, 82, 0.95), rgba(4, 20, 49, 0.88)),
    radial-gradient(circle at 17% 24%, rgba(58, 146, 255, 0.26), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent);
  box-shadow:
    inset 0 1px rgba(255, 255, 255, 0.07),
    inset 0 0 42px rgba(62, 143, 255, 0.04),
    0 24px 65px rgba(0, 0, 0, 0.22);
}

.home-value-grid article:hover {
  border-color: rgba(122, 190, 255, 0.72);
  transform: translateY(-3px);
}

.home-value-icon {
  left: 36px;
  top: 38px;
  width: 70px;
  height: 70px;
}

.home-value-grid h3 {
  font-size: 27px;
  letter-spacing: -0.02em;
}

.home-value-grid p {
  max-width: 390px;
  color: rgba(218, 232, 250, 0.82);
}

.home-layer-hero .home-section-head.compact {
  margin-top: 48px;
}

.home-layer-hero .home-section-head.compact p {
  color: #ffd36f;
  letter-spacing: 0.22em;
}

.home-layer-hero .home-section-head.compact h2 {
  font-size: 40px;
  text-shadow: 0 16px 40px rgba(0, 0, 0, 0.24);
}

.home-feature-strip {
  border-color: rgba(91, 164, 255, 0.44);
  background:
    linear-gradient(145deg, rgba(6, 28, 64, 0.9), rgba(4, 18, 43, 0.82)),
    radial-gradient(circle at 50% 0%, rgba(64, 149, 255, 0.1), transparent 44%);
}

.home-feature-strip article {
  min-height: 132px;
  padding-top: 29px;
}

.home-feature-strip article::after {
  content: "";
  position: absolute;
  left: 70px;
  right: 22px;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 211, 111, 0.62), transparent);
}

.home-feature-strip span {
  font-size: 16px;
}

.home-feature-strip p {
  max-width: 210px;
  color: rgba(220, 232, 250, 0.78);
}

@media (max-width: 1320px) {
  .home-hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(440px, 0.9fr);
  }

  .home-dragon-lineart {
    right: -100px;
    width: 620px;
  }
}

@media (max-width: 1020px) {
  .home-dragon-lineart {
    right: 0;
  }

  .home-world-map {
    right: 40px;
  }
}

@media (max-width: 680px) {
  .home-dragon-lineart {
    right: -170px;
    top: 0;
    width: 540px;
    transform: scale(0.78);
    transform-origin: top right;
  }

  .home-world-map {
    display: none;
  }
}

/* 官网首页第一层最终质感层：稳定两行标题 + 更完整的龙与平台组合 */
.home-hero-copy h1 {
  max-width: 830px;
  margin-top: 0;
  margin-bottom: 24px;
  font-size: clamp(44px, 3.1vw, 58px);
  line-height: 1.12;
  letter-spacing: -0.045em;
}

.home-hero-copy h1 .home-title-main,
.home-hero-copy h1 .home-title-accent {
  display: block;
  width: max-content;
  max-width: 100%;
}

.home-hero-copy h1 .home-title-main {
  color: #f5f9ff;
  text-shadow: 0 20px 52px rgba(0, 0, 0, 0.32);
}

.home-hero-copy h1 .home-title-accent {
  margin-top: 6px;
  padding-left: 0;
  color: #ffd36f;
  background: linear-gradient(90deg, #ffd46d 0%, #fff1b8 48%, #f0b83e 100%);
  background-clip: text;
  -webkit-background-clip: text;
  letter-spacing: -0.052em;
}

.home-hero-copy h1 .home-title-accent::before {
  content: "";
  display: inline-block;
  width: 74px;
  height: 8px;
  margin: 0 16px 12px 0;
  border-radius: 999px;
  vertical-align: middle;
  background: linear-gradient(90deg, #ffd66f, #f4b541);
  box-shadow: 0 0 24px rgba(247, 194, 80, 0.28);
}

.home-hero-copy h1 > span:not(.home-title-main):not(.home-title-accent)::before {
  display: none;
}

.home-hero-visual {
  transform: translateY(-6px);
}

.home-platform-base {
  position: absolute;
  z-index: 3;
  left: 32px;
  right: -4px;
  bottom: 22px;
  height: 250px;
  border-radius: 50%;
  border: 1px solid rgba(75, 151, 255, 0.3);
  background:
    radial-gradient(ellipse at center, rgba(0, 108, 255, 0.16), transparent 57%),
    linear-gradient(90deg, transparent 8%, rgba(65, 150, 255, 0.17) 50%, transparent 92%);
  transform: perspective(780px) rotateX(62deg) rotateZ(-4deg);
  box-shadow: 0 0 82px rgba(27, 120, 255, 0.16);
}

.home-platform-base::before,
.home-platform-base::after {
  content: "";
  position: absolute;
  inset: 18% 4%;
  border-radius: inherit;
  border: 1px solid rgba(101, 178, 255, 0.22);
}

.home-platform-base::after {
  inset: 34% 16%;
  border-color: rgba(255, 211, 111, 0.28);
}

.home-platform-base span {
  position: absolute;
  top: 50%;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ffd36f;
  box-shadow: 0 0 18px rgba(255, 211, 111, 0.8);
}

.home-platform-base span:nth-child(1) {
  left: 16%;
}

.home-platform-base span:nth-child(2) {
  left: 49%;
  background: #5fb8ff;
  box-shadow: 0 0 18px rgba(95, 184, 255, 0.8);
}

.home-platform-base span:nth-child(3) {
  right: 14%;
}

.home-orbit-dots {
  position: absolute;
  z-index: 7;
  inset: 0;
  pointer-events: none;
}

.home-orbit-dots i {
  position: absolute;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #6bc6ff;
  box-shadow: 0 0 18px rgba(107, 198, 255, 0.85);
}

.home-orbit-dots i:nth-child(1) {
  right: 138px;
  top: 110px;
}

.home-orbit-dots i:nth-child(2) {
  left: 190px;
  top: 210px;
  width: 6px;
  height: 6px;
  background: #ffd36f;
}

.home-orbit-dots i:nth-child(3) {
  right: 236px;
  bottom: 88px;
  width: 7px;
  height: 7px;
}

.home-orbit-dots i:nth-child(4) {
  left: 92px;
  bottom: 145px;
  width: 5px;
  height: 5px;
  opacity: 0.72;
}

.home-dragon-lineart {
  right: -18px;
  top: -34px;
  width: 720px;
  height: 350px;
  filter:
    drop-shadow(0 0 12px rgba(77, 181, 255, 0.52))
    drop-shadow(0 0 34px rgba(12, 98, 255, 0.34));
}

.home-dragon-stroke {
  stroke-width: 4.2;
}

.home-dragon-head {
  fill: rgba(21, 103, 224, 0.28);
  stroke: rgba(104, 200, 255, 0.82);
}

.home-dragon-scale-field {
  position: absolute;
  z-index: 4;
  right: 120px;
  top: 88px;
  width: 330px;
  height: 128px;
  pointer-events: none;
  transform: rotate(-9deg);
}

.home-dragon-scale-field span {
  position: absolute;
  width: 44px;
  height: 18px;
  border-radius: 50% 50% 42% 42%;
  border-top: 2px solid rgba(122, 208, 255, 0.42);
  background: linear-gradient(180deg, rgba(65, 155, 255, 0.18), transparent);
}

.home-dragon-scale-field span:nth-child(1) {
  left: 12px;
  top: 46px;
}

.home-dragon-scale-field span:nth-child(2) {
  left: 72px;
  top: 30px;
}

.home-dragon-scale-field span:nth-child(3) {
  left: 132px;
  top: 52px;
}

.home-dragon-scale-field span:nth-child(4) {
  left: 194px;
  top: 34px;
}

.home-dragon-scale-field span:nth-child(5) {
  right: 16px;
  top: 58px;
}

.home-world-map {
  right: 46px;
  bottom: 22px;
  width: 580px;
  height: 278px;
  opacity: 0.86;
}

.home-globe {
  left: -4px;
  bottom: -12px;
  width: 715px;
  height: 340px;
  border-color: rgba(77, 156, 255, 0.28);
}

.home-data-panel {
  top: 226px;
  right: 72px;
  border-color: rgba(125, 190, 255, 0.5);
  box-shadow:
    inset 0 1px rgba(255, 255, 255, 0.08),
    0 26px 70px rgba(0, 74, 190, 0.22);
}

.home-data-panel::after {
  content: "";
  display: block;
  height: 42px;
  margin-top: 16px;
  border-radius: 10px;
  background:
    linear-gradient(90deg, rgba(93, 184, 255, 0.58) 0 58%, transparent 58%),
    linear-gradient(90deg, rgba(255, 211, 111, 0.58) 0 36%, transparent 36%),
    linear-gradient(90deg, rgba(69, 137, 255, 0.48) 0 76%, transparent 76%);
  background-size: 100% 8px, 100% 8px, 100% 8px;
  background-position: 0 4px, 0 18px, 0 32px;
  background-repeat: no-repeat;
  opacity: 0.82;
}

.home-dragon-card {
  top: 300px;
  left: 70px;
  border-color: rgba(105, 174, 255, 0.42);
}

.home-visual-chip-a {
  left: 136px;
  top: 182px;
}

.home-visual-chip-b {
  right: 262px;
  bottom: 88px;
}

.home-commerce-dots {
  right: 58px;
  bottom: 64px;
}

.home-value-grid article::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.075), transparent 42%, rgba(65, 143, 255, 0.06));
}

.home-value-grid h3,
.home-value-grid p,
.home-value-icon {
  position: relative;
  z-index: 1;
}

.home-feature-strip article {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.025), transparent),
    radial-gradient(circle at 28px 30px, rgba(81, 163, 255, 0.1), transparent 28%);
}

.home-feature-strip article:hover {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), transparent),
    radial-gradient(circle at 28px 30px, rgba(81, 163, 255, 0.16), transparent 32%);
}

@media (max-width: 1320px) {
  .home-hero-copy h1 {
    font-size: clamp(42px, 3.7vw, 54px);
  }

  .home-dragon-lineart {
    right: -118px;
    width: 660px;
  }
}

@media (max-width: 1020px) {
  .home-hero-copy h1 .home-title-main,
  .home-hero-copy h1 .home-title-accent {
    width: auto;
  }

  .home-platform-base {
    left: 8px;
    right: 8px;
  }
}

@media (max-width: 680px) {
  .home-hero-copy h1 .home-title-accent::before {
    width: 48px;
    height: 6px;
    margin-bottom: 9px;
  }

  .home-platform-base,
  .home-dragon-scale-field,
  .home-orbit-dots {
    display: none;
  }
}

/* 官网首页第一层参考图校准：收紧首屏比例，强化龙头与地球平台 */
.home-layer-hero {
  min-height: 760px;
  padding-top: 58px;
  padding-bottom: 34px;
}

.home-hero-grid {
  min-height: 462px;
  align-items: start;
  grid-template-columns: minmax(610px, 0.51fr) minmax(650px, 0.49fr);
  gap: 44px;
}

.home-hero-copy {
  padding-top: 28px;
}

.home-eyebrow {
  margin-bottom: 18px;
  font-size: 13px;
  letter-spacing: 0.1em;
}

.home-hero-copy h1 {
  max-width: 780px;
  font-size: clamp(44px, 3.25vw, 62px);
  line-height: 1.12;
  letter-spacing: -0.04em;
}

.home-hero-copy h1 .home-title-main {
  white-space: nowrap;
}

.home-hero-copy h1 .home-title-main::before {
  content: none !important;
  display: none !important;
}

.home-hero-copy h1 .home-title-accent {
  white-space: nowrap;
  margin-top: 4px;
  letter-spacing: -0.048em;
  text-shadow: 0 16px 42px rgba(255, 197, 70, 0.12);
}

.home-hero-copy h1 .home-title-accent::before {
  width: 92px;
  height: 8px;
  margin-right: 16px;
  margin-bottom: 13px;
}

.home-subtitle {
  max-width: 680px;
  margin-top: 16px;
  font-size: 16px;
  line-height: 1.82;
}

.home-pain-tags {
  margin-top: 22px;
}

.home-pain-tags span {
  min-height: 32px;
  padding: 7px 15px;
  font-size: 13px;
}

.home-hero-actions {
  margin-top: 30px;
}

.home-layer-hero .home-btn {
  height: 50px;
  min-width: 150px;
}

.home-flow-line {
  margin-top: 22px;
  font-size: 15px;
}

.home-hero-visual {
  min-height: 480px;
  transform: translateY(-16px);
}

.home-dragon-lineart {
  right: -2px;
  top: -50px;
  width: 710px;
  height: 340px;
  opacity: 0.98;
}

.home-dragon-stroke {
  stroke-width: 4.8;
}

.home-dragon-head {
  stroke-width: 5.2;
  fill: rgba(25, 117, 240, 0.32);
}

.home-dragon-hair,
.home-dragon-whisker-line {
  stroke-width: 3;
  stroke: rgba(130, 215, 255, 0.54);
}

.home-dragon-silhouette {
  right: 76px;
  top: 20px;
  width: 500px;
  height: 190px;
  opacity: 0.62;
}

.home-dragon-scale-field {
  right: 118px;
  top: 72px;
}

.home-platform-base {
  left: 12px;
  right: 0;
  bottom: 20px;
  height: 230px;
  opacity: 0.88;
}

.home-globe {
  left: -20px;
  bottom: -4px;
  width: 705px;
  height: 318px;
  opacity: 0.88;
}

.home-world-map {
  right: 24px;
  bottom: 30px;
  width: 560px;
  height: 260px;
}

.home-dragon-orbit {
  right: -64px;
  bottom: 28px;
  width: 730px;
  height: 300px;
  opacity: 0.78;
}

.home-data-panel {
  top: 210px;
  right: 74px;
  min-width: 258px;
  padding: 22px 23px 19px;
}

.home-data-panel strong {
  font-size: 22px;
}

.home-data-panel::after {
  height: 34px;
  margin-top: 13px;
}

.home-dragon-card {
  left: 78px;
  top: 285px;
  min-width: 220px;
  padding: 17px 22px;
}

.home-dragon-card strong {
  font-size: 19px;
}

.home-visual-chip-a {
  left: 128px;
  top: 156px;
}

.home-visual-chip-b {
  right: 250px;
  bottom: 80px;
}

.home-commerce-dots {
  right: 54px;
  bottom: 64px;
}

.home-commerce-dots b {
  width: 43px;
  height: 43px;
  border-radius: 12px;
}

.home-value-grid {
  margin-top: 42px;
  gap: 24px;
}

.home-value-grid article {
  min-height: 150px;
  padding: 29px 30px 25px 112px;
  border-radius: 10px;
}

.home-value-icon {
  left: 30px;
  top: 31px;
  width: 62px;
  height: 62px;
}

.home-value-grid h3 {
  margin-bottom: 8px;
  font-size: 24px;
}

.home-value-grid p {
  font-size: 14px;
  line-height: 1.7;
}

.home-layer-hero .home-section-head.compact {
  margin-top: 34px;
}

.home-layer-hero .home-section-head.compact h2 {
  font-size: 31px;
}

.home-feature-strip {
  margin-top: 18px;
}

.home-feature-strip article {
  min-height: 104px;
  padding: 22px 18px 18px 64px;
}

.home-feature-strip article::before {
  left: 22px;
  top: 26px;
  width: 28px;
  height: 28px;
}

.home-feature-strip span {
  font-size: 14px;
}

.home-feature-strip p {
  max-width: 190px;
  font-size: 12px;
  line-height: 1.55;
}

@media (max-width: 1320px) {
  .home-hero-copy h1 .home-title-main,
  .home-hero-copy h1 .home-title-accent {
    white-space: normal;
  }
}

/* 水墨黑龙科技风首页：主视觉图片插槽 + 水墨兜底层 */
.home-page {
  background:
    radial-gradient(circle at 74% 16%, rgba(0, 101, 230, 0.28), transparent 30%),
    radial-gradient(circle at 14% 12%, rgba(201, 158, 75, 0.1), transparent 20%),
    linear-gradient(120deg, #01050d 0%, #031224 48%, #061f3d 100%);
}

.home-page::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 82% 16%, rgba(26, 105, 217, 0.22), transparent 28%),
    radial-gradient(ellipse at 5% 42%, rgba(0, 0, 0, 0.34), transparent 42%);
  mix-blend-mode: screen;
  opacity: 0.72;
}

.home-hero-visual {
  overflow: visible;
}

.home-ink-wash {
  position: absolute;
  z-index: 0;
  right: -52px;
  top: -86px;
  width: 780px;
  height: 360px;
  pointer-events: none;
  opacity: 0.9;
  background:
    radial-gradient(ellipse at 69% 37%, rgba(9, 84, 196, 0.34), transparent 34%),
    radial-gradient(ellipse at 53% 48%, rgba(31, 132, 255, 0.24), transparent 35%),
    radial-gradient(ellipse at 38% 58%, rgba(0, 10, 22, 0.78), transparent 42%),
    linear-gradient(112deg, transparent 0 18%, rgba(2, 19, 43, 0.9) 31%, rgba(20, 112, 235, 0.28) 52%, transparent 78%);
  clip-path: polygon(0 64%, 15% 39%, 32% 45%, 45% 20%, 64% 16%, 88% 0, 100% 8%, 86% 32%, 95% 54%, 72% 53%, 62% 84%, 42% 67%, 24% 92%, 18% 67%);
  filter: blur(10px) saturate(1.1);
}

.home-ink-wash::before,
.home-ink-wash::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.home-ink-wash::before {
  right: 28px;
  top: 40px;
  width: 260px;
  height: 130px;
  border-top: 2px solid rgba(126, 213, 255, 0.38);
  border-radius: 50%;
  transform: rotate(-14deg);
}

.home-ink-wash::after {
  right: 95px;
  top: 116px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ffd46e;
  box-shadow: 0 0 26px rgba(255, 212, 110, 0.9);
}

.home-hero-dragon-image {
  position: absolute;
  z-index: 1;
  right: -26px;
  top: -64px;
  width: 760px;
  height: 360px;
  pointer-events: none;
  background:
    url("/public/images/home/hero-dragon.png?v=ink-v1") center / contain no-repeat,
    radial-gradient(ellipse at 62% 40%, rgba(73, 167, 255, 0.22), transparent 35%),
    linear-gradient(115deg, transparent 8%, rgba(0, 8, 19, 0.46) 28%, rgba(37, 143, 255, 0.16) 63%, transparent 90%);
  opacity: 0.98;
  filter: drop-shadow(0 0 42px rgba(31, 130, 255, 0.24));
}

.home-dragon-lineart {
  z-index: 6;
  stroke-dasharray: 880;
  stroke-dashoffset: 0;
}

.home-dragon-stroke {
  stroke: rgba(99, 196, 255, 0.74);
}

.home-dragon-head {
  fill: rgba(8, 22, 48, 0.34);
}

.home-world-map,
.home-globe,
.home-platform-base {
  filter: drop-shadow(0 0 28px rgba(15, 106, 240, 0.2));
}

.home-data-panel,
.home-dragon-card,
.home-visual-chip,
.home-commerce-dots b {
  background:
    linear-gradient(145deg, rgba(6, 32, 72, 0.9), rgba(2, 15, 34, 0.78)),
    radial-gradient(circle at 20% 0%, rgba(91, 184, 255, 0.14), transparent 40%);
}

.home-btn-primary,
.home-nav-cta {
  background: linear-gradient(135deg, #fff0b7 0%, #ffc85a 48%, #e4a333 100%);
}

.home-value-grid article,
.home-feature-strip {
  backdrop-filter: blur(10px);
}

.home-value-grid article {
  border-color: rgba(92, 164, 255, 0.5);
}

.home-value-grid article:nth-child(3) {
  border-color: rgba(255, 207, 108, 0.38);
}

.home-feature-strip article::before {
  box-shadow:
    0 0 24px rgba(80, 168, 255, 0.2),
    inset 0 1px rgba(255, 255, 255, 0.34);
}

/* 首页资源预览：只展示大类和起步价，占位价不写死 */
.home-layer-hero #resources {
  margin-top: 34px;
}

.home-resource-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.home-resource-grid article {
  min-height: 168px;
  border-color: rgba(91, 164, 255, 0.38);
  background:
    linear-gradient(145deg, rgba(8, 32, 72, 0.82), rgba(4, 17, 39, 0.78)),
    radial-gradient(circle at 92% 8%, rgba(255, 211, 111, 0.12), transparent 34%);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.05);
}

.home-resource-grid article::before {
  content: "";
  display: block;
  width: 34px;
  height: 4px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: linear-gradient(90deg, #ffd36f, transparent);
}

.home-resource-grid strong {
  display: inline-flex;
  margin: 14px 0 16px;
  color: #ffd36f;
  font-size: 16px;
  letter-spacing: 0.02em;
}

.home-resource-grid button,
.home-resource-more {
  border-radius: 8px;
  font-weight: 900;
}

.home-resource-more {
  width: fit-content;
  margin: 22px auto 0;
  padding: 12px 28px;
  display: flex;
  color: #ffd36f;
  text-decoration: none;
  border: 1px solid rgba(255, 211, 111, 0.46);
  background: rgba(5, 20, 46, 0.68);
}

@media (max-width: 1020px) {
  .home-resource-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .home-resource-grid {
    grid-template-columns: 1fr;
  }
}

/* 官网首页第一层首屏高度校准：让价值卡与上线功能更接近参考图完整露出 */
.home-layer-hero {
  min-height: 700px;
  padding-top: 44px;
  padding-bottom: 28px;
}

.home-hero-grid {
  min-height: 430px;
}

.home-hero-copy {
  padding-top: 18px;
}

.home-eyebrow {
  margin-bottom: 14px;
}

.home-hero-copy h1 {
  margin-bottom: 18px;
  font-size: clamp(42px, 2.85vw, 55px);
}

.home-subtitle {
  margin-top: 12px;
  max-width: 650px;
  font-size: 15px;
  line-height: 1.75;
}

.home-pain-tags {
  margin-top: 18px;
}

.home-hero-actions {
  margin-top: 24px;
}

.home-layer-hero .home-btn {
  height: 46px;
  min-width: 146px;
}

.home-flow-line {
  margin-top: 18px;
}

.home-hero-visual {
  min-height: 430px;
  transform: translateY(-20px);
}

.home-dragon-lineart {
  top: -62px;
  width: 690px;
  height: 330px;
}

.home-platform-base {
  bottom: -4px;
  height: 214px;
}

.home-globe {
  bottom: -26px;
  height: 300px;
}

.home-world-map {
  bottom: 10px;
  height: 238px;
}

.home-dragon-orbit {
  bottom: 4px;
  height: 282px;
}

.home-data-panel {
  top: 185px;
}

.home-dragon-card {
  top: 258px;
}

.home-visual-chip-a {
  top: 134px;
}

.home-visual-chip-b {
  bottom: 52px;
}

.home-commerce-dots {
  bottom: 40px;
}

.home-value-grid {
  margin-top: 28px;
}

.home-value-grid article {
  min-height: 134px;
  padding-top: 24px;
  padding-bottom: 20px;
}

.home-value-icon {
  top: 26px;
}

.home-layer-hero .home-section-head.compact {
  margin-top: 25px;
}

.home-layer-hero .home-section-head.compact h2 {
  font-size: 28px;
}

.home-feature-strip {
  margin-top: 14px;
}

.home-feature-strip article {
  min-height: 92px;
  padding-top: 18px;
  padding-bottom: 15px;
}

.home-feature-strip article::before {
  top: 22px;
}

.home-feature-strip p {
  line-height: 1.45;
}

/* Hero right visual: use the supplied ink dragon artwork directly. */
.home-hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: clamp(360px, 36vw, 620px);
}

.home-hero-visual .home-ink-wash {
  z-index: 0;
  right: 2%;
  top: 4%;
  width: 92%;
  height: 80%;
  opacity: 0.28;
  filter: blur(28px) saturate(1.06);
}

.home-hero-visual .home-ink-wash::before,
.home-hero-visual .home-ink-wash::after {
  display: none;
}

.home-hero-visual .home-hero-dragon-image {
  position: relative;
  z-index: 2;
  inset: auto;
  width: min(100%, 760px);
  max-width: 100%;
  height: auto;
  max-height: min(620px, 52vw);
  object-fit: contain;
  object-position: center right;
  display: block;
  pointer-events: none;
  background: none;
  opacity: 1;
  filter:
    drop-shadow(0 34px 80px rgba(0, 0, 0, 0.34))
    drop-shadow(0 0 36px rgba(39, 133, 255, 0.18));
}

@media (max-width: 980px) {
  .home-hero-visual {
    min-height: auto;
    margin-top: 26px;
  }

  .home-hero-visual .home-hero-dragon-image {
    width: min(100%, 680px);
    max-height: none;
    object-position: center;
  }
}

/* 官网首页 V2：水墨黑龙 + 深色科技 SaaS */
body.ink-home-page {
  margin: 0;
  min-height: 100vh;
  color: #f6f8ff;
  background:
    radial-gradient(circle at 78% 8%, rgba(31, 105, 211, 0.38), transparent 29%),
    radial-gradient(circle at 18% 8%, rgba(8, 16, 28, 0.9), transparent 34%),
    linear-gradient(115deg, #030812 0%, #081523 40%, #061b34 72%, #020711 100%);
  font-family: "Microsoft YaHei", "PingFang SC", "Noto Sans SC", sans-serif;
  overflow-x: hidden;
}

.ink-home-page *,
.ink-home-page *::before,
.ink-home-page *::after {
  box-sizing: border-box;
}

.ink-home-canvas {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background:
    linear-gradient(rgba(99, 171, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(99, 171, 255, 0.03) 1px, transparent 1px);
  background-size: 72px 72px;
}

.ink-home-canvas::before,
.ink-home-canvas::after {
  content: "";
  position: fixed;
  pointer-events: none;
  z-index: 0;
}

.ink-home-canvas::before {
  inset: 0;
  background:
    radial-gradient(circle at 68% 28%, rgba(23, 117, 255, 0.18), transparent 34%),
    radial-gradient(circle at 12% 58%, rgba(0, 0, 0, 0.36), transparent 38%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.42), transparent 40%, rgba(0, 0, 0, 0.22));
}

.ink-home-canvas::after {
  width: 620px;
  height: 620px;
  right: -180px;
  top: 220px;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(35, 119, 255, 0.16), transparent 58%),
    conic-gradient(from 28deg, transparent, rgba(200, 151, 63, 0.18), transparent 28%, rgba(52, 146, 255, 0.2), transparent 52%);
  filter: blur(6px);
  opacity: 0.72;
}

.ink-home-content,
.ink-home-nav-inner {
  position: relative;
  z-index: 2;
  width: min(1480px, calc(100vw - 96px));
  margin: 0 auto;
}

.ink-home-nav {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(198, 220, 255, 0.1);
  background: rgba(2, 8, 18, 0.72);
  backdrop-filter: blur(18px);
}

.ink-home-nav-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.ink-home-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #f8fbff;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.ink-home-brand-mark {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #f4c463;
  font-size: 19px;
  font-weight: 900;
  background:
    radial-gradient(circle at 35% 28%, rgba(255, 228, 154, 0.18), transparent 42%),
    linear-gradient(145deg, rgba(11, 22, 38, 0.98), rgba(2, 8, 16, 0.88));
  border: 1px solid rgba(242, 196, 99, 0.5);
  box-shadow: 0 0 28px rgba(218, 158, 55, 0.16);
}

.ink-home-brand-text {
  font-size: 20px;
}

.ink-home-nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  flex: 1;
}

.ink-home-nav-links a {
  position: relative;
  color: rgba(232, 240, 255, 0.84);
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
  transition: color 0.2s ease;
}

.ink-home-nav-links a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -12px;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, #f0bd55, #ffe29a);
  transform: translateX(-50%);
  transition: width 0.2s ease;
}

.ink-home-nav-links a:hover,
.ink-home-nav-links a.active {
  color: #fff;
}

.ink-home-nav-links a:hover::after,
.ink-home-nav-links a.active::after {
  width: 18px;
}

.ink-home-nav-cta,
.ink-home-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 24px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 800;
  white-space: nowrap;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.ink-home-nav-cta,
.ink-home-btn-primary {
  color: #1b1203;
  background: linear-gradient(135deg, #fff0b9 0%, #ffc85d 48%, #dc9a2f 100%);
  box-shadow: 0 16px 36px rgba(211, 145, 34, 0.22);
}

.ink-home-nav-cta:hover,
.ink-home-btn:hover {
  transform: translateY(-2px);
}

.ink-home-btn-ghost {
  color: #f2f7ff;
  border: 1px solid rgba(132, 184, 255, 0.4);
  background: rgba(5, 18, 38, 0.48);
}

.ink-home-hero {
  position: relative;
  min-height: 780px;
  padding: 126px 0 84px;
  overflow: hidden;
}

.ink-home-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg, transparent 0%, transparent 64%, rgba(2, 8, 18, 0.8) 90%, #031020 100%),
    linear-gradient(90deg, rgba(2, 7, 15, 0.96) 0%, rgba(3, 9, 19, 0.88) 31%, rgba(4, 13, 27, 0.48) 54%, rgba(3, 9, 18, 0.28) 100%),
    radial-gradient(ellipse at 25% 30%, rgba(0, 0, 0, 0.18), transparent 42%);
}

.ink-home-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.ink-home-hero-dragon {
  position: absolute;
  top: 42px;
  right: max(-120px, calc((100vw - 1480px) / 2 - 190px));
  width: min(62vw, 1080px);
  height: min(720px, 72vw);
  background: url("/public/images/home/hero-dragon.png?v=ink-v2") center right / contain no-repeat;
  opacity: 0.95;
  filter:
    saturate(0.98)
    contrast(1.08)
    drop-shadow(0 40px 90px rgba(0, 0, 0, 0.46));
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, transparent 17%, #000 31%, #000 74%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, transparent 17%, #000 31%, #000 74%, transparent 100%);
}

.ink-home-hero-ink {
  position: absolute;
  right: 15vw;
  top: 70px;
  width: 620px;
  height: 360px;
  background:
    radial-gradient(ellipse at 55% 42%, rgba(0, 0, 0, 0.42), transparent 52%),
    radial-gradient(ellipse at 75% 28%, rgba(71, 149, 255, 0.18), transparent 45%);
  filter: blur(22px);
  mix-blend-mode: screen;
  opacity: 0.76;
}

.ink-home-hero-orbit {
  position: absolute;
  right: 8vw;
  bottom: 110px;
  width: 560px;
  height: 160px;
  border-radius: 50%;
  border: 1px solid rgba(100, 178, 255, 0.2);
  box-shadow:
    0 0 60px rgba(46, 145, 255, 0.14),
    inset 0 0 44px rgba(47, 122, 255, 0.08);
  transform: rotate(-4deg);
  opacity: 0.72;
}

.ink-home-hero-orbit::before,
.ink-home-hero-orbit::after {
  content: "";
  position: absolute;
  inset: 22px 26px;
  border-radius: 50%;
  border: 1px solid rgba(217, 168, 77, 0.18);
}

.ink-home-hero-orbit::after {
  inset: 52px 70px;
  border-color: rgba(91, 179, 255, 0.2);
}

.ink-home-hero-content {
  min-height: 570px;
  display: flex;
  align-items: center;
}

.ink-home-hero-copy {
  width: min(900px, 62%);
  padding: 12px 0;
}

.ink-home-eyebrow,
.ink-home-section-head p,
.ink-home-cta-panel > div > p {
  margin: 0 0 18px;
  color: #f3c35e;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.ink-home-hero h1 {
  margin: 0;
  max-width: 900px;
  color: #f6f9ff;
  font-family: "Microsoft YaHei UI", "Microsoft YaHei", "PingFang SC", sans-serif;
  font-size: clamp(44px, 3.1vw, 60px);
  line-height: 1.16;
  letter-spacing: -0.045em;
  text-shadow: 0 18px 46px rgba(0, 0, 0, 0.28);
}

.ink-home-hero h1 span {
  color: #ffd46f;
  text-shadow: 0 0 28px rgba(236, 177, 70, 0.18);
}

.ink-home-subtitle {
  width: min(680px, 100%);
  margin: 24px 0 0;
  color: rgba(225, 236, 255, 0.9);
  font-size: 17px;
  line-height: 1.9;
}

.ink-home-pain-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.ink-home-pain-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 15px;
  color: #eaf4ff;
  font-size: 13px;
  font-weight: 700;
  border: 1px solid rgba(113, 181, 255, 0.34);
  border-radius: 999px;
  background:
    radial-gradient(circle at 18% 50%, rgba(255, 206, 99, 0.18), transparent 22%),
    rgba(3, 17, 35, 0.56);
}

.ink-home-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.ink-home-flow {
  margin: 22px 0 0;
  color: rgba(231, 239, 255, 0.88);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.ink-home-section {
  position: relative;
  z-index: 2;
  padding: 56px 0;
}

.ink-home-values {
  margin-top: -72px;
}

.ink-home-section-head {
  margin-bottom: 26px;
  text-align: center;
}

.ink-home-section-head h2 {
  margin: 0;
  color: #f7fbff;
  font-size: clamp(28px, 3vw, 44px);
  letter-spacing: -0.04em;
}

.ink-home-section-head span {
  display: block;
  max-width: 760px;
  margin: 12px auto 0;
  color: rgba(220, 231, 250, 0.76);
  line-height: 1.8;
}

.ink-home-value-grid,
.ink-home-feature-grid,
.ink-home-resource-grid {
  display: grid;
  gap: 18px;
}

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

.ink-home-value-grid article,
.ink-home-feature-grid article,
.ink-home-resource-grid article,
.ink-home-cta-panel {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(122, 169, 221, 0.24);
  background:
    linear-gradient(145deg, rgba(7, 24, 46, 0.78), rgba(2, 9, 19, 0.72)),
    radial-gradient(circle at 18% 0%, rgba(255, 200, 90, 0.1), transparent 34%),
    radial-gradient(circle at 90% 20%, rgba(41, 135, 255, 0.1), transparent 36%);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(14px);
}

.ink-home-value-grid article::after,
.ink-home-feature-grid article::after,
.ink-home-resource-grid article::after {
  content: "";
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(230, 177, 77, 0.55), transparent);
}

.ink-home-value-grid article {
  min-height: 210px;
  padding: 34px 34px 30px;
  border-radius: 22px;
}

.ink-home-card-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  border-radius: 50%;
  color: #ffd66e;
  font-size: 28px;
  font-weight: 900;
  background:
    radial-gradient(circle at 38% 30%, rgba(255, 220, 130, 0.35), transparent 38%),
    linear-gradient(145deg, rgba(21, 73, 131, 0.78), rgba(10, 25, 44, 0.9));
  box-shadow: 0 0 34px rgba(60, 151, 255, 0.16);
}

.ink-home-value-grid h3,
.ink-home-feature-grid h3,
.ink-home-resource-grid h3 {
  margin: 0;
  color: #fff;
  font-size: 22px;
}

.ink-home-value-grid p,
.ink-home-feature-grid p,
.ink-home-resource-grid p {
  margin: 14px 0 0;
  color: rgba(218, 230, 248, 0.78);
  line-height: 1.75;
  font-size: 14px;
}

.ink-home-features,
.ink-home-resources {
  padding-top: 74px;
}

.ink-home-feature-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.ink-home-feature-grid article {
  min-height: 190px;
  padding: 26px 24px;
  border-radius: 18px;
}

.ink-home-feature-grid article span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 28px;
  margin-bottom: 22px;
  color: #ffd66e;
  font-size: 12px;
  font-weight: 900;
  border: 1px solid rgba(229, 177, 75, 0.34);
  border-radius: 999px;
  background: rgba(11, 31, 55, 0.7);
}

.ink-home-feature-grid h3 {
  font-size: 17px;
}

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

.ink-home-resource-grid article {
  min-height: 230px;
  padding: 28px;
  border-radius: 20px;
}

.ink-home-resource-grid strong {
  display: block;
  margin-top: 22px;
  color: #ffd66e;
  font-size: 24px;
  letter-spacing: -0.03em;
}

.ink-home-resource-grid button {
  margin-top: 20px;
  min-height: 40px;
  padding: 0 18px;
  border: 0;
  border-radius: 10px;
  color: #1b1203;
  font-weight: 900;
  cursor: default;
  background: linear-gradient(135deg, #fff0b9, #ffc65a);
}

.ink-home-cta {
  padding-bottom: 92px;
}

.ink-home-cta-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 38px 42px;
  border-radius: 26px;
}

.ink-home-cta-panel h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(28px, 2.6vw, 42px);
  letter-spacing: -0.04em;
}

.ink-home-cta-panel span {
  display: block;
  margin-top: 12px;
  color: rgba(222, 232, 249, 0.78);
}

.ink-home-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

@media (max-width: 1180px) {
  .ink-home-nav-links {
    gap: 18px;
  }

  .ink-home-hero-copy {
    width: min(720px, 68%);
  }

  .ink-home-hero-dragon {
    width: 72vw;
    right: -210px;
    opacity: 0.72;
  }

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

@media (max-width: 900px) {
  .ink-home-content,
  .ink-home-nav-inner {
    width: min(100% - 32px, 1480px);
  }

  .ink-home-nav-inner {
    min-height: auto;
    padding: 16px 0;
    align-items: flex-start;
  }

  .ink-home-nav-links {
    display: none;
  }

  .ink-home-hero {
    min-height: auto;
    padding: 86px 0 70px;
  }

  .ink-home-hero::before {
    background: linear-gradient(180deg, rgba(2, 7, 15, 0.96), rgba(2, 7, 15, 0.72));
  }

  .ink-home-hero-dragon {
    top: 210px;
    right: -150px;
    width: 105vw;
    height: 500px;
    opacity: 0.42;
  }

  .ink-home-hero-content {
    min-height: auto;
  }

  .ink-home-hero-copy {
    width: 100%;
  }

  .ink-home-hero h1 {
    font-size: clamp(38px, 11vw, 58px);
  }

  .ink-home-actions,
  .ink-home-cta-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .ink-home-btn,
  .ink-home-nav-cta {
    width: 100%;
  }

  .ink-home-value-grid,
  .ink-home-feature-grid,
  .ink-home-resource-grid {
    grid-template-columns: 1fr;
  }

  .ink-home-values {
    margin-top: 0;
  }

  .ink-home-cta-panel {
    align-items: stretch;
    flex-direction: column;
    padding: 30px 24px;
  }
}

/* Final ink Hero: black-gold theme artwork as the real background layer. */
.ink-hero {
  position: relative;
  min-height: clamp(720px, 82vh, 860px);
  overflow: visible;
  isolation: isolate;
  padding: 128px 0 96px;
  background: #17100a;
}

.ink-hero-bg {
  position: absolute;
  inset: 0 0 -260px;
  z-index: 0;
  background-image: url("/public/images/home/ink-home-bg-v4.png?v=home-bg-v4");
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  transform: scale(1.01);
}

.ink-hero-overlay {
  position: absolute;
  inset: 0 0 -260px;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(14, 9, 4, 0.82) 0%, rgba(16, 10, 5, 0.74) 30%, rgba(22, 15, 8, 0.46) 54%, rgba(18, 12, 7, 0.28) 100%),
    linear-gradient(180deg, rgba(9, 6, 3, 0.38) 0%, rgba(9, 6, 3, 0.18) 48%, rgba(5, 4, 3, 0.86) 100%),
    radial-gradient(circle at 26% 38%, rgba(198, 143, 45, 0.14), transparent 30%);
}

.ink-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(rgba(244, 196, 99, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(244, 196, 99, 0.028) 1px, transparent 1px);
  background-size: 86px 86px;
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.45), transparent 64%);
}

.ink-hero::before {
  -webkit-user-select: none;
  user-select: none;
}

.ink-hero-inner {
  position: relative;
  z-index: 3;
  min-height: calc(clamp(720px, 82vh, 860px) - 224px);
  display: grid;
  grid-template-columns: minmax(520px, 0.48fr) minmax(420px, 0.52fr);
  align-items: center;
  gap: 28px;
}

.ink-hero-copy {
  max-width: 760px;
}

.ink-hero-copy .ink-home-eyebrow {
  color: #dba94c;
  text-shadow: 0 0 26px rgba(214, 158, 63, 0.16);
}

.ink-hero h1 {
  margin: 0;
  color: #f7f2e8;
  font-size: clamp(44px, 3.4vw, 66px);
  line-height: 1.16;
  letter-spacing: -0.052em;
  text-shadow: 0 22px 54px rgba(0, 0, 0, 0.42);
}

.ink-hero h1 span {
  display: inline-block;
  color: transparent;
  background: linear-gradient(92deg, #fff0b7 0%, #d6a345 34%, #ffdb7b 66%, #a66f1f 100%);
  -webkit-background-clip: text;
  background-clip: text;
  text-shadow: none;
}

.ink-hero .ink-home-subtitle {
  max-width: 640px;
  color: rgba(237, 231, 216, 0.84);
}

.ink-hero .ink-home-pain-tags span {
  color: rgba(246, 237, 218, 0.92);
  border-color: rgba(206, 156, 68, 0.32);
  background:
    radial-gradient(circle at 18% 50%, rgba(214, 164, 76, 0.16), transparent 25%),
    rgba(9, 9, 8, 0.54);
}

.ink-hero .ink-home-btn-primary {
  background: linear-gradient(135deg, #fff1bd 0%, #dba345 48%, #9f681f 100%);
  box-shadow: 0 18px 42px rgba(169, 111, 31, 0.22);
}

.ink-hero .ink-home-btn-ghost {
  border-color: rgba(210, 161, 72, 0.34);
  background: rgba(6, 7, 8, 0.48);
}

.ink-hero .ink-home-flow {
  color: rgba(237, 229, 210, 0.82);
}

.ink-hero-visual-space {
  min-height: 420px;
}

.ink-value-cards {
  margin-top: -72px;
}

.ink-value-cards .ink-home-section-head p,
.ink-home-features .ink-home-section-head p,
.ink-home-resources .ink-home-section-head p,
.ink-home-cta-panel > div > p {
  color: #dba94c;
}

.ink-value-cards .ink-home-value-grid article,
.ink-home-features .ink-home-feature-grid article,
.ink-home-resources .ink-home-resource-grid article,
.ink-home-cta-panel {
  border-color: rgba(204, 157, 75, 0.22);
  background:
    linear-gradient(145deg, rgba(18, 16, 12, 0.82), rgba(4, 7, 11, 0.76)),
    radial-gradient(circle at 18% 0%, rgba(218, 165, 72, 0.1), transparent 36%),
    radial-gradient(circle at 92% 12%, rgba(74, 111, 140, 0.08), transparent 38%);
}

.ink-value-cards .ink-home-card-icon,
.ink-home-features .ink-home-feature-grid article span {
  color: #f0c46a;
  border-color: rgba(221, 172, 85, 0.24);
  background:
    radial-gradient(circle at 38% 30%, rgba(255, 225, 139, 0.28), transparent 38%),
    linear-gradient(145deg, rgba(52, 40, 22, 0.84), rgba(8, 10, 12, 0.9));
}

@media (max-width: 1180px) {
  .ink-hero-inner {
    grid-template-columns: minmax(0, 0.58fr) minmax(300px, 0.42fr);
  }

  .ink-hero-bg {
    background-position: 64% center;
  }
}

@media (max-width: 900px) {
  .ink-hero {
    min-height: auto;
    padding: 88px 0 72px;
  }

  .ink-hero-bg {
    background-position: 66% top;
    opacity: 0.42;
  }

  .ink-hero-overlay {
    background:
      linear-gradient(180deg, rgba(2, 4, 8, 0.96) 0%, rgba(3, 5, 9, 0.82) 50%, rgba(2, 4, 8, 0.96) 100%);
  }

  .ink-hero-inner {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .ink-hero h1 {
    font-size: clamp(38px, 10vw, 56px);
  }

  .ink-hero-visual-space {
    display: none;
  }

  .ink-value-cards {
    margin-top: 0;
  }
}

/* 首页黑金水墨融合修复：导航、Hero 过渡与三大价值卡片 */
body.ink-home-page {
  background:
    radial-gradient(circle at 72% 8%, rgba(170, 115, 32, 0.15), transparent 30%),
    radial-gradient(circle at 8% 44%, rgba(45, 30, 10, 0.24), transparent 38%),
    linear-gradient(115deg, #020303 0%, #080806 42%, #050404 100%);
}

.ink-home-canvas {
  background:
    linear-gradient(rgba(225, 172, 73, 0.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(225, 172, 73, 0.018) 1px, transparent 1px),
    radial-gradient(circle at 70% 0%, rgba(184, 128, 39, 0.09), transparent 34%);
  background-size: 86px 86px, 86px 86px, auto;
}

body.ink-home-page .ink-home-canvas::before,
body.ink-home-page .ink-home-canvas::after {
  display: none;
}

.ink-home-nav {
  background:
    linear-gradient(180deg, rgba(6, 6, 5, 0.74), rgba(5, 5, 5, 0.48));
  border-bottom: 1px solid rgba(191, 142, 61, 0.12);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(12px);
}

.ink-home-nav::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 1px;
  transform: scaleY(0.55);
  transform-origin: bottom;
  background: linear-gradient(90deg, transparent, rgba(214, 160, 67, 0.28), transparent);
}

.ink-home-brand-mark {
  color: #f0bd61;
  border-color: rgba(210, 160, 75, 0.58);
  background:
    radial-gradient(circle at 35% 28%, rgba(255, 224, 138, 0.16), transparent 42%),
    linear-gradient(145deg, rgba(24, 18, 10, 0.98), rgba(5, 5, 4, 0.9));
  box-shadow: 0 0 28px rgba(203, 144, 50, 0.14);
}

.ink-home-nav-links a {
  color: rgba(239, 231, 212, 0.84);
}

.ink-home-nav-links a:hover,
.ink-home-nav-links a.active {
  color: #fff8e8;
}

.ink-home-nav-links a::after {
  background: linear-gradient(90deg, #b67a25, #ffe09a, #b67a25);
}

.ink-hero::after {
  display: none;
}

.ink-value-cards {
  position: relative;
  overflow: visible;
  margin-top: -148px;
  padding-top: 116px;
  background: transparent;
}

.ink-value-cards::before {
  content: "";
  position: absolute;
  inset: -260px 0 -64px;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(4, 4, 3, 0) 0%, rgba(5, 4, 3, 0.02) 28%, rgba(5, 4, 3, 0.26) 62%, rgba(4, 4, 3, 0.78) 100%),
    linear-gradient(90deg, rgba(5, 4, 3, 0.3) 0%, rgba(5, 4, 3, 0.04) 48%, rgba(5, 4, 3, 0.24) 100%),
    radial-gradient(circle at 78% 16%, rgba(201, 147, 53, 0.1), transparent 34%);
  opacity: 0.74;
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.08) 18%, rgba(0, 0, 0, 0.72) 56%, #000 100%);
  mask-image: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.08) 18%, rgba(0, 0, 0, 0.72) 56%, #000 100%);
}

.ink-value-cards::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(231, 179, 79, 0.014) 1px, transparent 1px),
    linear-gradient(90deg, rgba(231, 179, 79, 0.01) 1px, transparent 1px);
  background-size: 92px 92px;
  opacity: 0.3;
  mask-image: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.42) 34%, rgba(0, 0, 0, 0.82) 100%);
}

.ink-value-cards .ink-home-section-head {
  position: relative;
  z-index: 2;
}

.ink-value-cards .ink-home-section-head h2 {
  color: #f8f0dc;
}

.ink-value-cards .ink-home-value-grid {
  position: relative;
  z-index: 2;
}

.ink-value-cards .ink-home-value-grid article {
  display: grid;
  grid-template-columns: 116px minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  min-height: 220px;
  padding: 30px;
  border: 1px solid rgba(211, 165, 82, 0.28);
  border-radius: 24px;
  background:
    linear-gradient(145deg, rgba(15, 12, 7, 0.78), rgba(8, 7, 5, 0.66)),
    radial-gradient(circle at 18% 10%, rgba(226, 171, 78, 0.16), transparent 40%),
    radial-gradient(circle at 88% 18%, rgba(101, 76, 39, 0.2), transparent 40%);
  box-shadow:
    0 18px 60px rgba(0, 0, 0, 0.36),
    inset 0 1px 0 rgba(255, 220, 150, 0.06);
  backdrop-filter: blur(10px);
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.ink-value-cards .ink-home-value-grid article:hover {
  transform: translateY(-5px);
  border-color: rgba(234, 188, 100, 0.5);
  box-shadow:
    0 24px 72px rgba(0, 0, 0, 0.44),
    0 0 34px rgba(174, 117, 37, 0.1),
    inset 0 1px 0 rgba(255, 220, 150, 0.08);
}

.ink-value-cards .ink-home-value-grid article::after {
  left: 30px;
  right: 30px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(224, 172, 83, 0.58), transparent);
}

.ink-value-art {
  width: 104px;
  height: 104px;
  padding: 7px;
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid rgba(220, 171, 88, 0.42);
  background:
    linear-gradient(145deg, rgba(13, 10, 6, 0.96), rgba(3, 3, 3, 0.84)),
    radial-gradient(circle at 40% 20%, rgba(228, 177, 85, 0.12), transparent 46%);
  box-shadow:
    0 18px 42px rgba(0, 0, 0, 0.36),
    inset 0 1px 0 rgba(255, 230, 170, 0.08),
    inset 0 -18px 30px rgba(0, 0, 0, 0.22);
}

.ink-value-art img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
  filter: saturate(0.95) contrast(1.08) brightness(0.92);
}

.ink-value-copy h3 {
  margin: 0;
  color: #fff3d6;
  font-size: 24px;
  letter-spacing: -0.02em;
}

.ink-value-copy p {
  margin: 12px 0 0;
  color: rgba(232, 222, 199, 0.84);
  line-height: 1.78;
  font-size: 14px;
}

.ink-value-cards .ink-home-card-icon {
  display: none;
}

@media (max-width: 980px) {
  .ink-value-cards .ink-home-value-grid article {
    grid-template-columns: 100px minmax(0, 1fr);
    gap: 18px;
  }

  .ink-value-art {
    width: 94px;
    height: 94px;
  }
}

@media (max-width: 640px) {
  .ink-value-cards .ink-home-value-grid article {
    grid-template-columns: 1fr;
  }

  .ink-value-art {
    width: 96px;
    height: 96px;
  }
}

/* 首页下半部分：黑金水墨延展背景、功能区、资源区、CTA、Footer */
.ink-lower-page {
  position: relative;
  z-index: 2;
  overflow: visible;
  margin-top: -42px;
  padding-top: 42px;
  background:
    linear-gradient(180deg, rgba(4, 4, 3, 0.46) 0%, rgba(5, 4, 3, 0.66) 30%, rgba(3, 3, 3, 0.88) 100%),
    radial-gradient(circle at 82% 18%, rgba(200, 143, 48, 0.18), transparent 36%),
    radial-gradient(circle at 12% 32%, rgba(171, 114, 31, 0.2), transparent 40%);
}

.ink-lower-page::before {
  content: "";
  position: absolute;
  inset: -160px 0 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(5, 4, 3, 0.78) 0%, rgba(7, 5, 3, 0.62) 24%, rgba(6, 5, 3, 0.72) 100%),
    linear-gradient(90deg, rgba(4, 3, 2, 0.54) 0%, rgba(4, 3, 2, 0.2) 48%, rgba(4, 3, 2, 0.44) 100%),
    url("/public/images/home/ink-home-bg-v4.png?v=home-bg-v4");
  background-size: auto, auto, cover;
  background-position: center, center, center 38%;
  opacity: 1;
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.32) 8%, #000 24%, #000 100%);
  mask-image: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.32) 8%, #000 24%, #000 100%);
}

.ink-lower-page::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(218, 166, 72, 0.012) 1px, transparent 1px),
    linear-gradient(90deg, rgba(218, 166, 72, 0.01) 1px, transparent 1px);
  background-size: 96px 96px;
  opacity: 0.38;
}

.ink-lower-page .ink-home-section,
.ink-home-footer {
  position: relative;
  z-index: 2;
}

.ink-lower-page .ink-home-section {
  padding: 86px 0;
}

.ink-lower-page .ink-home-section-head h2 {
  color: #f8f0dc;
}

.ink-lower-page .ink-home-section-head span {
  color: rgba(232, 222, 199, 0.82);
}

.ink-lower-page .ink-home-feature-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.ink-lower-page .ink-home-feature-grid article,
.ink-lower-page .ink-home-resource-grid article {
  border: 1px solid rgba(211, 165, 82, 0.24);
  background:
    linear-gradient(145deg, rgba(15, 12, 7, 0.74), rgba(7, 6, 4, 0.58)),
    radial-gradient(circle at 18% 6%, rgba(220, 164, 69, 0.15), transparent 40%);
  box-shadow:
    0 18px 58px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 220, 150, 0.05);
  backdrop-filter: blur(12px);
}

.ink-lower-page .ink-home-feature-grid article {
  min-height: 218px;
  padding: 30px 24px;
  border-radius: 20px;
}

.ink-lower-page .ink-home-feature-grid article span {
  width: 48px;
  height: 48px;
  margin-bottom: 22px;
  color: #f0c46a;
  font-size: 20px;
  border: 1px solid rgba(217, 166, 78, 0.3);
  border-radius: 14px;
  background:
    radial-gradient(circle at 42% 28%, rgba(250, 208, 118, 0.22), transparent 38%),
    linear-gradient(145deg, rgba(37, 27, 13, 0.88), rgba(5, 5, 4, 0.8));
  box-shadow: inset 0 0 18px rgba(236, 181, 82, 0.08), 0 10px 28px rgba(0, 0, 0, 0.24);
}

.ink-lower-page .ink-home-feature-grid h3 {
  color: #fff1d7;
  font-size: 18px;
}

.ink-lower-page .ink-home-feature-grid p,
.ink-lower-page .ink-home-resource-grid p {
  color: rgba(232, 222, 199, 0.82);
  line-height: 1.76;
}

.ink-lower-page .ink-home-resource-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.ink-lower-page .ink-home-resource-grid article {
  min-height: 250px;
  padding: 30px;
  border-radius: 22px;
}

.ink-lower-page .ink-home-resource-grid article::before {
  content: "";
  position: absolute;
  right: 22px;
  top: 20px;
  width: 76px;
  height: 76px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(230, 181, 91, 0.28);
  color: #ffe2a0;
  font-size: 17px;
  font-weight: 1000;
  letter-spacing: 0.04em;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.62);
  background:
    radial-gradient(circle at 36% 28%, rgba(255, 226, 156, 0.22), transparent 30%),
    radial-gradient(circle, rgba(213, 160, 68, 0.16), transparent 60%),
    linear-gradient(145deg, rgba(31, 22, 10, 0.92), rgba(4, 4, 3, 0.82));
  box-shadow:
    inset 0 1px 0 rgba(255, 231, 169, 0.12),
    inset 0 -18px 28px rgba(0, 0, 0, 0.28),
    0 14px 34px rgba(0, 0, 0, 0.28);
}

.ink-lower-page .ink-home-resource-grid article:nth-child(1)::before {
  content: "SEA";
  background:
    radial-gradient(circle at 50% 44%, rgba(255, 220, 120, 0.18), transparent 32%),
    conic-gradient(from 20deg, rgba(191, 38, 38, 0.92), rgba(218, 174, 74, 0.9), rgba(38, 89, 132, 0.82), rgba(191, 38, 38, 0.92)),
    linear-gradient(145deg, rgba(16, 12, 8, 0.92), rgba(5, 5, 4, 0.88));
}

.ink-lower-page .ink-home-resource-grid article:nth-child(2)::before {
  content: "EU";
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 220, 110, 0.24), transparent 8%),
    radial-gradient(circle at 34% 32%, rgba(255, 220, 110, 0.2), transparent 7%),
    radial-gradient(circle at 66% 32%, rgba(255, 220, 110, 0.2), transparent 7%),
    radial-gradient(circle at 35% 68%, rgba(255, 220, 110, 0.2), transparent 7%),
    radial-gradient(circle at 65% 68%, rgba(255, 220, 110, 0.2), transparent 7%),
    linear-gradient(145deg, rgba(20, 35, 68, 0.82), rgba(6, 6, 6, 0.9));
}

.ink-lower-page .ink-home-resource-grid article:nth-child(3)::before {
  content: "JP";
  color: #ffe9bc;
  background:
    radial-gradient(circle at 50% 50%, rgba(190, 39, 39, 0.82) 0 18%, transparent 19%),
    linear-gradient(145deg, rgba(230, 218, 188, 0.16), rgba(8, 7, 5, 0.9));
}

.ink-lower-page .ink-home-resource-grid article:nth-child(4)::before {
  content: "ID";
  color: #fff2d2;
  background:
    linear-gradient(180deg, rgba(196, 38, 38, 0.9) 0 50%, rgba(236, 222, 190, 0.86) 51% 100%),
    linear-gradient(145deg, rgba(16, 12, 8, 0.92), rgba(5, 5, 4, 0.88));
}

.ink-lower-page .ink-home-resource-grid article:nth-child(5)::before {
  content: "S";
  color: #fff1d7;
  font-size: 28px;
  background:
    radial-gradient(circle at 50% 42%, rgba(255, 234, 180, 0.2), transparent 34%),
    linear-gradient(145deg, rgba(230, 103, 31, 0.86), rgba(72, 36, 14, 0.92));
}

.ink-lower-page .ink-home-resource-grid article:nth-child(6)::before {
  content: "24";
  background:
    radial-gradient(circle at 50% 38%, rgba(255, 225, 145, 0.24), transparent 30%),
    linear-gradient(145deg, rgba(142, 97, 29, 0.72), rgba(7, 6, 4, 0.9));
}

.ink-lower-page .ink-home-resource-grid h3 {
  color: #fff1d7;
  font-size: 21px;
  line-height: 1.36;
  padding-right: 78px;
}

.ink-lower-page .ink-home-resource-grid strong {
  display: inline-flex;
  margin-top: 8px;
  color: #ffd77f;
  font-size: 20px;
  letter-spacing: 0.02em;
  text-shadow: 0 0 26px rgba(210, 151, 51, 0.18);
}

.ink-lower-page .ink-home-resource-grid button,
.ink-resource-more {
  border: 1px solid rgba(220, 170, 82, 0.36);
  color: #f7dfaa;
  background:
    linear-gradient(145deg, rgba(41, 30, 13, 0.84), rgba(8, 7, 5, 0.72));
  box-shadow: inset 0 1px 0 rgba(255, 225, 160, 0.06);
}

.ink-resource-more-wrap {
  margin-top: 28px;
  text-align: center;
}

.ink-resource-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 26px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 900;
}

.ink-lower-page .ink-home-cta {
  padding-bottom: 104px;
}

.ink-lower-page .ink-home-cta-panel {
  border-color: rgba(222, 172, 82, 0.3);
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(15, 12, 7, 0.88), rgba(5, 5, 4, 0.72)),
    radial-gradient(circle at 82% 32%, rgba(210, 151, 51, 0.16), transparent 34%);
  box-shadow:
    0 26px 90px rgba(0, 0, 0, 0.42),
    inset 0 1px 0 rgba(255, 225, 160, 0.07);
}

.ink-lower-page .ink-home-cta-panel h2 {
  color: #fff1d7;
}

.ink-lower-page .ink-home-cta-panel span {
  color: rgba(226, 215, 190, 0.76);
}

.ink-home-footer {
  background:
    linear-gradient(180deg, rgba(4, 4, 3, 0.98), #020202);
  border-top: 1px solid rgba(211, 165, 82, 0.2);
  padding: 56px 0 24px;
}

.ink-footer-grid {
  display: grid;
  grid-template-columns: minmax(260px, 1.45fr) repeat(4, minmax(130px, 1fr));
  gap: 34px;
}

.ink-footer-brand h2,
.ink-home-footer h3 {
  margin: 0;
  color: #fff1d7;
}

.ink-footer-brand p,
.ink-footer-contact p,
.ink-home-footer a {
  color: rgba(228, 218, 194, 0.78);
}

.ink-footer-brand p {
  margin: 14px 0 0;
}

.ink-home-footer nav,
.ink-footer-contact {
  display: grid;
  gap: 10px;
  align-content: start;
}

.ink-home-footer h3 {
  margin-bottom: 6px;
  font-size: 15px;
}

.ink-home-footer a {
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s ease;
}

.ink-home-footer a:hover {
  color: #f0c46a;
}

.ink-footer-contact p {
  margin: 0;
  font-size: 14px;
  line-height: 1.72;
}

.ink-footer-bottom {
  margin-top: 42px;
  padding-top: 20px;
  border-top: 1px solid rgba(211, 165, 82, 0.12);
  color: rgba(220, 209, 184, 0.62);
  font-size: 13px;
}

@media (max-width: 1180px) {
  .ink-lower-page .ink-home-feature-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

@media (max-width: 900px) {
  .ink-lower-page .ink-home-section {
    padding: 64px 0;
  }

  .ink-lower-page .ink-home-feature-grid,
  .ink-lower-page .ink-home-resource-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 640px) {
  .ink-lower-page .ink-home-feature-grid,
  .ink-lower-page .ink-home-resource-grid,
  .ink-footer-grid {
    grid-template-columns: 1fr;
  }
}

/* 已封存服务页：黑金水墨官网页 */
body.ink-store-page {
  margin: 0;
  min-height: 100vh;
  color: #fff4df;
  font-family: "Microsoft YaHei", "PingFang SC", "Noto Sans SC", Arial, sans-serif;
  background: #efe4d1;
}

.ink-store-page *,
.ink-store-page *::before,
.ink-store-page *::after {
  box-sizing: border-box;
}

.store-page-shell {
  position: relative;
  min-height: 100vh;
  overflow-x: hidden;
}

.store-page-shell::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 76% 16%, rgba(216, 162, 66, 0.11), transparent 30%),
    radial-gradient(circle at 14% 76%, rgba(174, 112, 34, 0.14), transparent 34%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.06) 48%, rgba(0, 0, 0, 0.42));
  z-index: 0;
}

.store-content,
.store-nav-inner {
  position: relative;
  z-index: 1;
  width: min(1480px, calc(100vw - 80px));
  margin: 0 auto;
}

.store-nav {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(220, 169, 78, 0.22);
  background: rgba(5, 4, 3, 0.78);
  backdrop-filter: blur(18px);
}

.store-nav-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
}

.store-brand,
.store-nav-links,
.store-nav-cta,
.store-cta-actions a,
.store-cta-actions button,
.store-quote-row button {
  text-decoration: none;
}

.store-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #fff1d3;
  font-weight: 900;
}

.store-brand-mark {
  width: 40px;
  height: 40px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(239, 194, 93, 0.62);
  border-radius: 999px;
  color: #f5c35b;
  background: radial-gradient(circle, rgba(229, 170, 65, 0.16), rgba(5, 4, 3, 0.82));
  box-shadow: 0 0 28px rgba(207, 142, 42, 0.16);
}

.store-brand-text {
  font-size: 19px;
  letter-spacing: 0.02em;
}

.store-nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
}

.store-nav-links a {
  position: relative;
  color: rgba(239, 231, 209, 0.82);
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}

.store-nav-links a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -13px;
  width: 0;
  height: 2px;
  border-radius: 99px;
  background: #f0bd55;
  transform: translateX(-50%);
  transition: width 0.2s ease;
}

.store-nav-links a:hover,
.store-nav-links a.active {
  color: #fff;
}

.store-nav-links a:hover::after,
.store-nav-links a.active::after {
  width: 18px;
}

.store-nav-cta,
.store-cta-actions button,
.store-quote-row button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 22px;
  border: 0;
  border-radius: 10px;
  color: #211403;
  font-weight: 900;
  background: linear-gradient(135deg, #fff1bd 0%, #ffc963 48%, #d5962e 100%);
  box-shadow: 0 16px 34px rgba(220, 151, 45, 0.22);
  cursor: pointer;
}

.store-hero {
  position: relative;
  padding: 104px 0 42px;
}

.store-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 76% 18%, rgba(235, 181, 75, 0.1), transparent 32%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.16), transparent 42%, rgba(0, 0, 0, 0.1));
  pointer-events: none;
}

.store-hero-inner {
  min-height: 360px;
  display: grid;
  align-content: center;
  justify-items: start;
  max-width: none;
}

.store-eyebrow,
.store-section-head p,
.store-cta-panel > div > p {
  margin: 0 0 14px;
  color: #f2c45d;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.store-hero h1 {
  margin: 0;
  max-width: 920px;
  color: #fff5df;
  font-size: clamp(44px, 3.4vw, 66px);
  line-height: 1.16;
  letter-spacing: -0.052em;
  text-shadow: 0 24px 60px rgba(0, 0, 0, 0.46);
}

.store-hero-subtitle {
  width: min(760px, 100%);
  margin: 24px 0 0;
  color: rgba(238, 226, 202, 0.84);
  font-size: 18px;
  line-height: 1.9;
}

.store-hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  max-width: 920px;
  margin-top: 28px;
}

.store-hero-tags span {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  padding: 0 16px;
  border: 1px solid rgba(220, 169, 78, 0.32);
  border-radius: 999px;
  color: rgba(255, 241, 213, 0.9);
  background: rgba(12, 10, 6, 0.54);
  box-shadow: inset 0 1px 0 rgba(255, 228, 164, 0.06);
}

.store-resource-tabs,
.store-quotes,
.store-notes,
.store-cta {
  position: relative;
  z-index: 1;
  padding: 54px 0;
}

.store-section-head {
  margin-bottom: 26px;
  text-align: center;
}

.store-section-head h2 {
  margin: 0;
  color: #fff3dd;
  font-size: clamp(26px, 3vw, 42px);
  letter-spacing: -0.03em;
}

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

.store-tab-card {
  position: relative;
  overflow: hidden;
  min-height: 188px;
  padding: 16px 18px;
  border: 1px solid rgba(210, 160, 75, 0.22);
  border-radius: 18px;
  color: rgba(255, 242, 216, 0.82);
  background:
    radial-gradient(circle at 28% 44%, rgba(223, 164, 61, 0.12), transparent 33%),
    linear-gradient(135deg, rgba(13, 10, 6, 0.68), rgba(4, 4, 3, 0.5));
  box-shadow: inset 0 1px 0 rgba(255, 229, 166, 0.05);
  cursor: pointer;
  text-align: left;
}

.store-tab-card img {
  display: block;
  width: 138px;
  height: 138px;
  object-fit: cover;
  opacity: 0.78;
  filter: saturate(0.92) contrast(1.04);
  mix-blend-mode: screen;
  -webkit-mask-image: radial-gradient(circle, #000 48%, rgba(0, 0, 0, 0.62) 68%, transparent 84%);
  mask-image: radial-gradient(circle, #000 48%, rgba(0, 0, 0, 0.62) 68%, transparent 84%);
}

.store-tab-card span {
  position: absolute;
  right: 16px;
  top: 50%;
  width: calc(100% - 184px);
  display: block;
  padding: 0;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.42;
  transform: translateY(-50%);
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.64);
}

.store-tab-card:hover,
.store-tab-card.is-active {
  border-color: rgba(248, 198, 90, 0.62);
  color: #fff5df;
  background:
    radial-gradient(circle at 30% 44%, rgba(239, 181, 72, 0.2), transparent 38%),
    linear-gradient(135deg, rgba(34, 24, 9, 0.7), rgba(5, 5, 4, 0.48));
  box-shadow:
    0 20px 48px rgba(0, 0, 0, 0.24),
    inset 0 1px 0 rgba(255, 229, 166, 0.12);
}

.store-tab-card.is-active img {
  opacity: 0.9;
}

.store-quote-panel,
.store-note-grid article,
.store-cta-panel {
  border: 1px solid rgba(215, 164, 77, 0.24);
  background:
    linear-gradient(145deg, rgba(16, 12, 7, 0.86), rgba(4, 4, 3, 0.76)),
    radial-gradient(circle at 88% 18%, rgba(213, 160, 68, 0.12), transparent 32%);
  box-shadow:
    0 26px 88px rgba(0, 0, 0, 0.32),
    inset 0 1px 0 rgba(255, 230, 169, 0.06);
}

.store-quote-panel {
  border-radius: 24px;
  padding: 26px;
}

.store-quote-title {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-bottom: 20px;
}

.store-quote-title p {
  margin: 0;
  color: #f1c35d;
  font-size: 26px;
  font-weight: 900;
}

.store-quote-title h2 {
  margin: 0;
  color: #fff3df;
  font-size: clamp(23px, 2.4vw, 34px);
}

.store-quote-table {
  overflow: hidden;
  border: 1px solid rgba(213, 160, 68, 0.13);
  border-radius: 18px;
}

.store-quote-subgroup + .store-quote-subgroup {
  margin-top: 24px;
}

.store-quote-subgroup h3 {
  margin: 0 0 12px;
  color: #f7d885;
  font-size: 18px;
  letter-spacing: 0.03em;
}

.store-quote-tip {
  margin: 12px 0 0;
  color: rgba(241, 220, 179, 0.72);
  font-size: 13px;
  line-height: 1.7;
}

.store-quote-row {
  display: grid;
  grid-template-columns: 1.05fr 0.8fr 1.15fr 2.1fr 1fr 1.1fr 1fr;
  gap: 14px;
  align-items: center;
  min-height: 70px;
  padding: 15px 18px;
  border-top: 1px solid rgba(213, 160, 68, 0.1);
  color: rgba(239, 229, 207, 0.82);
  font-size: 14px;
}

.store-quote-row-resource {
  grid-template-columns: 1.05fr 1.55fr 1.1fr 2.1fr 0.8fr 0.95fr;
}

.store-quote-head {
  min-height: 48px;
  border-top: 0;
  color: rgba(255, 237, 194, 0.68);
  background: rgba(255, 205, 113, 0.05);
  font-size: 13px;
  font-weight: 900;
}

.store-quote-row b {
  display: inline-flex;
  width: 22px;
  font-size: 18px;
}

.store-quote-row strong {
  color: #ffd77a;
  font-size: 18px;
  letter-spacing: 0.02em;
}

.store-quote-row button {
  min-height: 38px;
  padding: 0 14px;
  font-size: 13px;
  box-shadow: none;
}

.store-support-summary {
  padding: 28px;
  border: 1px solid rgba(213, 160, 68, 0.15);
  border-radius: 20px;
  background:
    radial-gradient(circle at 18% 0%, rgba(213, 160, 68, 0.14), transparent 34%),
    rgba(12, 8, 2, 0.54);
  color: rgba(239, 229, 207, 0.82);
}

.store-support-summary p {
  max-width: 760px;
  margin: 0 0 18px;
  line-height: 1.8;
}

.store-support-tags {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 20px;
}

.store-support-tags span {
  min-height: 52px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(223, 174, 79, 0.22);
  border-radius: 16px;
  background: rgba(255, 205, 113, 0.06);
  color: #f7d885;
  font-weight: 900;
}

.store-support-summary button {
  min-height: 40px;
  padding: 0 18px;
  border-radius: 12px;
}

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

.store-note-grid article {
  min-height: 188px;
  padding: 26px;
  border-radius: 20px;
}

.store-note-grid span {
  width: 48px;
  height: 48px;
  display: inline-grid;
  place-items: center;
  margin-bottom: 18px;
  border: 1px solid rgba(228, 177, 86, 0.34);
  border-radius: 50%;
  color: #f0c45e;
  font-weight: 900;
  background: rgba(26, 19, 9, 0.78);
}

.store-note-grid h3 {
  margin: 0;
  color: #fff2d9;
  font-size: 18px;
}

.store-note-grid p {
  margin: 12px 0 0;
  color: rgba(229, 218, 194, 0.76);
  line-height: 1.75;
}

.store-cta {
  padding-bottom: 84px;
}

.store-cta-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 34px 40px;
  border-radius: 26px;
}

.store-cta-panel h2 {
  margin: 0;
  color: #fff3dd;
  font-size: clamp(28px, 3vw, 44px);
}

.store-cta-panel span {
  display: block;
  margin-top: 10px;
  color: rgba(229, 218, 194, 0.78);
  line-height: 1.7;
}

.store-cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px;
}

.store-cta-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 22px;
  border: 1px solid rgba(217, 165, 77, 0.4);
  border-radius: 10px;
  color: #f7dfaa;
  font-weight: 900;
  background: rgba(8, 7, 5, 0.58);
}

.store-footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(213, 160, 68, 0.18);
  background: rgba(3, 3, 2, 0.88);
  padding: 34px 0;
}

.store-footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.store-footer h2,
.store-footer p {
  margin: 0;
}

.store-footer h2 {
  color: #fff2d9;
}

.store-footer p,
.store-footer a {
  color: rgba(229, 218, 194, 0.72);
}

.store-footer p {
  margin-top: 8px;
}

.store-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.store-footer a {
  text-decoration: none;
  font-weight: 800;
}

.store-footer a:hover {
  color: #f0c45e;
}

@media (max-width: 1280px) {
  .store-quote-row {
    grid-template-columns: 1fr 0.7fr 1fr 1.7fr 0.9fr 1fr 0.9fr;
    gap: 10px;
  }

  .store-quote-row-resource {
    grid-template-columns: 1fr 1.35fr 1fr 1.5fr 0.8fr 0.9fr;
  }
}

@media (min-width: 1281px) {
  .store-tab-card img {
    margin-left: 0;
  }
}

@media (max-width: 980px) {
  .store-content,
  .store-nav-inner {
    width: min(100% - 32px, 760px);
  }

  .store-nav-inner {
    flex-wrap: wrap;
    padding: 14px 0;
  }

  .store-nav-links {
    order: 3;
    width: 100%;
    overflow-x: auto;
    gap: 20px;
    padding: 6px 0 2px;
  }

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

  .store-hero {
    padding-top: 76px;
  }

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

  .store-quote-head {
    display: none;
  }

  .store-quote-row {
    grid-template-columns: 1fr;
    gap: 8px;
    align-items: start;
    padding: 18px;
  }

  .store-quote-row-resource {
    grid-template-columns: 1fr;
  }

  .store-quote-row span,
  .store-quote-row strong {
    display: flex;
    justify-content: space-between;
    gap: 16px;
  }

  .store-quote-row span:nth-child(1)::before { content: "国家/地区"; color: rgba(255, 237, 194, 0.62); }
  .store-quote-row span:nth-child(2)::before { content: "平台"; color: rgba(255, 237, 194, 0.62); }
  .store-quote-row span:nth-child(3)::before { content: "类型"; color: rgba(255, 237, 194, 0.62); }
  .store-quote-row span:nth-child(4)::before { content: "服务"; color: rgba(255, 237, 194, 0.62); }
  .store-quote-row strong::before { content: "价格"; color: rgba(255, 237, 194, 0.62); font-size: 14px; }
  .store-quote-row span:nth-child(6)::before { content: "售后"; color: rgba(255, 237, 194, 0.62); }

  .store-quote-row span:nth-child(1)::before { content: "国家/地区"; color: rgba(255, 237, 194, 0.62); }
  .store-quote-row span:nth-child(2)::before { content: "平台"; color: rgba(255, 237, 194, 0.62); }
  .store-quote-row span:nth-child(3)::before { content: "类型"; color: rgba(255, 237, 194, 0.62); }
  .store-quote-row span:nth-child(4)::before { content: "服务"; color: rgba(255, 237, 194, 0.62); }
  .store-quote-row strong::before { content: "价格"; color: rgba(255, 237, 194, 0.62); font-size: 14px; }
  .store-quote-row span:nth-child(6)::before { content: "售后"; color: rgba(255, 237, 194, 0.62); }

  .store-quote-row-resource span:nth-child(2)::before { content: "资源名称"; color: rgba(255, 237, 194, 0.62); }
  .store-quote-row-resource span:nth-child(4)::before { content: "内容说明"; color: rgba(255, 237, 194, 0.62); }

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

  .store-quote-row button {
    width: 100%;
    margin-top: 6px;
  }

  .store-cta-panel,
  .store-footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .store-cta-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  body.ink-store-page {
    background-attachment: scroll;
  }

  .store-tab-grid,
  .store-note-grid {
    grid-template-columns: 1fr;
  }

  .store-tab-card {
    min-height: auto;
  }

  .store-tab-card img {
    width: 128px;
    height: 128px;
  }

  .store-quote-panel {
    padding: 18px;
  }

  .store-quote-title {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }
}

body.ink-store-page {
  background: #efe4d1;
}

body.ink-store-page .store-page-shell::before {
  position: absolute;
  inset: 0 0 auto;
  height: clamp(760px, 50vw, 1040px);
  background:
    linear-gradient(180deg, rgba(16, 11, 6, 0.12) 0%, rgba(21, 13, 7, 0.06) 48%, rgba(239, 228, 209, 0.72) 82%, rgba(239, 228, 209, 0.98) 100%),
    linear-gradient(90deg, rgba(12, 8, 4, 0.5) 0%, rgba(12, 8, 4, 0.08) 42%, rgba(12, 8, 4, 0.18) 100%),
    url("/public/images/store/store-resources-top-bg-v1.png?v=store-two-bg-v1") center top / 100% auto no-repeat;
  z-index: 0;
}

body.ink-store-page .store-page-shell::after {
  display: block;
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: clamp(760px, 50vw, 1040px);
  bottom: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(239, 228, 209, 0.94) 0%, rgba(239, 228, 209, 0.72) 14%, rgba(239, 228, 209, 0.42) 30%, rgba(239, 228, 209, 0.18) 48%, rgba(239, 228, 209, 0.36) 60%, rgba(230, 218, 201, 0.54) 72%, rgba(215, 203, 186, 0.46) 100%),
    radial-gradient(ellipse at 50% 66%, rgba(247, 238, 222, 0.78), rgba(247, 238, 222, 0.46) 34%, rgba(247, 238, 222, 0.18) 58%, transparent 82%),
    linear-gradient(90deg, rgba(12, 8, 4, 0.22) 0%, rgba(255, 248, 235, 0.02) 48%, rgba(12, 8, 4, 0.16) 100%),
    url("/public/images/store/store-resources-bottom-bg-v1.png?v=store-two-bg-v1") center top / 100% auto no-repeat,
    url("/public/images/store/store-resources-bottom-bg-v1.png?v=store-two-bg-v1") center clamp(620px, 42vw, 860px) / 100% auto no-repeat,
    linear-gradient(180deg, #efe4d1 0%, #e5d9c5 58%, #d9cbb7 100%);
}

body.ink-store-page .store-resource-tabs::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -150px;
  height: 320px;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 50% 48%, rgba(243, 233, 216, 0.72), rgba(243, 233, 216, 0.38) 40%, transparent 76%),
    linear-gradient(180deg, transparent 0%, rgba(244, 234, 217, 0.58) 34%, rgba(244, 234, 217, 0.5) 58%, transparent 100%);
  filter: blur(18px);
  opacity: 0.9;
}

body.ink-store-page .store-quotes::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -120px;
  height: 300px;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 50% 50%, rgba(246, 238, 224, 0.76), rgba(246, 238, 224, 0.48) 40%, rgba(246, 238, 224, 0.18) 68%, transparent 84%),
    linear-gradient(180deg, transparent 0%, rgba(246, 238, 224, 0.56) 28%, rgba(246, 238, 224, 0.5) 58%, transparent 100%);
  filter: blur(24px);
  opacity: 0.92;
}

body.ink-store-page .store-notes::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -180px;
  height: 420px;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 50% 46%, rgba(238, 228, 211, 0.9), rgba(238, 228, 211, 0.54) 38%, rgba(238, 228, 211, 0.2) 68%, transparent 86%),
    linear-gradient(180deg, transparent 0%, rgba(238, 228, 211, 0.5) 28%, rgba(238, 228, 211, 0.42) 64%, transparent 100%);
  filter: blur(30px);
  opacity: 0.9;
}

body.ink-store-page .store-hero-bg {
  display: none;
}
/* Pricing page V1.4 */
.ink-pricing-page {
  margin: 0;
  min-height: 100vh;
  color: #fff6dc;
  background: #090703;
  font-family: "Microsoft YaHei", "PingFang SC", "Noto Sans SC", sans-serif;
}

.ink-pricing-page *,
.ink-pricing-page *::before,
.ink-pricing-page *::after {
  box-sizing: border-box;
}

.pricing-page-shell {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 8%, rgba(214, 162, 61, 0.2), transparent 30%),
    linear-gradient(180deg, rgba(13, 10, 5, 0.95), rgba(10, 8, 4, 0.98));
}

.pricing-page-shell::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(6, 5, 2, 0.28), rgba(7, 5, 2, 0.78) 58%, rgba(7, 5, 2, 0.94)),
    url("/public/images/pricing/pricing-bg.png?v=pricing-v1") center top / cover no-repeat;
  opacity: 0.72;
}

.pricing-page-shell > * {
  position: relative;
  z-index: 1;
}

.pricing-section-inner,
.pricing-nav-inner {
  width: min(1480px, calc(100vw - 80px));
  margin: 0 auto;
}

.pricing-topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(11, 8, 4, 0.72);
  border-bottom: 1px solid rgba(212, 161, 67, 0.22);
  backdrop-filter: blur(18px);
}

.pricing-nav-inner {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.pricing-brand,
.pricing-nav-links a,
.pricing-footer a,
.pricing-btn {
  color: inherit;
  text-decoration: none;
}

.pricing-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
  font-size: 22px;
}

.pricing-brand-mark {
  width: 38px;
  height: 38px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(244, 190, 79, 0.72);
  border-radius: 50%;
  color: #ffd66f;
  background: radial-gradient(circle, rgba(255, 198, 74, 0.22), rgba(20, 15, 7, 0.8));
  box-shadow: 0 0 22px rgba(229, 168, 54, 0.18);
}

.pricing-nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  color: rgba(255, 248, 226, 0.84);
  font-size: 14px;
  font-weight: 700;
}

.pricing-nav-links a {
  position: relative;
  padding: 26px 0;
}

.pricing-nav-links a.active::after,
.pricing-nav-links a:hover::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 17px;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, #f7c85c, #fff1b3);
}

.pricing-nav-cta,
.pricing-btn-primary {
  background: linear-gradient(135deg, #fff1ae 0%, #ffc246 50%, #d99a25 100%);
  color: #1e1305;
  box-shadow: 0 14px 35px rgba(232, 171, 51, 0.24);
}

.pricing-nav-cta {
  padding: 13px 24px;
  border-radius: 10px;
  font-weight: 900;
  text-decoration: none;
}

.pricing-hero-section {
  position: relative;
  min-height: 720px;
  display: flex;
  align-items: center;
  padding: 96px 0 72px;
}

.pricing-hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(420px, 0.98fr);
  align-items: center;
  gap: 72px;
}

.pricing-eyebrow {
  margin: 0 0 16px;
  color: #f8c754;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.pricing-hero-copy h1 {
  margin: 0;
  max-width: 820px;
  font-size: clamp(44px, 3.4vw, 66px);
  line-height: 1.16;
  letter-spacing: -0.052em;
  color: #fff9e8;
  text-shadow: 0 16px 36px rgba(0, 0, 0, 0.36);
}

.pricing-hero-desc {
  max-width: 760px;
  margin: 28px 0 0;
  color: rgba(255, 249, 231, 0.82);
  font-size: 18px;
  line-height: 1.95;
}

.pricing-hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0 34px;
}

.pricing-hero-tags span,
.pricing-country-grid span,
.pricing-steps span {
  border: 1px solid rgba(246, 196, 83, 0.36);
  background: rgba(17, 12, 5, 0.56);
  color: #fff0c8;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.pricing-hero-tags span {
  padding: 9px 16px;
  border-radius: 999px;
  font-weight: 800;
}

.pricing-hero-actions,
.pricing-final-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.pricing-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border: 1px solid rgba(245, 193, 72, 0.48);
  border-radius: 10px;
  font-weight: 900;
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.pricing-btn:hover {
  transform: translateY(-2px);
}

.pricing-btn-ghost {
  background: rgba(7, 5, 2, 0.42);
  color: #fff0cb;
}

.pricing-hero-panel {
  position: relative;
  min-height: 430px;
  border: 1px solid rgba(235, 179, 62, 0.26);
  border-radius: 34px;
  overflow: hidden;
  background:
    radial-gradient(circle at 48% 50%, rgba(250, 201, 85, 0.18), transparent 25%),
    linear-gradient(145deg, rgba(20, 15, 7, 0.58), rgba(5, 4, 2, 0.32));
  box-shadow: 0 36px 90px rgba(0, 0, 0, 0.42), inset 0 0 80px rgba(255, 198, 76, 0.06);
}

.pricing-hero-panel::before {
  content: "";
  position: absolute;
  inset: 44px;
  border: 1px solid rgba(244, 196, 80, 0.2);
  border-radius: 50%;
  transform: rotate(-11deg);
}

.pricing-hero-panel::after {
  content: "";
  position: absolute;
  inset: 92px 70px;
  border: 1px solid rgba(255, 222, 138, 0.15);
  border-radius: 50%;
  transform: rotate(18deg);
}

.pricing-orbit-card {
  position: absolute;
  top: 92px;
  right: 76px;
  z-index: 2;
  width: min(330px, 64%);
  padding: 26px;
  border: 1px solid rgba(249, 198, 75, 0.32);
  border-radius: 22px;
  background: rgba(9, 7, 3, 0.72);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.34);
}

.pricing-orbit-card span,
.pricing-plan-top span,
.pricing-addon-card span {
  color: #f5c459;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.pricing-orbit-card strong {
  display: block;
  margin: 10px 0;
  font-size: 26px;
  color: #fff8e6;
}

.pricing-orbit-card p,
.pricing-plan-card p,
.pricing-addon-card p,
.pricing-faq-list p,
.pricing-info-grid p,
.pricing-section-heading p,
.pricing-footer p {
  color: rgba(255, 248, 226, 0.76);
  line-height: 1.8;
}

.pricing-metric-grid {
  position: absolute;
  left: 54px;
  bottom: 58px;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  width: calc(100% - 108px);
}

.pricing-metric-grid div {
  padding: 20px 16px;
  border: 1px solid rgba(244, 194, 78, 0.22);
  border-radius: 18px;
  background: rgba(7, 5, 2, 0.58);
  text-align: center;
}

.pricing-metric-grid b {
  display: block;
  color: #ffd66c;
  font-size: 30px;
}

.pricing-metric-grid span {
  display: block;
  margin-top: 4px;
  color: rgba(255, 246, 219, 0.72);
  font-weight: 800;
}

.pricing-country-section,
.pricing-plans-section,
.pricing-compare-section,
.pricing-quota-section,
.pricing-addon-section,
.pricing-steps-section,
.pricing-faq-section,
.pricing-bottom-note,
.pricing-final-cta {
  padding: 76px 0;
}

.pricing-section-heading {
  max-width: 860px;
  margin: 0 auto 34px;
  text-align: center;
}

.pricing-section-heading h2,
.pricing-info-grid h2,
.pricing-final-card h2 {
  margin: 0;
  color: #fff7df;
  font-size: clamp(34px, 3.5vw, 54px);
  line-height: 1.16;
  letter-spacing: -0.04em;
}

.pricing-country-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 14px;
}

.pricing-country-grid span {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 18px;
  font-weight: 900;
}

.pricing-country-grid b {
  color: #ffd86f;
}

.pricing-plan-group + .pricing-plan-group {
  margin-top: 58px;
}

.pricing-group-title {
  display: flex;
  align-items: flex-end;
  gap: 18px;
  margin-bottom: 22px;
}

.pricing-group-title span {
  color: #ffd463;
  font-size: 36px;
  font-weight: 950;
}

.pricing-group-title h3 {
  margin: 0;
  color: #fff6dc;
  font-size: 30px;
}

.pricing-group-title p {
  margin: 0 0 4px;
  color: rgba(255, 245, 219, 0.68);
}

.pricing-plan-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.pricing-plan-card,
.pricing-addon-card,
.pricing-faq-list article,
.pricing-info-grid article,
.pricing-final-card,
.pricing-compare-table {
  border: 1px solid rgba(222, 166, 50, 0.26);
  background:
    linear-gradient(145deg, rgba(34, 26, 13, 0.78), rgba(9, 7, 4, 0.86)),
    radial-gradient(circle at 80% 20%, rgba(255, 206, 82, 0.1), transparent 32%);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(10px);
}

.pricing-plan-card {
  position: relative;
  min-height: 430px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding: 30px;
  border-radius: 28px;
}

.pricing-plan-card.is-recommended {
  border-color: rgba(255, 210, 92, 0.72);
  box-shadow: 0 30px 90px rgba(235, 170, 42, 0.2), inset 0 0 48px rgba(255, 204, 91, 0.08);
}

.pricing-recommend-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  padding: 7px 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, #ffe8a1, #f3b23f);
  color: #241604;
  font-size: 12px;
  font-weight: 950;
}

.pricing-plan-top h4 {
  margin: 12px 0;
  color: #fff5da;
  font-size: 27px;
}

.pricing-price-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.pricing-price-row div {
  padding: 16px;
  border: 1px solid rgba(245, 190, 73, 0.2);
  border-radius: 16px;
  background: rgba(7, 5, 2, 0.42);
}

.pricing-price-row small,
.pricing-quota-list span {
  display: block;
  color: rgba(255, 244, 216, 0.62);
  font-weight: 800;
}

.pricing-price-row strong {
  display: block;
  margin-top: 6px;
  color: #ffd15c;
  font-size: 26px;
}

.pricing-quota-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.pricing-quota-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(244, 193, 74, 0.12);
}

.pricing-quota-list b {
  color: #fff4c8;
}

.pricing-plan-card .pricing-btn {
  margin-top: auto;
}

.pricing-compare-table {
  border-radius: 26px;
  overflow: hidden;
}

.pricing-compare-row {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  align-items: center;
  min-height: 66px;
  border-bottom: 1px solid rgba(245, 193, 72, 0.12);
}

.pricing-compare-row:last-child {
  border-bottom: 0;
}

.pricing-compare-row span,
.pricing-compare-row b {
  padding: 18px 24px;
}

.pricing-compare-head {
  color: #ffd56b;
  background: rgba(255, 207, 90, 0.09);
}

.pricing-info-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 22px;
}

.pricing-info-grid article,
.pricing-addon-card,
.pricing-faq-list article {
  padding: 30px;
  border-radius: 24px;
}

.pricing-info-grid h3,
.pricing-addon-card h3,
.pricing-faq-list h3 {
  margin: 0 0 12px;
  color: #fff5da;
  font-size: 22px;
}

.pricing-addon-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.pricing-addon-card {
  min-height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.pricing-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.pricing-steps span {
  min-height: 88px;
  display: grid;
  place-items: center;
  border-radius: 20px;
  font-size: 18px;
  font-weight: 950;
}

.pricing-faq-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.pricing-bottom-note {
  padding-top: 34px;
  padding-bottom: 34px;
}

.pricing-bottom-note p {
  margin: 0;
  padding: 24px 28px;
  border: 1px solid rgba(245, 193, 72, 0.22);
  border-radius: 22px;
  color: rgba(255, 247, 222, 0.78);
  background: rgba(9, 7, 4, 0.54);
  line-height: 1.9;
}

.pricing-final-card {
  min-height: 190px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 34px;
  border-radius: 28px;
}

.pricing-footer {
  padding: 52px 0;
  border-top: 1px solid rgba(231, 175, 65, 0.18);
  background: rgba(4, 3, 2, 0.86);
}

.pricing-footer .pricing-section-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.pricing-footer h2 {
  margin: 0 0 8px;
  color: #fff3d0;
}

.pricing-footer nav {
  display: flex;
  gap: 22px;
  color: rgba(255, 247, 222, 0.74);
  font-weight: 800;
}

@media (max-width: 1180px) {
  .pricing-section-inner,
  .pricing-nav-inner {
    width: min(100% - 40px, 980px);
  }

  .pricing-nav-links {
    gap: 18px;
  }

  .pricing-hero-inner,
  .pricing-info-grid {
    grid-template-columns: 1fr;
  }

  .pricing-hero-panel {
    min-height: 330px;
  }

  .pricing-plan-grid,
  .pricing-addon-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing-country-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 760px) {
  .pricing-section-inner,
  .pricing-nav-inner {
    width: min(100% - 28px, 560px);
  }

  .pricing-nav-inner {
    min-height: auto;
    flex-wrap: wrap;
    padding: 14px 0;
  }

  .pricing-nav-links {
    order: 3;
    width: 100%;
    overflow: visible;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 16px;
  }

  .pricing-nav-links a {
    padding: 12px 0;
    white-space: nowrap;
  }

  .pricing-nav-cta {
    flex: 0 1 auto;
    margin-left: auto;
    padding: 12px 16px;
  }

  .pricing-nav-links a.active::after,
  .pricing-nav-links a:hover::after {
    bottom: 4px;
  }

  .pricing-hero-section {
    min-height: auto;
    padding: 70px 0 46px;
  }

  .pricing-hero-copy h1 {
    font-size: clamp(38px, 10vw, 56px);
  }

  .pricing-hero-desc {
    font-size: 16px;
  }

  .pricing-hero-panel {
    display: none;
  }

  .pricing-country-grid,
  .pricing-plan-grid,
  .pricing-addon-grid,
  .pricing-steps,
  .pricing-faq-list {
    grid-template-columns: 1fr;
  }

  .pricing-group-title,
  .pricing-final-card,
  .pricing-footer .pricing-section-inner {
    align-items: flex-start;
    flex-direction: column;
  }

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

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

/* Homepage fixed-background rule: one locked artwork, scrolling content, no stitched section backgrounds. */
body.ink-home-page {
  background: #080604;
}

body.ink-home-page::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(7, 5, 2, 0.74) 0%, rgba(7, 5, 2, 0.36) 42%, rgba(7, 5, 2, 0.54) 100%),
    linear-gradient(180deg, rgba(7, 5, 2, 0.16) 0%, rgba(7, 5, 2, 0.34) 52%, rgba(7, 5, 2, 0.74) 100%),
    url("/public/images/home/ink-hero-bg-v2.png?v=home-fixed-v3") center top / cover no-repeat;
}

body.ink-home-page::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 18%, rgba(223, 173, 82, 0.08), transparent 28%),
    linear-gradient(rgba(231, 179, 79, 0.012) 1px, transparent 1px),
    linear-gradient(90deg, rgba(231, 179, 79, 0.008) 1px, transparent 1px);
  background-size: auto, 92px 92px, 92px 92px;
}

body.ink-home-page .ink-home-canvas,
body.ink-home-page .ink-hero,
body.ink-home-page .ink-value-cards,
body.ink-home-page .ink-lower-page {
  background: transparent;
}

body.ink-home-page .ink-hero-bg,
body.ink-home-page .ink-hero-overlay,
body.ink-home-page .ink-hero::before,
body.ink-home-page .ink-value-cards::before,
body.ink-home-page .ink-value-cards::after,
body.ink-home-page .ink-lower-page::before,
body.ink-home-page .ink-lower-page::after {
  display: none;
}

body.ink-home-page .ink-value-cards {
  margin-top: -118px;
}

body.ink-home-page .ink-lower-page {
  margin-top: 0;
  padding-top: 0;
}

body.ink-home-page .ink-home-canvas {
  background:
    linear-gradient(90deg, rgba(7, 5, 2, 0.74) 0%, rgba(7, 5, 2, 0.36) 42%, rgba(7, 5, 2, 0.54) 100%),
    linear-gradient(180deg, rgba(7, 5, 2, 0.16) 0%, rgba(7, 5, 2, 0.34) 52%, rgba(7, 5, 2, 0.74) 100%),
    url("/public/images/home/ink-hero-bg-v2.png?v=home-fixed-v3") center top / cover no-repeat fixed;
}

.is-disabled-link {
  cursor: not-allowed;
  opacity: 0.72;
  user-select: none;
}

.is-section-sealed {
  display: none !important;
}

.ink-home-nav-disabled,
.pricing-nav-disabled {
  color: rgba(255, 248, 226, 0.46);
  cursor: not-allowed;
  font-size: 14px;
  font-weight: 700;
}

.ink-footer-disabled {
  color: rgba(255, 247, 222, 0.42);
  cursor: not-allowed;
  display: block;
  margin-top: 10px;
}

.store-closed-page {
  min-height: 100vh;
  margin: 0;
  color: #fff5dc;
  background: #080604;
  font-family: "Microsoft YaHei", "PingFang SC", "Noto Sans SC", sans-serif;
}

.store-closed-shell {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 32px;
  background:
    linear-gradient(90deg, rgba(7, 5, 2, 0.72), rgba(7, 5, 2, 0.28), rgba(7, 5, 2, 0.68)),
    linear-gradient(180deg, rgba(7, 5, 2, 0.18), rgba(7, 5, 2, 0.72)),
    url("/public/images/home/ink-hero-bg-v2.png?v=store-closed-v1") center top / cover no-repeat fixed;
}

.store-closed-card {
  width: min(760px, 100%);
  padding: clamp(34px, 5vw, 62px);
  border: 1px solid rgba(220, 170, 82, 0.3);
  border-radius: 30px;
  background:
    linear-gradient(145deg, rgba(18, 13, 7, 0.82), rgba(5, 4, 3, 0.72)),
    radial-gradient(circle at 18% 0%, rgba(224, 171, 78, 0.14), transparent 42%);
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.42), inset 0 1px 0 rgba(255, 230, 170, 0.08);
  text-align: center;
  backdrop-filter: blur(12px);
}

.store-closed-eyebrow {
  margin: 0 0 16px;
  color: #f5c764;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.store-closed-card h1 {
  margin: 0;
  color: #fff6df;
  font-size: clamp(44px, 3.4vw, 66px);
  line-height: 1.16;
  letter-spacing: -0.052em;
}

.store-closed-card p:not(.store-closed-eyebrow) {
  max-width: 560px;
  margin: 22px auto 0;
  color: rgba(255, 247, 222, 0.78);
  line-height: 1.9;
}

.store-closed-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 32px;
}

.store-closed-actions a {
  min-width: 138px;
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border-radius: 10px;
  font-weight: 900;
  text-decoration: none;
}

.store-closed-primary {
  color: #1e1305;
  background: linear-gradient(135deg, #fff1ae 0%, #ffc246 50%, #d99a25 100%);
}

.store-closed-secondary {
  color: #fff0cb;
  border: 1px solid rgba(245, 193, 72, 0.44);
  background: rgba(7, 5, 2, 0.42);
}

/* 插件中心官网页：黑金水墨固定背景 */
.ink-plugins-page {
  margin: 0;
  min-height: 100vh;
  color: #fff8e8;
  background: #14110c;
  font-family: "Microsoft YaHei", "PingFang SC", "Noto Sans SC", sans-serif;
}

.ink-plugins-page *,
.ink-plugins-page *::before,
.ink-plugins-page *::after {
  box-sizing: border-box;
}

.plugins-page-shell {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}

.plugins-page-shell::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(10, 8, 5, 0.88), rgba(15, 12, 8, 0.54) 45%, rgba(10, 8, 5, 0.84)),
    linear-gradient(180deg, rgba(8, 7, 5, 0.58), rgba(16, 12, 7, 0.22) 42%, rgba(8, 7, 5, 0.82)),
    url("/public/images/plugins/plugins-bg.png?v=plugins-v1") center center / cover no-repeat;
}

.plugins-page-shell::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle at 22% 18%, rgba(246, 194, 92, 0.18), transparent 28%),
    radial-gradient(circle at 76% 14%, rgba(246, 194, 92, 0.14), transparent 24%),
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: auto, auto, 88px 88px, 88px 88px;
  opacity: 0.75;
}

.plugins-section-inner,
.plugins-nav-inner {
  width: min(1480px, calc(100vw - 80px));
  margin: 0 auto;
}

.plugins-topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(218, 166, 64, 0.24);
  background: rgba(15, 12, 8, 0.76);
  backdrop-filter: blur(18px);
}

.plugins-nav-inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.plugins-brand,
.plugins-nav-links a,
.plugins-nav-cta,
.plugins-btn,
.plugins-footer a {
  color: inherit;
  text-decoration: none;
}

.plugins-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 20px;
  font-weight: 900;
  letter-spacing: 0.02em;
}

.plugins-brand-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(246, 194, 92, 0.82);
  border-radius: 50%;
  color: #ffd66e;
  background: radial-gradient(circle, rgba(246, 194, 92, 0.20), rgba(0, 0, 0, 0.45));
  box-shadow: inset 0 0 18px rgba(246, 194, 92, 0.18);
}

.plugins-nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 34px;
  font-size: 14px;
  font-weight: 800;
}

.plugins-nav-links a,
.plugins-nav-disabled {
  position: relative;
  padding: 27px 0 24px;
  color: rgba(255, 249, 232, 0.86);
}

.plugins-nav-links a.active {
  color: #ffd56f;
}

.plugins-nav-links a.active::after,
.plugins-nav-links a:hover::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 16px;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, #f7d47b, #b87b24);
}

.plugins-nav-disabled {
  cursor: not-allowed;
  opacity: 0.72;
}

.plugins-nav-cta,
.plugins-btn-primary {
  background: linear-gradient(135deg, #ffe7a3, #f3b43e);
  color: #1b1206;
  box-shadow: 0 14px 34px rgba(221, 154, 45, 0.28);
}

.plugins-nav-cta {
  padding: 13px 26px;
  border-radius: 10px;
  font-weight: 900;
}

.plugins-hero {
  padding: 110px 0 84px;
}

.plugins-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.95fr);
  align-items: center;
  gap: 72px;
}

.plugins-eyebrow {
  margin: 0 0 18px;
  color: #ffc95d;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.plugins-hero-copy h1 {
  margin: 0;
  max-width: 780px;
  font-size: clamp(44px, 3.4vw, 66px);
  line-height: 1.16;
  letter-spacing: -0.052em;
  color: #fff9e9;
  text-shadow: 0 8px 34px rgba(0, 0, 0, 0.52);
}

.plugins-hero-desc {
  max-width: 720px;
  margin: 30px 0 0;
  color: rgba(255, 248, 229, 0.86);
  font-size: 18px;
  line-height: 1.9;
}

.plugins-tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 30px 0 0;
}

.plugins-tag-row span,
.plugins-hero-metrics div,
.plugins-step-grid article,
.plugins-info-grid article,
.plugins-user-grid article,
.plugins-faq-list article,
.plugins-card,
.plugins-final-card,
.plugins-split-panel,
.plugins-note-section .plugins-section-inner {
  border: 1px solid rgba(218, 166, 64, 0.32);
  background: linear-gradient(135deg, rgba(20, 15, 9, 0.80), rgba(12, 10, 7, 0.64));
  box-shadow: inset 0 1px 0 rgba(255, 229, 165, 0.08), 0 24px 70px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(14px);
}

.plugins-tag-row span {
  padding: 9px 16px;
  border-radius: 999px;
  color: #fff6d8;
  font-size: 13px;
  font-weight: 800;
}

.plugins-hero-actions,
.plugins-final-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 34px;
}

.plugins-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 25px;
  border: 1px solid rgba(246, 194, 92, 0.48);
  border-radius: 10px;
  font-weight: 900;
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.plugins-btn:hover {
  transform: translateY(-2px);
}

.plugins-btn-ghost {
  background: rgba(5, 4, 3, 0.34);
  color: #fff4d2;
}

.plugins-hero-panel {
  position: relative;
  min-height: 420px;
  border: 1px solid rgba(218, 166, 64, 0.34);
  border-radius: 30px;
  background:
    radial-gradient(circle at 54% 46%, rgba(246, 194, 92, 0.18), transparent 31%),
    linear-gradient(135deg, rgba(22, 16, 9, 0.72), rgba(8, 7, 5, 0.56));
  overflow: hidden;
  box-shadow: inset 0 0 70px rgba(246, 194, 92, 0.08), 0 28px 90px rgba(0, 0, 0, 0.34);
}

.plugins-hero-panel::before,
.plugins-hero-panel::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(246, 194, 92, 0.28);
  border-radius: 50%;
  transform: rotate(-13deg);
}

.plugins-hero-panel::before {
  inset: 86px 72px 92px;
}

.plugins-hero-panel::after {
  inset: 124px 30px 132px;
  transform: rotate(17deg);
}

.plugins-orbit-card {
  position: relative;
  z-index: 2;
  width: min(340px, 72%);
  margin: 100px auto 0;
  padding: 30px;
  border: 1px solid rgba(246, 194, 92, 0.36);
  border-radius: 22px;
  background: rgba(9, 7, 4, 0.68);
}

.plugins-orbit-card span,
.plugins-card small {
  color: #ffc95d;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.plugins-orbit-card strong {
  display: block;
  margin-top: 10px;
  font-size: 25px;
}

.plugins-orbit-card p {
  margin: 16px 0 0;
  color: rgba(255, 247, 226, 0.78);
  line-height: 1.8;
}

.plugins-hero-metrics {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  width: min(520px, 86%);
  margin: 34px auto 0;
}

.plugins-hero-metrics div {
  min-height: 82px;
  display: grid;
  place-items: center;
  border-radius: 14px;
}

.plugins-hero-metrics b {
  color: #ffd56f;
  font-size: 30px;
}

.plugins-hero-metrics span {
  color: rgba(255, 248, 229, 0.76);
  font-size: 13px;
  font-weight: 800;
}

.plugins-intro-section,
.plugins-list-section,
.plugins-open-section,
.plugins-relation-section,
.plugins-users-section,
.plugins-faq-section,
.plugins-note-section,
.plugins-final-cta {
  padding: 74px 0;
}

.plugins-section-heading {
  max-width: 850px;
  margin: 0 auto 38px;
  text-align: center;
}

.plugins-section-heading h2,
.plugins-final-card h2,
.plugins-split-panel h2 {
  margin: 0;
  color: #fff6df;
  font-size: clamp(34px, 3vw, 54px);
  line-height: 1.12;
  letter-spacing: -0.04em;
}

.plugins-section-heading p:last-child,
.plugins-card p,
.plugins-info-grid p,
.plugins-step-grid p,
.plugins-user-grid p,
.plugins-faq-list p,
.plugins-note-section p,
.plugins-final-card span,
.plugins-relation-list p,
.plugins-footer p {
  color: rgba(255, 246, 224, 0.78);
  line-height: 1.86;
}

.plugins-info-grid,
.plugins-user-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.plugins-info-grid article,
.plugins-user-grid article,
.plugins-step-grid article {
  border-radius: 22px;
  padding: 28px;
}

.plugins-info-grid span,
.plugins-step-grid b,
.plugins-card-index {
  color: #ffd56f;
  font-weight: 900;
  font-size: 26px;
}

.plugins-info-grid h3,
.plugins-card h3,
.plugins-step-grid h3,
.plugins-user-grid h3,
.plugins-faq-list h3,
.plugins-relation-list h3 {
  margin: 12px 0 10px;
  color: #fff8e8;
  font-size: 22px;
}

.plugins-card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.plugins-card {
  position: relative;
  min-height: 560px;
  display: flex;
  flex-direction: column;
  border-radius: 28px;
  padding: 32px;
  overflow: hidden;
}

.plugins-card::after {
  content: "";
  position: absolute;
  right: -44px;
  top: -44px;
  width: 170px;
  height: 170px;
  border: 1px solid rgba(246, 194, 92, 0.16);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(246, 194, 92, 0.14), transparent 62%);
}

.plugins-card-top {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.plugins-card-index {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border: 1px solid rgba(246, 194, 92, 0.42);
  border-radius: 16px;
  background: rgba(0, 0, 0, 0.32);
}

.plugins-price-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 26px 0;
  padding: 15px 18px;
  border: 1px solid rgba(246, 194, 92, 0.24);
  border-radius: 16px;
  background: rgba(0, 0, 0, 0.24);
}

.plugins-price-line span {
  color: rgba(255, 246, 224, 0.72);
  font-weight: 800;
}

.plugins-price-line strong {
  color: #ffd56f;
  font-size: 20px;
}

.plugins-mini-list {
  display: grid;
  gap: 9px;
  margin-bottom: 20px;
}

.plugins-mini-list h4 {
  margin: 0 0 2px;
  color: #ffdc86;
  font-size: 14px;
}

.plugins-mini-list span {
  color: rgba(255, 248, 229, 0.80);
  font-size: 14px;
}

.plugins-mini-list span::before {
  content: "•";
  margin-right: 8px;
  color: #ffc95d;
}

.plugins-btn-card {
  align-self: flex-start;
  margin-top: auto;
  background: rgba(246, 194, 92, 0.12);
  color: #fff3d0;
}

.plugins-step-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

.plugins-split-panel {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 40px;
  align-items: start;
  border-radius: 30px;
  padding: 42px;
}

.plugins-relation-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.plugins-relation-list article {
  padding: 22px;
  border-radius: 18px;
  background: rgba(0, 0, 0, 0.20);
  border: 1px solid rgba(246, 194, 92, 0.18);
}

.plugins-user-grid {
  grid-template-columns: repeat(4, 1fr);
}

.plugins-faq-list {
  max-width: 1020px;
  margin: 0 auto;
  display: grid;
  gap: 16px;
}

.plugins-faq-list article {
  border-radius: 20px;
  padding: 24px 28px;
}

.plugins-faq-list h3 {
  margin-top: 0;
}

.plugins-note-section .plugins-section-inner {
  border-radius: 22px;
  padding: 26px 32px;
}

.plugins-note-section p {
  margin: 0;
}

.plugins-final-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  border-radius: 30px;
  padding: 42px;
}

.plugins-final-card h2 {
  font-size: clamp(30px, 2.7vw, 46px);
}

.plugins-final-card span {
  display: block;
  margin-top: 14px;
}

.plugins-footer {
  margin-top: 36px;
  padding: 48px 0;
  border-top: 1px solid rgba(246, 194, 92, 0.18);
  background: rgba(0, 0, 0, 0.34);
}

.plugins-footer .plugins-section-inner {
  display: flex;
  justify-content: space-between;
  gap: 28px;
}

.plugins-footer h2 {
  margin: 0 0 10px;
}

.plugins-footer nav {
  display: flex;
  gap: 22px;
  color: rgba(255, 247, 226, 0.82);
}

@media (max-width: 1180px) {
  .plugins-hero-inner,
  .plugins-split-panel {
    grid-template-columns: 1fr;
  }

  .plugins-hero-panel {
    min-height: 360px;
  }

  .plugins-card-grid,
  .plugins-info-grid,
  .plugins-user-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .plugins-step-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 760px) {
  .plugins-section-inner,
  .plugins-nav-inner {
    width: min(100% - 28px, 1480px);
  }

  .plugins-nav-inner {
    min-height: auto;
    padding: 16px 0;
    align-items: flex-start;
    flex-direction: column;
  }

  .plugins-nav-links {
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 14px 18px;
  }

  .plugins-nav-links a,
  .plugins-nav-disabled {
    padding: 0;
  }

  .plugins-nav-cta {
    display: none;
  }

  .plugins-hero {
    padding: 72px 0 54px;
  }

  .plugins-hero-copy h1 {
    font-size: clamp(38px, 10vw, 56px);
  }

  .plugins-card-grid,
  .plugins-info-grid,
  .plugins-user-grid,
  .plugins-step-grid,
  .plugins-relation-list,
  .plugins-hero-metrics {
    grid-template-columns: 1fr;
  }

  .plugins-card,
  .plugins-final-card,
  .plugins-split-panel {
    padding: 24px;
  }

  .plugins-final-card,
  .plugins-footer .plugins-section-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .plugins-footer nav {
    flex-wrap: wrap;
  }
}

/* 登录后台入口：黑金水墨官网风格 */
.ink-login-page {
  position: relative;
  min-height: 100vh;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  color: #fff8ea;
  background:
    radial-gradient(circle at 82% 8%, rgba(214, 162, 61, 0.14), transparent 30%),
    linear-gradient(180deg, rgba(13, 10, 5, 0.96), rgba(8, 7, 5, 0.98));
}

.ink-login-page::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(10, 7, 3, 0.82) 0%, rgba(12, 9, 4, 0.52) 44%, rgba(12, 9, 4, 0.78) 100%),
    linear-gradient(180deg, rgba(6, 5, 2, 0.18), rgba(7, 5, 2, 0.58) 64%, rgba(7, 5, 2, 0.9)),
    url("/public/images/login/login-bg.png?v=login-v3") center center / min(100vw, 1920px) auto no-repeat;
  opacity: 0.9;
}

.ink-login-shell {
  position: relative;
  z-index: 1;
  width: min(1480px, calc(100vw - 80px));
  min-height: calc(100vh - 92px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(390px, 0.78fr);
  gap: clamp(34px, 5vw, 88px);
  align-items: center;
  padding: clamp(42px, 6vw, 88px) 0 34px;
}

.ink-login-brand-panel {
  min-height: auto;
  padding: clamp(30px, 4vw, 58px);
  border: 1px solid rgba(207, 156, 58, 0.18);
  border-radius: 34px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(6, 5, 3, 0.72), rgba(26, 20, 10, 0.26)),
    radial-gradient(circle at 74% 20%, rgba(225, 171, 70, 0.13), transparent 38%);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.36);
  backdrop-filter: blur(8px);
}

.ink-login-brand-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 214, 120, 0.08), transparent 18%, transparent 80%, rgba(255, 214, 120, 0.06)),
    repeating-linear-gradient(90deg, rgba(255, 217, 143, 0.028) 0 1px, transparent 1px 96px);
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.9), transparent 88%);
}

.ink-login-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #f6bf4c;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.ink-login-kicker::before {
  content: "";
  width: 28px;
  height: 1px;
  background: linear-gradient(90deg, #f8c75d, transparent);
}

.ink-login-brand-panel h1 {
  max-width: 760px;
  margin: 24px 0 18px;
  color: #fff8ea;
  font-size: clamp(44px, 3.4vw, 66px);
  line-height: 1.16;
  letter-spacing: -0.052em;
  text-shadow: 0 12px 34px rgba(0, 0, 0, 0.55);
}

.ink-login-lead {
  max-width: 680px;
  margin: 0;
  color: rgba(255, 247, 231, 0.88);
  font-size: clamp(17px, 1.2vw, 22px);
  line-height: 1.8;
}

.ink-login-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0;
}

.ink-login-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 16px;
  border: 1px solid rgba(238, 188, 86, 0.38);
  border-radius: 999px;
  color: #ffe4a3;
  background: rgba(7, 5, 2, 0.42);
  box-shadow: inset 0 0 18px rgba(232, 177, 69, 0.08);
  font-size: 13px;
  font-weight: 800;
}

.ink-login-statement {
  max-width: 700px;
  margin: 0;
  color: rgba(255, 247, 231, 0.78);
  font-size: 16px;
  line-height: 1.9;
}

.ink-login-quote {
  width: fit-content;
  max-width: 100%;
  margin-top: 24px;
  padding: 16px 20px;
  border-left: 3px solid #e6b04b;
  border-radius: 16px;
  color: #ffd982;
  background: rgba(10, 7, 3, 0.52);
  box-shadow: inset 0 0 24px rgba(224, 169, 63, 0.08);
  font-weight: 900;
  letter-spacing: 0.02em;
}

.ink-login-security {
  max-width: 760px;
  margin: 22px 0 0;
  color: rgba(255, 240, 213, 0.58);
  font-size: 13px;
  line-height: 1.8;
}

.ink-login-card {
  width: min(100%, 470px);
  justify-self: end;
  padding: 34px;
  border-radius: 30px;
  border: 1px solid rgba(232, 177, 72, 0.32);
  background:
    linear-gradient(180deg, rgba(21, 16, 9, 0.88), rgba(8, 7, 5, 0.86)),
    radial-gradient(circle at 50% 0%, rgba(241, 184, 72, 0.16), transparent 38%);
  box-shadow:
    0 28px 90px rgba(0, 0, 0, 0.42),
    inset 0 0 42px rgba(255, 205, 110, 0.045);
  backdrop-filter: blur(18px);
}

.ink-login-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 28px;
}

.ink-login-logo-row {
  display: flex;
  align-items: center;
  gap: 14px;
}

.ink-login-logo {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(240, 190, 77, 0.52);
  border-radius: 50%;
  color: #ffd777;
  background: radial-gradient(circle, rgba(226, 171, 55, 0.22), rgba(8, 6, 3, 0.74));
  box-shadow: 0 0 28px rgba(224, 169, 63, 0.18), inset 0 0 16px rgba(255, 215, 118, 0.1);
  font-weight: 900;
}

.ink-login-card .ink-login-brand-name,
.ink-login-card .brand-name {
  color: #fff7e8;
  font-size: 22px;
  font-weight: 900;
}

.ink-login-card .ink-login-brand-desc,
.ink-login-card .brand-desc {
  color: rgba(255, 237, 206, 0.62);
  font-size: 13px;
}

.ink-login-status {
  padding: 8px 12px;
  border: 1px solid rgba(238, 188, 86, 0.28);
  border-radius: 999px;
  color: #ffd982;
  background: rgba(9, 7, 4, 0.5);
  font-size: 12px;
  font-weight: 800;
}

.ink-login-card-title {
  margin-bottom: 26px;
}

.ink-login-card-title p {
  margin: 0 0 8px;
  color: #fff8ea;
  font-size: 34px;
  line-height: 1.1;
  font-weight: 950;
  letter-spacing: -0.04em;
}

.ink-login-card-title span {
  color: rgba(255, 242, 220, 0.72);
  line-height: 1.7;
}

.ink-login-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.ink-login-form label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 0;
}

.ink-login-form label span {
  color: rgba(255, 238, 205, 0.82);
  font-weight: 800;
}

.ink-login-form input,
.ink-password-field input {
  width: 100%;
  height: 48px;
  border: 1px solid rgba(236, 183, 77, 0.22);
  border-radius: 15px;
  color: #fffaf0;
  background: rgba(6, 5, 3, 0.64);
  box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.24);
  box-sizing: border-box;
  padding: 0 15px;
}

.ink-login-form input::placeholder {
  color: rgba(255, 236, 200, 0.38);
}

.ink-login-form input:focus {
  outline: none;
  border-color: rgba(246, 196, 86, 0.72);
  box-shadow: 0 0 0 4px rgba(230, 177, 68, 0.12), inset 0 0 20px rgba(0, 0, 0, 0.24);
}

.ink-password-field {
  position: relative;
}

.ink-password-field input {
  padding-right: 72px;
}

.ink-password-field button {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  min-width: 52px;
  height: 32px;
  border: 1px solid rgba(236, 183, 77, 0.26);
  border-radius: 999px;
  color: #ffe3a4;
  background: rgba(16, 12, 6, 0.82);
  cursor: pointer;
}

.ink-login-options {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 2px;
}

.ink-remember-account {
  display: inline-flex;
  align-items: center;
  flex-direction: row;
  gap: 8px;
  color: rgba(255, 239, 210, 0.76);
  font-size: 13px;
}

.ink-login-form label.ink-remember-account {
  flex-direction: row;
  align-items: center;
  gap: 8px;
}

.ink-remember-account input {
  width: 16px;
  height: 16px;
  accent-color: #e7b14e;
  margin: 0;
}

.ink-login-links {
  display: flex;
  gap: 12px;
}

.ink-login-links a,
.ink-login-help a {
  color: #ffd982;
  text-decoration: none;
  font-size: 13px;
  font-weight: 800;
}

.ink-login-links a:hover,
.ink-login-help a:hover {
  color: #fff1c5;
}

.ink-login-submit {
  width: 100%;
  min-height: 50px;
  border: 0;
  border-radius: 15px;
  color: #211506;
  background: linear-gradient(135deg, #ffe7a7, #f0b640 55%, #d79424);
  box-shadow: 0 14px 34px rgba(225, 166, 54, 0.24);
  font-size: 16px;
  font-weight: 950;
  cursor: pointer;
}

.ink-login-submit:hover {
  filter: brightness(1.04);
}

.ink-login-help {
  margin-top: 22px;
  padding: 16px;
  border-color: rgba(232, 177, 72, 0.22);
  background: rgba(9, 7, 4, 0.52);
}

.ink-login-help p {
  margin: 0 0 12px;
  color: rgba(255, 239, 211, 0.68);
  line-height: 1.7;
}

.ink-login-help div {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.ink-login-page .alert.error {
  margin-bottom: 18px;
  border-color: rgba(255, 117, 117, 0.25);
  background: rgba(72, 21, 16, 0.72);
  color: #ffd0c8;
}

.ink-login-footer {
  position: relative;
  z-index: 1;
  width: min(1480px, calc(100vw - 80px));
  margin: -22px auto 0;
  padding: 0 0 28px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: rgba(255, 238, 204, 0.54);
  font-size: 12px;
}

@media (max-width: 980px) {
  .ink-login-shell {
    width: min(100% - 32px, 680px);
    min-height: auto;
    grid-template-columns: 1fr;
    padding-top: 26px;
    gap: 20px;
  }

  .ink-login-brand-panel {
    padding: 26px;
    border-radius: 26px;
  }

  .ink-login-brand-panel h1 {
    font-size: clamp(38px, 10vw, 56px);
    overflow-wrap: anywhere;
    word-break: break-word;
    letter-spacing: -0.045em;
  }

  .ink-login-card {
    justify-self: stretch;
    width: 100%;
    padding: 26px;
  }

  .ink-login-footer {
    width: min(100% - 32px, 680px);
    flex-direction: column;
    margin-top: 0;
  }
}

@media (max-width: 560px) {
  .ink-login-shell {
    width: min(calc(100% - 22px), 520px);
    padding-top: 14px;
  }

  .ink-login-brand-panel {
    padding: 20px;
  }

  .ink-login-brand-panel h1 {
    font-size: clamp(32px, 10vw, 42px);
    line-height: 1.18;
    letter-spacing: -0.035em;
  }

  .ink-login-lead,
  .ink-login-statement,
  .ink-login-security {
    font-size: 13px;
  }

  .ink-login-tags {
    gap: 8px;
    margin: 18px 0;
  }

  .ink-login-tags span {
    min-height: 30px;
    padding: 0 12px;
  }

  .ink-login-card {
    padding: 22px;
    border-radius: 24px;
  }

  .ink-login-card-head,
  .ink-login-options {
    align-items: flex-start;
    flex-direction: column;
  }

  .ink-login-card-title p {
    font-size: 28px;
  }

  .ink-login-submit {
    min-height: 48px;
  }

  .ink-login-footer {
    width: min(calc(100% - 22px), 520px);
  }
}

@media (max-width: 430px) {
  .pricing-nav-inner {
    width: min(calc(100% - 22px), 390px);
    justify-content: center;
  }

  .pricing-brand {
    min-width: 0;
    flex: 1 1 auto;
  }

  .pricing-nav-cta {
    min-width: 108px;
    padding: 11px 14px;
  }

  .pricing-nav-links {
    gap: 8px 14px;
  }

  .pricing-nav-links a {
    font-size: 12px;
  }
}

@media (max-width: 640px) {
  body.ink-home-page {
    overflow-x: hidden;
  }

  body.ink-home-page .ink-home-nav-inner {
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
  }

  body.ink-home-page .ink-home-nav-cta {
    width: auto;
    min-width: 148px;
    max-width: calc(100vw - 180px);
    min-height: 44px;
    padding: 0 18px;
    margin-left: auto;
  }

  body.ink-home-page .ink-hero h1 {
    max-width: 100%;
    overflow-wrap: anywhere;
    word-break: break-word;
    font-size: clamp(38px, 9.4vw, 48px);
    line-height: 1.18;
    letter-spacing: -0.04em;
  }

  body.ink-home-page .ink-hero h1 span {
    display: inline;
  }
}

.ink-features-page {
  margin: 0;
  min-height: 100vh;
  color: #fff6df;
  background: #090704;
  font-family: "Microsoft YaHei", "PingFang SC", "Noto Sans SC", sans-serif;
}

.ink-features-page *,
.ink-features-page *::before,
.ink-features-page *::after {
  box-sizing: border-box;
}

.features-page-shell {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 10%, rgba(230, 179, 78, 0.16), transparent 30%),
    linear-gradient(180deg, rgba(11, 8, 4, 0.88), rgba(7, 6, 4, 0.98));
}

.features-page-shell::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(7, 5, 2, 0.28), rgba(7, 5, 2, 0.76) 62%, rgba(7, 5, 2, 0.94)),
    url("/public/images/home/core-features-bg.png?v=features-v1") center top / cover no-repeat;
  opacity: 0.68;
}

.features-page-shell > * {
  position: relative;
  z-index: 1;
}

.features-section-inner {
  width: min(1480px, calc(100vw - 80px));
  margin: 0 auto;
}

.features-hero {
  min-height: 660px;
  display: flex;
  align-items: center;
  padding: 104px 0 78px;
}

.features-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(360px, 0.72fr);
  align-items: center;
  gap: clamp(44px, 6vw, 96px);
}

.features-hero h1 {
  max-width: 820px;
  margin: 0;
  color: #fff8e8;
  font-size: clamp(44px, 3.4vw, 66px);
  line-height: 1.16;
  letter-spacing: -0.052em;
  text-shadow: 0 16px 38px rgba(0, 0, 0, 0.42);
}

.features-hero-desc {
  max-width: 760px;
  margin: 26px 0 0;
  color: rgba(255, 248, 229, 0.84);
  font-size: 18px;
  line-height: 1.9;
}

.features-hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.features-hero-tags span {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 0 16px;
  border: 1px solid rgba(224, 174, 78, 0.38);
  border-radius: 999px;
  color: #ffe5a5;
  background: rgba(10, 7, 3, 0.46);
  font-size: 13px;
  font-weight: 800;
}

.features-hero-panel {
  min-height: 330px;
  display: grid;
  place-items: center;
  gap: 18px;
  padding: 34px;
  border: 1px solid rgba(223, 170, 74, 0.24);
  border-radius: 34px;
  background:
    radial-gradient(circle at 50% 30%, rgba(244, 197, 91, 0.14), transparent 42%),
    linear-gradient(145deg, rgba(18, 14, 8, 0.64), rgba(6, 5, 4, 0.78));
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.34), inset 0 0 60px rgba(255, 212, 120, 0.045);
  backdrop-filter: blur(12px);
}

.features-hero-panel span {
  width: min(100%, 300px);
  min-height: 64px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(225, 174, 78, 0.24);
  border-radius: 18px;
  color: #ffe4a1;
  background: rgba(7, 5, 3, 0.5);
  font-size: 18px;
  font-weight: 950;
  letter-spacing: 0.14em;
}

.features-section {
  padding: 86px 0;
}

.features-section-head {
  max-width: 860px;
  margin: 0 auto 34px;
  text-align: center;
}

.features-section-head p {
  margin: 0 0 12px;
  color: #f4c45a;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.features-section-head h2 {
  margin: 0;
  color: #fff7e7;
  font-size: clamp(34px, 3vw, 52px);
  line-height: 1.18;
  letter-spacing: -0.045em;
}

.features-section-head span {
  display: block;
  margin-top: 16px;
  color: rgba(255, 244, 220, 0.74);
  font-size: 16px;
  line-height: 1.85;
}

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

.features-function-grid article,
.features-support-grid article,
.features-plan-grid article {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(218, 165, 73, 0.22);
  border-radius: 26px;
  background:
    linear-gradient(145deg, rgba(22, 18, 12, 0.84), rgba(8, 7, 5, 0.78)),
    radial-gradient(circle at 15% 0%, rgba(229, 177, 78, 0.12), transparent 38%);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.3), inset 0 0 40px rgba(255, 212, 122, 0.035);
  backdrop-filter: blur(12px);
}

.features-function-grid article {
  padding: 30px;
}

.features-function-index {
  color: #eec05c;
  font-size: 32px;
  font-weight: 950;
  letter-spacing: -0.04em;
}

.features-function-grid h3,
.features-support-grid h3,
.features-plan-grid h3 {
  margin: 12px 0;
  color: #fff8e8;
  font-size: 26px;
  line-height: 1.2;
}

.features-function-position,
.features-function-grid p,
.features-support-grid p,
.features-plan-grid p {
  color: rgba(255, 244, 221, 0.76);
  line-height: 1.82;
}

.features-info-block {
  margin-top: 22px;
}

.features-info-block strong,
.features-plan-list strong {
  display: block;
  margin-bottom: 10px;
  color: #ffd978;
  font-size: 14px;
}

.features-chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.features-chip-list span,
.features-plan-list span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 11px;
  border: 1px solid rgba(222, 171, 75, 0.24);
  border-radius: 999px;
  color: rgba(255, 242, 216, 0.82);
  background: rgba(7, 5, 3, 0.42);
  font-size: 13px;
  font-weight: 700;
}

.features-info-block ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.features-info-block li {
  color: rgba(255, 242, 216, 0.8);
  font-size: 14px;
}

.features-info-block li::before {
  content: "•";
  margin-right: 8px;
  color: #e5b256;
}

.features-short-line {
  margin-top: 24px;
  padding: 16px;
  border-left: 3px solid #e6b04b;
  border-radius: 14px;
  background: rgba(7, 5, 3, 0.42);
  color: #ffe1a0 !important;
  font-weight: 800;
}

.features-support-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.features-support-grid article {
  padding: 26px;
}

.features-support-grid article > span {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(224, 174, 78, 0.34);
  border-radius: 14px;
  color: #ffd978;
  background: rgba(9, 7, 4, 0.58);
  font-weight: 950;
}

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

.features-plan-grid article {
  padding: 30px;
}

.features-plan-list {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 20px;
}

.features-plan-list.is-muted span {
  color: rgba(255, 235, 205, 0.52);
}

.features-plugin-note .pricing-btn {
  margin-top: 18px;
}

@media (max-width: 1180px) {
  .features-hero-inner,
  .features-function-grid,
  .features-plan-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 760px) {
  .features-section-inner {
    width: min(100% - 32px, 1480px);
  }

  .features-hero {
    min-height: auto;
    padding: 72px 0 54px;
  }

  .features-hero h1 {
    font-size: clamp(38px, 10vw, 56px);
  }

  .features-hero-panel {
    min-height: auto;
  }

  .features-section {
    padding: 58px 0;
  }

  .features-support-grid {
    grid-template-columns: 1fr;
  }

  .features-info-block ul {
    grid-template-columns: 1fr;
  }
}
