:root {
  color-scheme: light;
  --bg: #f7f7f5;
  --bg-soft: #efeee9;
  --panel: #ffffff;
  --panel-soft: #faf9f6;
  --ink: #172033;
  --muted: #6f7887;
  --muted-2: #9aa3af;
  --line: #e1e7ef;
  --line-strong: #cbd6e5;
  --accent: #2f6bff;
  --accent-2: #16b7b5;
  --accent-soft: #eef4ff;
  --accent-wash: #f6f9ff;
  --warning: #c98a1a;
  --danger: #e35b6a;
  --shadow: 0 26px 70px rgba(39, 91, 180, 0.1);
  --shadow-soft: 0 12px 34px rgba(39, 91, 180, 0.07);
  --radius: 16px;
  --mono: ui-monospace, "SFMono-Regular", Menlo, Consolas, monospace;
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html,
body {
  margin: 0;
  min-height: 100%;
  overflow-x: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.7), transparent 240px),
    var(--bg);
  color: var(--ink);
  font-family: Inter, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
  letter-spacing: 0;
}

a {
  color: inherit;
}

button,
input,
textarea {
  font: inherit;
}

.portal-shell {
  width: min(1120px, calc(100vw - 48px));
  margin: 0 auto;
  padding: 18px 0 56px;
}

.portal-topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  background: rgba(247, 247, 245, 0.88);
  backdrop-filter: blur(18px);
}

.portal-brand {
  display: flex;
  align-items: center;
  gap: 11px;
  min-width: 0;
  text-decoration: none;
}

.portal-mark {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 10px;
  background:
    center / cover no-repeat
    url("../assets/branding/logo-256.png");
  color: transparent;
  font-size: 0;
  box-shadow: var(--shadow-soft);
}

.portal-brand strong {
  display: block;
  font-size: 15px;
  font-weight: 900;
}

.portal-brand span,
.hero-kicker,
.eyebrow,
.panel-head span,
.admin-search span,
.price-mini span {
  display: block;
  color: var(--muted-2);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.portal-brand span {
  margin-top: 2px;
}

.portal-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 4px;
}

.portal-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 11px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 760;
  text-decoration: none;
  transition: background 0.16s ease, color 0.16s ease;
}

.portal-nav a:hover,
.portal-nav a.active {
  background: var(--accent-soft);
  color: var(--ink);
}

.hero {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 22px;
  margin-bottom: 18px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.hero--split,
.home-hero {
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.92fr);
  align-items: stretch;
}

.hero-copy,
.hero-side {
  display: grid;
  align-content: center;
  gap: 16px;
  min-width: 0;
}

.hero h1 {
  margin: 0;
  max-width: 820px;
  color: var(--ink);
  font-size: clamp(36px, 5.4vw, 66px);
  line-height: 0.96;
  letter-spacing: -0.04em;
}

.hero p {
  margin: 0;
  max-width: 680px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
  overflow-wrap: anywhere;
}

.hero-actions,
.inline-actions,
.pill-row,
.admin-actions,
.portal-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.btn,
.admin-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 15px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: var(--panel);
  color: var(--ink);
  font-size: 13px;
  font-weight: 850;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.16s ease, border-color 0.16s ease, background 0.16s ease;
}

.btn:hover,
.admin-action:hover,
.link-item:hover,
.card:hover,
.format-tile:hover,
.metric:hover,
.step:hover,
.price-card:hover {
  transform: translateY(-1px);
  border-color: #bdb8ad;
}

.btn.primary,
.admin-action.primary {
  border-color: var(--accent);
  background: var(--accent);
  color: #fff;
}

.btn.soft,
.btn.ghost {
  background: var(--panel-soft);
}

.pill,
.price-badge,
.history-badge {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--panel-soft);
  color: var(--muted);
  font-size: 12px;
  font-weight: 820;
}

.pill.good {
  background: #eafafa;
  color: #087f7e;
}

.pill.warn {
  background: #fff8e8;
  color: var(--warning);
}

.pill.danger,
.admin-action.danger {
  background: #fff1f3;
  color: var(--danger);
}

.hero-panel,
.hero-card,
.card,
.section,
.format-tile,
.metric,
.step,
.faq details,
.faq-mini details,
.notice,
.price-card,
.link-item,
.price-mini article {
  border: 1px solid var(--line);
  background: var(--panel);
  box-shadow: none;
}

.hero-panel {
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 18px;
  border-radius: 18px;
  background: var(--panel-soft);
}

.release-card {
  display: grid;
  gap: 10px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background:
    radial-gradient(circle at top right, rgba(47, 107, 255, 0.12), transparent 42%),
    var(--panel);
}

.release-card div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}

.release-card span,
.download-card span {
  color: var(--muted-2);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.release-card strong {
  color: var(--accent);
  font-size: 28px;
  letter-spacing: -0.04em;
}

.release-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.hero-card {
  padding: 18px;
  border-radius: var(--radius);
}

.panel-head {
  display: grid;
  gap: 7px;
}

.panel-head strong {
  font-size: 20px;
  letter-spacing: -0.02em;
}

.quick-steps,
.timeline,
.faq,
.stack,
.faq-mini,
.link-list {
  display: grid;
  gap: 10px;
}

.quick-steps {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: step;
}

.quick-steps li {
  position: relative;
  display: grid;
  gap: 4px;
  min-height: 68px;
  padding: 13px 13px 13px 48px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: var(--panel);
  counter-increment: step;
  min-width: 0;
}

.quick-steps li::before {
  content: counter(step);
  position: absolute;
  top: 13px;
  left: 13px;
  display: grid;
  width: 25px;
  height: 25px;
  place-items: center;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff;
  font-size: 12px;
  font-weight: 900;
}

.quick-steps span,
.format-tile small,
.metric small,
.step small,
.muted,
.section-copy,
.link-item small,
.price-mini small,
.price-list li,
.card p,
.card li,
.hero-card p {
  color: var(--muted);
  line-height: 1.65;
}

.format-showcase {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
  margin: 18px 0;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin: 18px 0;
}

.trust-strip article {
  display: grid;
  gap: 5px;
  min-width: 0;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--panel);
}

.trust-strip strong {
  font-size: 18px;
  letter-spacing: -0.02em;
}

.trust-strip span {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
}

.format-tile {
  display: grid;
  gap: 9px;
  min-height: 132px;
  align-content: start;
  padding: 16px;
  border-radius: 16px;
  transition: transform 0.16s ease, border-color 0.16s ease;
}

