.badge,
.tag,
.fact-pill {
  max-width: 100%;
  min-height: 26px;
  padding: 4px 9px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-pill);
  color: var(--color-muted);
  background: var(--color-panel);
  font-size: 12px;
  font-weight: 680;
  line-height: 1.2;
  white-space: nowrap;
}

.badge-brand {
  border-color: var(--color-brand);
  color: var(--color-brand-dark);
  background: var(--color-brand-wash);
}

.badge-action {
  border-color: var(--color-action);
  color: var(--color-action);
  background: var(--color-action-wash);
}

.badge-cyan {
  border-color: var(--color-cyan);
  color: var(--color-cyan);
  background: var(--color-cyan-wash);
}

.badge-dot {
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  border-radius: var(--radius-pill);
  background: currentColor;
}

.tab-shell {
  max-width: 100%;
}

.tab-list {
  max-width: 100%;
  padding: 5px;
  display: flex;
  gap: 4px;
  overflow-x: auto;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: var(--color-panel-soft);
  scrollbar-width: thin;
  -webkit-overflow-scrolling: touch;
}

.tab-list [role="tab"] {
  min-height: 42px;
  padding: 0 16px;
  flex: 0 0 auto;
  border: 0;
  border-radius: var(--radius-xs);
  color: var(--color-muted);
  background: transparent;
  font-weight: 700;
  white-space: nowrap;
}

.tab-list [role="tab"]:hover {
  color: var(--color-text);
}

.tab-list [role="tab"][aria-selected="true"],
.tab-list [role="tab"].is-active {
  color: var(--color-text);
  background: var(--color-panel);
  box-shadow: 0 2px 8px var(--color-shadow-soft), inset 0 -2px 0 var(--color-brand);
}

.tab-panel {
  padding-top: 24px;
}

.tab-panel[hidden] {
  display: none;
}

.toc-tabs {
  position: sticky;
  z-index: 40;
  top: var(--toc-top);
  max-width: 100%;
  min-height: var(--toc-height);
  padding: 7px;
  display: flex;
  gap: 5px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: var(--color-panel);
  box-shadow: var(--shadow-nav);
  scrollbar-width: thin;
  -webkit-overflow-scrolling: touch;
}

.toc-tabs a {
  min-height: 40px;
  padding: 0 13px;
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  border-radius: var(--radius-xs);
  color: var(--color-muted);
  font-size: 13px;
  font-weight: 680;
  white-space: nowrap;
}

.toc-tabs a:hover,
.toc-tabs a.is-current,
.toc-tabs a[aria-current="location"] {
  color: var(--color-action);
  background: var(--color-action-wash);
}

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

.faq-item {
  overflow: clip;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: var(--color-panel);
}

.faq-item summary {
  min-height: 58px;
  padding: 16px 48px 16px 18px;
  position: relative;
  display: flex;
  align-items: center;
  color: var(--color-text);
  font-weight: 760;
  list-style: none;
}

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

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 18px;
  color: var(--color-action);
  font-family: var(--font-mono);
  font-size: 20px;
  font-weight: 500;
}

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

.faq-answer {
  padding: 0 18px 18px;
  color: var(--color-muted);
}

.faq-answer p:last-child {
  margin-bottom: 0;
}

.callout {
  margin: 24px 0;
  padding: 18px 20px;
  border-left: 4px solid var(--color-brand);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  background: var(--color-brand-wash);
}

.callout-action {
  border-left-color: var(--color-action);
  background: var(--color-action-wash);
}

.callout-cyan {
  border-left-color: var(--color-cyan);
  background: var(--color-cyan-wash);
}

.callout strong {
  display: block;
  margin-bottom: 5px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  gap: 16px;
}

.price-card {
  position: relative;
  min-width: 0;
  padding: 26px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-panel);
  box-shadow: var(--shadow-panel);
}

.price-card.is-featured {
  border-color: var(--color-action);
  box-shadow: var(--shadow-button);
}

.price-card.is-current {
  border-color: var(--color-brand);
  box-shadow: 0 18px 44px var(--color-brand-wash);
}

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

.price-name {
  margin: 0 0 8px;
  color: var(--color-muted);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.05em;
}

