:root {
  color-scheme: light;
  --ink: #14231c;
  --ink-2: #253b31;
  --muted: #69776f;
  --line: #dfe7e2;
  --soft: #f3f7f4;
  --soft-2: #eaf2ed;
  --surface: #ffffff;
  --green: #0c8050;
  --green-dark: #08643e;
  --green-light: #dff4e9;
  --lime: #d6f09c;
  --orange: #f6b760;
  --danger: #c2413b;
  --shadow: 0 24px 70px rgba(23, 51, 37, 0.1);
  --shadow-small: 0 10px 30px rgba(23, 51, 37, 0.07);
}

/* v3.4 会员、安全与内容扩展 */
.site-announcements {
  grid-column: 1 / -1;
  display: grid;
  gap: 10px;
  margin-bottom: 18px;
}
.site-announcements article {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 13px 16px;
  border: 1px solid #cce9df;
  border-radius: 14px;
  background: #f2fbf7;
  color: #174c3e;
}
.site-announcements .announcement-warning,
.site-announcements .announcement-maintenance { border-color: #f1d7aa; background: #fff9ed; color: #76501a; }
.confirm-account-details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
}
.confirm-account-details div { padding: 12px 14px; border-radius: 12px; background: #f6f8f7; }
.confirm-account-details dt { color: #728078; font-size: 14px; }
.confirm-account-details dd { margin: 4px 0 0; font-weight: 700; overflow-wrap: anywhere; }
.inline-input { display: flex; gap: 8px; }
.inline-input input { flex: 1; }
.inline-input button,
.text-button,
.danger-soft-button { border: 1px solid #c9d8d2; background: #fff; color: #176f58; border-radius: 10px; padding: 10px 13px; cursor: pointer; }
.danger-soft-button { color: #a33131; border-color: #efcaca; margin-top: 10px; }
.captcha-field > span { display: inline-block; margin-left: 6px; color: #0f765c; font-weight: 800; }
.public-content-panel { margin-top: 24px; padding: 24px; border: 1px solid #dde8e3; border-radius: 20px; background: #fff; }
.public-content-panel details { border-bottom: 1px solid #e7eeeb; padding: 14px 0; }
.public-content-panel summary { cursor: pointer; font-weight: 750; }
.public-content-panel p { color: #596960; white-space: pre-wrap; line-height: 1.75; }
.product-poster.has-cover { background-size: cover; background-position: center; }
.product-poster.has-cover > * { text-shadow: 0 1px 10px rgba(255,255,255,.85); }

@media (max-width: 640px) {
  .confirm-account-details { grid-template-columns: 1fr; }
  .site-announcements article { flex-direction: column; }
  .inline-input { flex-direction: column; }
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  background: #f7f9f7;
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
  -webkit-font-smoothing: antialiased;
}

button,
input,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  color: inherit;
}

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

.service-ribbon {
  position: relative;
  z-index: 50;
  height: 28px;
  padding: 6px 16px;
  background: #14231c;
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
  letter-spacing: 0.08em;
  text-align: center;
}

.service-ribbon.is-online {
  color: #d8f3e4;
}

.service-ribbon.is-offline {
  background: #7a271a;
  color: #fff2f0;
}

.service-ribbon .online-dot {
  margin-right: 7px;
}

.page-container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  z-index: 40;
  top: 0;
  border-bottom: 1px solid rgba(221, 229, 223, 0.82);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  width: min(1240px, calc(100% - 40px));
  height: 74px;
  align-items: center;
  justify-content: space-between;
  margin: 0 auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.brand-mark {
  position: relative;
  display: flex;
  width: 38px;
  height: 38px;
  align-items: flex-end;
  justify-content: center;
  gap: 3px;
  overflow: hidden;
  padding: 8px;
  border-radius: 12px;
  background: var(--ink);
}

.brand-mark span {
  width: 5px;
  border-radius: 4px 4px 2px 2px;
  background: #fff;
  transform: rotate(25deg);
}

.brand-mark span:nth-child(1) {
  height: 13px;
  opacity: 0.7;
}

.brand-mark span:nth-child(2) {
  height: 20px;
}

.brand-mark span:nth-child(3) {
  height: 10px;
  background: var(--lime);
}

.brand-copy {
  display: flex;
  align-items: baseline;
  gap: 5px;
}

.brand-copy strong {
  font-size: 17px;
  letter-spacing: -0.04em;
}

.brand-copy small {
  color: var(--green);
  font-size: 14px;
  font-weight: 850;
  letter-spacing: 0.1em;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 7px;
}

.desktop-nav a {
  padding: 10px 13px;
  border-radius: 10px;
  color: #4c5d54;
  font-size: 14px;
  font-weight: 650;
  transition: 160ms ease;
}

.desktop-nav a:hover,
.desktop-nav a.is-active {
  background: var(--soft);
  color: var(--green-dark);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 9px;
}

.support-link,
.account-button {
  height: 38px;
  border: 0;
  border-radius: 10px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
}

.support-link {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0 10px;
  background: transparent;
  color: #56655e;
}

.online-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #28a56c;
  box-shadow: 0 0 0 4px rgba(40, 165, 108, 0.12);
}

.account-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  background: var(--ink);
  color: white;
}

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

.page-view {
  display: none;
}

.page-view.is-active {
  display: block;
  animation: page-in 260ms ease;
}

.home-hero {
  display: grid;
  min-height: 630px;
  align-items: center;
  gap: clamp(60px, 8vw, 120px);
  grid-template-columns: minmax(0, 1.08fr) minmax(390px, 0.92fr);
  padding-top: 70px;
  padding-bottom: 80px;
}

.hero-content {
  padding-bottom: 16px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 22px;
  color: var(--green);
  font-size: 14px;
  font-weight: 750;
}

.eyebrow-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 5px var(--green-light);
}

.hero-content h1 {
  max-width: 650px;
  margin: 0;
  font-size: clamp(52px, 5.8vw, 74px);
  font-weight: 730;
  letter-spacing: -0.065em;
  line-height: 1.07;
}

.hero-content h1 span {
  color: var(--green);
}

.hero-content > p {
  max-width: 570px;
  margin: 25px 0 29px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.85;
}

.hero-actions,
.result-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.primary-button,
.secondary-button,
.dark-button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 15px;
  border: 0;
  border-radius: 12px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 750;
  transition: 160ms ease;
}

.primary-button {
  padding: 0 21px;
  background: var(--green);
  color: white;
  box-shadow: 0 10px 22px rgba(12, 128, 80, 0.2);
}

.primary-button:hover,
.wizard-next:hover {
  background: var(--green-dark);
  transform: translateY(-1px);
}

.secondary-button {
  padding: 0 20px;
  border: 1px solid var(--line);
  background: #fff;
  color: #3d4e45;
}

.secondary-button:hover {
  border-color: #b8c8bf;
  background: var(--soft);
}

.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 19px;
  margin-top: 27px;
  color: #58685f;
  font-size: 14px;
  font-weight: 620;
}

.trust-list span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.trust-list i {
  color: var(--green);
  font-style: normal;
  font-weight: 900;
}

.progress-card {
  position: relative;
  overflow: hidden;
  padding: 28px;
  border: 1px solid rgba(213, 224, 216, 0.92);
  border-radius: 24px;
  background:
    radial-gradient(circle at 100% 0, rgba(214, 240, 156, 0.24), transparent 35%),
    #fff;
  box-shadow: var(--shadow);
}

.progress-card::after {
  position: absolute;
  right: -38px;
  bottom: -38px;
  width: 120px;
  height: 120px;
  border: 24px solid rgba(12, 128, 80, 0.035);
  border-radius: 50%;
  content: "";
}

.progress-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.mini-label,
.section-kicker {
  display: block;
  margin-bottom: 9px;
  color: var(--green);
  font-size: 14px;
  font-weight: 850;
  letter-spacing: 0.15em;
}

.progress-card h2,
.order-summary h2 {
  margin: 0;
  font-size: 21px;
  letter-spacing: -0.035em;
}

.processing-badge,
.service-pill,
.stock-badge,
.maintenance-badge,
.table-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 10px;
  border-radius: 999px;
  background: #edf7f1;
  color: var(--green);
  font-size: 14px;
  font-weight: 780;
}

.processing-badge i {
  width: 6px;
  height: 6px;
  border: 1px solid var(--green);
  border-radius: 50%;
  border-top-color: transparent;
  animation: spin 1.1s linear infinite;
}

.account-chip {
  display: flex;
  align-items: center;
  gap: 11px;
  margin: 25px 0 27px;
  padding: 13px;
  border: 1px solid #e5ece7;
  border-radius: 14px;
  background: #f8faf8;
}

.home-order-empty {
  display: flex;
  min-height: 235px;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  margin: 24px 0 13px;
  padding: 25px;
  border: 1px dashed #cbd9d0;
  border-radius: 15px;
  background: rgba(248, 251, 249, 0.8);
  text-align: center;
}

.home-order-empty > span {
  display: grid;
  width: 42px;
  height: 42px;
  margin-bottom: 13px;
  place-items: center;
  border-radius: 13px;
  background: var(--green-light);
  color: var(--green);
  font-size: 20px;
}

.home-order-empty strong {
  font-size: 14px;
}

.home-order-empty small {
  max-width: 240px;
  margin-top: 7px;
  color: #89968f;
  font-size: 14px;
  line-height: 1.6;
}

.processing-badge.is-complete {
  background: #edf8f2;
  color: var(--green);
}

.processing-badge.is-attention {
  background: #fff1ef;
  color: var(--danger);
}

.account-avatar,
.confirm-avatar {
  display: grid;
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 11px;
  background: var(--ink);
  color: #fff;
  font-weight: 800;
}

.account-chip div:nth-child(2) {
  display: flex;
  min-width: 0;
  flex: 1;
  flex-direction: column;
}

.account-chip div:nth-child(2) span {
  color: #89968f;
  font-size: 14px;
}

.account-chip strong {
  margin-top: 2px;
  font-size: 14px;
}

.safe-check {
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  border-radius: 50%;
  background: var(--green-light);
  color: var(--green);
  font-size: 14px;
  font-weight: 900;
}

.mini-timeline {
  margin: 0;
  padding: 0;
  list-style: none;
}

.mini-timeline li {
  position: relative;
  display: flex;
  min-height: 68px;
  gap: 12px;
}

.mini-timeline li:not(:last-child)::after {
  position: absolute;
  top: 26px;
  bottom: 4px;
  left: 12px;
  width: 1px;
  background: #dce5df;
  content: "";
}

.mini-timeline li > span {
  position: relative;
  z-index: 1;
  display: grid;
  width: 25px;
  height: 25px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fff;
  color: #95a199;
  font-size: 14px;
  font-weight: 800;
}

.mini-timeline li.is-done > span {
  border-color: var(--green);
  background: var(--green);
  color: #fff;
}

.mini-timeline li.is-current > span {
  border-color: var(--green);
  color: var(--green);
  box-shadow: 0 0 0 4px var(--green-light);
}

.mini-timeline li > div {
  display: flex;
  flex-direction: column;
  padding-top: 2px;
}

.mini-timeline strong {
  font-size: 14px;
}

.mini-timeline small {
  margin-top: 4px;
  color: #8b9890;
  font-size: 14px;
}

.card-link {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 4px -5px -5px;
  padding: 13px 5px 5px;
  border-top: 1px solid #e8eeea;
  color: var(--green);
  font-size: 14px;
  font-weight: 750;
}

.steps-strip {
  padding: 34px 0;
  border-block: 1px solid var(--line);
  background: #fff;
}

.steps-strip .page-container {
  display: grid;
  align-items: center;
  gap: 45px;
  grid-template-columns: 190px 1fr;
}

.step-intro span {
  color: var(--green);
  font-size: 14px;
  font-weight: 850;
  letter-spacing: 0.14em;
}

.step-intro h2 {
  margin: 8px 0 0;
  font-size: 20px;
  letter-spacing: -0.04em;
}

.home-steps {
  display: grid;
  margin: 0;
  padding: 0;
  gap: 10px;
  grid-template-columns: repeat(4, 1fr);
  list-style: none;
}

.home-steps li {
  display: flex;
  align-items: center;
  gap: 11px;
  padding-left: 18px;
  border-left: 1px solid var(--line);
}

.step-number {
  color: #a3afa8;
  font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
  font-size: 14px;
}

.home-steps li > div {
  display: flex;
  flex-direction: column;
}

.home-steps strong {
  font-size: 14px;
}

.home-steps small {
  margin-top: 4px;
  color: #88958e;
  font-size: 14px;
}

.plans-section {
  padding-top: 100px;
  padding-bottom: 100px;
}

.section-title-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 32px;
}

.section-title-row h2 {
  margin: 0;
  font-size: 30px;
  letter-spacing: -0.045em;
}

.section-title-row p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.section-title-row > a {
  color: var(--green);
  font-size: 14px;
  font-weight: 750;
}

.plan-grid {
  display: grid;
  gap: 15px;
  grid-template-columns: repeat(3, 1fr);
}

.plan-card {
  position: relative;
  min-height: 335px;
  overflow: hidden;
  padding: 25px;
  border: 1px solid var(--line);
  border-radius: 19px;
  background: #fff;
  transition: 180ms ease;
}

.plan-card:hover {
  border-color: #aec8b8;
  box-shadow: var(--shadow-small);
  transform: translateY(-3px);
}