.format-tile.primary {
  background:
    radial-gradient(circle at top right, rgba(255, 200, 61, 0.24), transparent 34%),
    linear-gradient(135deg, #eef4ff 0%, #eafafa 100%);
  border-color: rgba(47, 107, 255, 0.28);
  color: var(--ink);
}

.format-tile.primary small,
.format-tile.primary span {
  color: #2456c6;
}

.format-tile span {
  width: fit-content;
  min-width: 42px;
  border-radius: 8px;
  padding: 7px 9px;
  background: var(--accent-soft);
  color: var(--ink);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 900;
  text-align: center;
}

.format-tile.primary span {
  background: rgba(47, 107, 255, 0.1);
}

.format-tile strong {
  font-size: 15px;
  line-height: 1.25;
}

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

.grid > *,
.format-showcase > *,
.metrics > *,
.price-mini > *,
.price-grid > * {
  min-width: 0;
}

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

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

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

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

.card,
.section {
  padding: 18px;
  border-radius: var(--radius);
  transition: transform 0.16s ease, border-color 0.16s ease;
}

.card.compact {
  padding: 15px;
  border-radius: 14px;
}

.card h2,
.card h3,
.hero-card h3 {
  margin: 0 0 8px;
}

.card h2,
.section-head h2,
.price-title {
  font-size: 26px;
  letter-spacing: -0.03em;
}

.card.compact h3 {
  font-size: 16px;
}

.section {
  margin-top: 16px;
  background: transparent;
  box-shadow: none;
}

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

.section-head {
  margin-bottom: 14px;
}

.section-head h2,
.section-head h3,
.pricing-lite h2 {
  margin: 4px 0 0;
}

.section-lead {
  margin: 0 0 16px;
  color: var(--muted);
  line-height: 1.7;
}

.metrics,
.price-mini {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.metric {
  padding: 14px;
  border-radius: 14px;
}

.metric strong,
.price-mini strong,
.price-amount strong {
  display: block;
  color: var(--ink);
  font-size: 28px;
  line-height: 1;
  letter-spacing: -0.03em;
}

.metric span {
  display: block;
  margin: 8px 0 6px;
  font-size: 13px;
  font-weight: 850;
}

.compare,
.admin-table,
.mini-table {
  display: grid;
  overflow-x: auto;
}

.compare-row,
.admin-row {
  display: grid;
  gap: 12px;
  align-items: center;
  padding: 13px 0;
  border-top: 1px solid var(--line);
}

.compare-row {
  grid-template-columns: 1.7fr 0.85fr 0.85fr;
}

.compare-row.head,
.admin-row.admin-head {
  border-top: 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
}

.admin-row {
  grid-template-columns: repeat(var(--cols), minmax(132px, 1fr));
  min-width: 760px;
}

.admin-row > span {
  min-width: 0;
  overflow-wrap: anywhere;
}

.admin-row[data-focused="true"] {
  background: var(--accent-wash);
  box-shadow: inset 0 0 0 1px rgba(35, 88, 232, 0.18);
  border-radius: 14px;
  padding-left: 10px;
  padding-right: 10px;
}

.step,
.faq details,
.faq-mini details,
.notice {
  padding: 15px;
  border-radius: 14px;
}

.faq summary,
.faq-mini summary,
.step strong {
  cursor: pointer;
  font-weight: 850;
}

.faq details p,
.faq-mini p {
  margin: 9px 0 0;
}

.notice {
  background: #fffaf2;
  color: #66533c;
}

.notice strong {
  color: var(--ink);
}

.pricing-lite {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(260px, 0.8fr) auto;
}

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

.price-mini article {
  display: grid;
  gap: 7px;
  padding: 15px;
  border-radius: 14px;
}

.price-mini article.featured,
.price-card.featured {
  border-color: rgba(47, 107, 255, 0.36);
  background: var(--accent-wash);
}

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

.price-card {
  position: relative;
  display: grid;
  gap: 13px;
  padding: 20px;
  border-radius: 18px;
}

.price-badge {
  position: absolute;
  top: 14px;
  right: 14px;
}

.price-list {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

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

.field strong {
  font-size: 13px;
}

.payment-qr {
  display: block;
  width: min(100%, 220px);
  aspect-ratio: 1;
  margin: 10px 0 12px;
  border: 1px solid var(--line);
  border-radius: 14px;
  object-fit: cover;
  background: var(--panel-soft);
}

.textarea,
.admin-search input {
  width: 100%;
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  background: var(--panel);
  color: var(--ink);
}

.textarea {
  min-height: 124px;
  padding: 12px 13px;
  resize: vertical;
}

.textarea:focus,
.admin-search input:focus {
  outline: 3px solid #e8e5dd;
  border-color: var(--accent);
}

.empty {
  padding: 16px;
  border: 1px dashed var(--line-strong);
  border-radius: 14px;
  color: var(--muted);
  background: var(--panel-soft);
}

.link-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 15px;
  border-radius: 14px;
  text-decoration: none;
  transition: transform 0.16s ease, border-color 0.16s ease;
}

.support-template {
  overflow: auto;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: linear-gradient(135deg, #213a8f, #128c93);
}

.support-template pre {
  margin: 0;
  padding: 18px;
  color: #f8f8f6;
  font-family: var(--mono);
  font-size: 13px;
  line-height: 1.75;
  white-space: pre-wrap;
}

.admin-search {
  display: grid;
  gap: 6px;
  min-width: min(280px, 100%);
}

.admin-filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 16px;
}

button.pill {
  cursor: pointer;
}

.admin-filter-bar .pill.active {
  border-color: var(--accent);
  background: var(--accent-soft);
  color: var(--ink);
}

.admin-search input {
  min-height: 39px;
  padding: 0 12px;
}

.admin-user-cell {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.admin-user-cell strong {
  font-size: 13px;
  overflow-wrap: anywhere;
}

.admin-user-cell small {
  color: var(--muted);
  font-size: 11px;
  overflow-wrap: anywhere;
}

.admin-action {
  min-height: 30px;
  padding: 0 10px;
  font-size: 12px;
}

.admin-actions {
  align-items: flex-start;
}

.admin-static-field {
  min-height: 52px;
  padding: 14px 13px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--panel-soft);
  color: var(--ink);
  line-height: 1.5;
  overflow-wrap: anywhere;
}

.admin-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: flex;
  justify-content: flex-end;
}

.admin-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(20, 32, 42, 0.42);
  backdrop-filter: blur(4px);
}

.admin-drawer {
  position: relative;
  width: min(520px, 100vw);
  height: 100vh;
  overflow-y: auto;
  padding: 22px;
  border-left: 1px solid var(--line);
  background: var(--panel);
  box-shadow: -18px 0 48px rgba(20, 32, 42, 0.16);
}

.admin-drawer-head {
  position: sticky;
  top: 0;
  z-index: 1;
  padding-bottom: 12px;
  background: var(--panel);
}

.portal-footer {
  margin-top: 28px;
  padding: 20px 4px 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.8;
  text-align: center;
}

.portal-footer nav {
  justify-content: center;
  margin-top: 10px;
}

.portal-footer a {
  color: var(--ink);
  text-decoration: none;
}

.admin-console-head {
  padding: 18px 20px;
}

.admin-console-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.admin-console-title h1 {
  margin: 4px 0 0;
  font-size: 24px;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.admin-console-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.admin-admin-pill {
  display: grid;
  gap: 2px;
  min-width: 220px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--panel-soft);
}

.admin-admin-pill span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
}

.admin-admin-pill strong {
  font-size: 14px;
  font-weight: 850;
}

.admin-gate {
  display: grid;
  gap: 12px;
  max-width: 720px;
  margin: 0 auto 18px;
  text-align: left;
}