.price-value {
  margin-bottom: 10px;
  display: flex;
  align-items: baseline;
  gap: 5px;
  font-family: var(--font-display);
}

.price-currency {
  font-size: 20px;
  font-weight: 800;
}

.price-number {
  font-size: 48px;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.price-period {
  color: var(--color-muted);
  font-size: 14px;
  font-weight: 650;
}

.price-summary {
  min-height: 52px;
  color: var(--color-muted);
  font-size: 14px;
}

.price-features {
  margin: 18px 0 24px;
  padding: 18px 0 0;
  display: grid;
  gap: 10px;
  border-top: 1px solid var(--color-border);
  list-style: none;
}

.price-features li {
  position: relative;
  padding-left: 22px;
  color: var(--color-muted);
  font-size: 14px;
}

.price-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--color-cyan);
  font-weight: 850;
}

.price-card .button {
  width: 100%;
  margin-top: auto;
}

.table-scroll {
  max-width: 100%;
  overflow-x: auto;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: var(--color-panel);
  -webkit-overflow-scrolling: touch;
}

.data-table,
.server-table,
.compare-table {
  width: 100%;
  min-width: 720px;
  background: var(--color-panel);
}

.data-table caption,
.server-table caption,
.compare-table caption {
  padding: 14px 16px;
  color: var(--color-text);
  font-weight: 780;
  text-align: left;
}

.data-table th,
.data-table td,
.server-table th,
.server-table td,
.compare-table th,
.compare-table td {
  padding: 13px 16px;
  border-bottom: 1px solid var(--color-border);
  vertical-align: middle;
}

.data-table th,
.server-table th,
.compare-table th {
  color: var(--color-text);
  background: var(--color-panel-soft);
  font-size: 12px;
  font-weight: 780;
  letter-spacing: 0.025em;
}

.data-table td,
.server-table td,
.compare-table td {
  color: var(--color-muted);
  font-size: 14px;
}

.data-table th:first-child,
.data-table td:first-child,
.server-table th:first-child,
.server-table td:first-child,
.compare-table th:first-child,
.compare-table td:first-child {
  color: var(--color-text);
  font-weight: 700;
}

.server-group-row th {
  color: var(--color-brand-dark);
  background: var(--color-brand-wash);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
}

