/* 山与峰AI开发工具 - 2026 明亮大气官网 */
:root {
  --ink: #14221f;
  --muted: #5b6f6b;
  --line: rgba(20, 60, 55, .1);
  --bg: #f6faf8;
  --surface: #ffffff;
  --brand: #0c7c6f;
  --brand-deep: #075a51;
  --brand-soft: #e6f5f2;
  --accent: #2f6fed;
  --accent-soft: #eaf1ff;
  --gold: #c9852c;
  --danger: #d64545;
  --ok: #1a9a6e;
  --radius: 18px;
  --shadow: 0 18px 50px rgba(12, 70, 62, .08);
  --font: "Outfit", "Noto Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
  --header-h: 72px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  color: var(--ink);
  background:
    radial-gradient(1200px 600px at 10% -10%, rgba(12, 124, 111, .12), transparent 55%),
    radial-gradient(900px 500px at 90% 0%, rgba(47, 111, 237, .1), transparent 50%),
    linear-gradient(180deg, #f4faf8 0%, #f8fafb 40%, #f3f7f6 100%);
  min-height: 100vh;
  line-height: 1.65;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, select, textarea { font: inherit; }
.container {
  width: min(1080px, 100%);
  margin: 0 auto;
  padding-left: clamp(24px, 5vw, 48px);
  padding-right: clamp(24px, 5vw, 48px);
}

/* 锚点滚动避开吸顶导航 */
#start,
#studio,
#process {
  scroll-margin-top: calc(var(--header-h) + 16px);
}

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 100;
  backdrop-filter: blur(16px);
  background: rgba(246, 250, 248, .82);
  border-bottom: 1px solid transparent;
  transition: border-color .25s, background .25s;
}
.site-header.scrolled {
  border-bottom-color: var(--line);
  background: rgba(255,255,255,.9);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  min-height: 72px; gap: 16px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand-mark {
  width: 40px; height: 40px;
  flex: 0 0 auto;
  display: block;
  object-fit: contain;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}
.brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.brand-text strong { font-size: 1.15rem; letter-spacing: .02em; }
.brand-text em { font-style: normal; font-size: .78rem; color: var(--muted); font-weight: 500; }
.nav { display: flex; gap: 8px; }
.nav a {
  padding: 8px 14px; border-radius: 999px; color: var(--muted); font-weight: 500; font-size: .95rem;
}
.nav a:hover, .nav a.active { color: var(--brand-deep); background: var(--brand-soft); }
.header-actions { display: flex; align-items: center; gap: 8px; }
.nav-toggle {
  display: none; width: 42px; height: 42px; border: 0; background: var(--surface);
  border-radius: 12px; flex-direction: column; justify-content: center; align-items: center; gap: 5px;
  box-shadow: 0 2px 10px rgba(0,0,0,.04);
}
.nav-toggle span { width: 18px; height: 2px; background: var(--ink); border-radius: 2px; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 11px 20px; border-radius: 999px; border: 1px solid transparent;
  font-weight: 600; cursor: pointer; transition: .2s ease; white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--brand) 0%, #0a9a88 100%);
  color: #fff; box-shadow: 0 10px 24px rgba(12,124,111,.25);
}
.btn-primary:hover { transform: translateY(-1px); filter: brightness(1.05); }
.btn-ghost {
  background: rgba(255,255,255,.7); border-color: var(--line); color: var(--ink);
}
.btn-ghost:hover { background: #fff; border-color: rgba(12,124,111,.25); }
.btn-accent {
  background: linear-gradient(135deg, #2f6fed, #4b86f7); color: #fff;
  box-shadow: 0 10px 24px rgba(47,111,237,.22);
}
.btn-block { width: 100%; }
.btn:disabled { opacity: .6; cursor: not-allowed; transform: none; }

/* Hero */
.hero {
  position: relative;
  overflow: visible;
  padding: 48px 0 64px;
  min-height: calc(100vh - var(--header-h));
  display: flex;
  justify-content: center;
  align-items: center;
  align-items: safe center;
  z-index: 1;
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(120deg, rgba(255,255,255,.2), transparent 40%),
    url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%230c7c6f' fill-opacity='0.035'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
  border-radius: 0;
}
.hero-grid {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 36px;
  align-items: center;
}
.hero-copy .eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--brand-deep); font-weight: 700; font-size: .9rem;
  margin-bottom: 18px;
}
.hero-copy .eyebrow::before {
  content: ""; width: 28px; height: 2px; background: var(--brand); border-radius: 2px;
}
.hero-brand {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  line-height: 1.08; font-weight: 800; letter-spacing: -.02em;
  margin-bottom: 14px;
}
.hero-brand span {
  display: block;
  background: linear-gradient(120deg, var(--brand-deep) 0%, var(--brand) 45%, #2f6fed 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero-brand small {
  display: block; margin-top: 8px;
  font-size: clamp(1.05rem, 2vw, 1.35rem); font-weight: 600; color: var(--muted);
  background: none; -webkit-text-fill-color: initial; color: var(--muted);
}
.hero-desc {
  font-size: 1.08rem; color: var(--muted); max-width: 34em; margin-bottom: 28px;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 12px; }

/* Studio panel */
.studio {
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(12,124,111,.1);
  border-radius: 28px;
  padding: 22px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
  animation: floatIn .8s ease both;
  position: relative;
  z-index: 2;
  max-width: 100%;
}
@keyframes floatIn {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: none; }
}
.studio-tabs {
  display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 18px;
}
.studio-tab {
  border: 1px solid var(--line); background: #fff; border-radius: 14px;
  padding: 14px 12px; cursor: pointer; text-align: left; transition: .2s;
}
.studio-tab strong { display: block; font-size: 1rem; margin-bottom: 2px; }
.studio-tab span { color: var(--muted); font-size: .82rem; }
.studio-tab.active {
  border-color: transparent;
  background: linear-gradient(135deg, var(--brand-soft), #fff);
  box-shadow: inset 0 0 0 2px var(--brand);
}
.studio-panel[hidden] { display: none !important; }
.field { margin-bottom: 14px; }
.field label {
  display: block; font-size: .88rem; font-weight: 600; margin-bottom: 8px; color: var(--ink);
}
.chip-row { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  border: 1px solid var(--line); background: #fff; border-radius: 999px;
  padding: 8px 14px; cursor: pointer; font-size: .88rem; color: var(--muted);
}
.chip.active, .chip:hover {
  color: var(--brand-deep); border-color: rgba(12,124,111,.35); background: var(--brand-soft);
}
.field textarea, .field select, .field input,
.auth-card input, .auth-card textarea,
.modal input[type="text"], .modal input[type="tel"], .modal input[type="email"], .modal input[type="password"], .modal textarea,
.form-card input, .form-card textarea, .form-card select {
  width: 100%; border: 1px solid #d7e4e1; border-radius: 14px;
  padding: 12px 14px; background: #fff; outline: none; transition: .2s;
  box-sizing: border-box;
}
.field textarea:focus, .field select:focus, .field input:focus,
.auth-card input:focus,
.modal input[type="text"]:focus, .modal input[type="tel"]:focus, .modal input[type="email"]:focus, .modal input[type="password"]:focus, .modal textarea:focus,
.form-card input:focus, .form-card textarea:focus, .form-card select:focus {
  border-color: var(--brand); box-shadow: 0 0 0 4px rgba(12,124,111,.12);
}
.field textarea { min-height: 110px; resize: vertical; }
.price-note {
  background: linear-gradient(135deg, #fff8eb, #fff);
  border: 1px solid rgba(201,133,44,.2);
  border-radius: 14px; padding: 12px 14px; margin: 8px 0 16px;
  color: #8a5a12; font-size: .9rem; line-height: 1.55;
}
.price-note-main { margin: 0 0 8px; }
.price-note-main strong { color: #a35f00; font-weight: 800; }
.price-note b { color: #c2410c; font-weight: 900; font-size: 1.08em; }
.price-note-list {
  list-style: none; margin: 0; padding: 0; display: grid; gap: 5px;
}
.price-note-list li {
  position: relative; padding-left: 12px; color: #8a5a12;
}
.price-note-list li::before {
  content: ""; position: absolute; left: 0; top: .55em;
  width: 5px; height: 5px; border-radius: 50%; background: #c9852c;
}
.price-note-list strong { color: #a35f00; font-weight: 800; }
.price-note-list em {
  font-style: normal; color: #1a9a6e; font-weight: 800;
}
.price-note-list a {
  color: var(--brand);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.price-note-list a:hover { color: var(--brand-deep); }

/* 需求附图上传 */
.img-upload { margin-top: 4px; }
.img-upload-previews {
  display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 10px;
}
.img-thumb {
  position: relative; width: 72px; height: 72px; border-radius: 12px; overflow: hidden;
  border: 1px solid var(--line); background: #f7faf9;
}
.img-thumb img { width: 100%; height: 100%; object-fit: cover; }
.img-thumb-del {
  position: absolute; top: 2px; right: 2px; width: 22px; height: 22px;
  border: 0; border-radius: 50%; background: rgba(0,0,0,.55); color: #fff;
  cursor: pointer; line-height: 1; font-size: 14px;
}
.img-upload-btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 40px; padding: 8px 14px; border-radius: 12px;
  border: 1px dashed rgba(12,124,111,.35); background: #f3faf8;
  color: var(--brand-deep); font-weight: 600; font-size: .9rem; cursor: pointer;
}
.img-upload-btn:hover { background: var(--brand-soft); }
.img-upload-tip { margin-top: 8px; color: var(--muted); font-size: .82rem; }

.doc-upload {
  display: flex; flex-wrap: wrap; align-items: center; gap: 10px;
}
.doc-upload-btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 46px; padding: 10px 16px;
  border: 1px dashed rgba(12,124,111,.35);
  border-radius: 12px; background: #f7faf9;
  color: var(--brand-deep); font-weight: 700; font-size: .9rem;
  cursor: pointer; max-width: 100%;
}
.doc-upload-btn span {
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap; max-width: 280px;
}
.doc-upload-btn:hover { border-color: var(--brand); background: #eef8f5; }
.doc-upload-clear {
  border: 0; background: #fff1f0; color: var(--danger);
  padding: 8px 12px; border-radius: 999px; font-weight: 700;
  font-size: .82rem; cursor: pointer;
}
.price-note-range { margin: 0; }
.price-note-range b { font-size: 1.12em; }

.order-money {
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px;
  margin: 14px 0 18px;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}
.order-money-item {
  background: #f6faf8; border: 1px solid var(--line); border-radius: 14px; padding: 12px 14px;
  min-width: 0;
  overflow: hidden;
}
.order-money-item.accent {
  background: linear-gradient(135deg, #fff8eb, #fff);
  border-color: rgba(201,133,44,.22);
}
.order-money-item span { display: block; color: var(--muted); font-size: .82rem; margin-bottom: 4px; line-height: 1.3; }
.order-money-item b {
  display: block;
  font-size: 1.15rem;
  color: var(--ink);
  word-break: break-all;
  overflow-wrap: anywhere;
  line-height: 1.25;
}
.order-money-item.accent b { color: #a35f00; }

.thumb-row { display: flex; flex-wrap: wrap; gap: 10px; margin: 8px 0 16px; }
.thumb-row a, .thumb-row span {
  display: block; width: 88px; height: 88px; border-radius: 12px; overflow: hidden;
  border: 1px solid var(--line); background: #f7faf9;
}
.thumb-row img { width: 100%; height: 100%; object-fit: cover; }

.domain-box {
  background: linear-gradient(135deg, #eaf8f5, #eef3ff);
  border: 1px solid rgba(12,124,111,.15);
  border-radius: 14px; padding: 14px; margin: 12px 0;
}
.domain-box .domain-url {
  word-break: break-all; font-weight: 700; color: var(--brand-deep); margin: 6px 0 12px;
}
.domain-actions { display: flex; flex-wrap: wrap; gap: 8px; }

.final-pay-box {
  margin-top: 16px; padding: 16px; border-radius: 16px;
  border: 1px solid rgba(12,124,111,.15); background: #fff;
}
.final-pay-box h4 { margin-bottom: 8px; }
.pack-wait-box {
  margin-top: 14px; padding: 16px; border-radius: 14px;
  background: #fff8eb; border: 1px solid rgba(201,133,44,.25); color: #8a5a12; line-height: 1.7;
}
.source-box {
  margin-top: 14px; padding: 16px; border-radius: 14px;
  background: #e9f8f1; border: 1px solid #b7e4cf;
}
.server-tip-box {
  margin-top: 14px;
  padding: 18px 18px 16px;
  border-radius: 16px;
  background:
    linear-gradient(135deg, rgba(214, 69, 69, .06), rgba(255, 248, 246, .95) 42%, #fff);
  border: 1px solid rgba(214, 69, 69, .22);
  box-shadow: 0 10px 28px rgba(180, 60, 50, .06);
  color: #5c2a2a;
}
.server-tip-head {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
}
.server-tip-mark {
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  border-radius: 9px;
  display: grid;
  place-items: center;
  font-size: .85rem;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(145deg, #d64545, #e56a4f);
  box-shadow: 0 6px 14px rgba(214, 69, 69, .28);
  margin-top: 1px;
}
.server-tip-head strong {
  display: block;
  color: #b42318;
  font-size: 1.02rem;
  margin: 0 0 2px;
  line-height: 1.3;
}
.server-tip-head em {
  display: block;
  font-style: normal;
  font-size: .82rem;
  color: #9a5a5a;
  font-weight: 500;
}
.server-tip-list {
  list-style: none;
  margin: 0 0 14px;
  padding: 0;
  display: grid;
  gap: 8px;
}
.server-tip-list li {
  position: relative;
  padding: 0 0 0 16px;
  font-size: .9rem;
  line-height: 1.6;
  color: #6b3434;
}
.server-tip-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .62em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #d64545;
  box-shadow: 0 0 0 3px rgba(214, 69, 69, .15);
}
.server-tip-list strong {
  display: inline;
  color: #b42318;
  font-weight: 800;
  margin: 0;
}
.server-tip-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 16px;
  padding-top: 12px;
  border-top: 1px dashed rgba(214, 69, 69, .22);
}
.server-tip-btn {
  background: linear-gradient(135deg, #d64545, #e85d4c);
  color: #fff;
  box-shadow: 0 8px 18px rgba(214, 69, 69, .24);
  border: 0;
}
.server-tip-btn:hover {
  filter: brightness(1.05);
  transform: translateY(-1px);
}
.server-tip-contact {
  font-size: .88rem;
  color: #8a4a4a;
  font-weight: 500;
}
.server-tip-contact b {
  font-weight: 800;
  color: #6b2b2b;
  letter-spacing: .01em;
}

/* 个人中心费用通知 */
.user-notice {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px 18px;
  margin: 0 0 16px;
  padding: 16px 18px;
  border-radius: 16px;
  background: linear-gradient(135deg, #c62828 0%, #e53935 55%, #d32f2f 100%);
  color: #fff;
  box-shadow: 0 10px 24px rgba(198, 40, 40, .22);
}
.user-notice-main {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  flex: 1 1 260px;
  min-width: 0;
}
.user-notice-ico {
  flex: 0 0 auto;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,.22);
  border: 1px solid rgba(255,255,255,.42);
  font-size: .85rem;
  font-weight: 800;
  margin-top: 1px;
}
.user-notice-copy {
  min-width: 0;
}
.user-notice-copy strong.user-notice-title {
  display: block;
  font-size: 1rem;
  font-weight: 800;
  margin: 0 0 6px;
  color: #fff;
  letter-spacing: .02em;
}
.user-notice-copy p {
  margin: 0;
  font-size: .9rem;
  line-height: 1.6;
  color: rgba(255,255,255,.96);
}
.user-notice-copy p strong {
  color: #ffe082;
  font-weight: 800;
}
.user-notice-btn {
  flex: 0 0 auto;
  background: #fff !important;
  color: #c62828 !important;
  border: 0 !important;
  box-shadow: 0 4px 12px rgba(0,0,0,.12);
  font-weight: 700;
  padding: 9px 18px;
  white-space: nowrap;
  border-radius: 999px;
}
.user-notice-btn:hover {
  filter: brightness(1.04);
  transform: translateY(-1px);
}

/* 价格页 */
.price-hero {
  padding: 48px 0 20px;
  background:
    radial-gradient(900px 420px at 8% -20%, rgba(12,124,111,.13), transparent 55%),
    radial-gradient(720px 360px at 92% 0%, rgba(201,133,44,.1), transparent 50%);
}
.price-hero-inner {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px 32px;
}
.price-hero-copy { min-width: 0; flex: 1 1 auto; }
.price-eyebrow {
  display: inline-flex;
  color: var(--brand-deep);
  font-weight: 700;
  font-size: .9rem;
  margin-bottom: 12px;
  letter-spacing: .04em;
}
.price-hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  line-height: 1.1;
  letter-spacing: -.02em;
  margin-bottom: 14px;
}
.price-lead {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 38em;
  margin: 0;
  line-height: 1.7;
}
.price-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  flex: 0 0 auto;
  justify-content: flex-end;
  align-items: center;
  padding-bottom: 4px;
}
.price-hero-actions .btn {
  white-space: nowrap;
  min-height: 44px;
  padding: 11px 18px;
}
.price-board { padding-top: 12px; }
.price-block {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 22px 36px;
  align-items: center;
  padding: clamp(22px, 4vw, 32px) 0;
  border-bottom: 1px solid var(--line);
}
.price-block.price-block-split {
  grid-template-columns: 1fr;
  align-items: stretch;
  gap: 18px;
}
.price-block:last-of-type { border-bottom: 0; }
.price-block-tag {
  display: inline-block;
  font-size: .78rem;
  font-weight: 700;
  color: var(--brand-deep);
  background: var(--brand-soft);
  border-radius: 999px;
  padding: 5px 10px;
  margin-bottom: 10px;
}
.price-block-head h2 {
  font-size: clamp(1.25rem, 3vw, 1.55rem);
  margin: 0 0 8px;
  letter-spacing: -.01em;
}
.price-block-head p {
  margin: 0;
  color: var(--muted);
  font-size: .95rem;
  line-height: 1.6;
  max-width: 42em;
}
.price-block-body {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px 22px;
  align-items: center;
}
.price-figure {
  min-width: 7.5rem;
}
.price-figure-label {
  display: block;
  font-size: .8rem;
  color: var(--muted);
  margin-bottom: 4px;
}
.price-figure strong {
  display: block;
  font-family: Outfit, var(--font);
  font-size: clamp(2rem, 5vw, 2.6rem);
  font-weight: 800;
  line-height: 1;
  color: var(--brand-deep);
  letter-spacing: -.03em;
}
.price-figure em {
  font-style: normal;
  font-size: .55em;
  margin-right: 2px;
  font-weight: 700;
}
.price-points {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}
.price-points li {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 12px;
  align-items: baseline;
  font-size: .92rem;
  color: var(--ink);
}
.price-points b {
  min-width: 4.5em;
  color: var(--muted);
  font-weight: 600;
  font-size: .86rem;
}

.price-tier-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.price-tier {
  min-width: 0;
  padding: 20px 18px 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(15, 47, 42, .04);
}
.price-tier.is-pro {
  border-color: rgba(12, 124, 111, .28);
  background:
    radial-gradient(420px 160px at 100% 0%, rgba(12, 124, 111, .08), transparent 65%),
    #fff;
}
.price-tier-badge {
  display: inline-flex;
  margin-bottom: 10px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(12, 124, 111, .1);
  color: var(--brand-deep);
  font-size: .74rem;
  font-weight: 700;
}
.price-tier.is-pro .price-tier-badge {
  background: var(--brand);
  color: #fff;
}
.price-tier h3 {
  margin: 0 0 6px;
  font-size: 1.12rem;
  font-weight: 800;
  letter-spacing: -.01em;
}
.price-tier-desc {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: .9rem;
  line-height: 1.55;
  min-height: 2.8em;
}
.price-tier-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 14px;
}
.price-tier-price span {
  color: var(--muted);
  font-size: .82rem;
  font-weight: 600;
}
.price-tier-price strong {
  font-family: Outfit, var(--font);
  font-size: clamp(1.7rem, 3.5vw, 2.15rem);
  font-weight: 800;
  color: var(--brand-deep);
  letter-spacing: -.03em;
  line-height: 1;
}
.price-tier-price em {
  font-style: normal;
  font-size: .55em;
  margin-right: 2px;
  font-weight: 700;
}
.price-tier-list {
  list-style: none;
  margin: 0;
  padding: 12px 0 0;
  border-top: 1px dashed rgba(12, 124, 111, .16);
  display: grid;
  gap: 8px;
}
.price-tier-list li {
  position: relative;
  padding-left: 16px;
  color: var(--ink);
  font-size: .88rem;
  line-height: 1.45;
}
.price-tier-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brand);
  opacity: .7;
}

.price-consult {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px 24px;
  margin-top: 28px;
  padding: 18px 20px;
  border-radius: 18px;
  border: 1px solid rgba(201, 133, 44, .28);
  background: linear-gradient(135deg, #fff8eb, #fff);
}
.price-consult-copy {
  min-width: 0;
  flex: 1 1 auto;
}
.price-consult-copy strong {
  display: block;
  margin-bottom: 4px;
  color: #a35f00;
  font-size: 1.02rem;
}
.price-consult-copy p {
  margin: 0;
  color: #8a5a12;
  font-size: .92rem;
  line-height: 1.6;
}
.price-consult .btn {
  flex: 0 0 auto;
  min-height: 44px;
  white-space: nowrap;
}

.price-cs-body {
  display: flex;
  align-items: stretch;
  gap: 18px;
  margin-top: 8px;
}
.price-cs-qr {
  flex: 0 0 auto;
  width: 168px;
  text-align: center;
}
.price-cs-qr img {
  width: 168px;
  height: 168px;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: #f7faf9;
}
.price-cs-qr span {
  display: block;
  margin-top: 8px;
  font-size: .82rem;
  color: var(--muted);
}
.price-cs-info {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}
.price-cs-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 10px;
  padding: 12px 14px;
  border-radius: 12px;
  background: #f4faf8;
  border: 1px solid rgba(12, 124, 111, .12);
}
.price-cs-row span {
  color: var(--muted);
  font-size: .84rem;
  font-weight: 600;
  min-width: 3.2em;
}
.price-cs-row b {
  flex: 1 1 auto;
  min-width: 0;
  font-size: 1rem;
  word-break: break-all;
}
.price-cs-row a {
  color: inherit;
  text-decoration: none;
}
.price-cs-row a:hover {
  color: var(--brand);
}
.price-cs-copy {
  padding: 6px 12px;
  min-height: 34px;
  font-size: .84rem;
}

.price-footnote {
  margin: 24px 0 0;
  text-align: center;
  color: var(--muted);
  font-size: .9rem;
  line-height: 1.7;
}

html.modal-open,
html.modal-open body {
  overflow: hidden;
}

.dev-cycle-tip {
  margin: 12px 0 4px;
  padding: 14px 16px;
  border-radius: 14px;
  background: linear-gradient(135deg, #eef8f6, #f7fbfa);
  border: 1px solid rgba(12, 124, 111, .18);
}
.dev-cycle-tip.is-active {
  background: linear-gradient(135deg, #e8f7f0, #f4fcf8);
  border-color: rgba(26, 154, 110, .28);
}
.dev-cycle-tip strong {
  display: block;
  margin-bottom: 6px;
  color: var(--brand-deep);
  font-size: .95rem;
}
.dev-cycle-tip p {
  margin: 0 0 4px;
  color: var(--ink);
  font-size: .92rem;
  line-height: 1.65;
}
.dev-cycle-tip p:last-child { margin-bottom: 0; }

/* 云服务器页 */
.server-hero {
  padding: 48px 0 28px;
  background:
    radial-gradient(900px 420px at 12% -20%, rgba(12,124,111,.14), transparent 55%),
    radial-gradient(700px 360px at 90% 0%, rgba(47,111,237,.1), transparent 50%);
}
.server-eyebrow {
  display: inline-flex; color: var(--brand-deep); font-weight: 700; font-size: .9rem;
  margin-bottom: 12px; letter-spacing: .04em;
}
.server-hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.4rem); line-height: 1.1; letter-spacing: -.02em; margin-bottom: 14px;
}
.server-lead { color: var(--muted); font-size: 1.08rem; max-width: 40em; margin-bottom: 22px; }
.server-notice {
  background: linear-gradient(135deg, #fff8eb, #fff);
  border: 1px solid rgba(201,133,44,.28);
  border-radius: 18px; padding: 16px 18px; color: #8a5a12;
}
.server-notice strong { display: block; margin-bottom: 6px; color: #a35f00; font-size: 1rem; }
.server-notice p { margin: 0; line-height: 1.7; font-size: .95rem; }

.server-feat-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
}
.server-feat {
  background: rgba(255,255,255,.88); border: 1px solid var(--line);
  border-radius: 20px; padding: 22px 18px; box-shadow: var(--shadow);
}
.server-feat b {
  display: block; font-size: 1.4rem; color: rgba(12,124,111,.25); margin-bottom: 10px;
}
.server-feat h3 { font-size: 1.05rem; margin-bottom: 8px; }
.server-feat p { color: var(--muted); font-size: .92rem; }

.server-plan-grid {
  display: grid; grid-template-columns: repeat(2, minmax(0, 420px)); gap: 22px;
  justify-content: center; align-items: stretch;
}
.server-plan {
  position: relative;
  background: #fff; border: 1px solid #e6ecea; border-radius: 22px;
  padding: 24px 22px 20px; display: flex; flex-direction: column; gap: 10px;
  box-shadow: 0 12px 34px rgba(12,70,62,.06);
  overflow: hidden;
  isolation: isolate;
}
.server-plan.is-hot {
  border-color: #2f6fed;
  box-shadow: 0 16px 40px rgba(47,111,237,.14);
  padding-top: 26px;
}
.server-plan-ribbon {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 3;
  width: 74px;
  height: 74px;
  overflow: hidden;
  pointer-events: none;
}
.server-plan-ribbon i {
  position: absolute;
  top: 11px;
  right: -26px;
  display: block;
  width: 104px;
  margin: 0;
  padding: 5px 0;
  font-style: normal;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .16em;
  line-height: 1.2;
  text-align: center;
  color: #fff;
  background: linear-gradient(135deg, #1e6aef 0%, #4b86f7 100%);
  box-shadow: 0 4px 12px rgba(30, 106, 239, .28);
  transform: rotate(45deg);
  transform-origin: center;
}
.server-plan.is-hot .server-plan-head {
  padding-right: 36px;
}
.server-plan-head {
  display: flex; align-items: flex-start; justify-content: space-between; gap: 10px;
}
.server-plan h3 { font-size: 1.2rem; line-height: 1.35; margin: 0; }
.server-plan-badge {
  position: static; flex: 0 0 auto;
  background: #ffecec; color: #d64545; font-size: .75rem; font-weight: 700;
  padding: 4px 10px; border-radius: 999px; white-space: nowrap;
}
.server-plan-badge.is-hot-sale { background: #ffecec; color: #d64545; }
.server-plan-badge.is-perf { background: #eaf1ff; color: #2f6fed; }
.server-plan-sub { color: var(--muted); font-size: .9rem; margin: 0; line-height: 1.5; }
.server-plan-price { display: flex; align-items: baseline; gap: 6px; margin-top: 4px; }
.server-plan-price b { font-size: 2.1rem; color: #d64545; letter-spacing: -.02em; }
.server-plan-price span { color: var(--muted); font-size: .9rem; }
.server-plan-orig {
  display: flex; flex-wrap: wrap; gap: 10px; align-items: center;
  font-size: .88rem; color: #8a9693; margin-top: -4px;
}
.server-plan-orig em {
  font-style: normal; color: #1a9a6e; font-weight: 700;
  background: #e9f8f1; padding: 2px 8px; border-radius: 999px; font-size: .8rem;
}
.server-plan-specs { list-style: none; display: grid; gap: 0; margin: 6px 0 4px; }
.server-plan-specs li {
  display: flex; justify-content: space-between; gap: 10px;
  font-size: .92rem; padding: 10px 0; border-bottom: 1px dashed var(--line);
}
.server-plan-specs span { color: var(--muted); }
.server-plan-specs strong { color: var(--ink); font-weight: 700; text-align: right; }
.server-plan-tags {
  display: flex; flex-wrap: wrap; gap: 8px; margin: 4px 0 8px; flex: 1; align-content: flex-start;
}
.server-plan-tags span {
  font-size: .8rem; font-weight: 700; padding: 4px 10px; border-radius: 999px;
}
.server-plan-tags .tag-1 { background: #fff4e8; color: #c9852c; }
.server-plan-tags .tag-2 { background: #e9f8f1; color: #1a9a6e; }
.server-plan-tags .tag-3 { background: #f0eaff; color: #6b4fd6; }
.server-plan .btn-buy-server {
  margin-top: auto;
  background: linear-gradient(135deg, #2f6fed, #4b86f7);
  box-shadow: 0 10px 22px rgba(47,111,237,.22);
}
.server-aliyun {
  margin-top: 40px; border-radius: 22px; padding: 28px 26px;
  background: linear-gradient(120deg, rgba(12,124,111,.08), rgba(47,111,237,.08));
  border: 1px solid rgba(12,124,111,.12);
}
.server-aliyun h3 { margin-bottom: 8px; }
.server-aliyun p { color: var(--muted); line-height: 1.7; }

.verify-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.verify-card {
  background: #f7faf9; border: 1px dashed rgba(12,124,111,.25);
  border-radius: 16px; padding: 14px; text-align: center;
}
.verify-card h4 { font-size: .95rem; margin-bottom: 10px; }
.verify-card img {
  width: 100%; max-height: 160px; object-fit: contain; border-radius: 10px;
  background: #fff; border: 1px solid var(--line); margin-bottom: 10px;
}
.verify-status {
  display: inline-flex; padding: 6px 12px; border-radius: 999px;
  font-size: .85rem; font-weight: 700; margin-bottom: 14px;
}
.verify-status.ok { background: #e9f8f1; color: var(--ok); }
.verify-status.wait { background: #fff6e8; color: #a35f00; }
.verify-status.no { background: #f3f3f3; color: #777; }
.verify-status.bad { background: #fff1f0; color: var(--danger); }

/* Sections */
.section { padding: 88px 0; position: relative; z-index: 1; }
.section-head { max-width: 680px; margin: 0 auto 48px; text-align: center; }
.section-head h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem); line-height: 1.2; margin-bottom: 12px; letter-spacing: -.02em;
}
.section-head p { color: var(--muted); font-size: 1.05rem; }

.about-section {
  background: linear-gradient(180deg, transparent, rgba(255,255,255,.65) 20%, rgba(255,255,255,.65) 80%, transparent);
}
.about-grid {
  display: grid; grid-template-columns: 1.1fr .9fr; gap: 36px; align-items: center;
}
.about-visual {
  position: relative; min-height: 360px; border-radius: 28px; overflow: hidden;
  background:
    linear-gradient(160deg, rgba(12,124,111,.85), rgba(47,111,237,.75)),
    radial-gradient(circle at 30% 20%, rgba(255,255,255,.35), transparent 40%);
  box-shadow: var(--shadow);
}
.about-visual::before {
  content: ""; position: absolute; inset: auto 0 0 0; height: 45%;
  background: linear-gradient(180deg, transparent, rgba(8,40,36,.25));
}
.mountain {
  position: absolute; bottom: 0; left: -5%; right: -5%; height: 55%;
  background: linear-gradient(180deg, #9fd9cf, #dff3ef);
  clip-path: polygon(0 70%, 18% 40%, 34% 58%, 52% 28%, 70% 52%, 86% 34%, 100% 60%, 100% 100%, 0 100%);
  opacity: .95;
}
.mountain.m2 {
  height: 42%; opacity: .7; background: linear-gradient(180deg, #7ec4ea, #d8ecfa);
  clip-path: polygon(0 80%, 22% 48%, 40% 68%, 58% 36%, 78% 62%, 100% 44%, 100% 100%, 0 100%);
  animation: peakShift 8s ease-in-out infinite alternate;
}
@keyframes peakShift {
  from { transform: translateX(-8px); }
  to { transform: translateX(8px); }
}
.about-badge {
  position: absolute; top: 24px; left: 24px;
  background: rgba(255,255,255,.92); border-radius: 16px; padding: 14px 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,.08); animation: floatIn .9s .2s both;
}
.about-badge strong { display: block; font-size: 1.05rem; }
.about-badge span { color: var(--muted); font-size: .85rem; }
.about-content h3 { font-size: 1.8rem; margin-bottom: 14px; line-height: 1.25; }
.about-content p { color: var(--muted); margin-bottom: 14px; }
.feature-list { display: grid; gap: 12px; margin-top: 22px; }
.feature-item {
  display: flex; gap: 12px; align-items: flex-start;
  background: rgba(255,255,255,.8); border: 1px solid var(--line);
  border-radius: 16px; padding: 14px 16px;
}
.feature-item i {
  width: 36px; height: 36px; border-radius: 10px; flex: 0 0 auto;
  display: grid; place-items: center; font-style: normal; font-weight: 700; color: #fff;
  background: linear-gradient(135deg, var(--brand), #2f6fed);
}
.feature-item b { display: block; margin-bottom: 2px; }
.feature-item span { color: var(--muted); font-size: .9rem; }

.process-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
}
.process-item {
  background: var(--surface); border: 1px solid var(--line); border-radius: 20px;
  padding: 22px 18px; position: relative; overflow: hidden;
  transition: transform .25s, box-shadow .25s;
}
.process-item:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.process-item .num {
  font-size: 2rem; font-weight: 800; color: rgba(12,124,111,.18); line-height: 1; margin-bottom: 10px;
}
.process-item h3 { font-size: 1.05rem; margin-bottom: 8px; }
.process-item p { color: var(--muted); font-size: .92rem; }

.biz-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px;
}
.biz-item {
  background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: 20px 16px;
  text-align: center; transition: .25s;
}
.biz-item:hover {
  border-color: rgba(12,124,111,.3);
  box-shadow: 0 12px 30px rgba(12,124,111,.08);
  transform: translateY(-3px);
}
.biz-icon {
  width: 48px; height: 48px; margin: 0 auto 12px; border-radius: 14px;
  display: grid; place-items: center; font-size: 1.15rem; font-weight: 800;
  background: var(--brand-soft); color: var(--brand-deep);
}
.biz-item h3 { font-size: 1rem; margin-bottom: 6px; }
.biz-item p { color: var(--muted); font-size: .85rem; }

.cta-band {
  margin: 20px 0 80px;
  border-radius: 28px;
  padding: 42px 36px;
  background:
    linear-gradient(120deg, rgba(12,124,111,.95), rgba(47,111,237,.88));
  color: #fff; display: flex; align-items: center; justify-content: space-between; gap: 20px;
  box-shadow: 0 20px 50px rgba(12,124,111,.22);
}
.cta-band h2 { font-size: clamp(1.5rem, 3vw, 2rem); margin-bottom: 8px; }
.cta-band p { opacity: .9; }
.cta-band .btn { background: #fff; color: var(--brand-deep); }

/* Auth / User pages */
.page-hero {
  padding: 40px 0 20px; text-align: center;
}
.page-hero h1 { font-size: clamp(1.8rem, 3vw, 2.4rem); margin-bottom: 8px; }
.page-hero p { color: var(--muted); }

/* 协议文档 */
.agreement-hero { padding: 36px 0 12px; }
.agreement-wrap { padding: 8px 0 80px; }
.agreement-doc.panel-card {
  width: min(820px, 100%);
  margin: 0 auto;
  padding: 36px 40px 42px;
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.9;
  text-align: left;
}
.agreement-doc > *:first-child { margin-top: 0; }
.agreement-doc h1,
.agreement-doc h2,
.agreement-doc h3 {
  color: var(--ink);
  line-height: 1.4;
  letter-spacing: -.01em;
}
.agreement-doc h1 {
  font-size: 1.45rem;
  margin: 0 0 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}
.agreement-doc h2 {
  font-size: 1.15rem;
  font-weight: 800;
  margin: 28px 0 12px;
  padding-top: 6px;
}
.agreement-doc h3 {
  font-size: 1.02rem;
  font-weight: 700;
  margin: 18px 0 8px;
  color: var(--brand-deep);
}
.agreement-doc p {
  margin: 0 0 14px;
  color: #2a3b37;
  word-break: break-word;
}
.agreement-doc p.agree-item {
  padding-left: .15em;
  margin-bottom: 10px;
}
.agreement-doc ul,
.agreement-doc ol {
  margin: 0 0 14px;
  padding-left: 1.35em;
  color: #2a3b37;
}
.agreement-doc li { margin-bottom: 6px; }
.agreement-doc a { color: var(--brand); text-decoration: underline; }
.agreement-doc strong { font-weight: 700; color: var(--ink); }
.auth-wrap { padding: 20px 0 80px; display: flex; justify-content: center; }
.auth-card, .form-card, .panel-card {
  width: min(460px, 100%);
  background: rgba(255,255,255,.9);
  border: 1px solid var(--line);
  border-radius: 24px; padding: 28px; box-shadow: var(--shadow);
}
.auth-card label, .form-card label { display: block; margin: 12px 0 6px; font-size: .9rem; font-weight: 600; }
.auth-card .btn, .form-card .btn { margin-top: 18px; }
.captcha-row {
  display: grid;
  grid-template-columns: 1fr 130px;
  gap: 10px;
  align-items: center;
}
.captcha-row input { width: 100%; }
.captcha-img {
  width: 130px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid #d7e4e1;
  cursor: pointer;
  object-fit: cover;
  background: #e8f5f2;
}
.auth-extra { margin-top: 16px; text-align: center; color: var(--muted); font-size: .92rem; }
.auth-extra a { color: var(--brand); font-weight: 600; }
.alert {
  padding: 12px 14px; border-radius: 12px; margin-bottom: 14px; font-size: .92rem;
}
.alert-error { background: #fff1f0; color: var(--danger); }
.alert-ok { background: #e9f8f1; color: var(--ok); }

/* ========== 个人中心 ========== */
.user-page {
  padding: 32px 0 80px;
}
.user-shell {
  width: min(1040px, calc(100% - 56px));
  margin: 0 auto;
}
.user-welcome {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background:
    linear-gradient(135deg, rgba(12,124,111,.1), rgba(47,111,237,.07)),
    #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 26px 28px;
  margin-bottom: 22px;
  box-shadow: 0 10px 28px rgba(12,70,62,.05);
}
.user-eyebrow {
  color: var(--brand-deep);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .04em;
  margin-bottom: 8px;
}
.user-welcome h1 {
  font-size: clamp(1.4rem, 3vw, 1.85rem);
  margin-bottom: 8px;
  line-height: 1.25;
}
.user-welcome-text p:last-child {
  color: var(--muted);
  margin: 0;
  font-size: .94rem;
  line-height: 1.5;
}
.user-welcome-cta { flex: 0 0 auto; }

.user-layout {
  display: grid;
  grid-template-columns: 200px minmax(0, 1fr);
  gap: 22px;
  align-items: start;
}
.user-side {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 10px;
  position: sticky;
  top: calc(var(--header-h) + 18px);
  box-shadow: 0 8px 24px rgba(12,70,62,.04);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.user-side a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 12px;
  color: var(--muted);
  font-weight: 550;
  font-size: .94rem;
  transition: .18s ease;
}
.user-side a:hover {
  background: #f4f8f7;
  color: var(--ink);
}
.user-side a.active {
  background: var(--brand-soft);
  color: var(--brand-deep);
  font-weight: 700;
}
.user-nav-ico {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  display: inline-flex;
  opacity: .88;
}
.user-nav-ico svg { width: 20px; height: 20px; display: block; }
.user-main {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.stat-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px 16px;
  box-shadow: 0 8px 24px rgba(12,70,62,.04);
  text-align: left;
}
.stat-card b {
  display: block;
  font-size: 1.65rem;
  color: var(--brand-deep);
  line-height: 1.1;
  margin-bottom: 6px;
}
.stat-card span { color: var(--muted); font-size: .86rem; }

.user-panel,
.panel-card {
  width: 100%;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 8px 24px rgba(12,70,62,.04);
}
.user-panel .empty {
  border: 0;
  background: #f7faf9;
  padding: 36px 16px;
  margin: 0;
}
.user-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}
.user-panel-head h3 {
  font-size: 1.05rem;
  margin: 0;
}
.user-panel-head a {
  color: var(--brand);
  font-size: .88rem;
  font-weight: 600;
}
.user-subhead {
  margin: 16px 0 8px;
  font-size: .95rem;
}
.prompt-box {
  background: #f5f8f7;
  border-radius: 14px;
  padding: 14px;
  margin-bottom: 8px;
  white-space: pre-wrap;
  line-height: 1.7;
}
.muted-text { color: var(--muted); margin-bottom: 12px; }
.user-form label {
  display: block;
  margin: 12px 0 6px;
  font-size: .9rem;
  font-weight: 600;
}
.user-form input {
  width: 100%;
  border: 1px solid #d7e4e1;
  border-radius: 14px;
  padding: 12px 14px;
  background: #fff;
  outline: none;
}
.user-form input:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 4px rgba(12,124,111,.12);
}
.user-form .btn { margin-top: 16px; }

.order-list { display: grid; gap: 12px; }
.order-card {
  background: #f8fbfa;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px;
}
.order-card-link { display: block; color: inherit; transition: .18s ease; }
.order-card-link:hover {
  border-color: rgba(12,124,111,.28);
  background: #fff;
}
.order-top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 8px;
}
.order-top h3 { font-size: 1.02rem; line-height: 1.35; }
.order-meta {
  color: var(--muted);
  font-size: .86rem;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
}
.order-meta-detail { margin: 4px 0 8px; }
.order-prompt {
  color: var(--muted);
  font-size: .92rem;
  margin: 8px 0 0;
  line-height: 1.55;
}
.order-actions { margin-top: 14px; }
.badge {
  display: inline-flex; align-items: center; padding: 4px 10px; border-radius: 999px;
  font-size: .78rem; font-weight: 700; white-space: nowrap;
}
.badge.pending { background: #fff6e8; color: #a35f00; }
.badge.paid, .badge.reviewing { background: #eaf1ff; color: #2f6fed; }
.badge.completed { background: #e9f8f1; color: var(--ok); }
.badge.cancelled { background: #f3f3f3; color: #777; }

.progress-track {
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
}
.progress-track-6 { grid-template-columns: repeat(6, 1fr); }
.progress-step {
  background: #eef3f2;
  border-radius: 12px;
  padding: 10px 8px;
  text-align: center;
  font-size: .82rem;
  color: var(--muted);
  line-height: 1.35;
}
.progress-step.on { background: var(--brand-soft); color: var(--brand-deep); font-weight: 700; }
.progress-step.done { background: #e9f8f1; color: var(--ok); font-weight: 700; }
.preview-box {
  margin-top: 12px;
  padding: 14px;
  border-radius: 14px;
  background: linear-gradient(135deg, #eaf8f5, #eef3ff);
  border: 1px solid rgba(12,124,111,.15);
  font-size: .92rem;
  line-height: 1.6;
  word-break: break-all;
}
.preview-box a { color: var(--accent); font-weight: 700; word-break: break-all; }

/* 首页欢迎告知 */
html.welcome-locked,
html.welcome-locked body {
  overflow: hidden;
}
.welcome-gate {
  position: fixed;
  inset: 0;
  z-index: 320;
  display: grid;
  place-items: center;
  padding: max(16px, env(safe-area-inset-top)) 16px max(16px, env(safe-area-inset-bottom));
  background:
    radial-gradient(800px 420px at 20% 10%, rgba(12, 124, 111, .28), transparent 55%),
    radial-gradient(700px 380px at 90% 90%, rgba(47, 111, 237, .18), transparent 50%),
    rgba(8, 22, 20, .58);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  animation: welcomeFadeIn .35s ease;
}
.welcome-gate[hidden] { display: none !important; }
.welcome-gate.is-leaving {
  animation: welcomeFadeOut .28s ease forwards;
  pointer-events: none;
}
.welcome-card {
  position: relative;
  width: min(420px, 100%);
  max-height: min(88vh, 640px);
  overflow: auto;
  padding: clamp(22px, 5vw, 32px) clamp(18px, 4.5vw, 28px) clamp(18px, 4vw, 24px);
  border-radius: 24px;
  background:
    linear-gradient(180deg, #ffffff 0%, #f7fcfa 100%);
  border: 1px solid rgba(255, 255, 255, .55);
  box-shadow:
    0 28px 80px rgba(0, 0, 0, .28),
    0 0 0 1px rgba(12, 124, 111, .08);
  text-align: left;
  animation: welcomePop .4s cubic-bezier(.2, .9, .25, 1);
}
.welcome-card-glow {
  position: absolute;
  top: -40%;
  left: 10%;
  right: 10%;
  height: 55%;
  background: radial-gradient(ellipse at center, rgba(12, 124, 111, .14), transparent 70%);
  pointer-events: none;
}
.welcome-kicker {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .04em;
  color: var(--brand-deep);
  background: var(--brand-soft);
  border: 1px solid rgba(12, 124, 111, .16);
  border-radius: 999px;
  padding: 6px 12px;
  margin-bottom: 14px;
}
.welcome-card h2 {
  position: relative;
  margin: 0 0 14px;
  font-family: "Noto Sans SC", var(--font);
  font-size: clamp(1.2rem, 4.2vw, 1.45rem);
  font-weight: 900;
  line-height: 1.35;
  letter-spacing: -.02em;
  color: var(--ink);
}
.welcome-aside {
  position: relative;
  margin: 0 0 14px;
  font-size: clamp(.78rem, 2.8vw, .86rem);
  line-height: 1.65;
  color: var(--muted);
  background: #f3f7f6;
  border-left: 3px solid rgba(214, 69, 69, .55);
  border-radius: 0 12px 12px 0;
  padding: 10px 12px;
}
.welcome-body {
  position: relative;
  margin: 0 0 20px;
  font-size: clamp(.95rem, 3.2vw, 1.05rem);
  font-weight: 600;
  line-height: 1.7;
  color: var(--ink);
}
.welcome-card .btn-block {
  position: relative;
  width: 100%;
  min-height: 48px;
  padding: 13px 16px;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 14px;
  border: none;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
  box-shadow: 0 10px 24px rgba(12, 124, 111, .25);
}
.welcome-card .btn-block:focus,
.welcome-card .btn-block:focus-visible,
.welcome-card .btn-block:active {
  border: none;
  outline: none;
  box-shadow: 0 10px 24px rgba(12, 124, 111, .25);
}
@keyframes welcomeFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes welcomeFadeOut {
  from { opacity: 1; }
  to { opacity: 0; }
}
@keyframes welcomePop {
  from { opacity: 0; transform: translateY(14px) scale(.96); }
  to { opacity: 1; transform: none; }
}
@media (max-width: 520px) {
  .welcome-gate { padding: 12px; align-items: end; }
  .welcome-card {
    width: 100%;
    border-radius: 22px 22px 18px 18px;
    padding: 22px 16px 16px;
    max-height: min(82vh, 560px);
  }
  .welcome-card .btn-block { min-height: 50px; font-size: .98rem; }
}

/* Modal */
.modal-mask {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(12, 30, 28, .45); backdrop-filter: blur(4px);
  display: grid; place-items: center; padding: 20px;
}
.modal-mask[hidden] { display: none !important; }
.modal {
  width: min(400px, 100%); background: #fff; border-radius: 22px;
  padding: 24px 22px 22px; position: relative; box-shadow: 0 30px 80px rgba(0,0,0,.2);
  animation: floatIn .35s ease;
  text-align: left;
  max-height: min(92vh, 900px);
  overflow: auto;
}
.modal.modal-wide { width: min(460px, 100%); }
.modal-close {
  position: absolute; right: 12px; top: 10px; border: 0; background: transparent;
  width: 36px; height: 36px; border-radius: 10px;
  font-size: 1.5rem; cursor: pointer; color: var(--muted); line-height: 1;
  display: grid; place-items: center;
}
.modal-close:hover { background: #f3f7f6; color: var(--ink); }
.modal h3 {
  font-size: 1.18rem; margin-bottom: 14px; padding-right: 36px;
  line-height: 1.35; letter-spacing: -.01em;
}
.modal-tip {
  color: var(--muted); margin: 0 0 14px; font-size: .88rem; line-height: 1.55;
  text-align: left;
}
#modalStepPay .modal-tip,
#modalStepOk .modal-tip,
#serverStepPay .modal-tip,
#serverStepOk .modal-tip {
  text-align: center;
}
.modal-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.modal label {
  display: block; font-size: .88rem; font-weight: 600;
  margin: 0 0 8px; color: var(--ink); text-align: left;
}
.modal #orderForm { margin-top: 4px; }
.modal #orderForm .order-field { margin-bottom: 12px; }
.modal #orderForm .order-field label {
  margin: 0 0 6px;
  font-size: .86rem;
  font-weight: 600;
  color: var(--ink);
}
.modal #orderForm .order-field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.modal #orderForm .order-field input,
.modal #orderForm .order-field textarea {
  margin: 0;
  min-height: 44px;
}
.modal #orderForm .order-field textarea {
  min-height: 72px;
  resize: vertical;
}
.modal #orderForm .btn-block { margin-top: 4px; padding: 13px 18px; font-size: 1rem; }
@media (max-width: 520px) {
  .modal #orderForm .order-field-row { grid-template-columns: 1fr; }
}

.pay-highlight {
  background: linear-gradient(135deg, #fff8eb, #fffdf8);
  border: 1px solid rgba(201,133,44,.2);
  border-radius: 14px; padding: 4px 14px 8px; margin-bottom: 16px;
  overflow: hidden;
}
.pay-row {
  display: flex; align-items: baseline; justify-content: space-between;
  gap: 12px; padding: 10px 0; text-align: left;
  min-width: 0;
}
.pay-row + .pay-row { border-top: 1px dashed rgba(201,133,44,.22); }
.pay-label {
  flex: 1 1 auto; min-width: 0; color: #8a5a12; font-size: .88rem; line-height: 1.4;
  word-break: break-word;
}
.pay-amount {
  flex: 0 1 auto; max-width: 55%;
  font-size: 1.2rem; font-weight: 800;
  color: #a35f00; letter-spacing: -.02em; font-variant-numeric: tabular-nums;
  text-align: right; word-break: break-word; white-space: normal; line-height: 1.35;
}
.pay-row-title .pay-amount { max-width: 48%; }

/* 服务器配置明细：分行展示，避免挤出 */
.pay-spec-list {
  display: grid;
  gap: 8px;
  padding: 10px 0 6px;
  border-top: 1px dashed rgba(201,133,44,.22);
}
.pay-spec-item {
  display: grid;
  grid-template-columns: 3.2em minmax(0, 1fr);
  gap: 10px;
  align-items: start;
}
.pay-spec-item span {
  color: #8a5a12;
  font-size: .84rem;
  font-weight: 600;
  line-height: 1.45;
  padding-top: 1px;
}
.pay-spec-item b {
  display: block;
  font-size: .9rem;
  font-weight: 700;
  color: #a35f00;
  line-height: 1.5;
  word-break: break-word;
  overflow-wrap: anywhere;
  text-align: right;
}

/* 收款码：单码居中放大，双码并排 */
.pay-qrs {
  display: flex;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 12px;
}
.pay-qr {
  flex: 1 1 148px;
  max-width: 188px;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 12px 12px 14px;
  text-align: center;
  background: #fafcfb;
}
.pay-qr:only-child {
  flex: 0 1 auto;
  width: 100%;
  max-width: 260px;
  padding: 14px 16px 16px;
}
.pay-qr span {
  display: block;
  font-size: .9rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 10px;
}
.pay-qr img {
  display: block;
  width: 100%;
  max-width: 168px;
  aspect-ratio: 1;
  height: auto;
  object-fit: contain;
  margin: 0 auto;
  border-radius: 8px;
  background: #fff;
}
.pay-qr:only-child img {
  max-width: 220px;
}
.pay-qr-empty {
  width: 100%;
  border: 1px solid rgba(12,124,111,.14);
  background: linear-gradient(135deg, #f3faf8, #f7faf9);
  border-radius: 14px;
  padding: 16px 18px;
  text-align: left;
  color: var(--muted);
  font-size: .92rem;
  line-height: 1.65;
}
.pay-qr-empty strong {
  display: block; color: var(--brand-deep); font-size: .95rem;
  font-weight: 700; margin-bottom: 4px;
}

/* 等待报价 / 报价展示 */
.wait-hero { text-align: center; padding: 6px 0 4px; }
.wait-hero h3 { margin: 10px 0 6px; font-size: 1.25rem; }
.wait-pulse {
  width: 46px; height: 46px; margin: 0 auto;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #7dfff0, #0c7c6f 60%, #075a51);
  box-shadow: 0 0 0 0 rgba(12,124,111,.45);
  animation: waitPulse 1.6s ease-out infinite;
}
@keyframes waitPulse {
  0% { box-shadow: 0 0 0 0 rgba(12,124,111,.4); transform: scale(1); }
  70% { box-shadow: 0 0 0 16px rgba(12,124,111,0); transform: scale(1.05); }
  100% { box-shadow: 0 0 0 0 rgba(12,124,111,0); transform: scale(1); }
}
.wait-steps {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 6px;
  margin: 14px 0 16px;
}
.wait-step {
  text-align: center; font-size: .72rem; color: var(--muted);
  background: #f3f7f6; border-radius: 12px; padding: 8px 4px;
}
.wait-step b {
  display: grid; place-items: center; width: 22px; height: 22px; margin: 0 auto 4px;
  border-radius: 50%; background: #dde8e5; color: #5b6f6b; font-size: .75rem;
}
.wait-step.on { background: var(--brand-soft); color: var(--brand-deep); font-weight: 700; }
.wait-step.on b { background: var(--brand); color: #fff; }

.cs-card {
  background: #f7faf9; border: 1px solid var(--line); border-radius: 14px; padding: 12px 14px;
}
.cs-card-title { font-weight: 800; font-size: .9rem; margin-bottom: 8px; color: var(--ink); }
.cs-card-body { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.cs-qr {
  width: 88px; height: 88px; border-radius: 10px; overflow: hidden;
  background: #fff; border: 1px solid var(--line); flex: 0 0 auto;
}
.cs-qr img { width: 100%; height: 100%; object-fit: cover; display: block; }
.cs-meta { font-size: .88rem; color: var(--muted); line-height: 1.6; }
.cs-meta b { color: var(--ink); font-weight: 800; }

.quote-price-board,
.quote-ready-panel {
  text-align: center;
  background: linear-gradient(160deg, #fff4e8 0%, #fffdf8 48%, #fff);
  border: 1px solid rgba(201,133,44,.28);
  border-radius: 18px;
  padding: 18px 16px 16px;
  margin-bottom: 14px;
}
.quote-ready-panel { margin-top: 14px; padding: 22px 18px 18px; }
.quote-ready-badge {
  display: inline-flex; align-items: center; gap: 4px;
  background: #ff5a5f; color: #fff; font-weight: 800; font-size: .82rem;
  padding: 5px 12px; border-radius: 999px; margin-bottom: 10px;
  box-shadow: 0 8px 18px rgba(255,90,95,.28);
}
.quote-ready-lead { color: var(--muted); font-size: .95rem; margin: 0 0 8px; }
.quote-board-name { font-weight: 700; color: #8a5a12; margin-bottom: 4px; }
.quote-board-price {
  font-size: clamp(2.4rem, 8vw, 3.2rem);
  font-weight: 900;
  letter-spacing: -.04em;
  line-height: 1.05;
  color: #e11d48;
  text-shadow: 0 6px 20px rgba(225,29,72,.18);
}
.quote-board-sub { color: #a35f00; font-weight: 700; margin: 4px 0 12px; font-size: .92rem; }
.quote-board-split {
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px;
}
.quote-board-split > div {
  background: rgba(255,255,255,.85); border-radius: 12px; padding: 10px 8px;
  border: 1px dashed rgba(201,133,44,.35);
}
.quote-board-split span { display: block; color: #8a5a12; font-size: .8rem; margin-bottom: 4px; }
.quote-board-split b { font-size: 1.2rem; color: #c2410c; font-weight: 800; }
.quote-tip-box {
  text-align: left;
  background: #fff1f0; border: 1px solid #ffd4d0; border-radius: 12px;
  padding: 12px 14px; margin: 14px 0; color: #7a2e2e; font-size: .88rem; line-height: 1.55;
}
.quote-tip-box strong { display: block; color: #b42318; margin-bottom: 4px; }
.quote-tip-box b,
.quote-tip-box .quote-no-refund {
  color: #b42318;
  font-weight: 900;
  font-size: 1.05em;
  letter-spacing: .02em;
}
.quote-pay-btn {
  margin-top: 16px; padding: 14px 18px; font-size: 1.05rem;
  background: linear-gradient(135deg, #ff4d6d, #e11d48) !important;
  box-shadow: 0 12px 28px rgba(225,29,72,.28) !important;
  border: 0 !important;
}
.quote-wait-panel {
  margin-top: 14px; text-align: center;
  background: linear-gradient(160deg, #e8faf6, #f7fffd);
  border: 1px solid rgba(12,124,111,.18);
  border-radius: 18px; padding: 22px 16px;
}
.quote-wait-panel h3 { margin: 10px 0 6px; }
.quote-wait-panel > p { color: var(--muted); margin: 0 0 14px; font-size: .92rem; }
.quote-wait-panel .cs-card { text-align: left; }

.success-icon {
  width: 56px; height: 56px; border-radius: 50%; background: #e9f8f1; color: var(--ok);
  display: grid; place-items: center; font-size: 1.6rem; font-weight: 800; margin-bottom: 12px;
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--line);
  background: rgba(255,255,255,.7);
  padding: 56px 0 24px;
  position: relative;
  z-index: 1;
}
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 24px; margin-bottom: 36px;
}
.footer-brand p { color: var(--muted); margin-top: 10px; }
.footer-desc { max-width: 28em; }
.site-footer h4 { margin-bottom: 12px; font-size: .95rem; }
.site-footer a, .site-footer p { display: block; color: var(--muted); margin-bottom: 8px; font-size: .92rem; }
.site-footer a:hover { color: var(--brand); }
.footer-bottom {
  display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap;
  padding-top: 18px; border-top: 1px solid var(--line); color: var(--muted); font-size: .88rem;
}

.empty {
  text-align: center; padding: 48px 20px; color: var(--muted);
  background: #fff; border: 1px dashed var(--line); border-radius: 18px;
}

/* Reveal animation */
.reveal { opacity: 0; transform: translateY(24px); transition: .7s ease; }
.reveal.show { opacity: 1; transform: none; }

/* Responsive */
@media (max-width: 960px) {
  .progress-track { grid-template-columns: 1fr 1fr; }
  .progress-track-6 { grid-template-columns: 1fr 1fr 1fr; }
  .order-money { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .hero {
    min-height: auto;
    padding: 28px 0 48px;
    align-items: flex-start;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    align-items: stretch;
  }
  .hero-copy { order: 1; }
  .studio { order: 2; }
  .about-grid { grid-template-columns: 1fr; }
  .process-grid, .biz-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .cta-band { flex-direction: column; align-items: flex-start; }
  .server-feat-grid { grid-template-columns: 1fr 1fr; }
  .server-plan-grid { grid-template-columns: 1fr 1fr; justify-content: stretch; }
  .verify-grid { grid-template-columns: 1fr; }
  .price-hero-inner {
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
  }
  .price-hero-actions {
    justify-content: flex-start;
    width: 100%;
  }
  .price-block {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .price-block-body {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .price-tier-grid {
    grid-template-columns: 1fr;
  }
  .price-consult {
    flex-direction: column;
    align-items: stretch;
  }
  .price-consult .btn {
    width: 100%;
    justify-content: center;
  }
  .price-cs-body {
    flex-direction: column;
    align-items: center;
  }
  .price-cs-info {
    width: 100%;
  }

  /* 个人中心平板 */
  .user-page { padding: 24px 0 64px; }
  .user-shell { width: min(100%, calc(100% - 48px)); }
  .user-layout {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .user-side {
    position: static;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 8px;
    padding: 10px;
    overflow: visible;
  }
  .user-side a {
    flex-direction: column;
    justify-content: center;
    text-align: center;
    gap: 6px;
    padding: 12px 8px;
    white-space: normal;
    font-size: .86rem;
    margin: 0;
  }
  .user-nav-ico { margin: 0 auto; }
  .stats-row {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }
  .stat-card {
    padding: 14px 10px;
    text-align: center;
  }
  .stat-card b { font-size: 1.35rem; }
  .stat-card span { font-size: .78rem; }
}
@media (max-width: 720px) {
  .header-inner { min-height: 64px; }
  .nav { display: none; position: absolute; left: 20px; right: 20px; top: 64px;
    background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 10px;
    flex-direction: column; box-shadow: var(--shadow); z-index: 120;
  }
  .nav.open { display: flex; }
  .nav-toggle { display: inline-flex; }
  .modal {
    width: min(100%, 380px);
    padding: 22px 18px 18px;
    border-radius: 20px;
  }
  .pay-qr,
  .pay-qr:only-child {
    max-width: 100%;
  }
  .pay-qr img,
  .pay-qr:only-child img {
    max-width: min(200px, 72vw);
  }
  .hero { min-height: auto; padding: 20px 0 40px; }
  .hero-grid { gap: 24px; }
  .hero-brand { font-size: 2.2rem; }
  .studio {
    border-radius: 22px;
    padding: 18px 16px;
  }
  .studio-tab { padding: 12px 10px; }
  .studio-tab strong { font-size: .95rem; }
  .studio-tab span { font-size: .75rem; }
  .process-grid, .biz-grid, .footer-grid { grid-template-columns: 1fr; }
  .server-feat-grid, .server-plan-grid { grid-template-columns: 1fr; }
  .header-actions .btn-ghost { display: none; }
  .price-hero { padding: 28px 0 12px; }
  .price-hero-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }
  .price-hero-actions .btn {
    width: 100%;
    justify-content: center;
    padding: 12px 10px;
    font-size: .92rem;
    white-space: normal;
    text-align: center;
    line-height: 1.3;
  }
  .price-block { padding: 22px 0; }
  .price-points b { min-width: 4em; }
  .price-tier { padding: 16px 14px; }
  .price-tier-desc { min-height: 0; }
  .price-consult { padding: 16px; }
  .dev-cycle-tip { padding: 12px 14px; }

  .user-notice {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    padding: 14px 14px 16px;
  }
  .user-notice-main {
    flex: 1 1 auto;
  }
  .user-notice-copy p {
    font-size: .86rem;
  }
  .user-notice-btn {
    align-self: center;
    width: auto;
    min-width: 168px;
    justify-content: center;
    padding: 9px 22px;
  }

  .agreement-doc.panel-card { padding: 24px 20px 28px; border-radius: 20px; font-size: .96rem; }
  .agreement-doc h2 { margin-top: 22px; font-size: 1.08rem; }

  /* 个人中心手机 */
  .user-page { padding: 18px 0 56px; }
  .user-shell {
    width: calc(100% - 40px);
  }
  .order-money {
    grid-template-columns: 1fr;
    gap: 8px;
    margin: 12px 0 14px;
  }
  .order-money-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 14px;
    border-radius: 12px;
  }
  .order-money-item span {
    margin: 0;
    flex: 0 0 auto;
    font-size: .86rem;
  }
  .order-money-item b {
    font-size: 1.05rem;
    text-align: right;
  }
  .user-welcome {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
    padding: 18px 18px;
    border-radius: 18px;
    margin-bottom: 16px;
  }
  .user-welcome h1 { font-size: 1.35rem; }
  .user-welcome-cta {
    width: 100%;
    justify-content: center;
  }
  .user-layout { gap: 14px; }
  .user-side {
    gap: 6px;
    padding: 8px;
    border-radius: 16px;
  }
  .user-side a {
    padding: 10px 6px;
    font-size: .8rem;
    border-radius: 12px;
  }
  .user-nav-ico,
  .user-nav-ico svg {
    width: 18px;
    height: 18px;
  }
  .user-main { gap: 14px; }
  .stats-row { gap: 8px; }
  .stat-card {
    padding: 12px 8px;
    border-radius: 14px;
  }
  .stat-card b { font-size: 1.2rem; margin-bottom: 4px; }
  .stat-card span { font-size: .72rem; }
  .user-panel,
  .panel-card {
    padding: 16px;
    border-radius: 16px;
  }
  .user-panel-head { margin-bottom: 12px; }
  .order-card { padding: 14px; border-radius: 14px; }
  .order-top { flex-direction: column; align-items: flex-start; gap: 8px; }
  .progress-track {
    grid-template-columns: 1fr;
    gap: 6px;
  }
  .progress-step {
    text-align: left;
    padding: 10px 12px;
  }
  .captcha-row {
    grid-template-columns: 1fr;
  }
  .captcha-img {
    width: 100%;
    height: 46px;
    object-fit: contain;
  }
}

/* ========== 案例页样式已迁移至 assets/css/cases.css ========== */

