: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,
#about,
#contact,
#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;
}

.header-tools {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.language-switch {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  padding: 3px;
  color: rgba(226, 235, 255, 0.72);
  background: rgba(91, 126, 255, 0.1);
  border: 1px solid rgba(121, 174, 255, 0.26);
  border-radius: 11px;
}

.language-switch a {
  min-width: 34px;
  min-height: 34px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.04em;
}

.language-switch a:hover,
.language-switch a:focus-visible {
  color: #ffffff;
  background: rgba(77, 176, 255, 0.15);
}

.language-switch a.is-active {
  color: #031020;
  background: linear-gradient(115deg, #8ef2ff, #41bbff 55%, #8d70ff);
  box-shadow: 0 6px 18px rgba(55, 155, 255, 0.24);
}

.mobile-nav {
  display: none;
}

html[lang="en"] .hero h1 {
  font-size: clamp(44px, 4.7vw, 70px);
  letter-spacing: -0.045em;
}

.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-provider-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 34px;
}

.payment-provider-grid article {
  min-height: 150px;
  padding: 22px;
  background: rgba(91, 126, 255, 0.1);
  border: 1px solid rgba(121, 174, 255, 0.2);
  border-radius: 18px;
}

.payment-provider-grid span {
  color: #68ebd8;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.payment-provider-grid b {
  display: block;
  margin-top: 18px;
  color: #ffffff;
  font-size: 16px;
}

.payment-provider-grid p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
  line-height: 1.7;
}

.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 {
  position: relative;
  min-height: 214px;
  overflow: hidden;
  padding: 26px;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 18px;
}

.security-grid > div > span {
  position: relative;
  z-index: 1;
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  color: #ffffff;
  background: linear-gradient(135deg, #35e7ff, #347cff 58%, #9b54ff);
  border: 1px solid rgba(160, 227, 255, 0.55);
  border-radius: 20px;
  box-shadow:
    0 16px 34px rgba(38, 121, 255, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.42);
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -0.035em;
}

.security-grid > div:nth-child(even) > span {
  background: linear-gradient(135deg, #46dfff, #6c69ff 55%, #d048ff);
  box-shadow:
    0 16px 34px rgba(122, 73, 255, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.42);
}

.security-grid > div::after {
  position: absolute;
  top: -58px;
  right: -52px;
  width: 150px;
  height: 150px;
  content: "";
  background: radial-gradient(
    circle,
    rgba(63, 179, 255, 0.16),
    transparent 68%
  );
  pointer-events: none;
}

.security-grid b {
  display: block;
  margin-top: 28px;
  font-size: 17px;
  line-height: 1.35;
}

.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: none;
}

.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: none;
}

.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);
  }

  .payment-provider-grid {
    grid-template-columns: 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;
  }
}

/* MBOTJ production neon theme · 2026-08-01 */
:root {
  color-scheme: dark;
  --ink: #050817;
  --ink-soft: #c7d2f4;
  --green: #318dff;
  --green-bright: #4ae5ff;
  --green-pale: rgba(57, 147, 255, 0.15);
  --cream: #050711;
  --paper: #0b1022;
  --white: #f8fbff;
  --yellow: #66e8ff;
  --yellow-pale: rgba(97, 111, 255, 0.15);
  --blue-pale: rgba(49, 141, 255, 0.16);
  --orange-pale: rgba(255, 94, 205, 0.15);
  --purple-pale: rgba(170, 88, 255, 0.16);
  --red: #ff9db0;
  --muted: #95a2c7;
  --line: rgba(126, 151, 255, 0.17);
  --line-dark: rgba(160, 180, 255, 0.18);
  --shadow: 0 28px 90px rgba(0, 4, 35, 0.38);
}

.rules-review-proof {
  z-index: 80;
  top: calc(90px + env(safe-area-inset-top));
  color: #eef5ff;
  background: linear-gradient(
    135deg,
    rgba(8, 27, 66, 0.97),
    rgba(31, 16, 78, 0.97)
  );
  border-color: rgba(91, 221, 255, 0.58);
  box-shadow:
    0 18px 52px rgba(0, 3, 35, 0.46),
    0 0 26px rgba(75, 181, 255, 0.13);
}

.rules-review-proof strong {
  color: #72edff;
}

.rules-review-proof.is-verified {
  background: linear-gradient(
    135deg,
    rgba(8, 65, 73, 0.98),
    rgba(20, 50, 100, 0.98)
  );
  border-color: #63f4da;
}

.rules-review-proof.is-error {
  background: linear-gradient(
    135deg,
    rgba(100, 24, 58, 0.98),
    rgba(67, 24, 94, 0.98)
  );
  border-color: #ff86c8;
}

html {
  background: #03040d;
}

body,
.rules-body,
.trade-body {
  color: #edf3ff;
  background:
    radial-gradient(
      circle at 8% 10%,
      rgba(40, 105, 255, 0.12),
      transparent 24%
    ),
    radial-gradient(
      circle at 92% 34%,
      rgba(211, 55, 255, 0.08),
      transparent 27%
    ),
    var(--cream);
}

body {
  overflow-x: hidden;
}

::selection {
  color: #03040d;
  background: var(--yellow);
}