.admin-gate h2 {
  margin: 0;
  font-size: 26px;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.admin-gate p {
  margin: 0;
  color: var(--muted);
}

.admin-login-grid {
  margin-top: 4px;
}

.admin-login-note {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

@media (max-width: 980px) {
  .hero--split,
  .home-hero,
  .grid.three,
  .grid.four,
  .grid.five,
  .metrics,
  .price-grid,
  .pricing-lite {
    grid-template-columns: 1fr;
  }

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

  .grid.two,
  .compare-row {
    grid-template-columns: 1fr;
  }

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

  .admin-action {
    min-height: 38px;
    padding: 0 12px;
  }

  .admin-console-title {
    align-items: flex-start;
    flex-direction: column;
  }

  .admin-admin-pill {
    min-width: 0;
    width: 100%;
  }
}

@media (max-width: 860px) {
  .portal-shell {
    width: min(100vw - 24px, 1120px);
    padding-top: 10px;
  }

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

  .portal-nav {
    justify-content: flex-start;
  }

  .hero,
  .section {
    padding: 16px;
  }

  .hero {
    overflow: visible;
  }

  .hero-copy,
  .hero-side {
    min-width: 0;
  }

  .hero h1 {
    max-width: min(100%, 320px);
    font-size: 24px;
    line-height: 1.08;
    letter-spacing: -0.03em;
    overflow-wrap: anywhere;
    word-break: break-all;
  }

  .hero p,
  .quick-steps span,
  .quick-steps strong {
    max-width: 300px;
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .quick-steps span,
  .quick-steps strong {
    max-width: 238px;
  }

  .format-showcase,
  .price-mini {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .admin-row {
    min-width: 760px;
  }
}

/* Visual polish layer: shared product-site system */
:root {
  --bg: #f4f6f1;
  --bg-soft: #e9eee7;
  --panel: #fffdf7;
  --panel-soft: #f8f5ec;
  --ink: #14202a;
  --muted: #64717b;
  --muted-2: #9aa5aa;
  --line: #dce5de;
  --line-strong: #bdccc6;
  --accent: #2358e8;
  --accent-2: #078c84;
  --accent-3: #f2b84b;
  --accent-soft: #eaf1ff;
  --accent-wash: #f3f8ff;
  --warning: #b97816;
  --danger: #d95063;
  --shadow: 0 28px 70px rgba(24, 49, 70, 0.12);
  --shadow-soft: 0 14px 38px rgba(24, 49, 70, 0.08);
}

body {
  background:
    linear-gradient(90deg, rgba(20, 32, 42, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(20, 32, 42, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 253, 247, 0.88), rgba(244, 246, 241, 0.88) 320px),
    var(--bg);
  background-size: 34px 34px, 34px 34px, auto, auto;
  font-family: "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
}

.portal-topbar {
  margin-bottom: 22px;
  border: 1px solid rgba(220, 229, 222, 0.78);
  border-radius: 18px;
  padding: 10px 12px;
  background: rgba(255, 253, 247, 0.84);
  box-shadow: 0 16px 42px rgba(24, 49, 70, 0.06);
  backdrop-filter: blur(18px) saturate(1.08);
}

.portal-mark {
  border-radius: 12px;
  background: linear-gradient(145deg, var(--accent), var(--accent-2) 72%, var(--accent-3));
  box-shadow: 0 12px 28px rgba(35, 88, 232, 0.22);
}

.portal-nav a:hover,
.portal-nav a.active {
  background: #ffffff;
  color: var(--ink);
  box-shadow: inset 0 0 0 1px rgba(189, 204, 198, 0.72), 0 10px 24px rgba(24, 49, 70, 0.07);
}

.hero {
  isolation: isolate;
  border-radius: 24px;
  padding: 38px;
  background:
    linear-gradient(135deg, rgba(255, 253, 247, 0.96), rgba(255, 253, 247, 0.84)),
    repeating-linear-gradient(135deg, rgba(35, 88, 232, 0.045) 0 1px, transparent 1px 11px);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto -24px -52px 44%;
  z-index: -1;
  height: 168px;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(35, 88, 232, 0.12), transparent 64%),
    repeating-linear-gradient(90deg, rgba(7, 140, 132, 0.2) 0 2px, transparent 2px 18px);
  transform: rotate(-4deg);
}

.hero h1,
.card h2,
.section-head h2,
.price-title,
.metric strong,
.price-mini strong,
.price-amount strong {
  letter-spacing: 0;
}

.btn,
.admin-action {
  background: rgba(255, 253, 247, 0.94);
  box-shadow: 0 10px 24px rgba(24, 49, 70, 0.06);
  transition: transform 0.16s ease, border-color 0.16s ease, background 0.16s ease, box-shadow 0.16s ease;
}

.btn:hover,
.admin-action:hover,
.link-item:hover,
.card:hover,
.format-tile:hover,
.metric:hover,
.step:hover,
.price-card:hover {
  border-color: var(--line-strong);
  box-shadow: var(--shadow-soft);
}

.btn.primary,
.admin-action.primary {
  background: linear-gradient(135deg, var(--accent), #2448b9);
  box-shadow: 0 16px 34px rgba(35, 88, 232, 0.22);
}

.hero-panel {
  background:
    linear-gradient(180deg, rgba(20, 32, 42, 0.035), transparent 96px),
    var(--panel-soft);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.74);
}

.quick-steps li,
.card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.64), transparent 86px),
    var(--panel);
}

.format-tile,
.metric,
.price-card {
  box-shadow: 0 14px 34px rgba(24, 49, 70, 0.06);
}

.format-tile.primary,
.price-mini article.featured,
.price-card.featured {
  background:
    linear-gradient(135deg, rgba(35, 88, 232, 0.1), rgba(7, 140, 132, 0.08)),
    var(--accent-wash);
}

.notice {
  background:
    linear-gradient(90deg, rgba(242, 184, 75, 0.14), transparent 68%),
    #fffaf2;
}

.support-template {
  background:
    linear-gradient(135deg, #17243b, #0e706c),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 14px);
}

@media (max-width: 860px) {
  .portal-topbar {
    border-radius: 16px;
  }

  .hero {
    padding: 20px;
  }
}

.workflow-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(320px, 0.97fr);
  gap: 18px;
  align-items: stretch;
  margin: 18px 0;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(35, 88, 232, 0.06), transparent 42%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.66), transparent 140px),
    var(--panel);
  box-shadow: var(--shadow-soft);
}

.workflow-copy {
  display: grid;
  align-content: center;
  gap: 14px;
  min-width: 0;
}

.workflow-copy h2 {
  margin: 2px 0 0;
  max-width: 680px;
  color: var(--ink);
  font-size: clamp(28px, 3.5vw, 44px);
  line-height: 1.05;
  letter-spacing: 0;
}

.workflow-copy > p {
  margin: 0;
  max-width: 620px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}

.workflow-steps {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 4px;
}

.workflow-steps article {
  display: grid;
  gap: 7px;
  min-width: 0;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 253, 247, 0.74);
}

.workflow-steps span,
.preview-status small,
.preview-result span {
  color: var(--accent-2);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.workflow-steps strong {
  font-size: 15px;
}

.workflow-steps small {
  color: var(--muted);
  line-height: 1.65;
}

.product-preview {
  overflow: hidden;
  display: grid;
  align-self: stretch;
  min-height: 460px;
  border: 1px solid rgba(20, 32, 42, 0.12);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(20, 32, 42, 0.94), rgba(20, 32, 42, 0.88)),
    var(--ink);
  box-shadow: 0 28px 62px rgba(20, 32, 42, 0.18);
}

