:root {
  --ink: #071713;
  --ink-soft: #0d241e;
  --green: #0f5a43;
  --green-bright: #39d98a;
  --green-pale: #dff4e8;
  --cream: #f5f2e9;
  --paper: #fbfaf6;
  --white: #ffffff;
  --yellow: #ffd565;
  --yellow-pale: #fff1bd;
  --blue-pale: #dcecff;
  --orange-pale: #ffe2c4;
  --purple-pale: #ebe1ff;
  --red: #a83d33;
  --muted: #64716c;
  --line: rgba(7, 23, 19, 0.13);
  --line-dark: rgba(255, 255, 255, 0.15);
  --shadow: 0 24px 70px rgba(7, 23, 19, 0.1);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC",
    "Hiragino Sans GB", "Microsoft YaHei", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

button,
summary {
  font: inherit;
}

img {
  max-width: 100%;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 8px;
  left: 8px;
  padding: 10px 14px;
  color: var(--ink);
  background: var(--yellow);
  border-radius: 10px;
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 3px;
}

#catalog,
#payments,
#process,
#trade-rules,
#orders,
#partners,
#security,
#faq,
#support,
#before-trade,
#lifecycle,
#core-rules,
#status,
#product-rules,
#refunds,
#after-sales,
#trade-faq,
.rule-section {
  scroll-margin-top: 110px;
}

.notice-bar {
  min-height: 38px;
  display: grid;
  place-items: center;
  padding: 7px 24px;
  color: var(--ink);
  background: var(--yellow);
  font-size: 13px;
  line-height: 1.45;
  text-align: center;
}

.notice-bar p {
  margin: 0;
}

.notice-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 7px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(15, 90, 67, 0.12);
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  max-width: 100%;
  height: 76px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
  padding: 0 max(24px, calc((100vw - var(--container)) / 2));
  color: var(--white);
  background: rgba(7, 23, 19, 0.94);
  border-bottom: 1px solid var(--line-dark);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 19px;
  font-weight: 850;
  letter-spacing: 0.11em;
}

.brand-mark {
  position: relative;
  width: 31px;
  height: 31px;
  display: inline-block;
  transform: rotate(45deg);
}

.brand-mark i {
  position: absolute;
  width: 12px;
  height: 12px;
  border: 2px solid currentColor;
  border-radius: 2px;
}

.brand-mark i:nth-child(1) {
  top: 0;
  left: 0;
}

.brand-mark i:nth-child(2) {
  top: 0;
  right: 0;
  background: var(--yellow);
  border-color: var(--yellow);
}

.brand-mark i:nth-child(3) {
  right: 0;
  bottom: 0;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

.desktop-nav a {
  position: relative;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  font-weight: 650;
  transition: color 160ms ease;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: -9px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--yellow);
  transform: scaleX(0);
  transition: transform 160ms ease;
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible {
  color: var(--white);
}

.desktop-nav a:hover::after {
  transform: scaleX(1);
}

.header-action {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  padding: 0 18px;
  color: var(--ink);
  background: var(--yellow);
  border-radius: 12px;
  font-size: 14px;
  font-weight: 800;
}

.mobile-nav {
  display: none;
}

.hero {
  position: relative;
  min-height: 720px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.95fr);
  gap: 70px;
  align-items: center;
  padding: 86px max(24px, calc((100vw - var(--container)) / 2)) 108px;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(
      circle at 86% 17%,
      rgba(57, 217, 138, 0.16),
      transparent 28%
    ),
    radial-gradient(
      circle at 4% 100%,
      rgba(255, 213, 101, 0.1),
      transparent 30%
    ),
    var(--ink);
}

.hero::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0.08;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.4) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.4) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, black, transparent 78%);
}

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

.domain-pill {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 28px;
  padding: 8px 13px;
  color: var(--yellow);
  background: rgba(255, 213, 101, 0.08);
  border: 1px solid rgba(255, 213, 101, 0.26);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.domain-pill span {
  width: 7px;
  height: 7px;
  background: var(--green-bright);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(57, 217, 138, 0.1);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--green);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.18em;
}

.hero .eyebrow,
.payments .eyebrow,
.security .eyebrow,
.independent-store .eyebrow,
.final-cta .eyebrow,
.rules-hero .eyebrow {
  color: var(--yellow);
}

.hero h1 {
  max-width: 710px;
  margin: 0;
  font-size: clamp(46px, 5.3vw, 78px);
  line-height: 1.04;
  letter-spacing: -0.055em;
}

.hero h1 em {
  display: block;
  margin-top: 9px;
  color: var(--yellow);
  font-style: normal;
}

.lead {
  max-width: 660px;
  margin: 27px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 18px;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 34px;
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 14px;
  font-size: 15px;
  font-weight: 800;
  transition:
    transform 160ms ease,
    background 160ms ease,
    border-color 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: var(--ink);
  background: var(--yellow);
}

.button-primary:hover {
  background: #ffe08b;
}

.button-quiet {
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.18);
}

.button-quiet:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
}

.button-dark {
  color: var(--white);
  background: var(--ink);
}

.button-light {
  color: var(--ink);
  background: var(--yellow);
}

.hero-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 26px;
  margin-top: 35px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 13px;
}

.hero-notes span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero-notes b {
  color: var(--green-bright);
  font-size: 10px;
  letter-spacing: 0.1em;
}

.hero-console {
  width: 100%;
  max-width: 500px;
  justify-self: end;
  padding: 22px;
  background: linear-gradient(
    155deg,
    rgba(255, 255, 255, 0.12),
    rgba(255, 255, 255, 0.035)
  );
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 31px;
  box-shadow: 0 45px 90px rgba(0, 0, 0, 0.3);
  transform: rotate(1.2deg);
  backdrop-filter: blur(18px);
}

.console-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 18px;
}

.console-brand {
  display: flex;
  align-items: center;
  gap: 11px;
}

.console-brand div {
  display: flex;
  flex-direction: column;
}

.console-brand b {
  font-size: 14px;
}

.console-brand small {
  color: rgba(255, 255, 255, 0.52);
  font-size: 11px;
}

.mini-mark {
  width: 34px;
  height: 34px;
  background:
    linear-gradient(var(--yellow), var(--yellow)) 6px 6px / 8px 8px no-repeat,
    linear-gradient(var(--green-bright), var(--green-bright)) 20px 6px / 8px 8px
      no-repeat,
    linear-gradient(var(--white), var(--white)) 20px 20px / 8px 8px no-repeat;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 9px;
}

.online-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 9px;
  color: var(--green-bright);
  background: rgba(57, 217, 138, 0.08);
  border: 1px solid rgba(57, 217, 138, 0.18);
  border-radius: 999px;
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.11em;
}

.online-pill i {
  width: 6px;
  height: 6px;
  background: currentColor;
  border-radius: 50%;
}

.console-balance {
  display: flex;
  flex-direction: column;
  padding: 24px;
  color: var(--ink);
  background: var(--yellow);
  border-radius: 20px;
}