.plan-card.is-featured {
  border-color: #8ebaa4;
  box-shadow: 0 18px 45px rgba(12, 128, 80, 0.09);
}

.recommend-tag {
  position: absolute;
  top: 0;
  right: 24px;
  padding: 6px 10px;
  border-radius: 0 0 8px 8px;
  background: var(--green);
  color: #fff;
  font-size: 14px;
  font-weight: 750;
}

.plan-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.plan-icon,
.choice-logo,
.summary-icon {
  display: grid;
  width: 39px;
  height: 39px;
  place-items: center;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 850;
}

.apple-icon {
  background: #17231d;
  color: #fff;
}

.google-icon {
  background: #eef4ff;
  color: #2d68d5;
}

.annual-icon {
  background: #fff3df;
  color: #ad6419;
  font-size: 14px;
}

.card-pay-icon {
  background: #f1ebff;
  color: #7750c5;
  font-size: 14px;
}

.plus-icon {
  background: linear-gradient(145deg, #14231c, #315043);
  color: #dff5a7;
}

.pro-icon {
  background: linear-gradient(145deg, #dffaff, #c0f1e9);
  color: #087b6a;
  font-size: 14px;
}

.stock-badge {
  padding: 5px 8px;
  font-size: 14px;
}

.stock-badge.muted {
  background: #fff5e6;
  color: #a45f1b;
}

.plan-card > p {
  margin: 22px 0 5px;
  color: #7c8a83;
  font-size: 14px;
}

.plan-card h3 {
  margin: 0;
  font-size: 18px;
}

.plan-price {
  margin-top: 20px;
  font-size: 30px;
  font-weight: 780;
  letter-spacing: -0.04em;
}

.plan-price small {
  margin-right: 3px;
  font-size: 14px;
}

.plan-price span {
  margin-left: 4px;
  color: #909c95;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0;
}

.plan-card ul {
  margin: 16px 0 20px;
  padding: 0;
  color: #68776f;
  font-size: 14px;
  line-height: 1.9;
  list-style: none;
}

.plan-card li::before {
  margin-right: 7px;
  color: var(--green);
  content: "✓";
  font-weight: 850;
}

.plan-card button {
  width: 100%;
  height: 39px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  cursor: pointer;
  font-size: 14px;
  font-weight: 750;
}

.plan-card.is-featured button {
  border-color: var(--green);
  background: var(--green);
  color: #fff;
}

.member-section {
  padding-bottom: 100px;
}

.invite-banner {
  display: grid;
  min-height: 210px;
  align-items: center;
  gap: 35px;
  grid-template-columns: 240px 1fr auto;
  overflow: hidden;
  padding: 32px 40px;
  border-radius: 24px;
  background:
    radial-gradient(circle at 15% 100%, rgba(214, 240, 156, 0.24), transparent 45%),
    var(--ink);
  color: #fff;
}

.invite-art {
  position: relative;
  height: 120px;
}

.person {
  position: absolute;
  display: grid;
  width: 60px;
  height: 60px;
  place-items: center;
  border: 5px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  background: #fff;
  color: var(--ink);
  font-weight: 850;
}

.person.one {
  top: 12px;
  left: 12px;
}

.person.two {
  right: 27px;
  bottom: 8px;
  background: var(--lime);
  font-size: 24px;
}

.link-line {
  position: absolute;
  top: 55px;
  left: 68px;
  width: 92px;
  height: 2px;
  background: repeating-linear-gradient(90deg, #779588 0 7px, transparent 7px 13px);
  transform: rotate(17deg);
}

.reward-coin {
  position: absolute;
  top: 2px;
  right: 20px;
  display: grid;
  width: 31px;
  height: 31px;
  place-items: center;
  border-radius: 50%;
  background: var(--orange);
  color: #5b3610;
  font-size: 14px;
  font-weight: 850;
}

.invite-copy .section-kicker {
  color: var(--lime);
}

.invite-copy h2 {
  margin: 0;
  font-size: 27px;
  letter-spacing: -0.04em;
}

.invite-copy p {
  max-width: 510px;
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 14px;
  line-height: 1.7;
}

.dark-button {
  min-width: 140px;
  padding: 0 18px;
  background: var(--lime);
  color: #24331c;
}

.inner-page {
  min-height: 730px;
  padding: 65px 0 100px;
}

.inner-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 35px;
}

.inner-heading h1,
.help-heading h1 {
  margin: 0;
  font-size: 40px;
  letter-spacing: -0.055em;
}

.inner-heading p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.service-pill {
  border: 1px solid #cae9d8;
}

.service-pill span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
}

.wizard-steps {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  padding: 18px 22px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
}

.wizard-steps button {
  display: grid;
  min-width: 116px;
  align-items: center;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  grid-template-columns: 29px 1fr;
  text-align: left;
}

.wizard-steps button > span {
  display: grid;
  width: 25px;
  height: 25px;
  grid-row: 1 / 3;
  place-items: center;
  border: 1px solid #ced9d2;
  border-radius: 50%;
  color: #7f8c84;
  font-size: 14px;
  font-weight: 750;
}

.wizard-steps button > strong {
  font-size: 14px;
}

.wizard-steps button > small {
  margin-top: 3px;
  color: #97a39c;
  font-size: 14px;
}

.wizard-steps button.is-current > span,
.wizard-steps button.is-done > span {
  border-color: var(--green);
  background: var(--green);
  color: #fff;
}

.wizard-steps button.is-current > strong {
  color: var(--green);
}

.wizard-steps > i {
  height: 1px;
  flex: 1;
  margin: 0 12px;
  background: #dfe7e2;
}

.wizard-layout {
  display: grid;
  align-items: start;
  gap: 18px;
  grid-template-columns: minmax(0, 1fr) 320px;
}

.wizard-card,
.order-summary,
.orders-card,
.invite-main-card,
.reward-rules,
.help-grid article {
  border: 1px solid var(--line);
  border-radius: 19px;
  background: #fff;
  box-shadow: var(--shadow-small);
}

.wizard-card {
  min-height: 560px;
  padding: 32px;
  scroll-margin-top: 105px;
}

.wizard-panel {
  display: none;
}

.wizard-panel.is-active {
  display: block;
  animation: page-in 220ms ease;
}

.panel-heading {
  margin-bottom: 27px;
}

.panel-heading > span {
  color: var(--green);
  font-size: 14px;
  font-weight: 800;
}

.panel-heading h2 {
  margin: 8px 0 6px;
  font-size: 24px;
  letter-spacing: -0.04em;
}

.panel-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

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

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

.product-choice-card {
  position: relative;
  display: block;
  overflow: hidden;
  border: 1px solid #dbe5df;
  border-radius: 17px;
  background: #fff;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(23, 51, 37, 0.05);
  transition: 180ms ease;
}

.product-choice-card:hover {
  border-color: #9fc5b0;
  box-shadow: 0 15px 34px rgba(23, 51, 37, 0.1);
  transform: translateY(-2px);
}

.product-choice-card.is-selected {
  border-color: var(--green);
  box-shadow:
    0 0 0 2px rgba(12, 128, 80, 0.11),
    0 16px 36px rgba(23, 51, 37, 0.11);
}

.product-choice-card input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.product-poster {
  position: relative;
  display: flex;
  height: 158px;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  padding: 18px;
  border-bottom: 1px solid rgba(127, 101, 46, 0.22);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.72), transparent 45%),
    repeating-linear-gradient(
      130deg,
      rgba(118, 90, 35, 0.035) 0 2px,
      transparent 2px 30px
    ),
    #f7f0e8;
  text-align: center;
}

.plus-product .product-poster::before,
.plus-product .product-poster::after {
  position: absolute;
  inset: 10px;
  border: 1px solid #b37717;
  border-radius: 14px;
  content: "";
}

.plus-product .product-poster::after {
  inset: 13px;
  border-color: rgba(210, 159, 67, 0.5);
}

.poster-orbit {
  position: absolute;
  top: -80px;
  right: -55px;
  width: 190px;
  height: 190px;
  border: 25px solid rgba(181, 132, 39, 0.055);
  border-radius: 50%;
}

.poster-logo {
  position: relative;
  z-index: 2;
  display: grid;
  width: 37px;
  height: 37px;
  margin-bottom: 6px;
  place-items: center;
  border: 2px solid rgba(255, 255, 255, 0.72);
  border-radius: 12px;
  background: #078b76;
  color: #fff;
  font-size: 14px;
  font-weight: 850;
  box-shadow: 0 7px 14px rgba(16, 78, 67, 0.2);
}

.poster-brand {
  position: relative;
  z-index: 2;
  color: #151a17;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
}

.poster-brand b {
  color: #bb7718;
  font-weight: 700;
  text-shadow: 0 1px #fff;
}

.product-poster > strong {
  position: relative;
  z-index: 2;
  margin-top: 8px;
  color: #1f241f;
  font-size: 16px;
  letter-spacing: 0.03em;
}

.product-poster > small {
  position: relative;
  z-index: 2;
  margin-top: 5px;
  color: #6f614f;
  font-size: 14px;
}

.pro-product .product-poster {
  border-bottom-color: rgba(16, 142, 124, 0.2);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.7), transparent 42%),
    linear-gradient(145deg, #d7fdff, #d7fff3 47%, #b5e7ff);
}

.pro-product .product-poster::before {
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(26, 182, 166, 0.58);
  border-radius: 13px;
  box-shadow: inset 0 0 18px rgba(255, 255, 255, 0.9);
  content: "";
}

.poster-grid {
  position: absolute;
  inset: 0;
  opacity: 0.28;
  background-image:
    linear-gradient(rgba(23, 149, 137, 0.25) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 149, 137, 0.25) 1px, transparent 1px);
  background-size: 25px 25px;
  mask-image: linear-gradient(90deg, #000, transparent 46%, #000);
}

.pro-product .poster-brand {
  padding: 2px 10px 4px;
  border-radius: 5px;
  background: rgba(7, 105, 97, 0.86);
  color: #fff;
  font-family: inherit;
  font-size: 22px;
  font-weight: 780;
  letter-spacing: -0.04em;
  box-shadow: 7px 7px 0 rgba(255, 255, 255, 0.72);
}

.pro-product .poster-brand b {
  color: #c6ffdd;
}

.pro-product .product-poster > strong {
  color: #056f65;
}

.pro-product .product-poster > small {
  color: #247a72;
}

.pro-20-product {
  grid-column: auto;
}

.pro-20-product .product-poster {
  height: 158px;
}

.product-body {
  display: flex;
  min-height: 175px;
  align-items: flex-start;
  flex-direction: column;
  padding: 15px 17px 16px;
}

.auto-badge {
  display: inline-flex;
  padding: 5px 8px;
  border: 1px solid #bce8cb;
  border-radius: 999px;
  background: #eefbf3;
  color: #24a15e;
  font-size: 14px;
  font-weight: 700;
}

.product-title {
  margin-top: 9px;
  color: #1e2823;
  font-size: 14px;
  line-height: 1.45;
}

.channel-route {
  margin-top: 5px;
  color: #819088;
  font-size: 14px;
}

.product-price {
  margin-top: auto;
  color: #ef6479;
  font-size: 23px;
  font-weight: 820;
  letter-spacing: -0.04em;
}

.product-meta {
  display: flex;
  width: 100%;
  justify-content: space-between;
  margin-top: 6px;
  color: #74827a;
  font-size: 14px;
}

.selected-check {
  position: absolute;
  z-index: 3;
  top: 10px;
  right: 10px;
  display: none;
  width: 25px;
  height: 25px;
  place-items: center;
  border: 2px solid #fff;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  box-shadow: 0 4px 12px rgba(12, 128, 80, 0.3);
  font-size: 14px;
  font-style: normal;
  font-weight: 850;
}

.product-choice-card.is-selected .selected-check {
  display: grid;
}

.choice-card {
  position: relative;
  display: flex;
  min-height: 74px;
  align-items: center;
  gap: 13px;
  padding: 12px 15px;
  border: 1px solid var(--line);
  border-radius: 13px;
  cursor: pointer;
  transition: 150ms ease;
}

.choice-card:hover:not(.is-disabled),
.choice-card.is-selected {
  border-color: var(--green);
  background: #f8fcfa;
  box-shadow: 0 0 0 2px rgba(12, 128, 80, 0.07);
}

.choice-card input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.choice-copy {
  display: flex;
  min-width: 0;
  flex: 1;
  flex-direction: column;
}

.choice-copy strong {
  font-size: 14px;
}

.choice-copy small {
  margin-top: 4px;
  color: #8a978f;
  font-size: 14px;
}

.choice-price {
  font-size: 15px;
  font-weight: 800;
}

.choice-card > i {
  display: none;
  width: 19px;
  height: 19px;
  place-items: center;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  font-size: 14px;
  font-style: normal;
}

.choice-card.is-selected > i {
  display: grid;
}

.choice-card.is-disabled {
  background: #f7f8f7;
  color: #929d97;
  cursor: not-allowed;
}

.maintenance-badge {
  background: #f2f0ed;
  color: #8b7564;
}

.wizard-next,
.wizard-back {
  min-height: 44px;
  margin-top: 22px;
  padding: 0 18px;
  border-radius: 11px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 750;
}

.wizard-next {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 0;
  background: var(--green);
  color: #fff;
  transition: 160ms ease;
}