.preview-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 48px;
  padding: 0 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.82);
}

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

.preview-top span {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.24);
}

.preview-body {
  display: grid;
  align-content: center;
  gap: 14px;
  padding: 18px;
}

.preview-status,
.preview-result {
  display: grid;
  gap: 8px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

.preview-status strong,
.preview-result strong {
  overflow-wrap: anywhere;
  font-size: 18px;
  line-height: 1.3;
}

.preview-status p,
.preview-result p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  line-height: 1.65;
  word-break: break-all;
}

.preview-formats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.preview-formats button {
  min-height: 50px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.72);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 900;
}

.preview-formats button.active {
  border-color: rgba(255, 255, 255, 0.32);
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #ffffff;
}

.preview-result {
  background:
    linear-gradient(135deg, rgba(7, 140, 132, 0.2), rgba(35, 88, 232, 0.12)),
    rgba(255, 255, 255, 0.08);
}

.platform-matrix,
.difference-section {
  background:
    linear-gradient(135deg, rgba(22, 183, 181, 0.06), transparent 48%),
    var(--panel);
}

.section-head > p {
  max-width: 460px;
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.matrix-grid,
.difference-grid,
.download-panel {
  display: grid;
  gap: 12px;
}

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

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

.matrix-grid article,
.difference-grid article,
.download-card {
  min-width: 0;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--panel-soft);
}

.matrix-grid article,
.difference-grid article,
.download-card {
  display: grid;
  align-content: start;
  gap: 10px;
}

.matrix-grid span {
  color: var(--accent-2);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.matrix-grid strong,
.difference-grid strong {
  font-size: 18px;
  letter-spacing: -0.02em;
}

.matrix-grid p,
.difference-grid p,
.download-card p,
.download-card li {
  margin: 0;
  color: var(--muted);
  line-height: 1.68;
}

.download-card {
  background:
    radial-gradient(circle at top right, rgba(47, 107, 255, 0.1), transparent 42%),
    var(--panel);
}

.download-card strong {
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1;
  letter-spacing: -0.06em;
}

.download-card ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding-left: 1.1em;
}

.download-card.muted {
  background: var(--panel-soft);
}

@media (max-width: 980px) {
  .workflow-showcase,
  .workflow-steps {
    grid-template-columns: 1fr;
  }

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

  .product-preview {
    min-height: 360px;
  }
}

@media (max-width: 560px) {
  .workflow-showcase {
    padding: 14px;
  }

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

  .trust-strip,
  .matrix-grid,
  .difference-grid,
  .download-panel {
    grid-template-columns: 1fr;
  }
}

.use-case-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.use-case-card {
  display: grid;
  align-content: start;
  gap: 12px;
  min-width: 0;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.68), transparent 90px),
    var(--panel);
  box-shadow: 0 14px 34px rgba(24, 49, 70, 0.06);
}

.use-case-card.featured {
  border-color: rgba(35, 88, 232, 0.28);
  background:
    linear-gradient(135deg, rgba(35, 88, 232, 0.1), rgba(7, 140, 132, 0.08)),
    var(--panel);
}

.use-case-card > span {
  width: fit-content;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 5px 9px;
  background: rgba(255, 253, 247, 0.78);
  color: var(--accent-2);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.use-case-card h3 {
  margin: 0;
  font-size: 22px;
  letter-spacing: 0;
}

.use-case-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.use-case-card ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.use-case-card li {
  position: relative;
  padding-left: 18px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.use-case-card li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--accent-2);
  box-shadow: 0 0 0 4px rgba(7, 140, 132, 0.1);
}

.trust-band {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 18px;
  align-items: center;
  margin: 16px 0;
  padding: 22px;
  border: 1px solid rgba(20, 32, 42, 0.12);
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(20, 32, 42, 0.96), rgba(20, 32, 42, 0.9)),
    var(--ink);
  color: #ffffff;
  box-shadow: 0 28px 62px rgba(20, 32, 42, 0.16);
}

.trust-band h2 {
  margin: 5px 0 8px;
  font-size: clamp(26px, 3.2vw, 40px);
  line-height: 1.08;
  letter-spacing: 0;
}

.trust-band p {
  margin: 0;
  max-width: 680px;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.75;
}

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

.trust-grid article {
  min-width: 0;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
}

.trust-grid strong {
  display: block;
  margin-bottom: 7px;
  font-size: 20px;
}

.trust-grid span {
  color: rgba(255, 255, 255, 0.66);
  font-size: 12px;
  line-height: 1.55;
}

.account-hero {
  min-height: 160px;
  padding: 28px 32px;
  margin-bottom: 20px;
  align-items: center;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 253, 247, 0.96)),
    repeating-linear-gradient(90deg, rgba(20, 32, 42, 0.03) 0 1px, transparent 1px 22px),
    repeating-linear-gradient(180deg, rgba(20, 32, 42, 0.03) 0 1px, transparent 1px 22px);
  background-size: auto, 22px 22px, 22px 22px;
  background-repeat: no-repeat, repeat, repeat;
}

.account-hero::after {
  display: none;
}

.account-hero-copy {
  display: grid;
  gap: 10px;
  max-width: 720px;
}

.account-hero h1 {
  font-size: clamp(30px, 4.2vw, 46px);
  line-height: 1.02;
}

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

.account-login-card {
  position: relative;
  display: grid;
  gap: 18px;
  width: 100%;
  max-width: 520px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 253, 247, 0.98)),
    var(--panel);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  isolation: isolate;
}

.account-card-head {
  display: grid;
  gap: 10px;
}

.account-card-head h2 {
  margin: 4px 0 0;
  font-size: 28px;
  letter-spacing: 0;
}

.account-card-copy {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.account-login-form {
  display: grid;
  gap: 14px;
}

.account-login-form > * {
  min-width: 0;
}

.account-input {
  width: 100%;
  max-width: 100%;
  min-height: 52px;
  padding: 0 14px;
  border: 1px solid var(--line-strong);
  border-radius: 14px;
  background: rgba(255, 253, 247, 0.95);
  color: var(--ink);
}

.account-input:focus {
  outline: 3px solid #e8e5dd;
  border-color: var(--accent);
}

.account-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.account-actions .btn {
  flex: 0 0 auto;
}

.account-inline-status {
  display: grid;
  gap: 6px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--panel-soft);
}

.account-inline-status strong {
  font-size: 16px;
}

.account-inline-status p,
.account-hint span {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.account-hint {
  padding: 14px 16px;
  border-radius: 16px;
  background: #fffaf2;
  border: 1px solid var(--line);
}

.account-side-stack {
  display: grid;
  gap: 16px;
  min-width: 0;
}

.account-summary-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.account-summary-card {
  min-height: 164px;
  padding: 20px;
}

.account-summary-card h3 {
  margin: 6px 0 8px;
  font-size: 28px;
}

.account-records {
  margin-top: 0;
  padding: 20px;
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(255, 253, 247, 0.98)),
    var(--panel);
  box-shadow: 0 12px 28px rgba(24, 49, 70, 0.06);
}

.account-logged-in {
  display: grid;
  gap: 6px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--panel-soft);
}