.console-balance small {
  font-size: 11px;
  font-weight: 750;
  opacity: 0.68;
}

.console-balance strong {
  margin-top: 4px;
  font-size: 22px;
  line-height: 1.3;
}

.console-balance span {
  margin-top: 7px;
  font-size: 12px;
  opacity: 0.65;
}

.console-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 10px;
}

.console-grid > div {
  min-height: 105px;
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  column-gap: 10px;
  align-content: center;
  padding: 15px;
  background: rgba(255, 255, 255, 0.075);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
}

.tile-symbol {
  grid-row: 1 / 3;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  align-self: center;
  color: var(--ink);
  background: var(--green-bright);
  border-radius: 10px;
  font-size: 12px;
  font-weight: 900;
}

.console-grid > div:nth-child(2) .tile-symbol {
  background: var(--blue-pale);
}

.console-grid > div:nth-child(3) .tile-symbol {
  background: var(--yellow-pale);
}

.console-grid > div:nth-child(4) .tile-symbol {
  background: var(--purple-pale);
}

.console-grid b {
  align-self: end;
  font-size: 13px;
}

.console-grid small {
  color: rgba(255, 255, 255, 0.5);
  font-size: 10px;
}

.console-order {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 11px;
  align-items: center;
  margin-top: 10px;
  padding: 15px 16px;
  color: var(--ink);
  background: var(--paper);
  border-radius: 16px;
}

.order-check {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--green);
  border-radius: 50%;
  font-size: 13px;
  font-weight: 900;
}

.console-order p {
  display: flex;
  flex-direction: column;
  margin: 0;
}

.console-order b {
  font-size: 12px;
}

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

.order-arrow {
  color: var(--green);
  font-weight: 900;
}

.snapshot {
  position: relative;
  z-index: 3;
  max-width: var(--container);
  display: grid;
  grid-template-columns: 1.1fr repeat(4, 1fr);
  gap: 0;
  align-items: stretch;
  margin: -46px auto 0;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.snapshot-intro,
.snapshot-stat {
  min-height: 125px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 24px;
  border-right: 1px solid var(--line);
}

.snapshot-intro {
  color: var(--white);
  background: var(--green);
}

.snapshot-intro span {
  color: var(--yellow);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.15em;
}

.snapshot-intro p,
.snapshot-note {
  margin: 5px 0 0;
}

.snapshot-intro p {
  font-size: 14px;
  font-weight: 750;
}

.snapshot-stat strong {
  font-size: 30px;
  line-height: 1;
  letter-spacing: -0.04em;
}

.snapshot-stat sup {
  color: var(--green);
  font-size: 14px;
}

.snapshot-stat span {
  margin-top: 9px;
  color: var(--muted);
  font-size: 12px;
}

.snapshot-note {
  grid-column: 1 / -1;
  padding: 10px 24px;
  color: var(--muted);
  background: #efede5;
  font-size: 11px;
  text-align: center;
}

.section {
  max-width: var(--container);
  margin: 0 auto;
  padding: 116px 0;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(300px, 0.7fr);
  gap: 90px;
  align-items: end;
  margin-bottom: 50px;
}

.section-heading h2,
.payments h2,
.order-heading h2,
.faq-heading h2,
.support h2,
.security h2,
.independent-store h2,
.final-cta h2 {
  margin: 0;
  font-size: clamp(37px, 4vw, 58px);
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.section-heading > p,
.payments-head > p:last-child,
.faq-heading > p:last-child,
.support > div > p:last-child,
.independent-copy > p,
.security-copy > p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.85;
}

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

.catalog-card {
  position: relative;
  min-height: 360px;
  display: flex;
  flex-direction: column;
  padding: 32px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.catalog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(7, 23, 19, 0.08);
}

.catalog-card::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 5px;
  content: "";
  background: var(--green);
}

.accent-yellow::before {
  background: #e1a900;
}

.accent-blue::before {
  background: #4787c9;
}

.accent-orange::before {
  background: #d67a31;
}

.accent-purple::before {
  background: #7157a8;
}

.accent-ink::before {
  background: var(--ink);
}

.catalog-card-large {
  grid-row: span 2;
  min-height: 738px;
  color: var(--white);
  background:
    radial-gradient(circle at 100% 0, rgba(57, 217, 138, 0.2), transparent 30%),
    var(--green);
  border-color: transparent;
}

.catalog-card-large::before {
  background: var(--yellow);
}

.card-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.card-number {
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.catalog-card-large .card-number {
  color: rgba(255, 255, 255, 0.54);
}

.status-badge,
.soft-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 5px 9px;
  color: var(--green);
  background: var(--green-pale);
  border-radius: 999px;
  font-size: 10px;
  font-weight: 800;
}

.status-badge i {
  width: 6px;
  height: 6px;
  background: currentColor;
  border-radius: 50%;
}

.catalog-card-large .status-badge {
  color: var(--green-bright);
  background: rgba(57, 217, 138, 0.12);
}

.soft-badge {
  color: #7157a8;
  background: var(--purple-pale);
}

.catalog-card h3 {
  margin: 30px 0 13px;
  font-size: 27px;
  line-height: 1.2;
  letter-spacing: -0.025em;
}

.catalog-card > p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.catalog-card-large > p {
  max-width: 520px;
  color: rgba(255, 255, 255, 0.72);
}

.platform-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 34px;
}

.platform-cloud span {
  padding: 9px 12px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 11px;
  font-size: 12px;
  font-weight: 700;
}

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

.feature-list li {
  position: relative;
  padding-left: 19px;
  color: var(--ink-soft);
  font-size: 13px;
}

.feature-list li::before {
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 6px;
  height: 6px;
  content: "";
  background: var(--green);
  border-radius: 50%;
}

.feature-list.compact {
  margin-top: 20px;
}

.card-foot {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  margin-top: auto;
  padding-top: 28px;
}

.card-foot b {
  font-size: 19px;
}

.card-foot small {
  color: var(--muted);
  font-size: 10px;
  text-align: right;
}

.catalog-card-large .card-foot small {
  color: rgba(255, 255, 255, 0.5);
}

.mini-options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
  padding-top: 26px;
}

.mini-options span {
  padding: 7px 10px;
  color: #8f4d18;
  background: var(--orange-pale);
  border-radius: 9px;
  font-size: 11px;
  font-weight: 750;
}

.micro-copy {
  margin-top: auto !important;
  padding-top: 24px;
  font-size: 12px;
}

.availability-note {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 15px;
  align-items: center;
  margin-top: 18px;
  padding: 20px 22px;
  background: var(--yellow-pale);
  border: 1px solid rgba(168, 121, 0, 0.2);
  border-radius: var(--radius-md);
}

.availability-note > span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: var(--yellow);
  border-radius: 50%;
  font-weight: 900;
}

.availability-note p {
  display: flex;
  flex-direction: column;
  margin: 0;
  color: #63572d;
  font-size: 13px;
}