.wizard-back {
  min-width: 110px;
  border: 1px solid var(--line);
  background: #fff;
}

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

.wizard-actions .wizard-next {
  flex: 1;
}

.form-field {
  display: block;
}

.form-field > span {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 750;
}

.form-field input,
.form-field textarea,
.app-dialog input,
.chat-input input {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 11px;
  outline: none;
  background: #fff;
  transition: 150ms ease;
}

.form-field input {
  height: 47px;
  padding: 0 13px;
}

.form-field textarea {
  min-height: 150px;
  resize: vertical;
  padding: 13px;
  line-height: 1.6;
}

.form-field input:focus,
.form-field textarea:focus,
.app-dialog input:focus,
.chat-input input:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(12, 128, 80, 0.09);
}

.form-field input::placeholder,
.form-field textarea::placeholder,
.app-dialog input::placeholder,
.chat-input input::placeholder {
  color: #a2ada6;
}

.form-field > small {
  display: block;
  margin-top: 7px;
  color: #8c9991;
  font-size: 14px;
}

.json-check-card {
  margin-top: 12px;
  padding: 15px 16px;
  border: 1px solid #dce5e0;
  border-radius: 13px;
  background: #fbfdfc;
}

.json-check-heading { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.json-check-heading strong { font-size: 14px; }
.json-check-heading span { padding: 4px 8px; border-radius: 99px; color: var(--muted); background: #eef2f0; font-size: 14px; font-weight: 800; }
.json-check-heading span.ok { color: #146d48; background: #e5f5ec; }
.json-check-heading span.error { color: #aa4040; background: #fff0f0; }
.json-check-card ul { display: grid; gap: 7px; margin: 13px 0 10px; padding: 0; grid-template-columns: 1fr 1fr; list-style: none; }
.json-check-card li { display: grid; align-items: center; gap: 7px; padding: 8px 9px; border-radius: 9px; background: #f3f6f4; grid-template-columns: 18px 1fr auto; }
.json-check-card li i { display: grid; width: 18px; height: 18px; border-radius: 50%; color: #87928c; background: #e4e9e6; font-size: 14px; font-style: normal; font-weight: 900; place-items: center; }
.json-check-card li span { font-size: 14px; font-weight: 750; }
.json-check-card li small { color: var(--muted); font-size: 14px; }
.json-check-card li.ok i { color: #fff; background: #21805a; }
.json-check-card li.warning i { color: #fff; background: #c28a2c; }
.json-check-card li.error i { color: #fff; background: #bb4a4a; }
.json-check-card > p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.55; }

.json-guide {
  margin-top: 17px;
  padding: 18px;
  border: 1px solid #cfe4d7;
  border-radius: 14px;
  background: linear-gradient(145deg, #f5fbf7, #fbfdfc);
}

.json-guide-heading {
  display: flex;
  align-items: center;
  gap: 11px;
}

.json-guide-icon {
  display: grid;
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 11px;
  background: var(--ink);
  color: var(--lime);
  font-size: 14px;
  font-weight: 850;
}

.json-guide-heading strong,
.json-guide-heading p {
  display: block;
  margin: 0;
}

.json-guide-heading strong {
  font-size: 14px;
}

.json-guide-heading p {
  margin-top: 3px;
  color: var(--muted);
  font-size: 14px;
}

.json-guide ol {
  display: grid;
  gap: 9px;
  margin: 15px 0;
  padding: 0;
  list-style: none;
}

.json-guide li {
  display: grid;
  align-items: start;
  gap: 9px;
  grid-template-columns: 22px 1fr;
}

.json-guide li > span {
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  border-radius: 50%;
  background: #e1f1e7;
  color: var(--green);
  font-size: 14px;
  font-weight: 850;
}

.json-guide li p {
  margin: 2px 0 0;
  color: #59685f;
  font-size: 14px;
  line-height: 1.65;
}

.json-guide li a {
  color: var(--green);
  font-weight: 750;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.json-guide-actions {
  display: flex;
  align-items: center;
  gap: 9px;
  padding-top: 13px;
  border-top: 1px solid #dce9e1;
}

.json-guide-actions button,
.json-guide-actions a {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 0 13px;
  border-radius: 9px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 750;
  text-decoration: none;
}

.json-guide-actions button {
  border: 0;
  background: var(--green);
  color: #fff;
}

.json-guide-actions a {
  border: 1px solid #cadecf;
  background: #fff;
  color: var(--green);
}

.safety-note {
  margin-top: 17px;
  padding: 13px 15px;
  border: 1px solid #f1d7b4;
  border-radius: 12px;
  background: #fffaf3;
}

.safety-note strong {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #925d19;
  font-size: 14px;
}

.safety-note strong span {
  display: grid;
  width: 17px;
  height: 17px;
  place-items: center;
  border-radius: 50%;
  background: #eba64c;
  color: #fff;
}

.safety-note p {
  margin: 6px 0 0 24px;
  color: #8a6b44;
  font-size: 14px;
}

.confirm-account {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 22px;
  border: 1px solid #d4e8dc;
  border-radius: 15px;
  background: #f5fbf7;
}

.confirm-overview {
  display: grid;
  gap: 11px;
}

.confirm-avatar {
  width: 48px;
  height: 48px;
  border-radius: 14px;
}

.confirm-account > div:last-child {
  display: flex;
  flex-direction: column;
}

.confirm-account small {
  color: #7f8f87;
  font-size: 14px;
}

.confirm-account strong {
  margin: 5px 0;
  font-size: 16px;
}

.confirm-account span {
  color: var(--green);
  font-size: 14px;
}

.confirm-account i {
  font-style: normal;
}

.confirm-plan-card {
  display: grid;
  align-items: center;
  gap: 12px;
  padding: 17px 19px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  grid-template-columns: auto 1fr auto;
}

.confirm-plan-icon {
  display: grid;
  width: 43px;
  height: 43px;
  place-items: center;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 850;
}

.confirm-plan-main {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.confirm-plan-main small {
  color: #87948d;
  font-size: 14px;
}

.confirm-plan-main strong {
  overflow: hidden;
  margin: 4px 0;
  font-size: 14px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.confirm-plan-main span {
  color: var(--green);
  font-size: 14px;
}

.confirm-plan-price {
  font-size: 16px;
}

.confirm-data-status {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 11px;
  padding: 12px 14px;
  border-radius: 11px;
  background: #f6f8f6;
}

.confirm-data-status > span {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 50%;
  background: #ddf1e5;
  color: var(--green);
  font-size: 14px;
  font-weight: 850;
}

.confirm-data-status strong,
.confirm-data-status small {
  display: block;
}

.confirm-data-status strong {
  font-size: 14px;
}

.confirm-data-status small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 14px;
}

.confirm-check,
.email-field {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  margin-top: 18px;
  color: #5f6e66;
  cursor: pointer;
  font-size: 14px;
}

.account-confirm-warning {
  margin: 13px 0 0;
  padding: 11px 13px;
  border-radius: 10px;
  background: #f6f8f6;
  color: #74827a;
  font-size: 14px;
  line-height: 1.65;
}

#account-hint-status.is-recognized {
  color: var(--green);
}

.submit-agreement {
  padding-top: 13px;
  border-top: 1px solid var(--line);
}

.confirm-check input,
.email-field input {
  accent-color: var(--green);
}

.payment-tabs {
  display: grid;
  gap: 8px;
  grid-template-columns: 1fr 1fr;
  margin-bottom: 22px;
  padding: 4px;
  border-radius: 12px;
  background: var(--soft);
}

.payment-tabs button {
  height: 38px;
  border: 0;
  border-radius: 9px;
  background: transparent;
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
}

.payment-tabs button.is-active {
  background: #fff;
  color: var(--green);
  box-shadow: 0 3px 12px rgba(23, 51, 37, 0.08);
}

.payment-tabs button:disabled {
  color: #9aa59f;
  cursor: not-allowed;
}

.payment-tabs small {
  margin-left: 3px;
  color: #ad7a38;
  font-size: 14px;
}

.card-purchase-callout {
  display: grid;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  padding: 15px;
  border: 1px solid #d5e6dc;
  border-radius: 13px;
  background: #f7fbf8;
  grid-template-columns: auto 1fr auto;
}

.card-purchase-icon {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 11px;
  background: var(--ink);
  color: var(--lime);
  font-size: 14px;
  font-weight: 850;
}

.card-purchase-callout strong,
.card-purchase-callout p {
  display: block;
  margin: 0;
}

.card-purchase-callout strong {
  font-size: 14px;
}

.card-purchase-callout p {
  margin-top: 4px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.card-purchase-callout > a {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  gap: 6px;
  padding: 0 13px;
  border-radius: 9px;
  background: var(--green);
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}

.result-demo {
  display: flex;
  min-height: 490px;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

.result-demo.is-working .result-orbit {
  animation: result-pulse 1.35s ease-in-out infinite;
}

.result-demo.is-success .result-orbit {
  border-color: #8fd0ad;
}

.result-demo.is-warning .result-orbit {
  border-color: #e5b86d;
  box-shadow: 0 0 0 13px #fff8ed, 0 0 0 25px #fffcf7;
}

.result-demo.is-warning .result-orbit span {
  background: #c77a1d;
}

.result-demo.is-error .result-orbit {
  border-color: #e9aaa5;
  box-shadow: 0 0 0 13px #fff1ef, 0 0 0 25px #fff8f7;
}

.result-demo.is-error .result-orbit span {
  background: var(--danger);
}

.result-orbit {
  display: grid;
  width: 76px;
  height: 76px;
  margin-bottom: 24px;
  place-items: center;
  border: 1px solid #bfe0ce;
  border-radius: 50%;
  box-shadow: 0 0 0 13px #f0f8f3, 0 0 0 25px #f8fbf9;
}

.result-orbit span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  font-size: 18px;
  font-weight: 800;
}

.result-demo h2 {
  margin: 2px 0 10px;
  font-size: 28px;
  letter-spacing: -0.04em;
}

.result-demo > p {
  max-width: 430px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}

.result-order-number {
  margin: 20px 0;
  padding: 8px 11px;
  border-radius: 8px;
  background: var(--soft);
  color: #617068;
  font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
  font-size: 14px;
}

.order-summary {
  position: sticky;
  top: 95px;
  padding: 24px;
}

.summary-product {
  display: flex;
  align-items: center;
  gap: 11px;
  margin: 21px 0;
  padding: 13px;
  border-radius: 12px;
  background: var(--soft);
}

.summary-product > div {
  display: flex;
  flex-direction: column;
}

.summary-product strong {
  font-size: 14px;
}

.summary-product small {
  margin-top: 4px;
  color: #89968e;
  font-size: 14px;
}

.order-summary dl {
  margin: 0;
}

.order-summary dl div {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  color: #6f7d75;
  font-size: 14px;
}

.order-summary dt,
.order-summary dd {
  margin: 0;
}

.order-summary dd {
  color: #283a31;
  font-weight: 650;
}

.order-summary .green-text {
  color: var(--green);
}

.summary-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 10px;
  padding: 17px 0;
  border-top: 1px solid var(--line);
}

.summary-total span {
  font-size: 14px;
  font-weight: 650;
}

.summary-total strong {
  font-size: 21px;
}

.summary-security {
  display: flex;
  gap: 10px;
  margin-top: 4px;
  padding: 12px;
  border-radius: 11px;
  background: #f5faf7;
  color: #67766e;
}

.summary-security > span {
  color: var(--green);
}

.summary-security p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
}

.summary-security strong {
  display: block;
  margin-bottom: 2px;
  color: #32473c;
  font-size: 14px;
}

.order-summary > button,
.reward-rules > button {
  width: 100%;
  margin-top: 14px;
  padding: 10px;
  border: 0;
  background: transparent;
  color: var(--green);
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
}

.compact-button {
  min-height: 41px;
  padding: 0 16px;
}

.metric-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(4, 1fr);
  margin-bottom: 18px;
}

.metric-grid article {
  padding: 19px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: #fff;
}

.metric-grid span {
  color: #78867e;
  font-size: 14px;
}

.metric-grid strong {
  display: block;
  margin: 7px 0 5px;
  font-size: 24px;
  letter-spacing: -0.04em;
}

.metric-grid small {
  color: #9aa59f;
  font-size: 14px;
}

.metric-text {
  font-size: 17px !important;
}

.orders-card {
  overflow: hidden;
}

.orders-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 17px 20px;
  border-bottom: 1px solid var(--line);
}

.session-note {
  color: #8a978f;
  font-size: 14px;
}

.order-tabs {
  display: flex;
  gap: 4px;
}

.order-tabs button {
  padding: 8px 11px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  cursor: pointer;
  color: #69776f;
  font-size: 14px;
  font-weight: 650;
}

.order-tabs button.is-active {
  background: var(--soft-2);
  color: var(--green);
}

.order-search {
  display: flex;
  width: 190px;
  height: 35px;
  align-items: center;
  gap: 5px;
  padding: 0 10px;
  border: 1px solid var(--line);
  border-radius: 9px;
  color: #9ba69f;
}

.order-search input,
.help-search input {
  min-width: 0;
  flex: 1;
  border: 0;
  outline: 0;
  background: transparent;
  font-size: 14px;
}

.order-row {
  display: grid;
  align-items: center;
  gap: 15px;
  grid-template-columns: minmax(190px, 1.45fr) 1fr 0.7fr 0.8fr auto auto;
  min-height: 88px;
  padding: 16px 20px;
  border-bottom: 1px solid #edf1ee;
}

.order-row:last-child {
  border-bottom: 0;
}

.order-product {
  display: flex;
  align-items: center;
  gap: 10px;
}

.order-product > div,
.order-row > div:not(.order-product) {
  display: flex;
  flex-direction: column;
}

.order-row strong {
  font-size: 14px;
}

.order-row small {
  margin-top: 4px;
  color: #929e97;
  font-size: 14px;
}

.table-status {
  justify-self: start;
}

.table-status.is-processing {
  background: #fff5e5;
  color: #a96318;
}

.table-status.is-success {
  background: #edf8f2;
  color: var(--green);
}

.order-row > button {
  padding: 7px 9px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  cursor: pointer;
  font-size: 14px;
}

.orders-empty {
  display: flex;
  min-height: 300px;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  padding: 40px 20px;
  text-align: center;
}

.orders-empty > span {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 14px;
  background: var(--soft-2);
  color: var(--green);
  font-size: 18px;
}

.orders-empty h2 {
  margin: 16px 0 7px;
  font-size: 16px;
}

.orders-empty p {
  margin: 0;
  color: #89958e;
  font-size: 14px;
}

.orders-empty a {
  margin-top: 18px;
  padding: 9px 13px;
  border-radius: 9px;
  background: var(--green);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
}

.table-status.is-error {
  background: #fff1ef;
  color: var(--danger);
}

.invite-hero {
  display: grid;
  min-height: 250px;
  align-items: center;
  gap: 50px;
  grid-template-columns: 1fr 310px;
  margin-bottom: 18px;
  padding: 38px 45px;
  border-radius: 23px;
  background:
    radial-gradient(circle at 86% 20%, rgba(214, 240, 156, 0.17), transparent 28%),
    var(--ink);
  color: #fff;
}

.light-kicker {
  color: var(--lime);
}

.invite-hero h1 {
  margin: 0;
  font-size: 36px;
  letter-spacing: -0.05em;
  line-height: 1.2;
}

.invite-hero > div:first-child p {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
}

.reward-stat {
  padding: 23px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.06);
}

.reward-stat > span {
  color: rgba(255, 255, 255, 0.65);
  font-size: 14px;
}

.reward-stat strong {
  display: block;
  margin: 8px 0;
  color: var(--lime);
  font-size: 36px;
  letter-spacing: -0.04em;
}

.reward-stat strong small {
  margin-right: 3px;
  font-size: 15px;
}

.reward-stat p {
  margin: 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 14px;
}

.reward-stat .coming-soon-text {
  font-size: 25px;
}

.invite-link-box button:disabled,
.share-buttons button:disabled {
  cursor: not-allowed;
  opacity: 0.56;
}

.invite-layout {
  display: grid;
  align-items: start;
  gap: 18px;
  grid-template-columns: 1fr 310px;
}

.invite-main-card,
.reward-rules {
  padding: 28px;
}

.invite-main-card h2,
.reward-rules h2 {
  margin: 0;
  font-size: 20px;
  letter-spacing: -0.035em;
}

.invite-link-box {
  display: flex;
  height: 48px;
  align-items: center;
  justify-content: space-between;
  margin-top: 20px;
  padding-left: 14px;
  border: 1px solid #d8e5dd;
  border-radius: 11px;
  background: #f7faf8;
}

.invite-link-box span {
  color: #40554a;
  font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
  font-size: 14px;
}

.invite-link-box button {
  align-self: stretch;
  min-width: 90px;
  border: 0;
  border-radius: 0 10px 10px 0;
  background: var(--green);
  color: #fff;
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
}

.share-buttons {
  display: flex;
  gap: 8px;
  margin-top: 10px;
}

.share-buttons button {
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  cursor: pointer;
  color: #637168;
  font-size: 14px;
}

.rules-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 29px;
}

.rules-grid > div {
  display: grid;
  align-items: center;
  gap: 7px;
  padding: 13px;
  border-radius: 12px;
  background: var(--soft);
  grid-template-columns: 27px 1fr;
}

.rules-grid span {
  display: grid;
  width: 25px;
  height: 25px;
  grid-row: 1 / 3;
  place-items: center;
  border-radius: 50%;
  background: var(--green-light);
  color: var(--green);
  font-size: 14px;
  font-weight: 800;
}

.rules-grid strong {
  font-size: 14px;
}

.rules-grid small {
  color: #8e9a93;
  font-size: 14px;
}

.reward-rules ul {
  margin: 21px 0 12px;
  padding: 0;
  color: #637168;
  font-size: 14px;
  line-height: 2.6;
  list-style: none;
}

.reward-rules li span {
  margin-right: 8px;
  color: var(--green);
  font-weight: 850;
}

.invite-tier-panel,
.invite-leaderboard {
  margin-top: 24px;
  padding: 18px;
  border: 1px solid #dceae2;
  border-radius: 14px;
  background: #f8fbf9;
}

.invite-panel-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
}

.invite-panel-heading h3 {
  margin: 4px 0 0;
  font-size: 18px;
}

.invite-panel-heading > span {
  color: #82938a;
  font-size: 13px;
}

.invite-tier-list,
.invite-leaderboard-list {
  display: grid;
  gap: 8px;
  margin-top: 14px;
}

.invite-tier-row,
.invite-leaderboard-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 11px 12px;
  border-radius: 10px;
  background: #fff;
}

.invite-tier-row.is-current {
  border: 1px solid #9ad5b4;
  background: #effaf3;
}

.invite-tier-row > span,
.invite-leaderboard-row > strong {
  display: grid;
  gap: 3px;
}

.invite-tier-row strong,
.invite-leaderboard-row strong {
  color: var(--ink);
  font-size: 14px;
}

.invite-tier-row small,
.invite-leaderboard-row > span:not(.leaderboard-rank) {
  color: #86958d;
  font-size: 13px;
}

.invite-tier-row b,
.invite-leaderboard-row b {
  color: var(--green);
  font-size: 16px;
  white-space: nowrap;
}

.invite-tier-row b small {
  margin-left: 2px;
  color: #82938a;
  font-size: 14px;
}
.invite-tier-products {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 6px;
}
.invite-tier-products > span {
  padding: 5px 8px;
  border: 1px solid #dceae2;
  border-radius: 8px;
  color: #62746b;
  background: #f8fbf9;
  font-size: 14px;
  white-space: nowrap;
}
.invite-tier-products > span b { margin-left: 4px; font-size: 14px; }
.invite-tier-products > span small { margin-left: 2px; }

.invite-leaderboard {
  color: #dcebe3;
  border-color: rgba(255, 255, 255, .12);
  background: rgba(255, 255, 255, .07);
}

.invite-leaderboard .invite-panel-heading h3,
.invite-leaderboard .mini-label {
  color: #fff;
}

.invite-leaderboard .invite-panel-heading > span {
  color: rgba(255, 255, 255, .58);
}

.invite-leaderboard-row {
  background: rgba(255, 255, 255, .1);
}

.invite-leaderboard-row strong {
  flex: 1;
  color: #fff;
}

.invite-leaderboard-row b {
  color: var(--lime);
}

.leaderboard-rank {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 50%;
  color: var(--ink);
  background: var(--lime);
  font-size: 12px;
  font-weight: 850;
}

.help-heading {
  padding: 35px 0 45px;
  text-align: center;
}

.help-search {
  display: flex;
  width: min(520px, 100%);
  height: 48px;
  align-items: center;
  gap: 8px;
  margin: 24px auto 0;
  padding: 0 15px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: #fff;
  box-shadow: var(--shadow-small);
  color: #929f97;
}

.help-search input {
  font-size: 14px;
}

.help-grid {
  display: grid;
  gap: 15px;
  grid-template-columns: repeat(3, 1fr);
}

.help-grid article {
  padding: 24px;
}

.help-icon {
  display: grid;
  width: 35px;
  height: 35px;
  place-items: center;
  border-radius: 10px;
  background: var(--green-light);
  color: var(--green);
  font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
  font-size: 14px;
  font-weight: 800;
}

.help-grid h2 {
  margin: 17px 0 12px;
  font-size: 16px;
}

.help-grid a {
  display: block;
  padding: 8px 0;
  border-top: 1px solid #edf1ee;
  color: #6d7a73;
  font-size: 14px;
}

.help-grid a::after {
  float: right;
  color: #a5afa9;
  content: "›";
}

.support-banner {
  display: grid;
  min-height: 100px;
  align-items: center;
  gap: 14px;
  grid-template-columns: 42px 1fr auto;
  margin-top: 18px;
  padding: 20px 24px;
  border: 1px solid #d7e7dd;
  border-radius: 16px;
  background: #eef8f2;
}

.support-banner > div:first-child {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 12px;
  background: #fff;
}

.support-banner h2 {
  margin: 0;
  font-size: 14px;
}

.support-banner p {
  margin: 5px 0 0;
  color: #718078;
  font-size: 14px;
}

.support-banner button {
  height: 38px;
  padding: 0 14px;
  border: 0;
  border-radius: 9px;
  background: var(--green);
  color: #fff;
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #fff;
}

.site-footer .page-container {
  display: flex;
  min-height: 210px;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

.footer-brand p {
  margin: 15px 0 0;
  color: #87938c;
  font-size: 14px;
}

.footer-links {
  display: flex;
  gap: 65px;
}

.footer-links > div {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.footer-links strong {
  margin-bottom: 3px;
  font-size: 14px;
}

.footer-links a,
.footer-links button {
  padding: 0;
  border: 0;
  background: transparent;
  color: #859189;
  cursor: pointer;
  font-size: 14px;
  text-align: left;
}

.floating-support {
  position: fixed;
  z-index: 35;
  right: 24px;
  bottom: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 13px 9px 9px;
  border: 1px solid #d5e4db;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 13px 32px rgba(23, 51, 37, 0.17);
  cursor: pointer;
}

.chat-icon {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  font-size: 14px;
  letter-spacing: 1px;
}

.floating-support > span:nth-child(2) {
  display: flex;
  flex-direction: column;
  font-size: 14px;
  font-weight: 750;
  text-align: left;
}

.floating-support small {
  margin-top: 2px;
  color: #8c9891;
  font-size: 14px;
  font-weight: 500;
}

.floating-support > i {
  position: absolute;
  top: 2px;
  left: 36px;
  width: 7px;
  height: 7px;
  border: 1px solid #fff;
  border-radius: 50%;
  background: #28a56c;
}

.app-dialog {
  width: min(420px, calc(100% - 30px));
  padding: 31px;
  border: 0;
  border-radius: 20px;
  color: var(--ink);
  box-shadow: 0 30px 100px rgba(11, 30, 20, 0.28);
}

.app-dialog::backdrop {
  background: rgba(20, 35, 28, 0.46);
  backdrop-filter: blur(4px);
}

.dialog-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 30px;
  height: 30px;
  border: 0;
  border-radius: 50%;
  background: var(--soft);
  cursor: pointer;
  color: #738078;
}

.dialog-icon {
  display: grid;
  width: 43px;
  height: 43px;
  margin-bottom: 19px;
  place-items: center;
  border-radius: 13px;
  background: var(--ink);
  color: #fff;
  font-weight: 850;
}

.app-dialog h2 {
  margin: 0;
  font-size: 23px;
  letter-spacing: -0.04em;
}

.app-dialog > p {
  margin: 10px 0 20px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.app-dialog > label:not(.chat-input) span {
  display: block;
  margin-bottom: 7px;
  font-size: 14px;
  font-weight: 700;
}

.app-dialog > label:not(.chat-input) input {
  height: 45px;
  padding: 0 12px;
}

.app-dialog .primary-button {
  width: 100%;
  margin-top: 12px;
}

.app-dialog > small {
  display: block;
  margin-top: 11px;
  color: #9ba69f;
  font-size: 14px;
  text-align: center;
}

.support-dialog {
  width: min(520px, calc(100% - 30px));
  max-height: calc(100vh - 30px);
  overflow-y: auto;
}

.support-agent {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
}

.support-agent > span {
  display: grid;
  width: 39px;
  height: 39px;
  place-items: center;
  border-radius: 12px;
  background: var(--green);
  color: white;
  font-size: 14px;
  font-weight: 800;
}

.support-agent > div {
  display: flex;
  flex-direction: column;
}

.support-agent strong {
  font-size: 14px;
}

.support-agent small {
  margin-top: 3px;
  color: var(--green);
  font-size: 14px;
}

.support-agent small i {
  display: inline-block;
  width: 5px;
  height: 5px;
  margin-right: 3px;
  border-radius: 50%;
  background: var(--green);
}

.demo-message {
  width: 86%;
  padding: 12px 13px;
  border-radius: 4px 13px 13px 13px;
  background: var(--soft);
  color: #56655d;
  font-size: 14px;
  line-height: 1.65;
}

.quick-questions {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 14px 0 20px;
}

.quick-questions button {
  padding: 7px 9px;
  border: 1px solid #cde1d5;
  border-radius: 999px;
  background: #fff;
  color: var(--green);
  cursor: pointer;
  font-size: 14px;
}

.chat-input {
  display: flex;
  height: 43px;
  gap: 7px;
}

.chat-input input {
  flex: 1;
  padding: 0 11px;
}

.chat-input button {
  width: 64px;
  border: 0;
  border-radius: 10px;
  background: var(--green);
  color: #fff;
  cursor: pointer;
  font-size: 14px;
}

.toast {
  position: fixed;
  z-index: 100;
  bottom: 26px;
  left: 50%;
  padding: 11px 15px;
  border-radius: 10px;
  background: var(--ink);
  color: #fff;
  opacity: 0;
  pointer-events: none;
  font-size: 14px;
  transform: translate(-50%, 15px);
  transition: 180ms ease;
}

.toast.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

@keyframes page-in {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes result-pulse {
  50% {
    opacity: 0.72;
    transform: scale(0.94);
  }
}

@media (max-width: 960px) {
  .desktop-nav,
  .support-link {
    display: none;
  }

  .menu-button {
    display: flex;
    width: 37px;
    height: 37px;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: #fff;
  }

  .menu-button span {
    width: 14px;
    height: 1px;
    background: var(--ink);
  }

  .mobile-menu {
    padding: 8px 20px 17px;
    border-top: 1px solid var(--line);
    background: #fff;
  }

  .mobile-menu.is-open {
    display: grid;
    gap: 4px;
  }

  .mobile-menu a,
  .mobile-menu button {
    padding: 11px;
    border: 0;
    border-radius: 9px;
    color: #5d6b63;
    background: transparent;
    cursor: pointer;
    font: inherit;
    font-size: 14px;
    text-align: left;
  }

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

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

  .hero-content > p {
    margin-right: auto;
    margin-left: auto;
  }

  .hero-actions,
  .trust-list {
    justify-content: center;
  }

  .progress-card {
    width: min(100%, 540px);
    margin: 0 auto;
  }

  .steps-strip .page-container {
    grid-template-columns: 1fr;
  }

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

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

  .plan-card:last-child {
    grid-column: 1 / -1;
  }

  .invite-banner {
    grid-template-columns: 170px 1fr;
  }

  .invite-banner .dark-button {
    grid-column: 2;
    justify-self: start;
  }

  .wizard-steps {
    overflow-x: auto;
  }

  .wizard-steps > i {
    min-width: 25px;
  }

  .wizard-layout,
  .invite-layout {
    grid-template-columns: 1fr;
  }

  .order-summary {
    position: static;
  }

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

  .order-row {
    grid-template-columns: 1.6fr 1fr 0.8fr auto;
  }

  .order-row > div:nth-of-type(4) {
    display: none;
  }

  .invite-hero {
    grid-template-columns: 1fr 270px;
  }
}

@media (max-width: 680px) {
  body {
    padding-bottom: 65px;
  }

  .service-ribbon {
    height: 24px;
    padding: 5px 10px;
    font-size: 14px;
  }

  .page-container {
    width: min(100% - 24px, 500px);
  }

  .header-inner {
    width: calc(100% - 24px);
    height: 64px;
  }

  .account-button {
    display: none;
  }

  .home-hero {
    min-height: auto;
    gap: 45px;
    padding-top: 55px;
    padding-bottom: 58px;
  }

  .hero-content h1 {
    font-size: 43px;
  }

  .hero-content > p {
    font-size: 14px;
  }

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

  .trust-list {
    gap: 10px;
  }

  .progress-card {
    padding: 21px;
    border-radius: 19px;
  }

  .steps-strip .page-container {
    gap: 22px;
  }

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

  .plans-section {
    padding-top: 70px;
    padding-bottom: 70px;
  }

  .section-title-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .section-title-row h2 {
    font-size: 26px;
  }

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

  .plan-card:last-child {
    grid-column: auto;
  }

  .member-section {
    padding-bottom: 70px;
  }

  .invite-banner {
    grid-template-columns: 1fr;
    padding: 27px;
  }

  .invite-art {
    display: none;
  }

  .invite-banner .dark-button {
    grid-column: auto;
  }

  .inner-page {
    padding-top: 45px;
    padding-bottom: 70px;
  }

  .inner-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .inner-heading h1,
  .help-heading h1 {
    font-size: 33px;
  }

  .service-pill {
    display: none;
  }

  .wizard-steps {
    justify-content: space-between;
    padding: 13px;
  }

  .wizard-steps button {
    display: block;
    min-width: auto;
  }

  .wizard-steps button > span {
    display: grid;
  }

  .wizard-steps button > strong,
  .wizard-steps button > small,
  .wizard-steps > i {
    display: none;
  }

  .wizard-card {
    min-height: auto;
    padding: 23px 18px;
  }

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

  .pro-20-product {
    grid-column: auto;
  }

  .product-poster,
  .pro-20-product .product-poster {
    height: 145px;
  }

  .product-body {
    min-height: 165px;
  }

  .choice-card {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .choice-price {
    margin-left: auto;
  }

  .choice-card > i {
    position: absolute;
    right: 11px;
    bottom: 9px;
  }

  .wizard-actions {
    flex-direction: column-reverse;
  }

  .wizard-back {
    width: 100%;
    margin-top: 0;
  }

  .payment-tabs {
    grid-template-columns: 1fr;
  }

  .order-summary {
    display: none;
  }

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

  .orders-toolbar {
    align-items: stretch;
    flex-direction: column;
    gap: 10px;
  }

  .order-tabs {
    overflow-x: auto;
  }

  .order-search {
    width: 100%;
  }

  .order-row {
    gap: 11px;
    grid-template-columns: 1fr auto;
    padding: 17px;
  }

  .order-row > div:not(.order-product),
  .order-row > button {
    display: none;
  }

  .invite-hero {
    grid-template-columns: 1fr;
    padding: 28px;
  }

  .invite-hero h1 {
    font-size: 29px;
  }

  .invite-main-card,
  .reward-rules {
    padding: 21px;
  }

  .invite-link-box {
    align-items: stretch;
    height: auto;
    flex-direction: column;
    padding: 11px;
  }

  .invite-link-box button {
    height: 37px;
    margin-top: 9px;
    border-radius: 8px;
  }

  .share-buttons {
    flex-wrap: wrap;
  }

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

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

  .support-banner {
    grid-template-columns: 37px 1fr;
  }

  .support-banner button {
    grid-column: 1 / -1;
  }

  .site-footer {
    display: none;
  }

  .floating-support {
    right: 14px;
    bottom: 79px;
  }

  .floating-support > span:nth-child(2) {
    display: none;
  }

  .floating-support {
    padding: 7px;
  }

  .floating-support > i {
    left: auto;
    right: 3px;
  }

  .mobile-bottom-nav {
    position: fixed;
    z-index: 30;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    height: 64px;
    border-top: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(15px);
    grid-template-columns: repeat(4, 1fr);
  }

  .mobile-bottom-nav a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3px;
    flex-direction: column;
    color: #7e8b84;
    font-size: 14px;
  }

  .mobile-bottom-nav a span {
    font-size: 16px;
    line-height: 1;
  }

  .mobile-bottom-nav a.is-active {
    color: var(--green);
    font-weight: 750;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

.account-button {
  cursor: pointer;
  font: inherit;
}

.account-dialog {
  width: min(650px, calc(100% - 28px));
  max-height: calc(100vh - 28px);
  overflow-y: auto;
  padding: 30px;
}

.account-dialog-heading {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-right: 34px;
}

.account-dialog-heading .brand-mark {
  flex: 0 0 auto;
}

.account-dialog-heading h2 {
  margin: 3px 0 4px;
}

.account-dialog-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.account-tabs {
  display: grid;
  margin: 24px 0 18px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #f4f7f5;
  grid-template-columns: 1fr 1fr;
}

.account-tabs button {
  height: 38px;
  border: 0;
  border-radius: 9px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font: inherit;
  font-weight: 700;
}

.account-tabs button.is-active {
  background: #fff;
  color: var(--ink);
  box-shadow: 0 4px 12px rgba(20, 35, 28, 0.08);
}

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

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

.account-form label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
}

.account-form input {
  width: 100%;
  height: 46px;
  padding: 0 13px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  outline: none;
}

.account-form input:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(20, 112, 72, 0.1);
}

.account-form .primary-button {
  width: 100%;
  margin-top: 4px;
  border: 0;
}

.logged-account {
  display: grid;
  align-items: center;
  gap: 12px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #f8faf9;
  grid-template-columns: auto 1fr auto;
}

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

.logged-account small {
  display: block;
  margin-top: 3px;
  color: var(--muted);
}

.logged-account button {
  border: 0;
  background: transparent;
  color: #b33a3a;
  cursor: pointer;
  font: inherit;
  font-weight: 700;
}

.member-center { display: grid; gap: 10px; margin-top: 13px; }
.member-center-stats { display: grid; gap: 8px; grid-template-columns: repeat(3, 1fr); }
.member-center-stats div { padding: 12px; border: 1px solid var(--line); border-radius: 11px; background: #fff; }
.member-center-stats span, .member-center-stats strong { display: block; }
.member-center-stats span { color: var(--muted); font-size: 14px; }
.member-center-stats strong { margin-top: 5px; color: var(--green); font-size: 15px; }
.member-center details { border: 1px solid var(--line); border-radius: 12px; background: #fff; }
.member-center summary { padding: 13px 15px; cursor: pointer; font-size: 14px; font-weight: 800; }
.compact-account-form { padding: 0 15px 15px; }
.preference-check { display: flex !important; align-items: center; gap: 8px; font-size: 14px !important; }
.preference-check input { width: 16px; height: 16px; }
.security-list, .notification-list { display: grid; gap: 7px; padding: 0 15px 15px; }
.security-list > strong { margin-top: 5px; font-size: 14px; }
.security-list > div { display: flex; align-items: center; justify-content: space-between; gap: 8px; padding: 9px; border-radius: 8px; color: var(--muted); background: #f5f7f6; font-size: 14px; }
.security-list button, .notification-actions button { border: 0; color: var(--green); background: transparent; font-size: 14px; font-weight: 800; }
.notification-actions { padding: 0 15px 7px; text-align: right; }
.notification-list article { padding: 10px; border-left: 3px solid #d7dfdb; border-radius: 8px; background: #f7f9f8; }
.notification-list article.is-unread { border-left-color: var(--green); background: #eff8f3; }
.notification-list strong, .notification-list p, .notification-list small { display: block; margin: 0; }
.notification-list strong { font-size: 14px; }
.notification-list p { margin: 4px 0; color: #5b685f; font-size: 14px; line-height: 1.55; }
.notification-list small { color: var(--muted); font-size: 14px; }
.support-ticket-form { display: grid; gap: 9px; margin-top: 18px; padding-top: 17px; border-top: 1px solid var(--line); }
.support-ticket-form > strong { font-size: 14px; }
.support-ticket-form select, .support-ticket-form input, .support-ticket-form textarea { width: 100%; padding: 0 11px; border: 1px solid var(--line); border-radius: 9px; background: #fff; }
.support-ticket-form select, .support-ticket-form input { height: 40px; }
.support-ticket-form textarea { min-height: 78px; padding-top: 10px; resize: vertical; }
.support-ticket-form button { min-height: 42px; border: 0; }
.order-detail-dialog { width: min(700px, calc(100% - 28px)); max-height: calc(100vh - 28px); overflow-y: auto; padding: 28px; }
.order-detail-dialog h2 { margin: 5px 0 15px; }
.order-detail-dialog h3 { margin: 20px 0 9px; font-size: 14px; }
.member-order-summary { display: grid; gap: 8px; grid-template-columns: 1fr 1fr; }
.member-order-summary > div { padding: 11px; border: 1px solid var(--line); border-radius: 9px; background: #f8faf9; }
.member-order-summary small, .member-order-summary strong { display: block; }
.member-order-summary small { color: var(--muted); font-size: 14px; }
.member-order-summary strong { margin-top: 4px; font-size: 14px; overflow-wrap: anywhere; }
.member-order-timeline { display: grid; }
.member-order-timeline article { position: relative; display: grid; gap: 10px; padding: 7px 0 12px 23px; grid-template-columns: 1fr; }
.member-order-timeline article i { position: absolute; top: 10px; left: 2px; width: 10px; height: 10px; border: 2px solid white; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 1px #a8c7b7; }
.member-order-timeline article:not(:last-child)::after { position: absolute; top: 21px; bottom: -3px; left: 6px; width: 1px; background: #dce5e0; content: ""; }
.member-order-timeline strong, .member-order-timeline p, .member-order-timeline small { display: block; margin: 0; }
.member-order-timeline strong { font-size: 14px; }
.member-order-timeline p { margin: 3px 0; color: var(--muted); font-size: 14px; }
.member-order-timeline small { color: #98a39d; font-size: 14px; }
.member-aftersale-list { display: grid; gap: 8px; }
.member-aftersale-list article { padding: 11px; border-radius: 9px; background: #fff7e8; }
.member-aftersale-list strong { font-size: 14px; }
.member-aftersale-list p { margin: 4px 0 0; color: #6a5a3d; font-size: 14px; }
#order-open-support { min-height: 42px; margin-top: 14px; border: 0; }
.reward-ledger { display: grid; gap: 7px; margin-top: 18px; padding-top: 15px; border-top: 1px solid rgba(255,255,255,.15); }
.reward-ledger > div { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 9px 11px; border-radius: 9px; background: rgba(255,255,255,.7); }
.reward-ledger span { color: #5b685f; font-size: 14px; }
.reward-ledger strong { color: var(--green); font-size: 14px; }
.reward-ledger .revoked strong { color: #a94a4a; text-decoration: line-through; }
.reward-ledger p { margin: 0; color: var(--muted); font-size: 14px; }

#member-order-list .order-row {
  border-top: 1px solid var(--line);
}

#member-order-list:empty {
  display: none;
}

.product-choice-card.is-unavailable {
  opacity: 0.55;
  filter: grayscale(0.45);
}

.product-choice-card.is-unavailable,
.plan-card button:disabled {
  cursor: not-allowed;
}

.json-tutorial-dialog {
  width: min(620px, calc(100% - 28px));
  padding: 30px;
}

.tutorial-dialog-heading {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-right: 38px;
}

.tutorial-play-icon {
  display: grid;
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 14px;
  background: var(--ink);
  color: var(--lime);
  font-size: 14px;
}

.tutorial-dialog-heading h2,
.tutorial-dialog-heading p {
  margin: 0;
}

.tutorial-dialog-heading h2 {
  margin: 3px 0;
  font-size: 21px;
}

.tutorial-dialog-heading p {
  color: var(--muted);
  font-size: 14px;
}

.tutorial-player {
  overflow: hidden;
  margin-top: 20px;
  padding: 15px;
  border-radius: 16px;
  background: #edf2ef;
}

.tutorial-scene {
  display: none;
}

.tutorial-scene.is-active {
  display: block;
  animation: page-in 220ms ease;
}

.fake-browser {
  overflow: hidden;
  border: 1px solid #d6dfda;
  border-radius: 11px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(20, 35, 28, 0.08);
}

.fake-browser-bar {
  display: grid;
  align-items: center;
  gap: 5px;
  height: 34px;
  padding: 0 10px;
  border-bottom: 1px solid #e8ecea;
  background: #f8faf9;
  grid-template-columns: 6px 6px 6px 1fr;
}

.fake-browser-bar i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #cad3ce;
}

.fake-browser-bar span {
  overflow: hidden;
  margin-left: 5px;
  padding: 5px 9px;
  border-radius: 5px;
  background: #fff;
  color: #718078;
  font-size: 14px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.fake-browser-body {
  display: flex;
  min-height: 190px;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  padding: 24px;
}

.fake-chatgpt-logo {
  display: grid;
  width: 46px;
  height: 46px;
  margin-bottom: 13px;
  place-items: center;
  border-radius: 14px;
  background: var(--ink);
  color: #fff;
  font-size: 22px;
}

.fake-browser-body strong {
  font-size: 14px;
}

.fake-browser-body small {
  margin-top: 6px;
  color: var(--muted);
  font-size: 14px;
}

.fake-json {
  align-items: flex-start;
  justify-content: flex-start;
  background: #fbfcfb;
}

.fake-json code {
  color: #274a39;
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 14px;
  line-height: 1.8;
}

.tutorial-copy-scene {
  gap: 7px;
  flex-direction: row;
  flex-wrap: wrap;
}

.tutorial-copy-scene > span {
  padding: 8px 10px;
  border: 1px solid #cfdad4;
  border-radius: 7px;
  background: #fff;
  font-size: 14px;
  font-weight: 800;
  box-shadow: 0 3px 0 #d7dfdb;
}

.tutorial-copy-scene > b {
  color: var(--muted);
  font-size: 14px;
}

.tutorial-copy-scene > strong {
  width: 100%;
  margin-top: 10px;
  color: var(--green);
  text-align: center;
}

.tutorial-scene > p {
  margin: 13px 2px 0;
  color: #59675f;
  font-size: 14px;
  line-height: 1.6;
}

.tutorial-scene > p b {
  color: var(--green);
}

.tutorial-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 14px;
}

.tutorial-dots {
  display: flex;
  gap: 6px;
}

.tutorial-dots button {
  width: 7px;
  height: 7px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #d0d8d4;
}

.tutorial-dots button.is-active {
  width: 21px;
  border-radius: 99px;
  background: var(--green);
}

#tutorial-next {
  height: 37px;
  padding: 0 15px;
  border: 0;
  border-radius: 9px;
  background: var(--green);
  color: #fff;
  font-size: 14px;
  font-weight: 800;
}

.tutorial-direct-link {
  display: block;
  margin-top: 13px;
  color: var(--green);
  font-size: 14px;
  font-weight: 750;
  text-align: center;
}

@media (max-width: 680px) {
  .account-dialog {
    padding: 22px;
  }

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

  .logged-account button {
    grid-column: 1 / -1;
    justify-self: start;
  }
  .member-center-stats, .member-order-summary { grid-template-columns: 1fr; }

  .json-guide-actions {
    align-items: stretch;
    flex-direction: column;
  }
  .json-check-card ul { grid-template-columns: 1fr; }

  .confirm-plan-card,
  .card-purchase-callout {
    grid-template-columns: auto 1fr;
  }

  .confirm-plan-price {
    grid-column: 2;
  }

  .card-purchase-callout > a {
    grid-column: 1 / -1;
    justify-content: center;
  }

  .json-tutorial-dialog {
    padding: 21px;
  }

  .tutorial-dialog-heading p {
    display: none;
  }

  .fake-browser-body {
    min-height: 165px;
    padding: 18px;
  }
}

/* v3.4.1 前台可读性与结算布局优化 */
.panel-heading > span,
.mini-label {
  font-size: 14px;
  letter-spacing: 0.12em;
}

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

.panel-heading p,
.form-field > span,
.confirm-check,
.email-field {
  font-size: 15px;
}

.form-field input,
.form-field textarea {
  font-size: 16px;
}

.form-field > small,
.json-guide p,
.json-guide li,
.json-guide-actions button,
.json-guide-actions a {
  font-size: 14px;
}

.auto-badge {
  font-size: 14px;
}

.product-title {
  font-size: 17px;
}

.channel-route,
.product-meta {
  font-size: 14px;
}

.product-price {
  font-size: 30px;
}

.product-poster > small {
  font-size: 14px;
}

.wizard-next,
.wizard-back {
  min-height: 50px;
  font-size: 15px;
  font-weight: 750;
}

.order-summary h2 {
  font-size: 27px;
}

.summary-product strong {
  font-size: 15px;
}

.summary-product small,
.order-summary dl div,
.summary-total span {
  font-size: 14px;
}

.summary-total strong {
  font-size: 28px;
}

.summary-security p,
.summary-security strong,
.order-summary > button {
  font-size: 14px;
}

.order-summary > .summary-next-button {
  display: flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 18px;
  padding: 13px 16px;
  border-radius: 11px;
  background: var(--green);
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  transition: 160ms ease;
}

.order-summary > .summary-next-button:hover {
  background: var(--green-dark);
  transform: translateY(-1px);
}

.confirm-account small,
.confirm-account-details dt,
.confirm-plan-main small {
  font-size: 14px;
}

.confirm-account strong,
.confirm-account-details dd,
.confirm-plan-main strong {
  font-size: 17px;
}

.confirm-account span,
.confirm-plan-main span {
  font-size: 14px;
}

.confirm-plan-price {
  font-size: 22px;
}

.card-purchase-callout strong,
.card-purchase-callout p,
.card-purchase-callout a {
  font-size: 14px;
}

.json-check-heading strong {
  font-size: 15px;
}

.json-check-heading span,
.json-check-card li span,
.json-check-card li small,
.json-check-card > p {
  font-size: 14px;
}

@media (max-width: 1050px) and (min-width: 681px) {
  .product-choice-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .panel-heading h2 {
    font-size: 27px;
  }

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

  .order-summary {
    display: block;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .order-summary > :not(.summary-next-button) {
    display: none;
  }

  .order-summary > .summary-next-button {
    margin-top: 0;
  }
}

/* v3.5 前台字号、商品图片和视频教程 */
body {
  font-size: 18px;
}

button,
input,
select,
textarea {
  font-size: 17px;
}

.desktop-nav a,
.mobile-menu a,
.mobile-menu button,
.support-link,
.account-button {
  font-size: 16px;
}

main p,
main label,
main li {
  font-size: 17px;
}

main small {
  font-size: 15px;
}

.home-steps strong,
.wizard-steps strong,
.footer-links strong {
  font-size: 16px;
}

.home-steps small,
.wizard-steps small,
.footer-links a,
.footer-links button {
  font-size: 15px;
}

.section-title-row > a,
.card-link,
.dark-button,
.primary-button,
.secondary-button,
.plan-card button {
  font-size: 17px;
}

.plan-card > p,
.plan-card ul {
  font-size: 16px;
}

.plan-card button {
  height: 48px;
}

.product-meta,
.summary-product small,
.order-summary dl div,
.summary-security p,
.confirm-account span,
.confirm-plan-main span {
  font-size: 15px;
}

.panel-heading > span,
.mini-label,
.form-field > small,
.json-guide p,
.json-guide li,
.json-guide-actions button,
.json-guide-actions a,
.summary-security strong,
.order-summary > button,
.confirm-account small,
.confirm-account-details dt,
.confirm-plan-main small,
.json-check-heading span,
.json-check-card li span,
.json-check-card li small,
.json-check-card > p {
  font-size: 15px;
}

.channel-route {
  display: none;
}

.product-poster.has-cover {
  background-color: #fff;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.product-poster.has-cover > :not(.product-poster-cover),
.product-poster.has-cover::before,
.product-poster.has-cover::after {
  display: none;
}

.product-poster-cover {
  position: absolute;
  z-index: 3;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #f4f7f5;
}

.product-poster-cover[hidden] {
  display: none;
}

.plan-cover {
  display: block;
  width: calc(100% + 50px);
  height: 165px;
  margin: -25px -25px 20px;
  border-bottom: 1px solid var(--line);
  object-fit: cover;
}

.plan-card.has-product-cover .plan-icon {
  display: none;
}

.plan-card.has-product-cover .plan-top {
  justify-content: flex-end;
}

.json-input-wrap {
  position: relative;
}

.json-input-wrap textarea {
  display: block;
  padding-top: 46px;
}

.json-input-wrap > button {
  position: absolute;
  z-index: 2;
  top: 10px;
  right: 10px;
  min-height: 34px;
  padding: 0 13px;
  border: 1px solid #cbdad3;
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.96);
  color: #53665c;
  font-size: 15px;
  font-weight: 750;
}

.json-input-wrap > button:hover {
  border-color: var(--green);
  color: var(--green);
}

.json-tutorial-video {
  display: block;
  width: 100%;
  max-height: 68vh;
  margin-top: 20px;
  border-radius: 15px;
  background: #0f1d16;
}

.tutorial-video-note {
  margin: 12px 0 0;
  padding: 11px 13px;
  border-radius: 10px;
  background: #f2f7f4;
  color: #607068;
  font-size: 15px;
}

.help-heading + .public-content-panel {
  margin-top: 34px;
}

@media (max-width: 680px) {
  body {
    font-size: 17px;
  }

  main p,
  main label,
  main li,
  button,
  input,
  select,
  textarea {
    font-size: 16px;
  }

  main small {
    font-size: 14px;
  }

  .plan-cover {
    height: 180px;
  }
}

.reward-credit-option {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 18px;
  padding: 16px;
  border: 1px solid #bfe3ce;
  border-radius: 14px;
  background: #f2faf5;
  cursor: pointer;
}

.reward-credit-option input {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  accent-color: var(--green);
}

.reward-credit-option strong,
.reward-credit-option small {
  display: block;
}

.reward-credit-option small {
  margin-top: 4px;
  color: var(--muted);
}

.invite-payout {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(31, 74, 55, 0.14);
}

.invite-payout-heading,
.withdrawal-list article,
.payout-profile-list article {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.invite-payout-heading h3 {
  margin: 5px 0 0;
  font-size: 24px;
}

.payout-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 18px;
}

.payout-form label {
  display: grid;
  gap: 7px;
  font-weight: 700;
}

.payout-form .full {
  grid-column: 1 / -1;
}

.payout-form input,
.payout-form select {
  min-height: 48px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
}

.payout-form button,
.withdrawal-list button {
  min-height: 46px;
  padding: 0 18px;
  border: 0;
  border-radius: 12px;
  background: var(--green);
  color: #fff;
  cursor: pointer;
  font-weight: 800;
}

.payout-profile-list,
.withdrawal-list {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.payout-profile-list article,
.withdrawal-list article {
  padding: 13px 15px;
  border-radius: 12px;
  background: #f4f7f5;
}

.payout-profile-list a {
  color: var(--green);
  font-weight: 750;
}

.withdrawal-form {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

@media (max-width: 720px) {
  .payout-form {
    grid-template-columns: 1fr;
  }

  .payout-form .full {
    grid-column: auto;
  }

  .withdrawal-list article,
  .payout-profile-list article {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* v3.6.2 contact and compatibility */
.order-row {
  grid-template-columns: minmax(190px, 1.35fr) 1fr 1fr .7fr .8fr auto auto;
}
.support-contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 18px 0 10px;
}

/* v3.7.0 order retry actions */
.order-row-actions,
.dialog-action-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.order-row-actions {
  flex-direction: row !important;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.order-row-actions button {
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  cursor: pointer;
  font-size: 14px;
  white-space: nowrap;
}

.order-row-actions .order-retry-button {
  border-color: #b9dfca;
  color: var(--green);
  background: #eff9f3;
}

.dialog-action-row {
  margin-top: 18px;
  justify-content: flex-end;
}

@media (max-width: 760px) {
  .order-row > .order-row-actions {
    display: flex;
    grid-column: 1 / -1;
    justify-content: flex-start;
  }
}
.support-contact-card {
  padding: 16px;
  border: 1px solid #d8e8df;
  border-radius: 16px;
  background: #f7fbf8;
}
.support-contact-card > div:first-child {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.support-contact-card > div:first-child > div { display: grid; gap: 3px; }
.support-contact-card small { color: #718078; font-size: 14px; }
.support-contact-card strong { color: var(--ink); font-size: 16px; overflow-wrap: anywhere; }
.support-channel-icon {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 12px;
  background: var(--green);
  color: #fff;
  font-weight: 800;
}
.support-qr {
  position: relative;
  display: grid;
  min-height: 150px;
  place-items: center;
  overflow: hidden;
  border-radius: 12px;
  background: #fff;
  color: #89958e;
  font-size: 14px;
}
.support-qr img { display: none; width: 100%; max-width: 180px; aspect-ratio: 1; object-fit: contain; }
.support-qr img.is-ready { display: block; }
.support-qr img.is-ready + span { display: none; }
.support-contact-tip { margin: 8px 0 14px; color: #6b7971; text-align: center; font-size: 14px; }
.captcha-retry { color: var(--green); cursor: pointer; text-decoration: underline; }
@media (max-width: 720px) {
  .support-contact-grid { grid-template-columns: 1fr; }
}

/* ========================================================================== */
/* v3.9.0 — Orbit UI redesign                                                 */
/* ========================================================================== */

:root {
  --ink: #11182b;
  --ink-2: #26324a;
  --muted: #68738a;
  --line: #e3e7f0;
  --soft: #f4f5f9;
  --soft-2: #eceef5;
  --surface: #ffffff;
  --green: #6257ed;
  --green-dark: #4a42c7;
  --green-light: #eeecff;
  --lime: #9ee7df;
  --orange: #ffb45d;
  --danger: #dc4c5a;
  --navy: #0b1020;
  --navy-2: #151d35;
  --blue: #4385ff;
  --violet: #725cff;
  --cyan: #56d8d0;
  --success: #15956f;
  --shadow: 0 28px 80px rgba(20, 28, 55, .12);
  --shadow-small: 0 12px 34px rgba(20, 28, 55, .08);
}

html { background: #f6f6f9; }

body {
  background:
    radial-gradient(circle at 10% 0%, rgba(114, 92, 255, .09), transparent 24rem),
    radial-gradient(circle at 92% 12%, rgba(67, 133, 255, .08), transparent 26rem),
    #f7f7fa;
  color: var(--ink);
  font-size: 16px;
}

::selection { color: #fff; background: var(--violet); }

.page-container { width: min(1240px, calc(100% - 48px)); }

.service-ribbon {
  min-height: 34px;
  border: 0;
  color: rgba(255, 255, 255, .82);
  background: linear-gradient(90deg, #0b1020, #171d36 55%, #11182d);
  font-size: 13px;
  letter-spacing: .04em;
}

.online-dot {
  background: #55e0b0;
  box-shadow: 0 0 0 4px rgba(85, 224, 176, .13), 0 0 16px rgba(85, 224, 176, .6);
}

.site-header {
  top: 0;
  z-index: 90;
  border-bottom: 1px solid rgba(225, 228, 239, .86);
  background: rgba(255, 255, 255, .86);
  box-shadow: 0 8px 32px rgba(16, 22, 44, .04);
  backdrop-filter: blur(20px) saturate(150%);
}

.header-inner { width: min(1320px, calc(100% - 48px)); min-height: 82px; }

.brand { gap: 12px; }

.brand-mark {
  position: relative;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 15px;
  background: linear-gradient(145deg, #171e39, #090d1b);
  box-shadow: 0 10px 24px rgba(11, 16, 32, .2);
}

.brand-mark::after {
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(255, 255, 255, .09);
  border-radius: 9px;
  content: "";
}

.brand-mark span {
  z-index: 1;
  width: 5px;
  border-radius: 5px;
  background: linear-gradient(180deg, #a99bff, #4d99ff);
  box-shadow: 0 0 14px rgba(105, 106, 255, .55);
}

.brand-copy strong { color: var(--navy); font-size: 22px; letter-spacing: -.035em; }
.brand-copy small { color: var(--violet); font-size: 11px; font-weight: 900; letter-spacing: .17em; }

.desktop-nav {
  gap: 5px;
  padding: 5px;
  border: 1px solid #e8eaf1;
  border-radius: 15px;
  background: #f6f7fa;
}

.desktop-nav a {
  padding: 10px 16px;
  border-radius: 11px;
  color: #59647a;
  font-size: 15px;
  font-weight: 720;
}

.desktop-nav a:hover,
.desktop-nav a.is-active {
  color: var(--ink);
  background: #fff;
  box-shadow: 0 6px 18px rgba(22, 29, 56, .08);
}

.support-link { color: #535f76; }

.account-button {
  min-height: 44px;
  padding: 0 18px;
  border-color: transparent;
  border-radius: 13px;
  color: #fff;
  background: linear-gradient(135deg, var(--violet), var(--blue));
  box-shadow: 0 10px 24px rgba(91, 82, 230, .22);
}

.account-button:hover { transform: translateY(-1px); box-shadow: 0 14px 28px rgba(91, 82, 230, .3); }

.home-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(360px, .78fr);
  gap: 64px;
  align-items: center;
  min-height: 570px;
  margin-top: 30px;
  margin-bottom: 30px;
  padding: 68px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 36px;
  color: #fff;
  background:
    radial-gradient(circle at 86% 5%, rgba(79, 125, 255, .36), transparent 20rem),
    radial-gradient(circle at 8% 92%, rgba(111, 84, 255, .24), transparent 23rem),
    linear-gradient(135deg, #0a0f1f 0%, #111831 58%, #17203b 100%);
  box-shadow: 0 36px 90px rgba(10, 15, 32, .24);
}

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

.home-hero::before {
  top: -180px;
  right: -90px;
  width: 460px;
  height: 460px;
  border: 1px solid rgba(255, 255, 255, .11);
  border-radius: 50%;
  box-shadow: 0 0 0 48px rgba(255, 255, 255, .025), 0 0 0 96px rgba(255, 255, 255, .018);
}

.home-hero::after {
  right: 42%;
  bottom: -1px;
  width: 260px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(119, 101, 255, .8), transparent);
}

.home-hero > * { position: relative; z-index: 1; }
.home-hero .site-announcements { grid-column: 1 / -1; margin: -28px 0 -20px; }
.home-hero .site-announcements article { border-color: rgba(255, 255, 255, .16); color: #fff; background: rgba(255, 255, 255, .08); backdrop-filter: blur(12px); }

.hero-content .eyebrow {
  color: #aeb7ff;
  font-size: 13px;
  font-weight: 850;
  letter-spacing: .16em;
}

.eyebrow-dot { background: var(--cyan); box-shadow: 0 0 16px rgba(86, 216, 208, .65); }

.hero-content h1 {
  max-width: 720px;
  margin: 24px 0 22px;
  color: #fff;
  font-size: clamp(45px, 5.3vw, 72px);
  font-weight: 860;
  line-height: 1.07;
  letter-spacing: -.065em;
}

.hero-content h1 span {
  color: transparent;
  background: linear-gradient(90deg, #b7b0ff, #72c7ff 62%, #75e3d8);
  background-clip: text;
  -webkit-background-clip: text;
}

.hero-content > p { max-width: 630px; color: #b8c0d4; font-size: 18px; line-height: 1.8; }
.hero-actions { margin-top: 34px; }

.primary-button,
.wizard-next,
.json-guide-actions button,
.invite-link-box button,
.invite-payout button[type="submit"] {
  border: 0;
  color: #fff;
  background: linear-gradient(135deg, var(--violet), var(--blue));
  box-shadow: 0 12px 28px rgba(83, 83, 224, .23);
}

.primary-button:hover,
.wizard-next:hover,
.json-guide-actions button:hover { transform: translateY(-2px); box-shadow: 0 17px 34px rgba(83, 83, 224, .3); }

.hero-content .secondary-button { border-color: rgba(255, 255, 255, .2); color: #fff; background: rgba(255, 255, 255, .07); }
.hero-content .secondary-button:hover { background: rgba(255, 255, 255, .13); }
.trust-list { margin-top: 28px; color: #b9c1d4; }
.trust-list span i { color: var(--cyan); background: rgba(86, 216, 208, .12); }

.progress-card {
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 26px;
  color: #fff;
  background: rgba(255, 255, 255, .095);
  box-shadow: 0 26px 60px rgba(0, 0, 0, .2);
  backdrop-filter: blur(18px) saturate(140%);
}

.progress-card .mini-label,
.progress-card small { color: #9faac3; }
.progress-card h2,
.progress-card strong { color: #fff; }
.processing-badge { color: #9fe3d6; background: rgba(75, 211, 177, .12); }
.home-order-empty { border-color: rgba(255, 255, 255, .13); background: rgba(255, 255, 255, .055); }
.home-order-empty > span { color: #c1bcff; background: rgba(114, 92, 255, .16); }
.account-chip { border-color: rgba(255, 255, 255, .12); background: rgba(255, 255, 255, .07); }
.account-avatar { color: #fff; background: linear-gradient(145deg, var(--violet), var(--blue)); }
.safe-check { color: #56dfb3; }
.mini-timeline li::after { background: rgba(255, 255, 255, .14); }
.mini-timeline li > span { color: #9ca7be; background: rgba(255, 255, 255, .08); }
.mini-timeline li.is-done > span,
.mini-timeline li.is-current > span { color: #fff; background: linear-gradient(145deg, var(--violet), var(--blue)); }
.progress-card .card-link { border-top-color: rgba(255, 255, 255, .12); color: #c8c3ff; }

.steps-strip { padding: 24px 0 48px; border: 0; background: transparent; }
.steps-strip .page-container {
  padding: 30px 34px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, .86);
  box-shadow: var(--shadow-small);
}
.step-intro span,
.section-kicker { color: var(--violet); }
.home-steps li { border-left-color: #e6e8f1; }
.step-number { color: #8a91a2; }
.home-steps strong { color: var(--ink); }
.home-steps small { color: var(--muted); }

.member-section { padding-top: 4px; padding-bottom: 70px; }
.invite-banner {
  position: relative;
  overflow: hidden;
  border: 0;
  border-radius: 28px;
  color: #fff;
  background: linear-gradient(125deg, #5a4de2, #624ff0 48%, #3d88f5);
  box-shadow: 0 24px 60px rgba(83, 70, 216, .22);
}
.invite-banner::after { position: absolute; top: -80px; right: 18%; width: 260px; height: 260px; border: 1px solid rgba(255,255,255,.17); border-radius: 50%; box-shadow: 0 0 0 38px rgba(255,255,255,.035), 0 0 0 76px rgba(255,255,255,.025); content: ""; }
.invite-banner > * { position: relative; z-index: 1; }
.invite-banner .section-kicker { color: #d4d0ff; }
.invite-banner h2 { color: #fff; }
.invite-banner p { color: rgba(255,255,255,.76); }
.invite-art { background: rgba(11, 16, 32, .2); }
.invite-art .person { background: #fff; color: var(--violet); }
.invite-banner .dark-button { border-color: rgba(255,255,255,.18); color: #fff; background: rgba(9,14,30,.72); }

.inner-page { min-height: calc(100vh - 116px); padding: 54px 0 90px; }
.inner-heading { margin-bottom: 30px; }
.inner-heading h1,
.help-heading h1 { font-size: clamp(36px, 4vw, 52px); letter-spacing: -.055em; }
.inner-heading p { color: var(--muted); font-size: 17px; }
.service-pill { border-color: #d5eade; color: var(--success); background: #effaf6; }

.wizard-steps {
  padding: 18px 24px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255,255,255,.84);
  box-shadow: var(--shadow-small);
}
.wizard-steps button > span { color: #7d8799; background: #edf0f6; }
.wizard-steps button.is-current > span,
.wizard-steps button.is-done > span { color: #fff; background: linear-gradient(145deg, var(--violet), var(--blue)); box-shadow: 0 7px 18px rgba(90, 80, 230, .24); }
.wizard-steps button.is-current > strong { color: var(--violet); }
.wizard-steps > i { background: #e4e7f0; }

.wizard-layout { grid-template-columns: minmax(0, 1fr) 330px; gap: 24px; align-items: start; }
.wizard-card,
.order-summary,
.orders-card,
.invite-main-card,
.reward-rules,
.public-content-panel,
.support-banner {
  border: 1px solid var(--line);
  border-radius: 26px;
  background: rgba(255,255,255,.94);
  box-shadow: var(--shadow-small);
}
.wizard-card { padding: 36px; }
.panel-heading > span { color: var(--violet); }
.panel-heading h2 { font-size: 31px; letter-spacing: -.045em; }
.panel-heading p { color: var(--muted); font-size: 16px; }

.product-choice-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.product-choice-card { overflow: hidden; border: 1px solid #e2e5ef; border-radius: 22px; background: #fff; box-shadow: 0 10px 26px rgba(20, 28, 55, .05); }
.product-choice-card:hover { transform: translateY(-4px); border-color: #c8c3ff; box-shadow: 0 20px 42px rgba(30, 39, 76, .12); }
.product-choice-card.is-selected { border-color: var(--violet); box-shadow: 0 0 0 3px rgba(114,92,255,.11), 0 20px 46px rgba(50, 42, 140, .13); }
.product-poster { min-height: 190px; color: #fff; background: radial-gradient(circle at 76% 16%, rgba(114, 203, 255, .42), transparent 10rem), linear-gradient(145deg, #161e3b, #252d55 60%, #29346d); }
.plus-product .product-poster { background: radial-gradient(circle at 76% 16%, rgba(255,190,109,.34), transparent 10rem), linear-gradient(145deg, #18172d, #2c2548 62%, #473251); }
.pro-product .product-poster { background: radial-gradient(circle at 76% 16%, rgba(93,186,255,.34), transparent 10rem), linear-gradient(145deg, #101a34, #20305b 62%, #25457a); }
.pro-20-product .product-poster { background: radial-gradient(circle at 76% 16%, rgba(86,216,208,.3), transparent 10rem), linear-gradient(145deg, #0f1d31, #193653 62%, #18546a); }
.product-poster::after { position: absolute; inset: 12px; border: 1px solid rgba(255,255,255,.22); border-radius: 16px; content: ""; }
.poster-logo { color: #fff; background: linear-gradient(145deg, var(--violet), var(--blue)); box-shadow: 0 10px 28px rgba(29,31,68,.28); }
.poster-brand,
.product-poster > strong { color: #fff; text-shadow: none; }
.pro-product .product-poster > strong { color: #fff; }
.poster-brand b { color: #c7c0ff; }
.product-poster > small { color: rgba(255,255,255,.68); }
.pro-product .product-poster > small { color: rgba(255,255,255,.72); }
.poster-grid { opacity: .22; }
.product-body { padding: 22px; }
.auto-badge { color: var(--violet); background: var(--green-light); }
.product-title { min-height: 52px; font-size: 19px; line-height: 1.45; }
.product-price { color: var(--ink); font-size: 38px; }
.product-meta { color: var(--muted); }
.selected-check { color: #fff; background: linear-gradient(145deg, var(--violet), var(--blue)); box-shadow: 0 8px 18px rgba(83,83,224,.25); }

.json-input-wrap textarea,
.form-field input,
.help-search,
.invite-link-box,
.payout-form input,
.payout-form select { border-color: #dfe3ed; background: #fbfbfd; }
.json-input-wrap textarea:focus,
.form-field input:focus,
.help-search:focus-within,
.payout-form input:focus,
.payout-form select:focus { border-color: #988fff; box-shadow: 0 0 0 4px rgba(114,92,255,.11); }
#clear-json { border-color: #dedafc; color: var(--violet); background: #f5f3ff; }
.json-check-card { border-color: #f0caca; background: #fff8f8; }
.json-check-card.is-valid { border-color: #cde9df; background: #f5fcf9; }
.json-guide { border-color: #dfe3f1; background: linear-gradient(145deg, #f8f8ff, #f4f8ff); }
.json-guide-icon { color: #fff; background: linear-gradient(145deg, var(--violet), var(--blue)); }
.json-guide a { color: var(--violet); }
.wizard-back,
.secondary-button { border-color: #dfe3ed; color: #354057; background: #fff; }
.wizard-actions { border-top-color: var(--line); }

.confirm-overview { border-color: #ddd9ff; background: linear-gradient(145deg, #fbfaff, #f7f9ff); }
.confirm-avatar,
.confirm-plan-icon,
.summary-icon { color: #fff; background: linear-gradient(145deg, var(--violet), var(--blue)); }
.confirm-account-details div { background: rgba(255,255,255,.84); }
.confirm-account-details dt { color: var(--muted); }
.confirm-plan-card { border-color: #e1e4ee; background: #fff; }
.confirm-account span { color: var(--success); }
.card-purchase-callout { border-color: #dedaff; background: linear-gradient(135deg, #f5f2ff, #f2f7ff); }
.card-purchase-icon { color: #fff; background: linear-gradient(145deg, var(--violet), var(--blue)); }
.card-purchase-callout a { color: #fff; background: var(--navy); }
.reward-credit-option { border-color: #d7d2ff; background: #f7f5ff; }

.order-summary {
  position: sticky;
  top: 132px;
  padding: 28px;
  color: #fff;
  background:
    radial-gradient(circle at 100% 0%, rgba(86,130,255,.32), transparent 15rem),
    linear-gradient(155deg, #0b1020, #171f3a);
  box-shadow: 0 26px 60px rgba(12,17,34,.2);
}
.order-summary h2 { color: #fff; }
.summary-product { border-color: rgba(255,255,255,.12); background: rgba(255,255,255,.07); }
.summary-product strong,
.summary-total strong { color: #fff; }
.summary-product small,
.order-summary dt { color: #9ca8c2; }
.order-summary dl div { border-color: rgba(255,255,255,.1); }
.order-summary dd { color: #fff; }
.order-summary .green-text { color: #6fe0c4; }
.summary-total { border-top-color: rgba(255,255,255,.14); }
.summary-security { color: #b6c0d6; background: rgba(255,255,255,.065); }
.summary-security strong { color: #fff; }
.order-summary > button:not(.summary-next-button) { color: #bdc6da; }
.order-summary > .summary-next-button { color: #fff; background: linear-gradient(135deg, var(--violet), var(--blue)); box-shadow: 0 12px 25px rgba(67,76,220,.28); }

.result-orbit { border-color: #b8b0ff; box-shadow: 0 0 0 18px rgba(114,92,255,.06), 0 0 0 38px rgba(114,92,255,.035); }
.result-orbit span { color: #fff; background: linear-gradient(145deg, var(--violet), var(--blue)); }

.metric-grid { gap: 16px; }
.metric-grid article { position: relative; overflow: hidden; border-color: var(--line); border-radius: 22px; background: rgba(255,255,255,.92); box-shadow: var(--shadow-small); }
.metric-grid article::before { position: absolute; top: 0; left: 0; width: 100%; height: 4px; background: linear-gradient(90deg, var(--violet), var(--blue)); content: ""; }
.metric-grid article:nth-child(2)::before { background: linear-gradient(90deg, #27a97f, #56d8d0); }
.metric-grid article:nth-child(3)::before { background: linear-gradient(90deg, #e05b68, #ff9f73); }
.metric-grid article:nth-child(4)::before { background: linear-gradient(90deg, #f4a742, #ffd06a); }
.metric-grid article > span { color: var(--muted); }
.metric-grid article > strong { color: var(--ink); }
.orders-card { overflow: hidden; }
.orders-toolbar { border-bottom-color: var(--line); background: #fbfbfd; }
.order-tabs button.is-active { color: var(--violet); background: var(--green-light); }
.order-row { border-bottom-color: var(--line); }
.order-row:hover { background: #fafaff; }
.table-status.is-processing { color: #584be1; background: #efedff; }
.order-row-actions .order-retry-button { border-color: #d3ceff; color: var(--violet); background: #f4f2ff; }

.invite-hero {
  border: 0;
  border-radius: 30px;
  background:
    radial-gradient(circle at 88% 15%, rgba(76,135,255,.38), transparent 19rem),
    linear-gradient(135deg, #0b1020, #24234e 62%, #32306b);
  box-shadow: 0 28px 70px rgba(12,17,36,.2);
}
.invite-hero h1 { color: #fff; }
.invite-hero > div:first-child p { color: #b9c2d8; }
.light-kicker { color: #afa7ff; }
.reward-stat { border-color: rgba(255,255,255,.14); background: rgba(255,255,255,.09); backdrop-filter: blur(15px); }
.reward-stat span,
.reward-stat p { color: #b9c2d8; }
.reward-stat strong,
.reward-stat b { color: #fff; }
.invite-link-box button { box-shadow: none; }
.rules-grid span { color: #fff; background: linear-gradient(145deg, var(--violet), var(--blue)); }
.reward-rules { color: #fff; background: linear-gradient(155deg, #151b31, #222947); }
.reward-rules h2 { color: #fff; }
.reward-rules li { border-bottom-color: rgba(255,255,255,.1); color: #c4ccdd; }
.reward-rules li span { color: var(--cyan); }
.reward-rules button { border-color: rgba(255,255,255,.18); color: #fff; background: rgba(255,255,255,.08); }

.help-heading { padding: 24px 0 18px; }
.help-search { box-shadow: 0 14px 35px rgba(20,28,55,.08); }
.public-content-panel { padding: 32px; }
.public-content-panel details { border-bottom-color: var(--line); }
.support-banner { background: linear-gradient(135deg, #fff, #f5f4ff); }
.support-banner > div:first-child { color: #fff; background: linear-gradient(145deg, var(--violet), var(--blue)); }
.support-banner button { color: #fff; background: var(--navy); }

.site-footer { border-top: 0; color: #b7c0d4; background: var(--navy); }
.site-footer .brand-copy strong { color: #fff; }
.site-footer .footer-links strong { color: #fff; }
.site-footer a,
.site-footer button { color: #9da7bd; }
.site-footer a:hover,
.site-footer button:hover { color: #fff; }

.floating-support {
  border-color: rgba(255,255,255,.14);
  color: #fff;
  background: rgba(12,17,34,.94);
  box-shadow: 0 18px 46px rgba(9,13,28,.28);
  backdrop-filter: blur(16px);
}
.floating-support .chat-icon { color: #fff; background: linear-gradient(145deg, var(--violet), var(--blue)); }

.mobile-bottom-nav a.is-active { color: var(--violet); }
.support-contact-card { border-color: #e1e3f1; background: #f8f8ff; }
.support-channel-icon { background: linear-gradient(145deg, var(--violet), var(--blue)); }
.captcha-retry,
.text-button,
.payout-profile-list a { color: var(--violet); }

dialog { border: 1px solid rgba(255,255,255,.7); border-radius: 24px; box-shadow: 0 34px 100px rgba(10,15,32,.3); }
dialog::backdrop { background: rgba(8,11,24,.68); backdrop-filter: blur(5px); }
.dialog-close { background: #f0f1f6; }
.toast { background: var(--navy); box-shadow: 0 14px 36px rgba(8,12,28,.24); }

@media (max-width: 1080px) {
  .home-hero { grid-template-columns: 1fr; gap: 38px; padding: 54px; }
  .progress-card { max-width: 620px; }
  .product-choice-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .product-choice-card:last-child { grid-column: 1 / -1; }
  .wizard-layout { grid-template-columns: 1fr; }
  .order-summary { position: static; }
}

@media (max-width: 760px) {
  body { background: #f7f7fa; }
  .page-container { width: min(100% - 28px, 1240px); }
  .service-ribbon { min-height: 30px; font-size: 12px; }
  .header-inner { width: calc(100% - 28px); min-height: 68px; }
  .brand-mark { width: 42px; height: 42px; border-radius: 13px; }
  .brand-copy strong { font-size: 19px; }
  .site-header { backdrop-filter: blur(16px); }
  .mobile-menu { border-color: var(--line); background: rgba(255,255,255,.97); }
  .mobile-menu a,
  .mobile-menu button { color: var(--ink); }
  .home-hero { min-height: 0; margin-top: 14px; padding: 38px 24px 28px; border-radius: 25px; }
  .hero-content h1 { margin: 18px 0; font-size: clamp(39px, 12vw, 54px); }
  .hero-content > p { font-size: 16px; line-height: 1.72; }
  .hero-actions { display: grid; gap: 10px; margin-top: 27px; }
  .hero-actions a { width: 100%; justify-content: center; }
  .trust-list { display: grid; gap: 9px; }
  .progress-card { padding: 23px; border-radius: 22px; }
  .steps-strip { padding: 2px 0 30px; }
  .steps-strip .page-container { padding: 24px 20px; border-radius: 20px; }
  .home-steps li { border-left: 0; border-top: 1px solid var(--line); }
  .member-section { padding-bottom: 45px; }
  .invite-banner { padding: 28px 22px; border-radius: 22px; }
  .inner-page { padding: 34px 0 70px; }
  .inner-heading { align-items: flex-start; gap: 16px; }
  .inner-heading h1,
  .help-heading h1 { font-size: 36px; }
  .wizard-steps { padding: 14px 12px; border-radius: 18px; }
  .wizard-steps button > span { width: 33px; height: 33px; }
  .wizard-card { padding: 24px 18px; border-radius: 22px; }
  .panel-heading h2 { font-size: 27px; }
  .product-choice-grid { grid-template-columns: 1fr; }
  .product-choice-card:last-child { grid-column: auto; }
  .product-poster { min-height: 178px; }
  .order-summary { padding: 24px 20px; border-radius: 22px; }
  .metric-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .metric-grid article { min-height: 144px; padding: 20px; }
  .invite-hero { padding: 34px 24px; border-radius: 24px; }
  .invite-hero h1 { font-size: 35px; }
  .invite-main-card,
  .reward-rules,
  .public-content-panel,
  .support-banner { border-radius: 22px; }
  .help-heading { padding-top: 10px; }
  .site-footer { padding-bottom: 92px; }
}

@media (max-width: 460px) {
  .metric-grid { grid-template-columns: 1fr; }
  .home-hero { padding-right: 20px; padding-left: 20px; }
  .hero-content h1 { font-size: 39px; }
  .wizard-card { padding-right: 15px; padding-left: 15px; }
}