:focus-visible {
  outline-color: var(--yellow);
  box-shadow: 0 0 0 6px rgba(102, 232, 255, 0.12);
}

.notice-bar {
  min-height: 40px;
  padding-top: calc(8px + env(safe-area-inset-top));
  padding-right: max(24px, env(safe-area-inset-right));
  padding-bottom: 8px;
  padding-left: max(24px, env(safe-area-inset-left));
  color: #dce8ff;
  background: linear-gradient(90deg, #071b3f, #120d38 52%, #251047);
  border-bottom: 1px solid rgba(93, 205, 255, 0.2);
}

.notice-dot {
  background: var(--yellow);
  box-shadow:
    0 0 0 4px rgba(74, 229, 255, 0.1),
    0 0 18px rgba(74, 229, 255, 0.72);
}

.site-header {
  height: 78px;
  gap: 24px;
  padding-right: max(
    24px,
    calc((100vw - var(--container)) / 2),
    env(safe-area-inset-right)
  );
  padding-left: max(
    24px,
    calc((100vw - var(--container)) / 2),
    env(safe-area-inset-left)
  );
  background: rgba(3, 5, 16, 0.82);
  border-bottom-color: rgba(109, 159, 255, 0.2);
  box-shadow: 0 12px 40px rgba(0, 0, 20, 0.18);
}

.brand {
  color: #f6f9ff;
  text-shadow: 0 0 24px rgba(87, 178, 255, 0.3);
}

.brand-mark {
  filter: drop-shadow(0 0 8px rgba(62, 207, 255, 0.55));
}

.brand-mark i {
  border-color: #8cecff;
}

.brand-mark i:nth-child(2) {
  background: linear-gradient(135deg, #4ce8ff, #8c67ff 62%, #f05eff);
  border-color: transparent;
  box-shadow: 0 0 14px rgba(116, 100, 255, 0.85);
}

.desktop-nav {
  gap: 18px;
}

.desktop-nav a {
  color: rgba(226, 235, 255, 0.7);
  font-size: 13px;
  white-space: nowrap;
}

.desktop-nav a::after {
  background: linear-gradient(90deg, #3ae5ff, #8a68ff, #ef55ff);
  box-shadow: 0 0 12px rgba(78, 211, 255, 0.7);
}

.header-action,
.button-primary,
.button-light {
  color: #031020;
  background: linear-gradient(115deg, #8ef2ff, #41bbff 55%, #8d70ff);
  box-shadow: 0 12px 34px rgba(55, 155, 255, 0.28);
}

.header-action:hover,
.button-primary:hover,
.button-light:hover {
  background: linear-gradient(115deg, #b1f7ff, #64c9ff 55%, #a68dff);
}

.button-quiet {
  background: rgba(105, 127, 255, 0.09);
  border-color: rgba(121, 174, 255, 0.3);
}

.button-quiet:hover {
  background: rgba(105, 127, 255, 0.16);
  border-color: rgba(98, 227, 255, 0.55);
}

.button-dark {
  color: #f5f8ff;
  background: linear-gradient(135deg, #142450, #281759);
  border-color: rgba(108, 188, 255, 0.28);
}

.mobile-nav {
  position: relative;
}

.mobile-nav summary {
  min-width: 68px;
  min-height: 42px;
  display: grid;
  place-items: center;
  color: #04101f;
  background: linear-gradient(115deg, #85efff, #45bdff 58%, #8f73ff);
  border: 1px solid rgba(193, 246, 255, 0.55);
  border-radius: 12px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 850;
  list-style: none;
  box-shadow: 0 10px 28px rgba(57, 150, 255, 0.25);
}

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

.mobile-nav nav {
  position: absolute;
  top: 54px;
  right: 0;
  width: min(300px, calc(100vw - 32px));
  display: grid;
  padding: 10px;
  color: #edf3ff;
  background: rgba(8, 12, 31, 0.98);
  border: 1px solid rgba(116, 171, 255, 0.3);
  border-radius: 17px;
  box-shadow: 0 28px 70px rgba(0, 0, 25, 0.58);
  backdrop-filter: blur(20px);
}

.mobile-nav nav a {
  min-height: 45px;
  display: flex;
  align-items: center;
  padding: 0 13px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 720;
}

.mobile-nav nav a:hover {
  color: #ffffff;
  background: linear-gradient(
    90deg,
    rgba(47, 141, 255, 0.18),
    rgba(171, 72, 255, 0.12)
  );
}

.hero,
.trade-hero,
.rules-hero,
.error-page {
  background:
    radial-gradient(
      circle at 82% 18%,
      rgba(40, 127, 255, 0.26),
      transparent 26%
    ),
    radial-gradient(
      circle at 95% 56%,
      rgba(221, 48, 255, 0.18),
      transparent 25%
    ),
    radial-gradient(
      circle at 10% 100%,
      rgba(44, 224, 255, 0.11),
      transparent 30%
    ),
    linear-gradient(145deg, #02030a, #050923 48%, #100825);
}

.hero {
  min-height: 760px;
  grid-template-columns: minmax(0, 1fr) minmax(430px, 0.92fr);
  gap: 66px;
  padding-top: 84px;
  padding-bottom: 124px;
}

.hero::before,
.trade-hero::before {
  opacity: 0.15;
  background-image:
    linear-gradient(rgba(90, 163, 255, 0.28) 1px, transparent 1px),
    linear-gradient(90deg, rgba(90, 163, 255, 0.28) 1px, transparent 1px);
  background-size: 58px 58px;
}

.hero-copy,
.hero-visual {
  position: relative;
  z-index: 2;
}

.domain-pill {
  color: #92eeff;
  background: linear-gradient(
    90deg,
    rgba(45, 166, 255, 0.11),
    rgba(152, 78, 255, 0.1)
  );
  border-color: rgba(92, 214, 255, 0.32);
  box-shadow: inset 0 0 22px rgba(72, 159, 255, 0.06);
}

.domain-pill span {
  background: #5df6cb;
  box-shadow:
    0 0 0 5px rgba(93, 246, 203, 0.09),
    0 0 16px rgba(93, 246, 203, 0.72);
}

.eyebrow,
.hero .eyebrow,
.payments .eyebrow,
.security .eyebrow,
.independent-store .eyebrow,
.about .eyebrow,
.contact .eyebrow,
.final-cta .eyebrow,
.rules-hero .eyebrow {
  color: #5ae6ff;
}

.hero h1,
.trade-hero h1,
.rules-hero h1 {
  text-wrap: balance;
  text-shadow: 0 8px 40px rgba(71, 124, 255, 0.18);
}

.hero h1 em,
.trade-hero h1 em {
  color: transparent;
  background: linear-gradient(
    95deg,
    #65eaff,
    #579cff 46%,
    #a979ff 72%,
    #f460ff
  );
  background-clip: text;
  -webkit-background-clip: text;
  filter: drop-shadow(0 0 20px rgba(100, 133, 255, 0.22));
}

.lead,
.trade-lead,
.rules-hero p:last-child {
  color: rgba(220, 230, 255, 0.72);
}

.hero-notes b {
  color: #65eaff;
}

.hero-visual {
  width: 100%;
  max-width: 570px;
  aspect-ratio: 1;
  justify-self: end;
  display: grid;
  place-items: center;
  isolation: isolate;
}

.hero-visual::before {
  position: absolute;
  z-index: -2;
  inset: 8%;
  content: "";
  background: conic-gradient(
    from 45deg,
    #2be6ff,
    #3e72ff,
    #ab4dff,
    #ff4de1,
    #2be6ff
  );
  border-radius: 50%;
  filter: blur(42px);
  opacity: 0.38;
}

.hero-orbit {
  position: absolute;
  z-index: -1;
  inset: -1.5%;
  border: 1px solid rgba(97, 217, 255, 0.38);
  border-radius: 50%;
  box-shadow:
    0 0 38px rgba(43, 151, 255, 0.32),
    inset 0 0 36px rgba(141, 68, 255, 0.2);
}

.hero-orbit::before,
.hero-orbit::after {
  position: absolute;
  inset: 4%;
  content: "";
  border: 1px solid rgba(162, 91, 255, 0.3);
  border-radius: inherit;
}

.hero-orbit::after {
  inset: -4%;
  border-color: rgba(64, 214, 255, 0.16);
}

.hero-art {
  width: 92%;
  display: block;
  overflow: hidden;
  border: 1px solid rgba(139, 193, 255, 0.32);
  border-radius: 50%;
  box-shadow:
    0 34px 90px rgba(0, 2, 26, 0.64),
    0 0 48px rgba(74, 127, 255, 0.25);
}

.hero-art img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: inherit;
}

.hero-status-card {
  position: absolute;
  z-index: 4;
  min-width: 214px;
  display: flex;
  gap: 11px;
  align-items: center;
  padding: 12px 15px;
  color: #f3f7ff;
  background: rgba(7, 12, 34, 0.86);
  border: 1px solid rgba(112, 183, 255, 0.3);
  border-radius: 15px;
  box-shadow: 0 20px 44px rgba(0, 2, 25, 0.45);
  backdrop-filter: blur(18px);
}

.hero-status-card-top {
  top: 9%;
  right: -5%;
}

.hero-status-card-bottom {
  bottom: 8%;
  left: -6%;
}

.hero-status-card p {
  display: grid;
  margin: 0;
  line-height: 1.35;
}

.hero-status-card b {
  font-size: 12px;
}

.hero-status-card small {
  margin-top: 3px;
  color: #91a3cf;
  font-size: 9px;
}

.status-icon {
  width: 31px;
  height: 31px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  color: #03101c;
  background: linear-gradient(135deg, #67f2d6, #4acbff);
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(73, 226, 255, 0.35);
  font-size: 13px;
  font-weight: 900;
}

.status-icon-purple {
  color: #ffffff;
  background: linear-gradient(135deg, #666cff, #d34dff);
  box-shadow: 0 0 20px rgba(179, 74, 255, 0.38);
}

.snapshot {
  background: rgba(9, 14, 36, 0.95);
  border-color: rgba(105, 163, 255, 0.24);
  box-shadow: 0 26px 80px rgba(0, 2, 28, 0.48);
}

.snapshot-intro {
  background: linear-gradient(145deg, #0d3b75, #27145c);
}

.snapshot-intro span {
  color: #6deaff;
}

.snapshot-intro strong {
  margin-top: 9px;
  font-size: 28px;
  line-height: 1;
}

.snapshot-stat strong {
  color: #f4f7ff;
}

.snapshot-stat sup,
.snapshot-stat span {
  color: #90a6d3;
}

.snapshot-note {
  color: #91a1c6;
  background: rgba(60, 76, 135, 0.18);
}

.section-heading h2,
.payments h2,
.order-heading h2,
.faq-heading h2,
.support h2,
.security h2,
.independent-store h2,
.about h2,
.contact h2,
.final-cta h2,
.trade-section-title h2,
.trade-refund-copy h2,
.trade-after-sales h2 {
  color: #f3f7ff;
  text-wrap: balance;
}

.section-heading > p,
.payments-head > p:last-child,
.faq-heading > p:last-child,
.support > div > p:last-child,
.independent-copy > p,
.about-copy > p,
.contact-heading > p,
.security-copy > p,
.trade-section-title > p:last-child,
.trade-refund-copy > p:not(.eyebrow),
.trade-after-sales > div:first-child > p:last-child {
  color: var(--muted);
}

.catalog-card,
.process-grid li,
.status-grid article,
.faq details,
.support-checklist,
.trade-check-grid article,
.trade-rule-cards article,
.trade-status-board article,
.trade-evidence-grid article,
.trade-faq details {
  color: #edf3ff;
  background: linear-gradient(
    145deg,
    rgba(15, 23, 55, 0.96),
    rgba(8, 12, 30, 0.97)
  );
  border-color: rgba(115, 151, 255, 0.19);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.025);
}

.catalog-card:hover {
  border-color: rgba(80, 206, 255, 0.38);
  box-shadow:
    0 24px 60px rgba(0, 4, 38, 0.42),
    0 0 36px rgba(64, 126, 255, 0.09);
}

.catalog-card::before {
  height: 3px;
  background: linear-gradient(90deg, #43e7ff, #347aff, #b95cff);
  box-shadow: 0 0 14px rgba(68, 185, 255, 0.4);
}

.accent-yellow::before {
  background: linear-gradient(90deg, #ff57ce, #a663ff);
}

.accent-blue::before {
  background: linear-gradient(90deg, #39dfff, #397cff);
}

.accent-orange::before {
  background: linear-gradient(90deg, #ff5bad, #ff8d57);
}

.accent-purple::before {
  background: linear-gradient(90deg, #846cff, #ec52ff);
}

.accent-ink::before {
  background: linear-gradient(90deg, #6ff2ce, #51c9ff);
}

.catalog-card-large {
  background:
    radial-gradient(circle at 100% 0, rgba(67, 222, 255, 0.2), transparent 34%),
    radial-gradient(
      circle at 0 100%,
      rgba(194, 61, 255, 0.16),
      transparent 34%
    ),
    linear-gradient(145deg, #0b2957, #15113f 70%, #250e43);
  border-color: rgba(102, 183, 255, 0.23);
}

.catalog-card > p,
.catalog-card-large > p,
.feature-list li,
.process-grid p,
.status-grid p,
.faq details p,
.support-checklist small,
.trade-check-grid p,
.trade-rule-cards p,
.trade-status-board p,
.trade-evidence-grid p,
.trade-faq details p {
  color: var(--muted);
}

.card-number,
.catalog-card-large .card-number,
.card-foot small,
.catalog-card-large .card-foot small {
  color: #7f91bd;
}

.status-badge,
.catalog-card-large .status-badge {
  color: #68ebd8;
  background: rgba(60, 227, 195, 0.1);
  border: 1px solid rgba(81, 240, 210, 0.15);
}

.soft-badge {
  color: #d39aff;
  background: rgba(167, 80, 255, 0.14);
  border: 1px solid rgba(199, 112, 255, 0.17);
}

.feature-list li::before {
  background: #59e5ff;
  box-shadow: 0 0 10px rgba(70, 219, 255, 0.6);
}

.platform-cloud span,
.mini-options span {
  color: #cbd8ff;
  background: rgba(96, 118, 255, 0.1);
  border: 1px solid rgba(117, 155, 255, 0.18);
}

.availability-note,
.faq-more,
.trade-callout,
.rules-alert {
  color: #d5def7;
  background: linear-gradient(
    120deg,
    rgba(27, 68, 126, 0.42),
    rgba(86, 35, 125, 0.38)
  );
  border: 1px solid rgba(108, 164, 255, 0.22);
}

.availability-note p,
.availability-note b,
.rules-alert p {
  color: inherit;
}

.availability-note > span,
.rules-alert strong {
  color: #061020;
  background: linear-gradient(135deg, #78efff, #7c80ff);
}

.payments,
.security,
.trade-refunds {
  background:
    radial-gradient(circle at 85% 15%, rgba(74, 94, 255, 0.2), transparent 26%),
    radial-gradient(
      circle at 5% 92%,
      rgba(218, 52, 255, 0.12),
      transparent 27%
    ),
    linear-gradient(145deg, #03050e, #090b25 55%, #140927);
}

.payment-flow li,
.security-grid > div,
.trade-refund-matrix article {
  background: linear-gradient(
    145deg,
    rgba(17, 27, 62, 0.74),
    rgba(13, 10, 37, 0.82)
  );
  border-color: rgba(123, 158, 255, 0.2);
}

.payment-flow li > span,
.trade-refund-matrix span {
  color: #55e8ff;
}

.payment-flow p,
.payment-warnings ul,
.security-grid p,
.trade-refund-matrix p {
  color: rgba(205, 218, 250, 0.64);
}

.payment-warnings > div {
  background: rgba(122, 78, 255, 0.1);
  border-color: rgba(139, 116, 255, 0.22);
}

.payment-warnings > div > span,
.security-copy > a,
.trade-refund-copy > a,
.footer-links a:hover {
  color: #67eaff;
}

.balance-explainer {
  background: rgba(57, 151, 255, 0.09);
  border-left-color: #4ee7ff;
}

.balance-explainer b {
  color: #64ebff;
}

.process-grid span,
.support-checklist p span,
.trade-evidence-grid span,
.rule-title span {
  background: linear-gradient(135deg, #267dff, #7d5dff 70%, #d448ff);
  box-shadow: 0 8px 20px rgba(72, 93, 255, 0.22);
}

.status-grid,
.trade-status-board,
.trade-anchor-bar {
  background: rgba(112, 144, 255, 0.17);
  border-color: rgba(116, 150, 255, 0.2);
}

.independent-store,
.trade-lifecycle {
  background:
    radial-gradient(
      circle at 88% 12%,
      rgba(72, 215, 255, 0.18),
      transparent 26%
    ),
    linear-gradient(135deg, #09295b, #1a1452 62%, #3a125c);
}

.trade-timeline li {
  background: linear-gradient(
    150deg,
    rgba(17, 48, 99, 0.96),
    rgba(39, 18, 83, 0.96)
  );
}

.trade-timeline li > span {
  color: #64eaff;
}

.trade-preview,
.final-cta {
  background:
    radial-gradient(
      circle at 95% 5%,
      rgba(53, 221, 255, 0.22),
      transparent 33%
    ),
    radial-gradient(
      circle at 3% 100%,
      rgba(211, 65, 255, 0.17),
      transparent 31%
    ),
    linear-gradient(140deg, #071736, #10113d 58%, #280d43);
  border: 1px solid rgba(110, 168, 255, 0.22);
  box-shadow: 0 30px 80px rgba(0, 3, 31, 0.42);
}

.trade-principles span {
  background: rgba(78, 113, 255, 0.09);
  border-color: rgba(113, 157, 255, 0.2);
}

.trade-principles b {
  color: #5ee8ff;
}

.trade-preview-panel,
.trade-order-card {
  color: #edf3ff;
  background: linear-gradient(
    145deg,
    rgba(15, 24, 56, 0.97),
    rgba(8, 12, 30, 0.98)
  );
  border-color: rgba(112, 184, 255, 0.3);
  box-shadow:
    0 34px 80px rgba(0, 0, 24, 0.48),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.trade-panel-top i,
.trade-order-top .online-pill {
  color: #63e9ff;
  background: rgba(68, 202, 255, 0.1);
}

.trade-panel-product,
.trade-order-summary {
  color: #051024;
  background: linear-gradient(120deg, #8af2ff, #69afff 62%, #aa83ff);
}

.trade-panel-product small,
.trade-panel-product span,
.trade-order-summary small,
.trade-order-summary p {
  color: rgba(4, 13, 34, 0.65);
}

.trade-panel-list,
.trade-order-data,
.trade-table-wrap,
.rule-table {
  border-color: rgba(117, 151, 255, 0.2);
}

.trade-panel-list div,
.trade-order-data div,
.trade-anchor-bar a,
.trade-table td,
.rule-table td {
  color: #e7eeff;
  background: var(--paper);
}

.trade-panel-list dt,
.trade-order-data dt,
.trade-table td,
.rule-table td {
  color: var(--muted);
}

.trade-panel-list dd,
.trade-order-data dd,
.trade-table td:first-child,
.rule-table strong {
  color: #edf3ff;
}

.trade-panel-status,
.trade-order-progress,
.trade-preview-panel > p {
  color: #9eadd1;
  background: rgba(54, 72, 130, 0.2);
}

.trade-preview-panel > p,
.trade-order-tip,
.support-checklist small,
.trade-danger-note {
  color: #ffb0c0;
  background: rgba(255, 76, 130, 0.09);
  border: 1px solid rgba(255, 103, 149, 0.14);
}

.trade-anchor-bar a:hover {
  background: rgba(47, 139, 255, 0.18);
}

.trade-anchor-bar span,
.trade-check-grid article > span,
.trade-rule-cards article > span,
.trade-table td:first-child small,
.trade-product-notes span {
  color: #60e7ff;
}

.trade-rule-cards article:nth-child(1),
.trade-rule-cards article:nth-child(2),
.trade-rule-cards article:nth-child(4),
.trade-rule-cards article:nth-child(5),
.trade-product-notes article,
.trade-product-notes article:last-child {
  background: linear-gradient(
    145deg,
    rgba(20, 34, 75, 0.96),
    rgba(24, 13, 57, 0.96)
  );
}

.trade-status {
  background: rgba(4, 7, 18, 0.72);
}

.trade-status-board span {
  color: #dfe8ff;
  background: rgba(87, 104, 161, 0.24);
}

.trade-status-board article[data-state="processing"] span,
.trade-status-board article[data-state="payment"] span,
.trade-status-board article[data-state="delivered"] span,
.trade-status-board article[data-state="review"] span,
.trade-status-board article[data-state="refund"] span {
  color: #d9e8ff;
  background: rgba(56, 129, 255, 0.18);
}

.trade-table th,
.rule-table th {
  color: #f4f7ff;
  background: linear-gradient(110deg, #102a5a, #2b175e);
}

.trade-table-wrap:focus-visible {
  outline-color: rgba(79, 218, 255, 0.55);
}

.about {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(460px, 1.1fr);
  gap: 80px;
  align-items: center;
}

.about-copy h2 {
  margin: 0;
  font-size: clamp(38px, 4vw, 58px);
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.about-copy > p:not(.eyebrow) {
  margin: 22px 0 0;
  line-height: 1.85;
}

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

.about-values article {
  min-height: 205px;
  display: flex;
  flex-direction: column;
  padding: 25px;
  background:
    radial-gradient(
      circle at 100% 0,
      rgba(69, 196, 255, 0.12),
      transparent 38%
    ),
    linear-gradient(145deg, rgba(16, 25, 59, 0.96), rgba(10, 12, 33, 0.98));
  border: 1px solid rgba(115, 157, 255, 0.2);
  border-radius: var(--radius-md);
}

.about-values article:nth-child(2),
.about-values article:nth-child(3) {
  background:
    radial-gradient(
      circle at 100% 0,
      rgba(202, 71, 255, 0.11),
      transparent 38%
    ),
    linear-gradient(145deg, rgba(25, 19, 61, 0.96), rgba(10, 12, 33, 0.98));
}

.about-values span {
  color: #5ee8ff;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.12em;
}

.about-values b {
  margin-top: auto;
  font-size: 17px;
}

.about-values p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.contact {
  padding-top: 24px;
}

.contact-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 0.65fr);
  gap: 80px;
  align-items: end;
  margin-bottom: 38px;
}

.contact-heading h2 {
  margin: 0;
  font-size: clamp(40px, 4vw, 58px);
  line-height: 1.06;
  letter-spacing: -0.045em;
}

.contact-heading > p {
  margin: 0;
  line-height: 1.8;
}

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

.contact-channel {
  position: relative;
  min-height: 104px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 15px;
  align-items: center;
  padding: 20px;
  background: linear-gradient(
    145deg,
    rgba(15, 24, 57, 0.97),
    rgba(9, 12, 31, 0.98)
  );
  border: 1px solid rgba(112, 157, 255, 0.2);
  border-radius: var(--radius-md);
  color: inherit;
  text-decoration: none;
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    box-shadow 160ms ease;
}

.contact-channel:hover {
  transform: translateY(-3px);
  border-color: rgba(83, 216, 255, 0.5);
  box-shadow: 0 20px 44px rgba(0, 4, 30, 0.32);
}

.contact-channel:focus-visible {
  outline: 3px solid rgba(87, 225, 255, 0.45);
  outline-offset: 3px;
}

.channel-icon {
  position: relative;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: #ffffff;
  background: linear-gradient(135deg, #ff4566, #ff3e9d);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 15px;
  box-shadow: 0 12px 28px rgba(255, 52, 120, 0.18);
  isolation: isolate;
}

.channel-icon::before {
  position: absolute;
  inset: 1px;
  z-index: -1;
  content: "";
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.22),
    transparent 48%
  );
  border-radius: 13px;
  pointer-events: none;
}

.channel-icon svg {
  width: 27px;
  height: 27px;
  display: block;
  overflow: visible;
  fill: currentColor;
  filter: drop-shadow(0 3px 7px rgba(0, 0, 0, 0.24));
  transition: transform 180ms ease;
}

.contact-channel:hover .channel-icon svg {
  transform: scale(1.08);
}

.channel-icon-youtube {
  background: linear-gradient(135deg, #ff0033, #ff1f55 58%, #ff3e8c);
  box-shadow: 0 12px 28px rgba(255, 0, 64, 0.25);
}

.channel-icon-youtube svg {
  width: 30px;
  height: 30px;
}

.channel-icon-youtube .channel-icon-cutout {
  fill: #ff164d;
}

.channel-icon-x {
  background: linear-gradient(135deg, #05070c, #252c3c 62%, #47536e);
  box-shadow: 0 12px 28px rgba(20, 27, 44, 0.38);
}

.channel-icon-tg,
.channel-icon-support {
  background: linear-gradient(135deg, #36ddff, #347cff 62%, #835dff);
  box-shadow: 0 12px 28px rgba(49, 136, 255, 0.25);
}

.channel-icon-tg svg {
  transform: translate(-1px, 1px) scale(1.03);
}

.contact-channel:hover .channel-icon-tg svg {
  transform: translate(-1px, 1px) scale(1.12) rotate(-3deg);
}

.channel-icon-support {
  background: linear-gradient(135deg, #2ee6ff, #5a76ff 54%, #a24dff);
  box-shadow: 0 12px 28px rgba(91, 87, 255, 0.28);
}

.channel-icon-support svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.channel-icon-support circle {
  fill: currentColor;
  stroke: none;
}

.contact-channel div {
  display: grid;
  min-width: 0;
}

.contact-channel b {
  font-size: 15px;
}

.contact-channel small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 11px;
}

.contact-channel em {
  display: inline-flex;
  gap: 5px;
  align-items: center;
  padding: 6px 9px;
  color: #72eaff;
  background: rgba(48, 163, 255, 0.12);
  border: 1px solid rgba(89, 213, 255, 0.2);
  border-radius: 999px;
  font-size: 9px;
  font-style: normal;
  font-weight: 750;
  white-space: nowrap;
}

.contact-note {
  margin: 14px 0 0;
  padding: 16px 18px;
  color: #aebade;
  background: rgba(64, 83, 145, 0.13);
  border-left: 3px solid #50dcff;
  border-radius: 0 12px 12px 0;
  font-size: 12px;
}

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

.asset-safety-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 14px;
  overflow: hidden;
  background: rgba(103, 143, 255, 0.2);
  border: 1px solid rgba(116, 158, 255, 0.22);
  border-radius: 18px;
}

.asset-safety-strip > div {
  min-width: 0;
  min-height: 112px;
  display: flex;
  flex-direction: column;
  padding: 18px 20px;
  background:
    radial-gradient(
      circle at 100% 0,
      rgba(80, 218, 255, 0.11),
      transparent 40%
    ),
    rgba(9, 15, 39, 0.96);
}

.asset-safety-strip span {
  color: #63e9ff;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.asset-safety-strip b {
  margin-top: 14px;
  color: #f3f7ff;
  font-size: 14px;
}

.asset-safety-strip small {
  margin-top: 5px;
  color: #8fa0ca;
  font-size: 10px;
  line-height: 1.6;
}

.support {
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  gap: 64px;
  align-items: start;
}

.support-intro {
  padding-top: 10px;
}

.support-priority {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 26px;
}

.support-priority span {
  padding: 8px 11px;
  color: #c9d8ff;
  background: rgba(64, 124, 255, 0.11);
  border: 1px solid rgba(101, 155, 255, 0.2);
  border-radius: 999px;
  font-size: 10px;
  font-weight: 750;
}

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

.support-router article {
  min-width: 0;
  min-height: 184px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  grid-template-rows: auto 1fr auto;
  gap: 14px 15px;
  padding: 20px;
  background:
    radial-gradient(
      circle at 100% 0,
      rgba(72, 211, 255, 0.12),
      transparent 39%
    ),
    linear-gradient(145deg, rgba(15, 25, 59, 0.97), rgba(9, 11, 31, 0.98));
  border: 1px solid rgba(112, 157, 255, 0.2);
  border-radius: var(--radius-md);
}

.support-router article:nth-child(2),
.support-router article:nth-child(3) {
  background:
    radial-gradient(circle at 100% 0, rgba(201, 77, 255, 0.1), transparent 39%),
    linear-gradient(145deg, rgba(23, 19, 60, 0.97), rgba(9, 11, 31, 0.98));
}

.support-router article > span {
  width: 44px;
  height: 44px;
  display: grid;
  grid-row: 1 / 3;
  place-items: center;
  color: #06101f;
  background: linear-gradient(135deg, #6defff, #7d8cff 68%, #ca55ff);
  border-radius: 14px;
  box-shadow: 0 10px 24px rgba(64, 123, 255, 0.24);
  font-size: 11px;
  font-weight: 900;
}

.support-router article > div {
  min-width: 0;
}

.support-router b {
  color: #f1f5ff;
  font-size: 14px;
}

.support-router p {
  margin: 7px 0 0;
  color: #8f9fc5;
  font-size: 11px;
  line-height: 1.7;
}

.support-router em {
  width: max-content;
  max-width: 100%;
  grid-column: 2;
  align-self: end;
  padding: 6px 9px;
  color: #6de9ff;
  background: rgba(50, 150, 255, 0.11);
  border: 1px solid rgba(91, 207, 255, 0.18);
  border-radius: 999px;
  font-size: 9px;
  font-style: normal;
  font-weight: 800;
}

.support-security-note {
  grid-column: 1 / -1;
  margin: 0;
  padding: 17px 20px;
  color: #b5c2e4;
  background: linear-gradient(
    110deg,
    rgba(48, 115, 255, 0.1),
    rgba(163, 69, 255, 0.09)
  );
  border: 1px solid rgba(112, 155, 255, 0.17);
  border-left: 3px solid #55e4ff;
  border-radius: 0 14px 14px 0;
  font-size: 11px;
  line-height: 1.7;
}

.support-security-note b {
  color: #66eaff;
}

.faq summary::after,
.trade-faq summary::after {
  color: #5fe7ff;
  background: rgba(51, 152, 255, 0.14);
}

.final-cta > div > p:last-child,
.footer-main p,
.footer-links,
.footer-legal {
  color: rgba(213, 224, 251, 0.58);
}

.site-footer {
  padding-right: max(
    24px,
    calc((100vw - var(--container)) / 2),
    env(safe-area-inset-right)
  );
  padding-bottom: max(34px, env(safe-area-inset-bottom));
  padding-left: max(
    24px,
    calc((100vw - var(--container)) / 2),
    env(safe-area-inset-left)
  );
  background:
    radial-gradient(circle at 12% 0, rgba(50, 128, 255, 0.14), transparent 28%),
    linear-gradient(140deg, #03050d, #09091d 62%, #140822);
  border-top: 1px solid rgba(109, 147, 255, 0.16);
}

.rules-meta span,
.rules-meta a,
.trade-meta span {
  color: #c3cff0;
  background: rgba(83, 105, 178, 0.12);
  border-color: rgba(120, 158, 255, 0.2);
}

.rules-meta a {
  color: #66e8ff;
}

.rules-layout {
  color: #e8efff;
}

.rules-toc > p,
.rules-toc a {
  color: #8998bf;
}

.rules-toc a:hover {
  color: #6ceaff;
  background: rgba(49, 141, 255, 0.12);
  border-left-color: #57dfff;
}

.rule-section {
  border-bottom-color: rgba(119, 148, 229, 0.17);
}

.rule-section > p,
.rule-section li {
  color: #aab6d7;
}

.rule-section strong {
  color: #eef3ff;
}

.rule-callout {
  color: #b9c8eb;
  background: rgba(38, 132, 255, 0.1);
  border-left-color: #4cdfff;
}

.rule-warning {
  color: #d8c4ef;
  background: rgba(159, 72, 255, 0.1);
  border-left-color: #c05dff;
}

.rule-table th,
.rule-table td {
  border-color: rgba(121, 151, 233, 0.18);
}

.error-code {
  color: #65eaff;
}

.error-main p,
.error-actions > a:not(.button),
.error-footer {
  color: rgba(215, 225, 250, 0.62);
}

@media (max-width: 1120px) {
  .desktop-nav,
  .header-action {
    display: none;
  }

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

  .payment-provider-grid,
  .asset-safety-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 721px) and (max-width: 1120px) {
  .hero {
    gap: 38px;
    padding-right: 34px;
    padding-left: 34px;
  }

  .hero-visual {
    max-width: 490px;
  }

  .hero-status-card {
    min-width: 190px;
  }

  .about {
    gap: 46px;
  }

  .contact-heading {
    gap: 46px;
  }
}

@media (max-width: 980px) {
  .hero {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 56px;
    padding-top: 70px;
  }

  .hero-copy {
    max-width: 720px;
  }

  .hero-visual {
    width: min(76vw, 600px);
    max-width: 600px;
    justify-self: center;
  }

  .hero-status-card-top {
    right: -2%;
  }

  .hero-status-card-bottom {
    left: -2%;
  }

  .about,
  .contact-heading,
  .support {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .support-security-note {
    margin-top: 0;
  }

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

  .rules-toc {
    background: rgba(17, 23, 52, 0.9);
    border: 1px solid rgba(117, 151, 238, 0.18);
  }
}

@media (max-width: 720px) {
  .notice-bar {
    padding-right: max(14px, env(safe-area-inset-right));
    padding-left: max(14px, env(safe-area-inset-left));
  }

  .site-header {
    padding-right: max(16px, env(safe-area-inset-right));
    padding-left: max(16px, env(safe-area-inset-left));
  }

  .hero {
    padding-right: max(18px, env(safe-area-inset-right));
    padding-left: max(18px, env(safe-area-inset-left));
  }

  .hero-visual {
    width: min(88vw, 520px);
  }

  .hero-status-card {
    min-width: 0;
    max-width: 200px;
    padding: 10px 12px;
  }

  .hero-status-card-top {
    top: 3%;
    right: -1%;
  }

  .hero-status-card-bottom {
    bottom: 4%;
    left: -1%;
  }

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

  .about-values,
  .contact-channels {
    grid-template-columns: 1fr;
  }

  .payment-provider-grid,
  .asset-safety-strip,
  .support-router {
    grid-template-columns: 1fr;
  }

  .about-values article {
    min-height: 165px;
  }

  .contact {
    padding-top: 12px;
  }

  .contact-channel {
    min-height: 98px;
  }

  .security-grid > div {
    min-height: 176px;
    padding: 22px;
  }

  .security-grid > div > span {
    width: 56px;
    height: 56px;
    border-radius: 18px;
    font-size: 19px;
  }

  .security-grid b {
    margin-top: 22px;
  }

  .trade-table th:first-child,
  .trade-table td:first-child {
    background: var(--paper);
  }

  .trade-table th:first-child {
    background: linear-gradient(110deg, #102a5a, #2b175e);
  }
}

@media (max-width: 480px) {
  .hero {
    gap: 26px;
    padding-top: 42px;
  }

  .domain-pill {
    margin-bottom: 20px;
  }

  .hero .eyebrow {
    margin-bottom: 10px;
  }

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

  .lead {
    margin-top: 20px;
    font-size: 15px;
  }

  .hero-actions {
    margin-top: 26px;
  }

  .hero-notes {
    display: none;
  }

  .hero-status-card-bottom {
    display: none;
  }

  .hero-status-card-top {
    top: auto;
    right: 4%;
    bottom: 3%;
  }

  .contact-channel {
    grid-template-columns: auto 1fr;
  }

  .contact-channel em {
    grid-column: 2;
    width: max-content;
  }

  .security-grid > div {
    min-height: 164px;
  }

  .security-grid > div > span {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    font-size: 18px;
  }
}

@media (max-width: 390px) {
  .hero-visual {
    width: 90vw;
  }

  .hero-status-card-top {
    display: none;
  }

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