.availability-note b {
  color: var(--ink);
  font-size: 14px;
}

.payments {
  max-width: none;
  padding: 112px max(24px, calc((100vw - var(--container)) / 2));
  color: var(--white);
  background:
    radial-gradient(
      circle at 85% 15%,
      rgba(57, 217, 138, 0.15),
      transparent 24%
    ),
    var(--ink);
}

.payments-head {
  max-width: 820px;
}

.payments-head > p:last-child {
  max-width: 740px;
  margin-top: 23px;
  color: rgba(255, 255, 255, 0.65);
}

.payment-flow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin: 50px 0 0;
  padding: 0;
  list-style: none;
}

.payment-flow li {
  min-height: 210px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 19px;
}

.payment-flow li > span {
  display: block;
  margin-bottom: 42px;
  color: var(--green-bright);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.payment-flow b {
  font-size: 16px;
}

.payment-flow p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
  line-height: 1.7;
}

.payment-warnings {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 14px;
}

.payment-warnings > div {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 20px;
  padding: 24px;
  background: rgba(255, 213, 101, 0.08);
  border: 1px solid rgba(255, 213, 101, 0.18);
  border-radius: 19px;
}

.payment-warnings > div > span {
  color: var(--yellow);
  font-size: 13px;
  font-weight: 850;
}

.payment-warnings ul {
  display: grid;
  gap: 7px;
  margin: 0;
  padding: 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 12px;
  list-style: none;
}

.payment-warnings li::before {
  margin-right: 8px;
  color: var(--yellow);
  content: "—";
}

.balance-explainer {
  margin: 24px 0 0;
  padding: 18px 21px;
  color: rgba(255, 255, 255, 0.65);
  background: rgba(57, 217, 138, 0.07);
  border-left: 3px solid var(--green-bright);
  font-size: 13px;
}

.balance-explainer b {
  color: var(--green-bright);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  margin: 0;
  padding: 0;
  counter-reset: process;
  list-style: none;
}

.process-grid li {
  min-height: 240px;
  padding: 27px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}

.process-grid span {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  margin-bottom: 44px;
  color: var(--white);
  background: var(--green);
  border-radius: 12px;
  font-size: 12px;
  font-weight: 850;
}

.process-grid b {
  display: block;
  font-size: 17px;
}

.process-grid p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.order-section {
  padding-top: 0;
}

.order-heading {
  max-width: 650px;
  margin-bottom: 38px;
}

.status-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.status-grid article {
  min-height: 205px;
  padding: 25px 21px;
  background: var(--paper);
  border-right: 1px solid var(--line);
}

.status-grid article:last-child {
  border-right: 0;
}

.status-dot {
  width: 10px;
  height: 10px;
  display: block;
  margin-bottom: 44px;
  background: #b5bcb9;
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(100, 113, 108, 0.1);
}

.status-dot.processing {
  background: #4787c9;
  box-shadow: 0 0 0 6px rgba(71, 135, 201, 0.12);
}

.status-dot.delivered {
  background: var(--green);
  box-shadow: 0 0 0 6px rgba(15, 90, 67, 0.12);
}

.status-dot.review {
  background: #d67a31;
  box-shadow: 0 0 0 6px rgba(214, 122, 49, 0.12);
}

.status-dot.refund {
  background: #7157a8;
  box-shadow: 0 0 0 6px rgba(113, 87, 168, 0.12);
}

.status-grid b {
  display: block;
  font-size: 14px;
}

.status-grid p {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.65;
}

.order-note {
  margin: 17px 0 0;
  color: var(--muted);
  font-size: 12px;
  text-align: center;
}

.independent-store {
  max-width: none;
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 90px;
  align-items: center;
  padding: 110px max(24px, calc((100vw - var(--container)) / 2));
  color: var(--white);
  background: var(--green);
}

.independent-copy > p {
  max-width: 680px;
  margin-top: 23px;
  color: rgba(255, 255, 255, 0.7);
}

.privacy-points {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 30px;
}

.privacy-points span {
  padding: 8px 11px;
  color: var(--ink);
  background: var(--yellow);
  border-radius: 9px;
  font-size: 11px;
  font-weight: 800;
}

.store-window {
  padding: 15px;
  color: var(--ink);
  background: var(--paper);
  border-radius: 22px;
  box-shadow: 0 32px 70px rgba(0, 0, 0, 0.22);
}

.store-window-top {
  display: flex;
  gap: 6px;
  align-items: center;
  padding: 4px 5px 14px;
  border-bottom: 1px solid var(--line);
}

.store-window-top i {
  width: 8px;
  height: 8px;
  background: #d7d8d4;
  border-radius: 50%;
}

.store-window-top i:first-child {
  background: var(--yellow);
}

.store-window-top span {
  margin-left: auto;
  color: var(--muted);
  font-size: 10px;
  font-weight: 750;
}

.store-row {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  padding: 18px 10px;
  border-bottom: 1px solid var(--line);
  font-size: 12px;
}

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

.store-row span {
  color: var(--muted);
}

.store-row b {
  color: var(--green);
}

.security {
  max-width: none;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 80px;
  align-items: start;
  padding: 116px max(24px, calc((100vw - var(--container)) / 2));
  color: var(--white);
  background: var(--ink);
}

.security-copy {
  position: sticky;
  top: 112px;
}

.security-copy > p {
  margin-top: 23px;
  color: rgba(255, 255, 255, 0.64);
}

.security-copy > a {
  display: inline-flex;
  gap: 12px;
  margin-top: 26px;
  color: var(--yellow);
  font-size: 14px;
  font-weight: 800;
}

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

.security-grid > div {
  min-height: 190px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 18px;
}

.security-grid span {
  color: var(--green-bright);
  font-size: 10px;
  font-weight: 850;
}

.security-grid b {
  display: block;
  margin-top: 38px;
  font-size: 15px;
}

.security-grid p {
  margin: 7px 0 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 12px;
}

.faq-heading {
  max-width: 680px;
  margin-bottom: 42px;
}

.faq-heading > p:last-child {
  margin-top: 15px;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  align-items: start;
}

.faq-grid > div {
  display: grid;
  gap: 10px;
}

.faq details {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 15px;
}

.faq summary {
  position: relative;
  min-height: 66px;
  display: flex;
  align-items: center;
  padding: 17px 50px 17px 20px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 780;
  list-style: none;
}

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

.faq summary::after {
  position: absolute;
  right: 20px;
  width: 25px;
  height: 25px;
  display: grid;
  place-items: center;
  content: "+";
  color: var(--green);
  background: var(--green-pale);
  border-radius: 50%;
  font-size: 17px;
  transition: transform 160ms ease;
}

.faq details[open] summary::after {
  content: "−";
  transform: rotate(180deg);
}

.faq details p {
  margin: 0;
  padding: 0 20px 20px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.8;
}