.account-logged-in strong {
  font-size: 15px;
}

.account-logged-in p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.account-overview {
  display: grid;
  gap: 12px;
}

.account-overview[hidden] {
  display: none;
}

.account-overview-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.account-overview article,
.account-overview-block {
  display: grid;
  gap: 6px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(248, 251, 255, 0.86);
}

.account-overview span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.account-overview strong {
  color: var(--ink);
  font-size: 18px;
}

.account-overview small,
.account-overview .empty,
.account-overview .step small {
  color: var(--muted);
  line-height: 1.55;
}

.account-overview .step {
  display: grid;
  gap: 4px;
  padding: 10px 0;
  border-top: 1px solid rgba(226, 233, 244, 0.8);
}

.account-overview .step:first-child {
  border-top: 0;
  padding-top: 0;
}

.account-page .hero::after,
.account-page .hero::before,
.account-page img[alt="decor"],
.account-page .hero img,
.account-page .account-login-card img {
  display: none !important;
}

.account-page .hero,
.account-page .account-login-card,
.account-page .account-records,
.account-page .account-summary-card {
  z-index: 1;
}

.account-page .account-hero,
.account-page .account-login-card,
.account-page .account-records {
  overflow: hidden;
}

@media (max-width: 980px) {
  .use-case-grid,
  .trust-band,
  .trust-grid,
  .account-layout,
  .account-summary-grid {
    grid-template-columns: 1fr;
  }

  .account-login-card {
    max-width: none;
  }
}

@media (max-width: 860px) {
  .portal-shell {
    width: min(100vw - 32px, 1120px);
  }

  .account-hero {
    min-height: auto;
    padding: 20px;
  }
}

@media (max-width: 560px) {
  .portal-shell {
    width: min(100vw - 24px, 1120px);
  }

  .account-login-card {
    padding: 18px;
  }

  .account-card-head h2 {
    font-size: 24px;
  }

  .account-actions .btn {
    width: 100%;
    flex: 1 1 100%;
  }

  .admin-drawer {
    width: 100vw;
    padding: 16px;
  }
}

/* Launch landing page: clean, conversion-first homepage. */
.landing-page {
  overflow-x: clip;
  background: #f8fbff;
  color: #061634;
  font-family: "HarmonyOS Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
}

.landing-page a {
  text-decoration: none;
}

.landing-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  overflow-x: clip;
  min-height: 72px;
  padding: 0 min(5vw, 48px);
  border-bottom: 1px solid #e8eef7;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px);
}

.landing-brand {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #071a3d;
}

.landing-logo {
  display: inline-grid;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: center / cover no-repeat url("../assets/branding/logo-256.png");
}

.landing-brand strong {
  font-size: 17px;
  font-weight: 900;
}

.landing-nav nav {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 16px;
  white-space: nowrap;
}

.landing-nav nav a {
  color: #667391;
  font-size: 13px;
  font-weight: 700;
}

.landing-nav nav a:hover {
  color: #246bfe;
}

.landing-nav .nav-login {
  padding: 10px 18px;
  border-radius: 10px;
  background: linear-gradient(135deg, #3578ff, #8d32ff);
  color: #fff;
  box-shadow: 0 10px 22px rgba(80, 88, 255, 0.24);
  max-width: 132px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.landing-nav .nav-login.is-logged-in {
  background: #eef5ff;
  color: #2454d6;
  box-shadow: none;
}

.landing-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.74fr);
  align-items: center;
  gap: clamp(36px, 5vw, 72px);
  min-height: 640px;
  padding: 88px max(24px, calc((100vw - 1180px) / 2)) 72px;
  text-align: left;
  background:
    radial-gradient(circle at 36% 0%, rgba(100, 115, 255, 0.16), transparent 36%),
    radial-gradient(circle at 92% 24%, rgba(0, 201, 139, 0.1), transparent 26%),
    linear-gradient(180deg, #f7fbff 0%, #ffffff 62%, #f8fbff 100%);
}

.landing-hero-copy {
  min-width: 0;
}

.version-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 26px;
  padding: 9px 18px;
  border: 1px solid #cbd8ff;
  border-radius: 999px;
  background: #eef4ff;
  color: #596dff;
  font-size: 14px;
  font-weight: 800;
}

.version-pill span {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #00c98b;
}

.landing-hero h1 {
  margin: 0;
  max-width: 720px;
  font-size: clamp(44px, 5.4vw, 72px);
  line-height: 1;
  letter-spacing: -0.06em;
  background: linear-gradient(135deg, #246bfe, #8c32ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.landing-hero p {
  max-width: 720px;
  margin: 24px 0 0;
  color: #64718e;
  font-size: 20px;
  line-height: 1.72;
}

.landing-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 16px;
  margin-top: 36px;
}

.landing-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 170px;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 12px;
  color: #102142;
  font-size: 16px;
  font-weight: 850;
  box-shadow: 0 10px 22px rgba(33, 54, 102, 0.12);
}