.table-state {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.table-state::before {
  content: "";
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  border-radius: var(--radius-pill);
  background: var(--color-cyan);
}

.prose > .data-table {
  display: block;
  max-width: 100%;
  min-width: 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

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

.platform-card {
  min-width: 0;
  padding: 20px 14px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 11px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: var(--color-panel);
  text-align: center;
  transition: border-color 160ms var(--ease-standard), transform 160ms var(--ease-standard);
}

.platform-card:hover {
  border-color: var(--color-action);
  transform: translateY(-2px);
}

.platform-icon {
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  color: var(--color-text);
}

.platform-icon-fill {
  fill: currentColor;
}

.platform-icon-stroke {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.platform-name {
  font-weight: 780;
}

.platform-card .button {
  width: 100%;
  min-height: 40px;
  padding-inline: 10px;
  font-size: 13px;
}

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

.article-card {
  min-width: 0;
  overflow: clip;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-panel);
  box-shadow: var(--shadow-panel);
}

.article-card-body {
  padding: 22px;
}

.article-card-meta {
  margin-bottom: 14px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 12px;
  color: var(--color-faint);
  font-family: var(--font-mono);
  font-size: 11px;
}

.article-card h3 {
  margin-bottom: 12px;
  font-size: 21px;
}

.article-card h3 a:hover {
  color: var(--color-action);
}

.article-card p {
  margin-bottom: 18px;
  color: var(--color-muted);
  font-size: 14px;
}

.article-link {
  color: var(--color-action);
  font-weight: 740;
}

.promo-block {
  padding: clamp(24px, 5vw, 46px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  border: 1px solid var(--color-border);
  border-left: 6px solid var(--color-brand);
  border-radius: var(--radius-md);
  background: var(--color-panel);
  box-shadow: var(--shadow-device);
}

.promo-brand {
  margin-bottom: 6px;
  color: var(--color-brand-dark);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.07em;
}

.promo-block h2,
.promo-block h3 {
  margin-bottom: 8px;
  font-size: clamp(24px, 3vw, 36px);
}

.promo-block p {
  margin-bottom: 0;
  color: var(--color-muted);
}

.float-cta {
  position: fixed;
  z-index: 80;
  right: max(16px, env(safe-area-inset-right));
  bottom: max(16px, env(safe-area-inset-bottom));
  min-height: 48px;
  padding: 0 17px 0 12px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: 1px solid var(--color-action);
  border-radius: var(--radius-sm);
  color: var(--color-white);
  background: var(--color-action);
  box-shadow: var(--shadow-button);
  font-size: 14px;
  font-weight: 780;
}

.float-cta:hover {
  background: var(--color-action-dark);
  transform: translateY(-2px);
}

.float-cta-icon {
  width: 25px;
  height: 25px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: var(--radius-pill);
  color: var(--color-action);
  background: var(--color-white);
}

.float-cta-icon svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

.preview-hero {
  position: relative;
  min-height: 828px;
  overflow-x: clip;
  isolation: isolate;
}

.hero-glow {
  position: absolute;
  z-index: -2;
  top: -150px;
  left: 50%;
  width: min(1180px, 100%);
  height: 570px;
  transform: translateX(-50%);
  background: radial-gradient(
    ellipse at center,
    rgba(10, 175, 196, 0.20) 0%,
    rgba(23, 105, 232, 0.09) 34%,
    rgba(255, 104, 31, 0.14) 61%,
    rgba(244, 244, 246, 0) 78%
  );
  pointer-events: none;
}

.hero-intro {
  width: min(100%, 1080px);
  min-height: 431px;
  margin-inline: auto;
  padding: 25px var(--gutter) 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero-intro h1 {
  max-width: 900px;
  margin: 11px 0 0;
  font-weight: 900;
}

.hero-actions {
  margin-top: 15px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.hero-description {
  max-width: 850px;
  margin: 13px 0 0;
  color: var(--color-muted);
  font-size: 15px;
  line-height: 1.55;
}

.hero-description strong {
  color: var(--color-text);
}

.trust-row {
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  color: var(--color-muted);
  font-size: 12px;
  font-weight: 620;
}

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

.trust-item + .trust-item::before {
  content: "";
  width: 1px;
  height: 12px;
  margin: 0 11px;
  background: var(--color-border-strong);
}

.trust-check {
  width: 15px;
  height: 15px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: var(--radius-pill);
  color: var(--color-cyan);
  background: var(--color-cyan-wash);
  font-size: 10px;
  font-weight: 900;
}

.support-lines {
  margin-top: 11px;
  display: grid;
  gap: 7px;
}

.support-line {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 7px;
}

.line-label {
  margin-right: 4px;
  color: var(--color-faint);
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.platform-chip,
.route-chip {
  min-height: 25px;
  padding: 3px 8px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  border: 1px solid var(--color-line-glass);
  border-radius: var(--radius-xs);
  background: var(--color-panel-glass);
  color: var(--color-muted);
  font-size: 10px;
  font-weight: 680;
}

.chip-icon {
  width: 14px;
  height: 14px;
  flex: 0 0 auto;
  color: var(--color-text);
}

.mini-flag,
.board-flag {
  width: 20px;
  height: 14px;
  flex: 0 0 auto;
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-radius: 3px;
  background: var(--color-white);
}

.flag-white {
  fill: var(--color-white);
}

.flag-red {
  fill: var(--color-flag-red);
}

.flag-blue {
  fill: var(--color-flag-blue);
}

.flag-dark {
  fill: var(--color-flag-dark);
}

.flag-yellow {
  fill: var(--color-flag-yellow);
}

.flag-green {
  fill: var(--color-flag-green);
}

.charging-board {
  width: min(1180px, calc(100% - (var(--gutter) * 2)));
  height: 332px;
  margin-inline: auto;
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-panel);
  box-shadow: var(--shadow-device), var(--shadow-device-edge);
}

.board-chrome {
  height: 48px;
  padding: 0 18px;
  display: grid;
  grid-template-columns: 245px 1fr auto;
  align-items: center;
  border-bottom: 1px solid var(--color-border);
}

.window-title {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 750;
}

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

.window-dot {
  width: 8px;
  height: 8px;
  border-radius: var(--radius-pill);
}

.window-dot.brand {
  background: var(--color-brand);
}

.window-dot.cyan {
  background: var(--color-cyan);
}

.window-dot.gray {
  background: var(--color-border-strong);
}

.board-plan {
  justify-self: center;
  min-height: 27px;
  padding: 0 10px;
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xs);
  color: var(--color-muted);
  background: var(--color-page);
  font-family: var(--font-mono);
  font-size: 10px;
}

.board-plan strong {
  color: var(--color-text);
}

.board-state {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--color-muted);
  font-size: 11px;
  font-weight: 680;
}

.board-workspace {
  position: relative;
  height: calc(100% - 48px);
  display: grid;
  grid-template-columns: 285px minmax(250px, 1fr) 315px;
}

.chain-lines {
  position: absolute;
  z-index: 1;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.chain-path {
  fill: none;
  stroke: var(--color-border-strong);
  stroke-width: 1.25;
  stroke-dasharray: 4 5;
}

.chain-active {
  fill: none;
  stroke: var(--color-cyan);
  stroke-width: 1.5;
  opacity: 0.68;
}

.chain-node {
  fill: var(--color-panel);
  stroke: var(--color-brand);
  stroke-width: 1.5;
}

.platform-bank,
.region-bank,
.charge-core {
  position: relative;
  z-index: 2;
}

.platform-bank {
  padding: 18px 26px 16px 18px;
  border-right: 1px solid var(--color-border);
  background: var(--color-panel-glass);
}

.region-bank {
  padding: 18px 18px 16px 28px;
  border-left: 1px solid var(--color-border);
  background: var(--color-panel-glass);
}

.bank-heading {
  height: 24px;
  display: flex;
  justify-content: space-between;
  color: var(--color-faint);
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 750;
  letter-spacing: 0.08em;
}

.bank-count {
  color: var(--color-brand-dark);
}

.slot-list,
.region-list {
  display: grid;
  gap: 6px;
}

.platform-slot {
  height: 38px;
  padding: 0 11px;
  display: grid;
  grid-template-columns: 22px 1fr auto;
  align-items: center;
  gap: 9px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xs);
  background: var(--color-panel);
  box-shadow: 0 3px 7px var(--color-shadow-soft);
}

.slot-name {
  font-size: 11px;
  font-weight: 720;
}

.slot-port {
  width: 17px;
  height: 7px;
  border: 1px solid var(--color-cyan);
  border-radius: var(--radius-pill);
  background: var(--color-cyan-wash);
}

.charge-core {
  display: grid;
  place-items: center;
  overflow: hidden;
  background: var(--color-panel-soft);
}

.core-grid {
  position: absolute;
  inset: 0;
  opacity: 0.35;
  background-image:
    linear-gradient(var(--color-border) 1px, transparent 1px),
    linear-gradient(90deg, var(--color-border) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: radial-gradient(circle at center, var(--color-text), transparent 68%);
}

.charge-ring {
  position: relative;
  width: 150px;
  height: 150px;
  display: grid;
  place-items: center;
  border-radius: var(--radius-pill);
  background: conic-gradient(
    from 220deg,
    var(--color-cyan) 0deg,
    var(--color-cyan) 116deg,
    var(--color-brand) 252deg,
    var(--color-cyan) 360deg
  );
  box-shadow: 0 16px 35px var(--color-cyan-wash), 0 12px 28px var(--color-brand-wash);
}

.charge-ring::before {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: var(--radius-pill);
  background: var(--color-panel);
  box-shadow: inset 0 0 0 1px var(--color-border);
}

.charge-ring::after {
  content: "";
  position: absolute;
  inset: -8px;
  border: 1px dashed var(--color-border-strong);
  border-radius: var(--radius-pill);
}

.charge-content {
  position: relative;
  z-index: 2;
  display: grid;
  justify-items: center;
}

.bolt {
  width: 31px;
  height: 38px;
  fill: var(--color-brand);
}

.connect-label {
  margin-top: 4px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.12em;
}

.connect-protocol {
  margin-top: 3px;
  color: var(--color-muted);
  font-family: var(--font-mono);
  font-size: 8px;
  font-weight: 700;
}

.core-caption {
  position: absolute;
  bottom: 17px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--color-muted);
  font-family: var(--font-mono);
  font-size: 9px;
}

.core-caption::before,
.core-caption::after {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--color-border-strong);
}

.region-item {
  height: 32px;
  padding: 0 9px;
  display: grid;
  grid-template-columns: 25px 1fr auto;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xs);
  background: var(--color-panel);
  box-shadow: 0 3px 7px var(--color-shadow-soft);
}

.region-name {
  font-size: 10px;
  font-weight: 700;
}

.region-code {
  color: var(--color-muted);
  font-family: var(--font-mono);
  font-size: 8px;
  font-weight: 700;
}

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

.token-card {
  min-width: 0;
  overflow: clip;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: var(--color-panel);
}

.token-swatch {
  height: 78px;
}

.swatch-page { background: var(--color-page); }
.swatch-panel { background: var(--color-panel); }
.swatch-soft { background: var(--color-panel-soft); }
.swatch-border { background: var(--color-border); }
.swatch-brand { background: var(--color-brand); }
.swatch-brand-dark { background: var(--color-brand-dark); }
.swatch-action { background: var(--color-action); }
.swatch-text { background: var(--color-text); }
.swatch-muted { background: var(--color-muted); }
.swatch-cyan { background: var(--color-cyan); }
.swatch-warn { background: var(--color-warn); }
.swatch-error { background: var(--color-error); }

.token-name {
  padding: 10px;
  overflow-wrap: anywhere;
  border-top: 1px solid var(--color-border);
  font-family: var(--font-mono);
  font-size: 10px;
}

.preview-section-heading {
  max-width: 760px;
  margin-bottom: 36px;
}

.type-sample {
  padding: 22px 0;
  border-bottom: 1px solid var(--color-border);
}

.preview-footer {
  margin-top: 0;
}

@media (max-width: 1020px) {
  .pricing-grid,
  .article-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

  .charging-board {
    height: auto;
  }

  .board-workspace {
    min-height: 520px;
    grid-template-columns: 240px 1fr;
    grid-template-rows: 1fr auto;
  }

  .region-bank {
    grid-column: 1 / -1;
    border-top: 1px solid var(--color-border);
    border-left: 0;
  }

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

  .chain-lines {
    display: none;
  }
}

@media (max-width: 768px) {
  .preview-hero {
    min-height: auto;
    padding-bottom: 64px;
  }

  .hero-intro {
    min-height: 0;
    padding-top: 32px;
    padding-bottom: 30px;
  }

  .charging-board {
    width: calc(100% - (var(--gutter) * 2));
  }

  .board-chrome {
    grid-template-columns: 1fr auto;
  }

  .board-plan {
    display: none;
  }

  .board-workspace {
    grid-template-columns: 1fr;
    grid-template-rows: auto 260px auto;
  }

  .platform-bank,
  .region-bank {
    border: 0;
  }

  .region-bank {
    grid-column: auto;
  }

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

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

  .promo-block {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 640px) {
  .pricing-grid,
  .article-grid,
  .platform-grid {
    grid-template-columns: 1fr;
  }

  .price-card,
  .article-card-body {
    padding: 20px;
  }

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

  .hero-glow {
    top: -80px;
    height: 480px;
  }

  .hero-actions {
    width: 100%;
  }

  .hero-actions .cta {
    flex: 1 1 100%;
  }

  .trust-row {
    gap: 7px 12px;
  }

  .trust-item + .trust-item::before {
    display: none;
  }

  .support-line {
    justify-content: flex-start;
  }

  .line-label {
    width: 100%;
  }

  .board-chrome {
    padding-inline: 12px;
  }

  .board-state {
    font-size: 10px;
  }

  .platform-bank,
  .region-bank {
    padding: 14px 12px;
  }

  .slot-list,
  .region-list {
    grid-template-columns: 1fr;
  }

  .charge-core {
    min-height: 240px;
  }

  .float-cta {
    right: 12px;
    bottom: 12px;
  }
}