.faq-more {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 18px;
  padding: 23px 25px;
  background: var(--yellow-pale);
  border-radius: var(--radius-md);
}

.faq-more p {
  margin: 0;
  font-size: 14px;
  font-weight: 750;
}

.support {
  display: grid;
  grid-template-columns: 1fr 0.75fr;
  gap: 80px;
  align-items: center;
  padding-top: 0;
}

.support > div > p:last-child {
  max-width: 670px;
  margin-top: 20px;
}

.support-checklist {
  display: grid;
  gap: 10px;
  padding: 25px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}

.support-checklist p {
  display: flex;
  align-items: center;
  gap: 11px;
  margin: 0;
  font-size: 13px;
  font-weight: 700;
}

.support-checklist p span {
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--green);
  border-radius: 8px;
  font-size: 10px;
}

.support-checklist small {
  margin-top: 8px;
  padding: 10px 12px;
  color: var(--red);
  background: #fff0ed;
  border-radius: 9px;
  font-size: 10px;
}

.final-cta {
  max-width: var(--container);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 70px;
  margin-bottom: 90px;
  padding: 62px;
  color: var(--white);
  background:
    radial-gradient(
      circle at 100% 0,
      rgba(57, 217, 138, 0.18),
      transparent 32%
    ),
    var(--green);
  border-radius: var(--radius-xl);
}

.final-cta h2 {
  font-size: clamp(34px, 4vw, 52px);
}

.final-cta > div > p:last-child {
  max-width: 650px;
  margin: 15px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
}

.final-actions {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.text-link-light {
  color: rgba(255, 255, 255, 0.75);
  font-size: 12px;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.site-footer {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 30px 60px;
  align-items: center;
  padding: 56px max(24px, calc((100vw - var(--container)) / 2)) 34px;
  color: var(--white);
  background: var(--ink);
}

.footer-main p {
  margin: 13px 0 0;
  color: rgba(255, 255, 255, 0.46);
  font-size: 12px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 26px;
  justify-content: end;
  color: rgba(255, 255, 255, 0.66);
  font-size: 12px;
}

.footer-links a:hover {
  color: var(--yellow);
}

.footer-legal {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 25px;
  color: rgba(255, 255, 255, 0.34);
  border-top: 1px solid var(--line-dark);
  font-size: 10px;
}

/* Transaction rules preview */
.trade-preview {
  max-width: var(--container);
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(460px, 1.08fr);
  gap: 70px;
  align-items: center;
  margin-top: 20px;
  padding: 70px;
  color: var(--white);
  background:
    radial-gradient(
      circle at 95% 4%,
      rgba(57, 217, 138, 0.16),
      transparent 34%
    ),
    var(--ink);
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.trade-preview h2 {
  margin: 0;
  font-size: clamp(38px, 4vw, 58px);
  line-height: 1.06;
  letter-spacing: -0.05em;
}

.trade-preview-copy > p:not(.eyebrow) {
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.85;
}

.trade-principles {
  display: grid;
  gap: 8px;
  margin: 30px 0;
}

.trade-principles span {
  min-height: 44px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 14px;
  color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid var(--line-dark);
  border-radius: 10px;
  font-size: 13px;
  font-weight: 700;
}

.trade-principles b {
  color: var(--green-bright);
  font-size: 10px;
  letter-spacing: 0.08em;
}

.trade-preview-panel {
  padding: 23px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 25px;
  box-shadow: 0 34px 80px rgba(0, 0, 0, 0.25);
  transform: rotate(1.1deg);
}

.trade-panel-top,
.trade-panel-list div,
.trade-panel-status {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.trade-panel-top {
  margin-bottom: 16px;
  font-size: 12px;
  font-weight: 800;
}

.trade-panel-top i {
  padding: 4px 8px;
  color: var(--green);
  background: var(--green-pale);
  border-radius: 99px;
  font-size: 8px;
  font-style: normal;
  letter-spacing: 0.12em;
}

.trade-panel-product {
  display: grid;
  gap: 5px;
  padding: 20px;
  background: var(--yellow);
  border-radius: 17px;
}

.trade-panel-product small,
.trade-panel-product span {
  color: rgba(7, 23, 19, 0.62);
  font-size: 10px;
}

.trade-panel-product strong {
  font-size: 20px;
}

.trade-panel-list {
  display: grid;
  gap: 0;
  margin: 13px 0;
  border: 1px solid var(--line);
  border-radius: 15px;
  overflow: hidden;
}

.trade-panel-list div {
  min-height: 47px;
  padding: 0 14px;
  border-bottom: 1px solid var(--line);
  font-size: 11px;
}

.trade-panel-list div:last-child {
  border-bottom: 0;
}

.trade-panel-list dt {
  color: var(--muted);
}

.trade-panel-list dd {
  margin: 0;
  font-weight: 750;
}

.trade-panel-status {
  gap: 8px;
}

.trade-panel-status span {
  position: relative;
  flex: 1;
  padding-top: 16px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 800;
  text-align: center;
}

.trade-panel-status span::before {
  position: absolute;
  top: 0;
  left: 50%;
  width: 9px;
  height: 9px;
  content: "";
  background: #c9cec9;
  border-radius: 50%;
  transform: translateX(-50%);
}

.trade-panel-status span::after {
  position: absolute;
  z-index: -1;
  top: 4px;
  right: 50%;
  width: 100%;
  height: 1px;
  content: "";
  background: #c9cec9;
}

.trade-panel-status span:first-child::after {
  display: none;
}

.trade-panel-status .is-done::before {
  background: var(--green);
}

.trade-panel-status .is-current::before {
  background: var(--yellow);
  box-shadow: 0 0 0 4px rgba(255, 213, 101, 0.28);
}

.trade-preview-panel > p {
  margin: 17px 0 0;
  padding: 11px 12px;
  color: var(--muted);
  background: #efede5;
  border-radius: 10px;
  font-size: 10px;
}

/* Transaction rules */
.trade-body {
  background: var(--paper);
}

.trade-header {
  top: 0;
}

.trade-hero {
  position: relative;
  min-height: 690px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(440px, 0.82fr);
  gap: 80px;
  align-items: center;
  padding: 84px max(24px, calc((100vw - var(--container)) / 2)) 108px;
  color: var(--white);
  background:
    radial-gradient(
      circle at 88% 14%,
      rgba(57, 217, 138, 0.18),
      transparent 29%
    ),
    radial-gradient(
      circle at 4% 100%,
      rgba(255, 213, 101, 0.1),
      transparent 32%
    ),
    var(--ink);
  overflow: hidden;
}

.trade-hero::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0.07;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.4) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.4) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, black, transparent 86%);
}

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

.trade-hero h1 {
  max-width: 760px;
  margin: 14px 0 0;
  font-size: clamp(48px, 5.3vw, 77px);
  line-height: 1.04;
  letter-spacing: -0.058em;
}

.trade-hero h1 em {
  display: inline-block;
  color: var(--yellow);
  font-style: normal;
}