.landing-btn.primary {
  background: linear-gradient(135deg, #6b54ff, #9b19ff);
  color: #fff;
}

.landing-btn.blue {
  background: linear-gradient(135deg, #287bff, #08b8d7);
  color: #fff;
}

.landing-btn.soft {
  border: 1px solid #dce5f2;
  background: #fff;
}

.landing-btn.is-disabled {
  cursor: not-allowed;
}

.landing-hero .store-note {
  margin: 14px 0 0;
  color: #a7b2c7;
  font-size: 7px;
  line-height: 1.6;
}

.doc-link {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  column-gap: 10px;
  row-gap: 2px;
  width: min(420px, 100%);
  min-height: 64px;
  margin-top: 34px;
  padding: 10px 14px;
  border: 1px solid #e1e8f4;
  border-radius: 14px;
  background: #fff;
  color: #0d2147;
  text-align: left;
  box-shadow: 0 12px 28px rgba(33, 54, 102, 0.08);
}

.doc-icon {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 9px;
  background: linear-gradient(135deg, #6b54ff, #9b19ff);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
}

.doc-link strong,
.doc-link small {
  grid-column: 2;
}

.doc-link strong {
  line-height: 1.15;
}

.doc-link small {
  color: #7b879d;
  font-size: 12px;
  line-height: 1.15;
  white-space: nowrap;
}

.doc-link em {
  display: inline-flex;
  margin-left: 6px;
  padding: 2px 6px;
  border-radius: 999px;
  background: #14c98b;
  color: #fff;
  font-size: 10px;
  font-style: normal;
  font-weight: 900;
  vertical-align: 2px;
}

.doc-link b {
  grid-row: 1 / span 2;
  grid-column: 3;
  color: #8a98b2;
}

.landing-hero-panel {
  display: grid;
  gap: 18px;
  padding: 26px;
  border: 1px solid rgba(204, 216, 237, 0.86);
  border-radius: 26px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(245, 249, 255, 0.9)),
    radial-gradient(circle at 100% 0%, rgba(104, 91, 255, 0.1), transparent 32%);
  box-shadow:
    0 24px 56px rgba(38, 55, 95, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

.hero-panel-head {
  display: grid;
  gap: 0;
}

.hero-panel-head span {
  color: #7585a4;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.18em;
}

.hero-panel-head strong {
  color: #071a3d;
  font-size: 24px;
  letter-spacing: -0.04em;
}

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

.hero-panel-grid article {
  min-height: 138px;
  padding: 18px;
  border: 1px solid #e4ebf6;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 10px 24px rgba(32, 50, 88, 0.06);
}

.hero-panel-grid article > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 30px;
  padding: 0 10px;
  border-radius: 10px;
  background: #eef4ff;
  color: #4e63ff;
  font-size: 12px;
  font-weight: 900;
}

.hero-panel-grid strong,
.hero-panel-grid small {
  display: block;
}

.hero-panel-grid strong {
  margin-top: 18px;
  color: #102142;
  font-size: 18px;
}

.hero-panel-grid small {
  margin-top: 8px;
  color: #71809d;
  font-size: 13px;
  line-height: 1.45;
}

.hero-platforms {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hero-platforms span {
  padding: 7px 10px;
  border: 1px solid #e2e9f4;
  border-radius: 999px;
  background: #fff;
  color: #62718e;
  font-size: 12px;
  font-weight: 800;
}

.landing-section {
  width: min(1180px, calc(100vw - 48px));
  margin: 0 auto;
  padding: 72px 0;
  text-align: center;
}

.landing-section-split,
.landing-section-compact {
  display: grid;
  grid-template-columns: 1fr;
  gap: 34px;
  text-align: left;
}

.section-intro {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
  max-width: none;
  padding-top: 0;
}

.landing-section h2 {
  margin: 0;
  color: #071a3d;
  font-size: clamp(28px, 4vw, 42px);
  letter-spacing: -0.04em;
}

.landing-section-split h2,
.landing-section-compact h2 {
  font-size: clamp(22px, 2.2vw, 28px);
}

.section-subtitle {
  margin: 14px 0 0;
  color: #71809d;
  font-size: 18px;
}

.section-intro .section-subtitle {
  margin: 0;
  max-width: none;
  font-size: 15px;
  line-height: 1.5;
  text-align: right;
}

.landing-feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  margin-top: 0;
}

.landing-card,
.price-box {
  position: relative;
  padding: 34px;
  border: 1px solid #e2e9f4;
  border-radius: 14px;
  background: #fff;
  text-align: left;
  box-shadow: 0 10px 24px rgba(32, 50, 88, 0.08);
}

.landing-section-split .landing-card {
  padding: 26px;
}

.card-icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 10px;
  font-size: 24px;
  font-weight: 900;
}

.card-icon.purple {
  background: #eef0ff;
  color: #6557ff;
}

.card-icon.green {
  background: #e9fbf1;
  color: #0dbf78;
}

.card-icon.orange {
  background: #fff5df;
  color: #ff9900;
}

.card-icon.blue {
  background: #eaf3ff;
  color: #2474ff;
}

.landing-card h3,
.price-box h3 {
  margin: 0 0 18px;
  font-size: 22px;
}

.landing-card ul,
.price-box ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.landing-card li,
.price-box li {
  color: #63718f;
  line-height: 1.55;
}

.landing-card li::before,
.price-box li::before {
  content: "✓";
  margin-right: 10px;
  color: #00bd7e;
  font-weight: 900;
}

.content-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  margin-top: 0;
}

.content-grid article {
  display: grid;
  gap: 10px;
  justify-items: center;
  min-height: 112px;
  padding: 22px 18px;
  border: 1px solid #e2e9f4;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 8px 18px rgba(32, 50, 88, 0.06);
}

.content-grid span {
  color: #6671ff;
  font-size: 30px;
  font-weight: 900;
}

.pricing-section {
  width: min(1220px, calc(100vw - 48px));
}

.pricing-heading {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.pricing-kicker {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 7px 12px;
  border-radius: 999px;
  background: #eef4ff;
  color: #596dff;
  font-size: 13px;
  font-weight: 900;
}

.pricing-heading p {
  margin: 16px auto 0;
  max-width: 820px;
  color: #64718e;
  font-size: 18px;
  line-height: 1.75;
}

.pricing-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  align-items: stretch;
  margin-top: 54px;
}

.price-box {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 640px;
  padding: 26px;
  border: 1px solid #e2e9f4;
  border-radius: 18px;
  background: #fff;
  text-align: left;
  box-shadow: 0 10px 24px rgba(32, 50, 88, 0.08);
}

.price-box.highlight {
  z-index: 1;
  transform: translateY(-12px) scale(1.025);
  border-color: #7d76ff;
  background:
    radial-gradient(circle at 100% 0%, rgba(126, 101, 255, 0.16), transparent 32%),
    #fff;
  box-shadow: 0 24px 54px rgba(99, 91, 255, 0.22);
}

.price-box.theme-gold {
  border-color: #ffd27a;
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 176, 41, 0.15), transparent 30%),
    #fffdf8;
}

.price-head {
  display: grid;
  gap: 10px;
}

.price-head h3 {
  margin: 0;
  color: #071a3d;
  font-size: 24px;
  letter-spacing: -0.03em;
}

.price-head p {
  min-height: 44px;
  margin: 0;
  color: #64718e;
  line-height: 1.6;
}

.price-amount {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-top: 4px;
}

.price-original {
  width: fit-content;
  margin-top: 6px;
  color: #9aa6bd;
  font-size: 15px;
  font-weight: 850;
  text-decoration: line-through;
  text-decoration-thickness: 2px;
}

.price-amount strong {
  display: block;
  margin: 0;
  color: #071a3d;
  font-size: 44px;
  line-height: 1;
  letter-spacing: -0.05em;
}

.price-amount span {
  color: #71809d;
  font-size: 16px;
  font-weight: 850;
}

.price-hint {
  width: fit-content;
  margin-top: 8px;
  padding: 6px 10px;
  border-radius: 999px;
  background: #eef4ff;
  color: #4d5cff;
  font-size: 13px;
  font-weight: 900;
}

.price-target {
  min-height: 72px;
  margin: 18px 0 0;
  padding: 14px;
  border-radius: 12px;
  background: #f6f9ff;
  color: #5f6f8c;
  font-size: 14px;
  line-height: 1.65;
}