html[lang="en"] .trade-hero h1 {
  font-size: clamp(46px, 4.6vw, 66px);
}

.trade-lead {
  max-width: 720px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 17px;
  line-height: 1.9;
}

.trade-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}

.trade-meta span {
  padding: 7px 11px;
  color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  font-size: 10px;
  font-weight: 700;
}

.trade-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.trade-order-card {
  padding: 24px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 28px;
  box-shadow: 0 38px 90px rgba(0, 0, 0, 0.27);
  transform: rotate(1.3deg);
}

.trade-order-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 17px;
}

.trade-order-top > div {
  display: flex;
  align-items: center;
  gap: 10px;
}

.trade-order-top p {
  display: grid;
  margin: 0;
  line-height: 1.25;
}

.trade-order-top b {
  font-size: 13px;
}

.trade-order-top small {
  color: var(--muted);
  font-size: 9px;
}

.trade-order-summary {
  padding: 22px;
  background: var(--yellow);
  border-radius: 18px;
}

.trade-order-summary small {
  color: rgba(7, 23, 19, 0.58);
  font-size: 9px;
  font-weight: 700;
}

.trade-order-summary h2 {
  margin: 5px 0 3px;
  font-size: 24px;
  line-height: 1.2;
}

.trade-order-summary p {
  margin: 0;
  color: rgba(7, 23, 19, 0.62);
  font-size: 10px;
}

.trade-order-data {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  margin: 13px 0;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
}

.trade-order-data div {
  min-height: 72px;
  display: grid;
  align-content: center;
  gap: 4px;
  padding: 13px;
  background: var(--paper);
}

.trade-order-data dt {
  color: var(--muted);
  font-size: 9px;
}

.trade-order-data dd {
  margin: 0;
  font-size: 12px;
  font-weight: 800;
}

.trade-order-progress {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
  padding: 12px;
  background: #efede5;
  border-radius: 13px;
}

.trade-order-progress span {
  display: grid;
  justify-items: center;
  gap: 6px;
  color: var(--muted);
  font-size: 8px;
  font-weight: 800;
}

.trade-order-progress i {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  background: #d2d5cf;
  border-radius: 8px;
  font-size: 9px;
  font-style: normal;
}

.trade-order-progress .is-active {
  color: var(--ink);
}

.trade-order-progress .is-active i {
  color: var(--white);
  background: var(--green);
}

.trade-order-tip {
  margin: 13px 0 0;
  padding: 11px 12px;
  color: var(--red);
  background: #fff0ed;
  border-radius: 11px;
  font-size: 9px;
  font-weight: 700;
}

.trade-anchor-bar {
  position: relative;
  z-index: 3;
  max-width: var(--container);
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 1px;
  margin: -38px auto 0;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.trade-anchor-bar a {
  min-height: 76px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 3px;
  padding: 12px 8px;
  background: var(--paper);
  font-size: 11px;
  font-weight: 800;
  text-align: center;
}

.trade-anchor-bar a:hover {
  background: var(--green-pale);
}

.trade-anchor-bar span {
  color: var(--green);
  font-size: 9px;
  letter-spacing: 0.08em;
}

.trade-check-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}

.trade-check-grid article {
  min-height: 230px;
  display: flex;
  flex-direction: column;
  padding: 24px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}

.trade-check-grid article > span,
.trade-rule-cards article > span {
  color: var(--green);
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.1em;
}

.trade-check-grid b {
  margin-top: auto;
  font-size: 17px;
}

.trade-check-grid p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.trade-callout {
  margin-top: 16px;
  padding: 20px 22px;
  color: var(--ink);
  background: var(--yellow-pale);
  border-radius: var(--radius-md);
  font-size: 13px;
}

.trade-callout b {
  display: block;
}

.trade-lifecycle,
.trade-core-rules,
.trade-status,
.trade-products,
.trade-refunds,
.trade-after-sales,
.trade-faq {
  max-width: var(--container);
}

.trade-lifecycle {
  max-width: none;
  padding-right: max(24px, calc((100vw - var(--container)) / 2));
  padding-left: max(24px, calc((100vw - var(--container)) / 2));
  color: var(--white);
  background: var(--green);
}

.trade-section-title {
  max-width: 820px;
  margin-bottom: 44px;
}

.trade-section-title h2,
.trade-refund-copy h2,
.trade-after-sales h2 {
  margin: 0;
  font-size: clamp(38px, 4vw, 58px);
  line-height: 1.07;
  letter-spacing: -0.05em;
}

.trade-section-title > p:last-child,
.trade-refund-copy > p:not(.eyebrow),
.trade-after-sales > div:first-child > p:last-child {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.85;
}

.trade-lifecycle .trade-section-title > p:last-child {
  color: rgba(255, 255, 255, 0.68);
}

.trade-timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 1px;
  margin: 0;
  padding: 0;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-lg);
  overflow: hidden;
  list-style: none;
}

.trade-timeline li {
  min-height: 255px;
  display: flex;
  flex-direction: column;
  padding: 20px;
  background: var(--green);
}

.trade-timeline li > span {
  color: var(--yellow);
  font-size: 10px;
  font-weight: 850;
}

.trade-timeline div {
  margin-top: auto;
}

.trade-timeline b {
  font-size: 14px;
}

.trade-timeline p {
  margin: 9px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 11px;
}

.trade-rule-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.trade-rule-cards article {
  padding: 30px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}

.trade-rule-cards article:nth-child(1),
.trade-rule-cards article:nth-child(4) {
  background: var(--yellow-pale);
}

.trade-rule-cards article:nth-child(2),
.trade-rule-cards article:nth-child(5) {
  background: var(--green-pale);
}

.trade-rule-cards h3 {
  margin: 14px 0 0;
  font-size: 23px;
  letter-spacing: -0.025em;
}

.trade-rule-cards p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.trade-rule-cards ul {
  display: grid;
  gap: 6px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.trade-rule-cards li {
  position: relative;
  padding-left: 16px;
  font-size: 11px;
  font-weight: 650;
}

.trade-rule-cards li::before {
  position: absolute;
  top: 0.73em;
  left: 0;
  width: 5px;
  height: 5px;
  content: "";
  background: var(--green);
  border-radius: 50%;
}

.trade-status {
  max-width: none;
  padding-right: max(24px, calc((100vw - var(--container)) / 2));
  padding-left: max(24px, calc((100vw - var(--container)) / 2));
  background: var(--cream);
}

.trade-status .section-heading {
  max-width: var(--container);
  margin-right: auto;
  margin-left: auto;
}

.trade-status-board {
  max-width: var(--container);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin: 0 auto;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.trade-status-board article {
  min-height: 250px;
  display: flex;
  flex-direction: column;
  padding: 25px;
  background: var(--paper);
}

.trade-status-board span {
  width: max-content;
  padding: 6px 9px;
  background: #efede5;
  border-radius: 99px;
  font-size: 9px;
  font-weight: 850;
}

.trade-status-board article[data-state="processing"] span {
  background: var(--blue-pale);
}

.trade-status-board article[data-state="payment"] span {
  background: var(--yellow-pale);
}

.trade-status-board article[data-state="delivered"] span {
  background: var(--green-pale);
}

.trade-status-board article[data-state="failed"] span {
  color: var(--red);
  background: #fff0ed;
}

.trade-status-board article[data-state="cancelled"] span,
.trade-status-board article[data-state="expired"] span {
  background: #efede5;
}

.trade-status-board article[data-state="review"] span {
  background: var(--yellow-pale);
}

.trade-status-board article[data-state="refund"] span {
  background: var(--purple-pale);
}

.trade-status-board b {
  margin-top: auto;
  font-size: 16px;
}

.trade-status-board p {
  margin: 9px 0 0;
  color: var(--muted);
  font-size: 11px;
}

.trade-table-wrap {
  overflow-x: auto;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}

.trade-table-wrap:focus-visible {
  outline: 3px solid rgba(14, 100, 75, 0.28);
  outline-offset: 3px;
}

.trade-table-hint {
  display: none;
}

.trade-table {
  width: 100%;
  min-width: 900px;
  border-collapse: collapse;
  text-align: left;
}

.trade-table th,
.trade-table td {
  padding: 20px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}

.trade-table th:last-child,
.trade-table td:last-child {
  border-right: 0;
}

.trade-table tr:last-child td {
  border-bottom: 0;
}

.trade-table th {
  color: var(--white);
  background: var(--ink);
  font-size: 10px;
  letter-spacing: 0.04em;
}

.trade-table td {
  color: var(--muted);
  font-size: 12px;
}

.trade-table td:first-child {
  width: 18%;
  color: var(--ink);
}

.trade-table td:first-child small {
  display: block;
  margin-top: 7px;
  color: var(--green);
  font-size: 8px;
  font-weight: 850;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.trade-product-notes {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  gap: 12px;
  margin-top: 16px;
}

.trade-product-notes article {
  padding: 26px;
  background: var(--green-pale);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}

.trade-product-notes article:last-child {
  background: var(--yellow-pale);
}

.trade-product-notes span {
  color: var(--green);
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.08em;
}

.trade-product-notes h3 {
  margin: 10px 0 0;
  font-size: 21px;
}

.trade-product-notes p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.trade-product-notes ul {
  display: grid;
  gap: 8px;
  margin: 17px 0 0;
  padding-left: 18px;
  color: var(--muted);
  font-size: 11px;
}

.trade-refunds {
  max-width: none;
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.28fr);
  gap: 80px;
  padding-right: max(24px, calc((100vw - var(--container)) / 2));
  padding-left: max(24px, calc((100vw - var(--container)) / 2));
  color: var(--white);
  background: var(--ink);
}

.trade-refund-copy {
  align-self: start;
}

.trade-refund-copy > p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.65);
}

.trade-refund-copy > a {
  display: inline-flex;
  margin-top: 23px;
  color: var(--yellow);
  font-size: 12px;
  font-weight: 750;
}

.trade-refund-matrix {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.trade-refund-matrix article {
  min-height: 190px;
  display: flex;
  flex-direction: column;
  padding: 22px;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-md);
}

.trade-refund-matrix span {
  color: var(--green-bright);
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.05em;
}

.trade-refund-matrix b {
  margin-top: auto;
  font-size: 15px;
}

.trade-refund-matrix p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 11px;
}

.trade-after-sales {
  display: grid;
  grid-template-columns: minmax(300px, 0.82fr) minmax(0, 1.18fr);
  gap: 70px;
  align-items: start;
}

.trade-evidence-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.trade-evidence-grid article {
  min-height: 155px;
  display: flex;
  flex-direction: column;
  padding: 20px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}

.trade-evidence-grid span {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--green);
  border-radius: 9px;
  font-size: 10px;
  font-weight: 800;
}

.trade-evidence-grid b {
  margin-top: auto;
  font-size: 14px;
}

.trade-evidence-grid p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 10px;
}

.trade-danger-note {
  grid-column: 1 / -1;
  margin-top: -40px;
  padding: 18px 20px;
  color: var(--red);
  background: #fff0ed;
  border-radius: var(--radius-md);
  font-size: 12px;
}

.trade-faq {
  padding-top: 30px;
}

.trade-faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  align-items: start;
  margin-top: 35px;
}

.trade-faq details {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}

.trade-faq summary {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 20px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 780;
  list-style: none;
}

.trade-faq summary::-webkit-details-marker {
  display: none;
}

.trade-faq summary::after {
  width: 25px;
  height: 25px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  content: "+";
  color: var(--green);
  background: var(--green-pale);
  border-radius: 50%;
}

.trade-faq details[open] summary::after {
  content: "−";
}

.trade-faq details p {
  margin: 0;
  padding: 0 20px 20px;
  color: var(--muted);
  font-size: 12px;
}

.trade-final-cta {
  margin-top: 25px;
}

/* Rules */
.rules-body {
  background: var(--paper);
}

.rules-header {
  position: sticky;
  z-index: 100;
  top: 0;
}

.rules-hero {
  padding: 80px max(24px, calc((100vw - var(--container)) / 2)) 70px;
  color: var(--white);
  background:
    radial-gradient(
      circle at 88% 8%,
      rgba(57, 217, 138, 0.18),
      transparent 30%
    ),
    var(--ink);
}

.rules-hero-inner {
  max-width: 850px;
}

.rules-hero h1 {
  margin: 0;
  font-size: clamp(43px, 5vw, 72px);
  line-height: 1.06;
  letter-spacing: -0.05em;
}

.rules-hero p:last-child {
  max-width: 740px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 16px;
}

.rules-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 29px;
}

.rules-meta span,
.rules-meta a {
  padding: 7px 10px;
  color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 9px;
  font-size: 11px;
  font-weight: 700;
}

.rules-meta a {
  color: var(--yellow);
}

.rules-alert {
  max-width: var(--container);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 15px;
  align-items: center;
  margin: -1px auto 0;
  padding: 20px 22px;
  color: #5e512a;
  background: var(--yellow-pale);
  border-radius: 0 0 var(--radius-md) var(--radius-md);
}

.rules-alert strong {
  width: 35px;
  height: 35px;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: var(--yellow);
  border-radius: 50%;
  font-size: 14px;
}

.rules-alert p {
  margin: 0;
  font-size: 13px;
}

.rules-layout {
  max-width: var(--container);
  display: grid;
  grid-template-columns: 290px minmax(0, 1fr);
  gap: 70px;
  align-items: start;
  margin: 0 auto;
  padding: 70px 0 110px;
}

.rules-toc {
  position: sticky;
  top: 104px;
}

.rules-toc > p {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.15em;
}

.rules-toc nav {
  display: grid;
  gap: 2px;
}