.price-list,
.price-limitations {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.price-list li,
.price-limitations li {
  color: #63718f;
  font-size: 14px;
  line-height: 1.55;
}

.price-list li::before {
  content: "✓";
  margin-right: 9px;
  color: #00bd7e;
  font-weight: 900;
}

.price-limitations {
  padding-top: 14px;
  border-top: 1px dashed #dbe4f2;
}

.price-limitations li {
  color: #8a96ad;
}

.price-limitations li::before {
  content: "×";
  margin-right: 9px;
  color: #b3bfd2;
  font-weight: 900;
}

.price-note {
  margin: 16px 0 0;
  padding: 12px;
  border-radius: 12px;
  background: #fff8e8;
  color: #855d13;
  font-size: 13px;
  line-height: 1.55;
}

.price-box.highlight .price-note {
  background: #eef4ff;
  color: #4d5cff;
}

.price-box a {
  display: inline-flex;
  justify-content: center;
  width: 100%;
  margin-top: auto;
  padding: 14px;
  border-radius: 11px;
  background: #2d7cff;
  color: #fff;
  font-weight: 900;
  box-shadow: 0 10px 22px rgba(45, 124, 255, 0.18);
}

.price-box.theme-plain a {
  background: #f1f5ff;
  color: #2855af;
  box-shadow: none;
}

.price-box.highlight a {
  background: linear-gradient(135deg, #6b54ff, #9b19ff);
  box-shadow: 0 14px 28px rgba(107, 84, 255, 0.26);
}

.price-box.theme-gold a {
  background: linear-gradient(135deg, #ffb01f, #ff7b00);
  box-shadow: 0 12px 24px rgba(255, 141, 0, 0.18);
}

.badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  padding: 7px 18px;
  border-radius: 999px;
  background: #8c32ff;
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  white-space: nowrap;
}

.price-box.theme-blue .badge {
  background: #2d7cff;
}

.price-box.theme-gold .badge {
  background: #ff8b00;
}

.pricing-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 34px;
}

.pricing-trust span {
  padding: 8px 12px;
  border: 1px solid #e2e9f4;
  border-radius: 999px;
  background: #fff;
  color: #62718e;
  font-size: 13px;
  font-weight: 800;
}

.faq-landing {
  max-width: 860px;
}

.faq-list {
  display: grid;
  gap: 14px;
  margin-top: 36px;
  text-align: left;
}

.faq-list details {
  border: 1px solid #e2e9f4;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 8px 18px rgba(32, 50, 88, 0.05);
}

.faq-list summary {
  cursor: pointer;
  padding: 20px 22px;
  font-weight: 900;
}

.faq-list p {
  margin: 0;
  padding: 0 22px 20px;
  color: #63718f;
  line-height: 1.7;
}

.landing-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 34px min(5vw, 48px);
  border-top: 1px solid #e8eef7;
  background: #fff;
}

.landing-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.landing-footer a {
  color: #667391;
  font-weight: 700;
}