.rules-toc a {
  padding: 8px 11px;
  color: var(--muted);
  border-left: 2px solid var(--line);
  font-size: 12px;
  line-height: 1.35;
}

.rules-toc a:hover {
  color: var(--green);
  background: var(--green-pale);
  border-left-color: var(--green);
}

.rules-content {
  min-width: 0;
}

.rule-section {
  padding: 0 0 40px;
  margin-bottom: 40px;
  border-bottom: 1px solid var(--line);
}

.rule-section:last-child {
  margin-bottom: 0;
  border-bottom: 0;
}

.rule-title {
  display: grid;
  grid-template-columns: 43px 1fr;
  gap: 15px;
  align-items: center;
  margin-bottom: 18px;
}

.rule-title span {
  width: 43px;
  height: 43px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--green);
  border-radius: 13px;
  font-size: 11px;
  font-weight: 850;
}

.rule-title h2 {
  margin: 0;
  font-size: 25px;
  line-height: 1.25;
  letter-spacing: -0.025em;
}

.rule-section > p,
.rule-section li {
  color: #45514d;
  font-size: 15px;
  line-height: 1.85;
}

.rule-section > p {
  margin: 0 0 14px;
}

.rule-section ul,
.rule-section ol {
  display: grid;
  gap: 8px;
  margin: 15px 0 0;
  padding-left: 22px;
}

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

.rule-callout {
  margin-top: 18px;
  padding: 17px 19px;
  color: #36554a;
  background: var(--green-pale);
  border-left: 3px solid var(--green);
  border-radius: 0 12px 12px 0;
  font-size: 13px;
}

.rule-warning {
  color: #6d5316;
  background: var(--yellow-pale);
  border-left-color: #d39a00;
}

.rule-table {
  width: 100%;
  margin-top: 18px;
  border-collapse: collapse;
  font-size: 13px;
}

.rule-table th,
.rule-table td {
  padding: 13px 14px;
  border: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.rule-table th {
  background: #efede5;
}

/* Error page */
.error-page {
  min-height: 100vh;
  display: grid;
  grid-template-rows: auto 1fr auto;
  color: var(--white);
  background:
    radial-gradient(
      circle at 80% 15%,
      rgba(57, 217, 138, 0.16),
      transparent 30%
    ),
    var(--ink);
}

.error-header,
.error-footer {
  padding: 26px max(24px, calc((100vw - var(--container)) / 2));
}

.error-main {
  max-width: 760px;
  display: grid;
  align-content: center;
  padding: 60px max(24px, calc((100vw - var(--container)) / 2));
}

.error-code {
  color: var(--yellow);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.2em;
}

.error-main h1 {
  margin: 14px 0 0;
  font-size: clamp(48px, 7vw, 88px);
  line-height: 1;
  letter-spacing: -0.055em;
}

.error-main p {
  max-width: 580px;
  margin: 23px 0 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: 16px;
}

.error-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  margin-top: 30px;
}

.error-actions .button {
  width: max-content;
}

.error-actions > a:not(.button) {
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 750;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.error-footer {
  color: rgba(255, 255, 255, 0.38);
  font-size: 11px;
}

@media (max-width: 1240px) {
  .snapshot,
  .section,
  .final-cta,
  .rules-alert,
  .rules-layout {
    max-width: calc(100% - 48px);
  }

  .payments,
  .independent-store,
  .security,
  .trade-lifecycle,
  .trade-status,
  .trade-refunds {
    max-width: none;
  }

  .trade-anchor-bar {
    max-width: calc(100% - 48px);
  }
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto 1fr auto;
  }

  .desktop-nav,
  .header-action {
    display: none;
  }

  .mobile-nav {
    position: relative;
    display: block;
    justify-self: end;
  }

  .mobile-nav summary {
    min-width: 66px;
    min-height: 42px;
    display: grid;
    place-items: center;
    color: var(--ink);
    background: var(--yellow);
    border-radius: 11px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 800;
    list-style: none;
  }

  .mobile-nav summary::-webkit-details-marker {
    display: none;
  }

  .mobile-nav nav {
    position: absolute;
    top: 52px;
    right: 0;
    width: min(270px, calc(100vw - 32px));
    display: grid;
    padding: 10px;
    color: var(--ink);
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 15px;
    box-shadow: var(--shadow);
  }

  .mobile-nav nav a {
    min-height: 44px;
    display: flex;
    align-items: center;
    padding: 0 12px;
    border-radius: 9px;
    font-size: 13px;
    font-weight: 700;
  }

  .mobile-nav nav a:hover {
    background: var(--green-pale);
  }

  .hero {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 60px;
    padding-top: 70px;
  }

  .hero-console {
    max-width: 600px;
    justify-self: start;
    transform: none;
  }

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

  .snapshot-intro {
    grid-column: 1 / -1;
  }

  .snapshot-stat:nth-of-type(even) {
    border-right: 0;
  }

  .section-heading,
  .independent-store,
  .security,
  .support {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .security-copy {
    position: static;
  }

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

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

  .status-grid article {
    border-bottom: 1px solid var(--line);
  }

  .status-grid article:nth-child(even) {
    border-right: 0;
  }

  .status-grid article:last-child {
    grid-column: 1 / -1;
    border-bottom: 0;
  }

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

  .rules-layout {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .rules-toc {
    position: static;
    padding: 18px;
    background: #efede5;
    border-radius: var(--radius-md);
  }

  .rules-toc nav {
    grid-template-columns: repeat(2, 1fr);
  }

  .trade-preview {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .trade-preview-panel {
    width: min(100%, 650px);
    transform: none;
  }

  .trade-hero {
    grid-template-columns: 1fr;
    gap: 56px;
    padding-top: 70px;
  }

  .trade-order-card {
    width: min(100%, 650px);
    transform: none;
  }

  .trade-anchor-bar {
    grid-template-columns: repeat(4, 1fr);
  }

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

  .trade-check-grid article:last-child {
    grid-column: 1 / -1;
    min-height: 175px;
  }

  .trade-timeline {
    grid-template-columns: repeat(12, 1fr);
  }

  .trade-timeline li {
    grid-column: span 3;
    min-height: 210px;
  }

  .trade-timeline li:nth-last-child(-n + 3) {
    grid-column: span 4;
  }

  .trade-status-board {
    grid-template-columns: repeat(2, 1fr);
  }

  .trade-status-board article {
    border: 0;
  }

  .trade-status-board article:nth-child(even) {
    border: 0;
  }

  .trade-status-board article:last-child {
    grid-column: 1 / -1;
    min-height: 180px;
    border: 0;
  }

  .trade-refunds,
  .trade-after-sales {
    grid-template-columns: 1fr;
    gap: 48px;
  }

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

  .trade-danger-note {
    margin-top: 0;
  }
}

@media (max-width: 720px) {
  .notice-bar {
    padding-inline: 14px;
    font-size: 11px;
  }

  .site-header {
    height: 66px;
    padding: 0 16px;
  }

  .brand {
    font-size: 17px;
  }

  .brand-mark {
    width: 27px;
    height: 27px;
  }

  .brand-mark i {
    width: 11px;
    height: 11px;
  }

  .hero {
    gap: 42px;
    padding: 56px 18px 90px;
  }

  .hero h1 {
    font-size: clamp(40px, 12vw, 58px);
  }

  .lead {
    font-size: 16px;
  }

  .hero-actions,
  .hero-actions .button {
    width: 100%;
  }

  .hero-console {
    padding: 14px;
    border-radius: 24px;
  }

  .console-grid > div {
    min-height: 94px;
    padding: 12px;
  }

  .console-balance {
    padding: 19px;
  }

  .snapshot,
  .section,
  .final-cta,
  .rules-alert,
  .rules-layout {
    max-width: calc(100% - 32px);
  }

  .snapshot {
    margin-top: -42px;
  }

  .snapshot-stat {
    min-height: 105px;
    padding: 18px;
  }

  .snapshot-stat strong {
    font-size: 25px;
  }

  .section {
    padding: 82px 0;
  }

  .section-heading {
    gap: 22px;
    margin-bottom: 34px;
  }

  .section-heading h2,
  .payments h2,
  .order-heading h2,
  .faq-heading h2,
  .support h2,
  .security h2,
  .independent-store h2 {
    font-size: 38px;
  }

  .catalog-grid,
  .process-grid,
  .faq-grid,
  .security-grid {
    grid-template-columns: 1fr;
  }

  .catalog-card,
  .catalog-card-large {
    min-height: 0;
  }

  .catalog-card-large {
    grid-row: auto;
  }

  .catalog-card {
    padding: 26px;
  }

  .card-foot {
    margin-top: 40px;
  }

  .payments,
  .independent-store,
  .security {
    max-width: none;
    padding: 82px 18px;
  }

  .payment-flow,
  .payment-warnings,
  .status-grid {
    grid-template-columns: 1fr;
  }

  .payment-warnings > div {
    grid-template-columns: 1fr;
    gap: 9px;
  }

  .status-grid article,
  .status-grid article:nth-child(even),
  .status-grid article:last-child {
    grid-column: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .status-grid article:last-child {
    border-bottom: 0;
  }

  .process-grid li {
    min-height: 0;
  }

  .process-grid span {
    margin-bottom: 30px;
  }

  .faq-more,
  .final-cta {
    flex-direction: column;
    align-items: stretch;
  }

  .faq-more .button,
  .final-actions,
  .final-actions .button {
    width: 100%;
  }

  .final-cta {
    margin-bottom: 60px;
    padding: 36px 26px;
    border-radius: 24px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    padding: 48px 18px 28px;
  }

  .footer-links {
    justify-content: start;
  }

  .footer-legal {
    flex-direction: column;
  }

  .rules-hero {
    padding: 60px 18px 52px;
  }

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

  .rules-layout {
    padding: 45px 0 80px;
  }

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

  .rule-section > p,
  .rule-section li {
    font-size: 16px;
  }

  .rule-title h2 {
    font-size: 22px;
  }

  .rule-table {
    display: block;
    overflow-x: auto;
  }

  .trade-preview {
    gap: 38px;
    padding: 42px 22px;
    border-radius: 24px;
  }

  .trade-preview h2,
  .trade-section-title h2,
  .trade-refund-copy h2,
  .trade-after-sales h2 {
    font-size: 38px;
  }

  .trade-preview-panel {
    padding: 16px;
    border-radius: 20px;
  }

  .trade-hero {
    min-height: 0;
    gap: 42px;
    padding: 56px 18px 88px;
  }

  .trade-hero h1 {
    font-size: clamp(40px, 12vw, 58px);
  }

  .trade-lead {
    font-size: 15px;
  }

  .trade-hero-actions,
  .trade-hero-actions .button {
    width: 100%;
  }

  .trade-order-card {
    padding: 16px;
    border-radius: 22px;
  }

  .trade-order-data div {
    min-height: 58px;
  }

  .trade-anchor-bar {
    max-width: calc(100% - 32px);
    grid-template-columns: repeat(2, 1fr);
    margin-top: -32px;
  }

  .trade-anchor-bar a {
    min-height: 68px;
  }

  .trade-check-grid,
  .trade-rule-cards,
  .trade-status-board,
  .trade-refund-matrix,
  .trade-evidence-grid,
  .trade-faq-grid {
    grid-template-columns: 1fr;
  }

  .trade-check-grid article,
  .trade-status-board article {
    min-height: 0;
  }

  .trade-check-grid article:last-child,
  .trade-status-board article:last-child {
    grid-column: auto;
    min-height: 0;
  }

  .trade-timeline {
    grid-template-columns: 1fr;
  }

  .trade-timeline li {
    min-height: 0;
    grid-column: auto;
    padding: 24px;
  }

  .trade-timeline li:nth-last-child(-n + 3) {
    grid-column: auto;
  }

  .trade-timeline div {
    margin-top: 34px;
  }

  .trade-status-board article,
  .trade-status-board article:nth-child(even),
  .trade-status-board article:last-child {
    border: 0;
  }

  .trade-status-board article:last-child {
    border: 0;
  }

  .trade-refunds,
  .trade-status,
  .trade-lifecycle {
    max-width: none;
    padding-right: 18px;
    padding-left: 18px;
  }

  .trade-table-wrap {
    margin-right: -4px;
    margin-left: -4px;
  }

  .trade-table-hint {
    display: block;
    margin: 0 0 10px;
    color: var(--green);
    font-size: 10px;
    font-weight: 750;
  }

  .trade-table th,
  .trade-table td {
    padding: 16px;
  }

  .trade-table th:first-child,
  .trade-table td:first-child {
    position: sticky;
    z-index: 1;
    left: 0;
    background: var(--paper);
    box-shadow: 1px 0 0 var(--line);
  }

  .trade-table th:first-child {
    z-index: 2;
    color: var(--white);
    background: var(--ink);
  }

  .trade-refund-matrix article {
    min-height: 165px;
  }

  .trade-after-sales {
    gap: 34px;
  }

  .trade-faq summary {
    min-height: 62px;
  }
}

@media (max-width: 480px) {
  .trade-order-data {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 390px) {
  .console-grid {
    grid-template-columns: 1fr;
  }

  .console-grid > div {
    min-height: 78px;
  }

  .hero-notes {
    display: grid;
  }

  .snapshot-stat {
    padding: 15px;
  }

  .snapshot-stat strong {
    font-size: 22px;
  }

  .snapshot-stat span {
    font-size: 10px;
  }

  .trade-preview {
    padding-inline: 18px;
  }

  .trade-panel-list div {
    gap: 12px;
  }

  .trade-order-progress {
    padding-inline: 7px;
  }

  .trade-order-progress span {
    font-size: 10px;
  }

  .trade-rule-cards article {
    padding: 24px;
  }
}

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

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