@media (max-width: 900px) {
  .landing-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .landing-nav nav {
    flex-wrap: nowrap;
    gap: 12px;
  }

  .landing-hero {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .landing-hero-copy,
  .landing-hero-panel {
    width: min(100%, 680px);
  }

  .landing-hero h1,
  .landing-hero p {
    margin-left: auto;
    margin-right: auto;
  }

  .landing-actions {
    justify-content: center;
  }

  .doc-link {
    margin-left: auto;
    margin-right: auto;
  }

  .landing-section-split,
  .landing-section-compact {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .section-intro {
    max-width: none;
    justify-items: center;
    justify-content: center;
    padding-top: 0;
  }

  .section-intro .section-subtitle {
    text-align: center;
  }

  .section-intro .section-subtitle {
    max-width: none;
  }

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

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

@media (max-width: 720px) {
  .landing-nav {
    overflow-x: visible;
    gap: 16px;
    padding: 0 20px;
  }

  .landing-nav nav {
    gap: 0;
  }

  .landing-nav nav a:not(.nav-login) {
    display: none;
  }

  .section-intro {
    align-items: center;
    flex-direction: column;
    gap: 6px;
  }
}

@media (max-width: 560px) {
  .landing-hero {
    min-height: auto;
    padding: 64px 20px 58px;
  }

  .landing-actions,
  .landing-btn {
    width: 100%;
  }

  .content-grid {
    grid-template-columns: 1fr;
  }

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

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

  .landing-hero-panel {
    padding: 20px;
  }
}

/* Account login page: focused SaaS-style auth screen. */
.account-login-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 50% 38%, rgba(122, 86, 255, 0.08), transparent 30%),
    linear-gradient(180deg, #fbfdff 0%, #ffffff 58%, #f8fbff 100%);
  color: #071a3d;
  font-family: "HarmonyOS Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
}

.account-login-shell {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 48px 20px;
}

.account-login-brand {
  display: grid;
  justify-items: center;
  gap: 12px;
  margin-bottom: 18px;
  color: #071a3d;
  text-decoration: none;
}

.account-login-logo {
  width: 42px;
  height: 42px;
  border-radius: 11px;
  background: center / cover no-repeat url("../assets/branding/logo-256.png");
  box-shadow: 0 12px 30px rgba(80, 88, 255, 0.18);
}

.account-login-brand strong {
  font-size: 20px;
  font-weight: 900;
}

.account-login-page .account-login-card {
  width: min(100%, 720px);
  max-width: 720px;
  gap: 18px;
  padding: 32px;
  border: 1px solid #e2e9f4;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 50px rgba(32, 50, 88, 0.12);
}

.account-login-page .account-card-head {
  justify-items: center;
  text-align: center;
}

.account-login-page .account-card-head h1 {
  margin: 0;
  color: #6b54ff;
  font-size: 30px;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.account-login-page .account-card-copy {
  color: #71809d;
  font-size: 14px;
}

.account-login-page .field {
  gap: 8px;
}

.account-login-page .field strong {
  color: #465675;
  font-size: 13px;
}

.account-login-page .field strong span,
.account-login-page .field small {
  color: #9aa6bd;
  font-weight: 700;
}

.account-login-page .field small {
  font-size: 12px;
  line-height: 1.5;
}

.account-login-page .account-input {
  min-height: 48px;
  border-color: #e1e8f4;
  border-radius: 9px;
  background: #fbfdff;
  color: #071a3d;
}

.account-login-page .account-input:focus {
  outline: 3px solid rgba(107, 84, 255, 0.14);
  border-color: #9b8cff;
}

.account-login-page .verify-email-summary {
  display: grid;
  gap: 4px;
  padding: 12px 14px;
  border: 1px solid #dce6fb;
  border-radius: 12px;
  background: #f7faff;
  color: #71809d;
  font-size: 13px;
}

.account-login-page .verify-email-summary strong {
  color: #071a3d;
  font-size: 15px;
}

.account-login-page .account-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.account-login-page .account-actions .btn {
  width: 100%;
  min-height: 48px;
  border-radius: 9px;
  border-color: transparent;
  font-size: 15px;
}

.account-login-page .btn.primary {
  background: linear-gradient(135deg, #8b7dff, #cf75ff);
  color: #fff;
  box-shadow: 0 12px 28px rgba(144, 93, 255, 0.22);
}

.account-login-page .btn.soft {
  background: #f3f6ff;
  color: #5a6b8f;
}

.account-login-page .account-inline-status {
  border: 1px solid #e8eef7;
  background: #f8fbff;
}

.account-login-page .account-hint {
  padding: 0;
  border: 0;
  background: transparent;
  text-align: center;
}

.account-login-page .account-hint span {
  color: #9aa6bd;
  font-size: 13px;
}

.account-back-home {
  margin-top: 18px;
  color: #71809d;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}

.account-back-home:hover {
  color: #6b54ff;
}

.account-data-visually-hidden {
  display: none;
}

@media (max-width: 520px) {
  .account-login-shell {
    padding: 32px 16px;
  }

  .account-login-page .account-login-card {
    padding: 24px 20px;
  }

  .account-overview-grid {
    grid-template-columns: 1fr;
  }
}

/* Activation code page. */
.activation-page {
  min-height: 100vh;
  overflow-x: clip;
  background: linear-gradient(180deg, #f8fbff 0%, #ffffff 52%, #f9fbff 100%);
  color: #071a3d;
  font-family: "HarmonyOS Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
}

.activation-page a {
  text-decoration: none;
}

.activation-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  padding: 0 min(4vw, 42px);
  border-bottom: 1px solid #e8eef7;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(18px);
}

.activation-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #071a3d;
}

.activation-logo {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: center / cover no-repeat url("../assets/branding/logo-256.png");
}

.activation-brand strong {
  font-size: 17px;
  font-weight: 900;
}

.activation-nav nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.activation-nav nav a {
  color: #667391;
  font-size: 14px;
  font-weight: 760;
}

.activation-nav .nav-login {
  padding: 10px 18px;
  border-radius: 10px;
  background: linear-gradient(135deg, #6b54ff, #8d32ff);
  color: #fff;
  box-shadow: 0 10px 22px rgba(80, 88, 255, 0.24);
}

.activation-shell {
  width: min(1120px, calc(100vw - 48px));
  margin: 0 auto;
  padding: 64px 0 96px;
}

.activation-hero {
  max-width: 700px;
}

.activation-pill {
  display: inline-flex;
  margin-bottom: 20px;
  padding: 8px 16px;
  border-radius: 999px;
  background: #e9fbf1;
  color: #079b67;
  font-size: 14px;
  font-weight: 900;
}

.activation-hero h1 {
  margin: 0;
  color: #071a3d;
  font-size: clamp(38px, 5vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.05em;
}

.activation-hero p {
  margin: 18px 0 0;
  color: #64718e;
  font-size: 19px;
  line-height: 1.75;
}

.activation-card {
  display: grid;
  min-height: 320px;
  margin-top: 42px;
  place-items: center;
  border: 1px solid #e2e9f4;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 12px 30px rgba(32, 50, 88, 0.1);
}

.activation-gate,
.activation-form {
  display: grid;
  justify-items: center;
  gap: 14px;
  width: min(420px, calc(100% - 40px));
  text-align: center;
}

.activation-gate-icon {
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  border-radius: 14px;
  background: #eef0ff;
  color: #6b54ff;
  font-size: 32px;
  font-weight: 900;
}

.activation-gate h2 {
  margin: 10px 0 0;
  font-size: 22px;
}

.activation-gate p,
.activation-form p {
  margin: 0;
  color: #71809d;
  line-height: 1.65;
}

.activation-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  min-width: 112px;
  padding: 0 22px;
  border: 0;
  border-radius: 10px;
  background: linear-gradient(135deg, #6b54ff, #8d32ff);
  color: #fff;
  font-size: 15px;
  font-weight: 900;
  cursor: pointer;
}

.activation-form label {
  display: grid;
  gap: 9px;
  width: 100%;
  text-align: left;
}

.activation-form strong {
  color: #465675;
  font-size: 13px;
}

.activation-form input {
  width: 100%;
  min-height: 50px;
  padding: 0 14px;
  border: 1px solid #dce5f2;
  border-radius: 10px;
  background: #fbfdff;
  color: #071a3d;
  font: inherit;
}

.activation-form input:focus {
  outline: 3px solid rgba(107, 84, 255, 0.14);
  border-color: #9b8cff;
}

.activation-btn:disabled {
  cursor: wait;
  opacity: 0.72;
}

@media (max-width: 720px) {
  .activation-nav nav a:not(.nav-login) {
    display: none;
  }

  .activation-shell {
    width: min(100vw - 32px, 1120px);
    padding-top: 48px;
  }

  .activation-card {
    min-height: 280px;
  }
}

/* Changelog page. */
.changelog-page {
  min-height: 100vh;
  overflow-x: clip;
  background: linear-gradient(180deg, #f8fbff 0%, #ffffff 42%, #f8fbff 100%);
  color: #071a3d;
  font-family: "HarmonyOS Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
}

.changelog-page a {
  text-decoration: none;
}

.changelog-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  padding: 0 min(4vw, 42px);
  border-bottom: 1px solid #e8eef7;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(18px);
}

.changelog-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #071a3d;
}

.changelog-logo {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: center / cover no-repeat url("../assets/branding/logo-256.png");
}

.changelog-brand strong {
  font-size: 17px;
  font-weight: 900;
}

.changelog-nav nav {
  display: flex;
  align-items: center;
  gap: 22px;
}

.changelog-nav nav a {
  color: #667391;
  font-size: 14px;
  font-weight: 760;
}

.changelog-nav .nav-login {
  padding: 10px 18px;
  border-radius: 10px;
  background: linear-gradient(135deg, #6b54ff, #8d32ff);
  color: #fff;
  box-shadow: 0 10px 22px rgba(80, 88, 255, 0.24);
}

.changelog-shell {
  width: min(980px, calc(100vw - 48px));
  margin: 0 auto;
  padding: 72px 0 96px;
}

.changelog-hero {
  text-align: center;
}

.changelog-hero h1 {
  margin: 0;
  font-size: clamp(42px, 6vw, 64px);
  line-height: 1;
  letter-spacing: -0.06em;
  background: linear-gradient(135deg, #246bfe, #8c32ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.changelog-hero p {
  margin: 18px auto 0;
  max-width: 620px;
  color: #64718e;
  font-size: 18px;
  line-height: 1.7;
}

.changelog-download {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin: 44px 0 34px;
  padding: 26px;
  border: 1px solid #e2e9f4;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(32, 50, 88, 0.08);
}

.changelog-download h2 {
  margin: 0;
  font-size: 24px;
}

.changelog-download p {
  margin: 8px 0 0;
  color: #71809d;
}

.changelog-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.changelog-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 900;
}

.changelog-btn.primary {
  background: linear-gradient(135deg, #6b54ff, #9b19ff);
  color: #fff;
}

.changelog-btn.soft {
  border: 1px solid #dce5f2;
  background: #fff;
  color: #071a3d;
}

.changelog-list {
  display: grid;
  gap: 22px;
}

.changelog-entry {
  position: relative;
  padding: 30px;
  border: 1px solid #e2e9f4;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(32, 50, 88, 0.07);
}

.changelog-entry.latest {
  border-color: #9b8cff;
  box-shadow: 0 16px 38px rgba(107, 84, 255, 0.14);
}

.changelog-version {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.changelog-version strong {
  color: #6b54ff;
  font-size: 18px;
  font-weight: 950;
}

.changelog-version span {
  padding: 4px 9px;
  border-radius: 999px;
  background: #e9fbf1;
  color: #079b67;
  font-size: 12px;
  font-weight: 900;
}

.changelog-version time {
  color: #8b98b2;
  font-size: 13px;
}

.changelog-entry h2 {
  margin: 0 0 18px;
  font-size: 26px;
  letter-spacing: -0.03em;
}

.changelog-entry ul {
  display: grid;
  gap: 11px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.changelog-entry li {
  color: #63718f;
  line-height: 1.7;
}

.changelog-entry li::before {
  content: "✓";
  margin-right: 10px;
  color: #00bd7e;
  font-weight: 900;
}

.changelog-entry b {
  color: #071a3d;
}

@media (max-width: 720px) {
  .changelog-shell {
    width: min(100vw - 32px, 980px);
    padding-top: 48px;
  }

  .changelog-download {
    align-items: flex-start;
    flex-direction: column;
  }

  .changelog-actions,
  .changelog-btn {
    width: 100%;
  }
}
