.reading-progress {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 3px;
  overflow: hidden;
  background: rgba(53, 200, 210, 0.08);
}

.reading-progress span {
  display: block;
  width: 100%;
  height: 100%;
  transform: scaleX(0);
  transform-origin: left center;
  background: linear-gradient(90deg, var(--bid), var(--accent), var(--warn));
  transition: transform 80ms linear;
}

.article-live-ticker {
  border-bottom: 1px solid var(--line);
  background: rgba(5, 9, 10, 0.92);
  color: var(--text-2);
  backdrop-filter: blur(12px);
}

.article-live-ticker[hidden] {
  display: none !important;
}

.article-live-ticker__inner {
  width: min(1180px, 100%);
  min-height: 34px;
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  margin: 0 auto;
  padding: 5px var(--sp-4);
  overflow-x: auto;
}

.article-live-ticker__label,
.article-live-ticker__meta,
.article-live-ticker__item small {
  flex: 0 0 auto;
  color: var(--text-3);
  font-size: 10px;
  font-weight: 900;
  white-space: nowrap;
}

.article-live-ticker__label {
  color: var(--accent);
  text-transform: uppercase;
}

.article-live-ticker__items {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
}

.article-live-ticker__item {
  min-height: 24px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0 9px;
  border: 1px solid rgba(53, 200, 210, 0.18);
  border-radius: 999px;
  background: rgba(53, 200, 210, 0.08);
  white-space: nowrap;
}

.article-live-ticker__item strong {
  color: var(--text-1);
  font-size: 10px;
  font-weight: 900;
}

.article-live-ticker__item span {
  color: var(--warn);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 900;
}

.article-live-ticker__item.is-waiting span,
.article-live-ticker.is-error .article-live-ticker__meta {
  color: var(--ask);
}

.article-live-ticker.is-fresh .article-live-ticker__item span {
  animation: spread-ticker-flash 520ms ease;
}

.theme-ripple {
  position: fixed;
  inset: 0;
  z-index: 999;
  pointer-events: none;
  clip-path: circle(0 at var(--theme-ripple-x) var(--theme-ripple-y));
  transition: clip-path 620ms cubic-bezier(0.22, 1, 0.36, 1);
}

.theme-ripple.is-active {
  clip-path: circle(150vmax at var(--theme-ripple-x) var(--theme-ripple-y));
}

.theme-ripple--light {
  background: #f5f8f6;
}

.theme-ripple--dark {
  background: #04070a;
}

.article-page-shell {
  width: 100%;
}

.article-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: var(--sp-4);
  align-items: start;
}

.article-main {
  min-width: 0;
}

.article-main .text-gray-100 {
  color: var(--text-1) !important;
}

.article-main .article-body {
  font-size: 15px;
  line-height: 1.86;
}

.article-main .article-body > * + * {
  margin-top: var(--sp-5);
}

.article-main .article-body h2 {
  margin-top: var(--sp-8);
  font-size: 23px;
  font-weight: 900;
}

.article-main .article-body h3 {
  font-size: 17px;
  font-weight: 900;
}

.article-main .article-body p {
  line-height: 1.86;
}

.article-meta-row {
  align-items: center;
}

.article-reading-time {
  min-height: 24px;
  display: inline-flex;
  align-items: center;
  padding: 0 8px;
  border: 1px solid rgba(53, 200, 210, 0.24);
  border-radius: 999px;
  background: rgba(53, 200, 210, 0.08);
  color: var(--accent);
  font-weight: 900;
}

.article-toc {
  display: none;
}

.article-toc[hidden],
.article-mobile-toc[hidden] {
  display: none !important;
}

.article-toc__eyebrow {
  margin: 0 0 var(--sp-2);
  color: var(--text-4);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.article-toc nav,
.article-mobile-toc nav {
  display: grid;
  gap: 6px;
}

.article-toc__link {
  position: relative;
  display: block;
  padding: 8px 10px 8px 14px;
  border: 1px solid transparent;
  border-radius: var(--r-sm);
  color: var(--text-3);
  font-size: var(--fs-xs);
  font-weight: 800;
  line-height: 1.45;
  text-decoration: none;
}

.article-toc__link::before {
  content: "";
  position: absolute;
  left: 5px;
  top: 9px;
  bottom: 9px;
  width: 2px;
  border-radius: 999px;
  background: transparent;
  transition: background-color 160ms ease, transform 160ms ease;
}

.article-toc__link:hover,
.article-toc__link:focus-visible,
.article-toc__link.is-active {
  border-color: rgba(53, 200, 210, 0.34);
  color: var(--text-1);
  background: rgba(53, 200, 210, 0.1);
}

.article-toc__link.is-active::before {
  background: linear-gradient(180deg, var(--accent), var(--warn));
}

.article-mobile-toc {
  display: none;
}

.article-mobile-toc summary {
  min-height: 44px;
  padding: 0 var(--sp-3);
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  color: var(--text-1);
  font-size: var(--fs-sm);
  font-weight: 800;
  list-style: none;
}

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

.article-mobile-toc summary::after {
  content: '+';
  color: var(--accent);
  font-weight: 900;
  transition: transform 140ms ease;
}

.article-mobile-toc[open] summary::after {
  transform: rotate(45deg);
}

.article-mobile-toc nav {
  max-height: 0;
  overflow-y: auto;
  padding: 0 var(--sp-3);
  transition: max-height 320ms cubic-bezier(0.22, 1, 0.36, 1), padding-bottom 220ms ease;
}

.article-mobile-toc[open] nav {
  max-height: min(52vh, 420px);
  padding-bottom: var(--sp-3);
}

.article-term {
  border-bottom: 1px dotted transparent;
  border-radius: 3px;
  transition: background-color 140ms ease, border-color 140ms ease, color 140ms ease;
}

.article-term--always,
.article-term[data-term-always="true"] {
  border-bottom-color: rgba(53, 200, 210, 0.5);
  background: rgba(53, 200, 210, 0.06);
  color: var(--text-1);
  cursor: help;
}

.article-term--always:hover,
.article-term--always:focus-visible,
.article-term--always.is-open,
.article-term[data-term-always="true"]:hover,
.article-term[data-term-always="true"]:focus-visible,
.article-term[data-term-always="true"].is-open {
  outline: none;
  border-bottom-color: var(--warn);
  background: rgba(244, 201, 93, 0.14);
}

.beginner-mode .article-term {
  border-bottom-color: rgba(53, 200, 210, 0.78);
  background: rgba(53, 200, 210, 0.1);
  color: var(--text-1);
  cursor: help;
}

.beginner-mode .article-term:hover,
.beginner-mode .article-term:focus-visible,
.beginner-mode .article-term.is-open {
  outline: none;
  border-bottom-color: var(--warn);
  background: rgba(244, 201, 93, 0.14);
}

.quick-recommendation-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--sp-3);
  margin: var(--sp-5) 0;
}

.quick-recommendation-card {
  min-width: 0;
  display: grid;
  gap: 7px;
  align-content: start;
  min-height: 156px;
  padding: var(--sp-4);
  border: 1px solid var(--line);
  border-radius: var(--r);
  color: var(--text-2) !important;
  text-decoration: none !important;
  background:
    linear-gradient(180deg, rgba(17, 22, 24, 0.94), rgba(8, 12, 14, 0.9));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.035);
  transition: transform 160ms ease, border-color 160ms ease, background-color 160ms ease;
}

.quick-recommendation-card:hover,
.quick-recommendation-card:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(53, 200, 210, 0.42);
}

.quick-recommendation-card--free {
  border-color: rgba(53, 224, 165, 0.3);
}

.quick-recommendation-card--bank {
  border-color: rgba(53, 200, 210, 0.28);
}

.quick-recommendation-card--pay {
  border-color: rgba(244, 201, 93, 0.3);
}

.quick-recommendation-card__icon {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  font-size: 17px;
}

.quick-recommendation-card span:not(.quick-recommendation-card__icon) {
  color: var(--text-3);
  font-size: var(--fs-xs);
  font-weight: 800;
  line-height: 1.5;
}

.quick-recommendation-card strong {
  color: var(--text-1);
  font-size: var(--fs-xl);
  font-weight: 900;
  line-height: 1.2;
}

.quick-recommendation-card small {
  color: var(--text-3);
  font-size: var(--fs-xs);
  line-height: 1.65;
}

.advanced-only {
  display: block;
}

.beginner-mode .advanced-only {
  display: none !important;
}

.spread-visual-card,
.spread-mini-calculator,
.spread-next-card {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: linear-gradient(180deg, rgba(17, 22, 24, 0.92), rgba(8, 12, 14, 0.88));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.035);
}

.spread-visual-card {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: var(--sp-4);
  align-items: center;
  margin: var(--sp-5) 0;
  padding: var(--sp-4);
}

.spread-visual-card--broker {
  border-color: rgba(244, 201, 93, 0.26);
  background:
    linear-gradient(135deg, rgba(244, 201, 93, 0.08), rgba(255, 107, 112, 0.05)),
    rgba(8, 12, 14, 0.9);
}

.spread-visual-card--book {
  border-color: rgba(53, 200, 210, 0.24);
  background:
    linear-gradient(135deg, rgba(53, 200, 210, 0.08), rgba(53, 224, 165, 0.05)),
    rgba(8, 12, 14, 0.9);
}

.spread-visual-card__copy {
  display: grid;
  gap: var(--sp-2);
}

.spread-visual-card__eyebrow,
.spread-mini-calculator__header > span,
.spread-next-card span {
  width: max-content;
  max-width: 100%;
  min-height: 24px;
  display: inline-flex;
  align-items: center;
  padding: 0 8px;
  border: 1px solid rgba(53, 200, 210, 0.24);
  border-radius: 999px;
  background: rgba(53, 200, 210, 0.09);
  color: var(--accent);
  font-size: 10px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.article-body .spread-visual-card h3,
.article-body .spread-mini-calculator h3 {
  margin: 0;
  color: var(--text-1);
  font-size: var(--fs-lg);
  font-weight: 900;
  line-height: 1.42;
}

.spread-visual-card__copy p,
.spread-mini-calculator__header p {
  margin: 0;
  color: var(--text-2);
  font-size: var(--fs-sm);
  line-height: 1.75;
}

.spread-bar-visual {
  display: grid;
  gap: var(--sp-3);
}

.spread-bar-visual__scale {
  position: relative;
  min-height: 156px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(140px, 0.72fr) minmax(0, 1fr);
  gap: var(--sp-2);
  align-items: stretch;
  padding: var(--sp-3);
  border: 1px solid var(--line-weak);
  border-radius: var(--r);
  background: rgba(4, 7, 10, 0.52);
}

.spread-bar-visual__scale::before {
  content: "";
  position: absolute;
  left: var(--sp-4);
  right: var(--sp-4);
  top: 50%;
  height: 10px;
  border-radius: 999px;
  background:
    linear-gradient(90deg, rgba(53, 224, 165, 0.6), rgba(244, 201, 93, 0.9), rgba(255, 107, 112, 0.72));
  transform: translateY(-50%);
  opacity: 0.28;
}

.spread-bar-visual__marker,
.spread-bar-visual__gap {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: center;
  gap: 6px;
  min-width: 0;
  min-height: 112px;
  padding: var(--sp-3);
  border-radius: var(--r-sm);
}

.spread-bar-visual__marker {
  border: 1px solid var(--line);
  background: rgba(17, 22, 24, 0.78);
}

.spread-bar-visual__marker--sell {
  border-color: rgba(53, 224, 165, 0.26);
}

.spread-bar-visual__marker--buy {
  border-color: rgba(255, 107, 112, 0.28);
}

.spread-bar-visual__marker small,
.spread-bar-visual__gap small,
.spread-bar-visual__loss span,
.spread-bar-visual__loss small,
.spread-mini-calculator__range > span,
.spread-mini-calculator__result span,
.spread-mini-calculator__result small {
  color: var(--text-3);
  font-size: var(--fs-xs);
  font-weight: 800;
  line-height: 1.55;
}

.spread-bar-visual__marker strong {
  color: var(--text-1);
  font-family: var(--font-mono);
  font-size: var(--fs-sm);
  font-weight: 900;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.spread-bar-visual__gap {
  overflow: hidden;
  border: 1px dashed rgba(244, 201, 93, 0.42);
  background:
    linear-gradient(90deg, rgba(255, 107, 112, 0.12), rgba(244, 201, 93, 0.18));
  text-align: center;
}

.spread-bar-visual__gap::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transform: translateX(-100%);
  animation: spread-gap-sheen 2.8s ease-in-out infinite;
}

.spread-bar-visual__gap strong,
.spread-bar-visual__loss strong,
.spread-mini-calculator__result strong {
  color: var(--warn);
  font-family: var(--font-mono);
  font-size: var(--fs-xl);
  font-weight: 900;
  line-height: 1.2;
}

.spread-bar-visual__loss {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: var(--sp-2);
  align-items: center;
  padding: var(--sp-3);
  border: 1px solid rgba(255, 107, 112, 0.24);
  border-radius: var(--r);
  background: rgba(255, 107, 112, 0.08);
}

.mini-orderbook {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 120px minmax(0, 1fr);
  gap: var(--sp-2);
  align-items: center;
  perspective: 900px;
}

.mini-orderbook__side {
  display: grid;
  gap: 7px;
  padding: var(--sp-3);
  border: 1px solid var(--line-weak);
  border-radius: var(--r);
  background: rgba(4, 7, 10, 0.48);
  transform: rotateX(5deg);
}

.mini-orderbook__side div {
  position: relative;
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-2);
  overflow: hidden;
  padding: 0 10px;
  border-radius: var(--r-sm);
  font-size: var(--fs-xs);
  font-weight: 900;
}

.mini-orderbook__side div::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--depth);
  opacity: 0.78;
}

.mini-orderbook__side--ask div {
  color: var(--ask);
  background: rgba(255, 107, 112, 0.08);
}

.mini-orderbook__side--ask div::before {
  background: rgba(255, 107, 112, 0.14);
}

.mini-orderbook__side--bid div {
  color: var(--bid);
  background: rgba(53, 224, 165, 0.08);
}

.mini-orderbook__side--bid div::before {
  background: rgba(53, 224, 165, 0.14);
}

.mini-orderbook__side span,
.mini-orderbook__side strong {
  position: relative;
  z-index: 1;
}

.mini-orderbook__side strong {
  color: var(--text-1);
  font-family: var(--font-mono);
  font-size: var(--fs-xs);
}

.mini-orderbook__mid {
  min-height: 92px;
  display: grid;
  place-items: center;
  gap: 3px;
  padding: var(--sp-2);
  border: 1px dashed rgba(53, 200, 210, 0.42);
  border-radius: var(--r);
  background: rgba(53, 200, 210, 0.08);
  text-align: center;
  animation: spread-mid-pulse 2.4s ease-in-out infinite;
}

.mini-orderbook__mid span {
  color: var(--accent);
  font-size: 10px;
  font-weight: 900;
}

.mini-orderbook__mid strong {
  color: var(--text-1);
  font-family: var(--font-mono);
  font-size: var(--fs-sm);
  font-weight: 900;
}

.spread-mini-calculator {
  display: grid;
  gap: var(--sp-4);
  margin: var(--sp-5) 0;
  padding: var(--sp-4);
  border-color: rgba(53, 224, 165, 0.24);
  background:
    linear-gradient(135deg, rgba(53, 224, 165, 0.08), rgba(244, 201, 93, 0.05)),
    rgba(8, 12, 14, 0.9);
}

.spread-mini-calculator__header {
  display: grid;
  gap: var(--sp-2);
}

.spread-mini-calculator__body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 0.48fr);
  gap: var(--sp-4);
  align-items: center;
}

.spread-mini-calculator__range {
  display: grid;
  gap: var(--sp-3);
}

.spread-mini-calculator__range > span strong {
  color: var(--text-1);
  font-family: var(--font-mono);
  font-size: var(--fs-md);
}

.spread-mini-calculator__range input[type="range"] {
  width: 100%;
  height: 8px;
  appearance: none;
  border-radius: 999px;
  outline: none;
  background:
    linear-gradient(90deg, var(--bid) 0%, var(--warn) var(--spread-cost-progress), rgba(255, 255, 255, 0.14) var(--spread-cost-progress));
}

.spread-mini-calculator__range input[type="range"]::-webkit-slider-thumb {
  width: 22px;
  height: 22px;
  appearance: none;
  border: 2px solid rgba(4, 7, 10, 0.92);
  border-radius: 999px;
  background: var(--warn);
  box-shadow: 0 0 0 4px rgba(244, 201, 93, 0.18);
}

.spread-mini-calculator__range input[type="range"]::-moz-range-thumb {
  width: 22px;
  height: 22px;
  border: 2px solid rgba(4, 7, 10, 0.92);
  border-radius: 999px;
  background: var(--warn);
  box-shadow: 0 0 0 4px rgba(244, 201, 93, 0.18);
}

.spread-mini-calculator__result {
  display: grid;
  gap: 5px;
  padding: var(--sp-3);
  border: 1px solid rgba(244, 201, 93, 0.28);
  border-radius: var(--r);
  background: rgba(244, 201, 93, 0.08);
}

.spread-mini-calculator__result strong {
  color: var(--ask);
  font-size: 26px;
}

.spread-next-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--sp-3);
  margin: var(--sp-5) 0;
}

.spread-next-card {
  display: grid;
  grid-template-rows: auto auto auto minmax(0, 1fr);
  gap: var(--sp-2);
  overflow: hidden;
  padding: var(--sp-3);
  color: var(--text-2) !important;
  text-decoration: none !important;
  transition: transform 180ms cubic-bezier(0.22, 1, 0.36, 1), border-color 180ms ease, box-shadow 180ms ease;
}

.spread-next-card img {
  width: 100%;
  aspect-ratio: 16 / 8.5;
  object-fit: cover;
  border: 1px solid var(--line-weak);
  border-radius: var(--r-sm);
  background: rgba(4, 7, 10, 0.54);
}

.spread-next-card strong {
  color: var(--text-1);
  font-size: var(--fs-md);
  font-weight: 900;
  line-height: 1.5;
}

.spread-next-card small {
  color: var(--text-3);
  font-size: var(--fs-xs);
  line-height: 1.65;
}

.spread-next-card--sales {
  border-color: rgba(53, 224, 165, 0.26);
}

.spread-next-card--learn {
  border-color: rgba(53, 200, 210, 0.26);
}

.spread-next-card:hover,
.spread-next-card:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(244, 201, 93, 0.44);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.32);
}

.fee-summary-strip,
.fee-cost-grid,
.article-next-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--sp-3);
}

.fee-summary-item,
.fee-visual,
.fee-cost-compare,
.fee-step-list,
.fee-mini-sim,
.article-mode-note,
.article-next-card {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: linear-gradient(180deg, rgba(17, 22, 24, 0.9), rgba(8, 12, 14, 0.86));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.035);
}

.fee-summary-item {
  display: grid;
  gap: 6px;
  padding: var(--sp-3);
}

.fee-summary-item span,
.fee-visual__eyebrow,
.article-next-card__kicker {
  color: var(--accent);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.fee-summary-item strong {
  color: var(--text-1);
  font-size: var(--fs-md);
  font-weight: 800;
}

.fee-summary-item small,
.article-next-card small {
  color: var(--text-3);
  font-size: var(--fs-xs);
  line-height: 1.65;
}

.fee-visual {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(260px, 1.08fr);
  gap: var(--sp-4);
  align-items: center;
  padding: var(--sp-4);
  border-color: rgba(53, 200, 210, 0.24);
  background:
    radial-gradient(circle at top right, rgba(53, 200, 210, 0.14), transparent 42%),
    linear-gradient(180deg, rgba(13, 18, 20, 0.94), rgba(8, 12, 14, 0.9));
}

.fee-visual__copy,
.fee-cost-compare__header,
.fee-mini-sim__header {
  display: grid;
  gap: var(--sp-2);
}

.article-body .fee-visual h3,
.article-body .fee-cost-compare h3,
.article-body .fee-mini-sim h3 {
  margin: 0;
  color: var(--text-1);
  font-size: var(--fs-lg);
  font-weight: 800;
}

.fee-visual__copy p,
.fee-mini-sim__header p {
  margin: 0;
  color: var(--text-2);
  font-size: var(--fs-sm);
  line-height: 1.75;
}

.orderbook-visual {
  display: grid;
  grid-template-columns: minmax(160px, 1fr) minmax(120px, 0.8fr);
  gap: var(--sp-3);
  align-items: center;
}

.orderbook-visual__book {
  display: grid;
  gap: 6px;
  padding: var(--sp-3);
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: rgba(4, 7, 10, 0.5);
}

.orderbook-visual__row,
.orderbook-visual__actor {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-2);
  min-height: 34px;
  padding: 0 10px;
  border-radius: var(--r-sm);
  font-size: var(--fs-xs);
  font-weight: 800;
}

.orderbook-visual__row--ask {
  background: rgba(255, 107, 112, 0.11);
  color: var(--ask);
}

.orderbook-visual__row--bid {
  background: rgba(53, 224, 165, 0.1);
  color: var(--bid);
}

.orderbook-visual__mid {
  min-height: 30px;
  display: grid;
  place-items: center;
  border: 1px dashed rgba(53, 200, 210, 0.3);
  border-radius: var(--r-sm);
  color: var(--accent);
  font-size: var(--fs-xs);
  font-weight: 900;
}

.orderbook-visual__actions {
  display: grid;
  gap: var(--sp-2);
}

.orderbook-visual__actor {
  position: relative;
  display: grid;
  justify-content: stretch;
  min-height: 58px;
  border: 1px solid var(--line);
  color: var(--text-1);
  background: rgba(17, 22, 24, 0.8);
}

.orderbook-visual__actor strong {
  font-size: var(--fs-sm);
}

.orderbook-visual__actor span {
  color: var(--text-3);
  font-size: var(--fs-xs);
}

.orderbook-visual__actor::before {
  content: "";
  position: absolute;
  left: -18px;
  top: 50%;
  width: 18px;
  height: 2px;
  background: var(--accent);
  transform: translateY(-50%);
}

.orderbook-visual__actor--maker::before {
  animation: maker-pulse 1.8s ease-in-out infinite;
}

.orderbook-visual__actor--taker::before {
  background: var(--warn);
  animation: taker-pulse 1.8s ease-in-out infinite;
}

.orderbook-learning-hero,
.orderbook-execution-sim,
.orderbook-mini-quiz {
  min-width: 0;
  margin: var(--sp-5) 0;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background:
    radial-gradient(circle at top right, rgba(53, 200, 210, 0.12), transparent 40%),
    linear-gradient(150deg, rgba(17, 22, 24, 0.94), rgba(8, 12, 14, 0.88));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.orderbook-learning-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(300px, 1.18fr);
  gap: var(--sp-4);
  align-items: center;
  padding: var(--sp-4);
  overflow: hidden;
}

.orderbook-learning-hero__copy,
.orderbook-execution-sim__header > div:first-child,
.orderbook-mini-quiz {
  display: grid;
  gap: var(--sp-2);
}

.orderbook-learning-hero__eyebrow,
.orderbook-execution-sim__eyebrow,
.orderbook-mini-quiz__eyebrow {
  width: max-content;
  max-width: 100%;
  min-height: 24px;
  display: inline-flex;
  align-items: center;
  padding: 0 8px;
  border: 1px solid rgba(53, 200, 210, 0.26);
  border-radius: 999px;
  background: rgba(53, 200, 210, 0.09);
  color: var(--accent);
  font-size: 10px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.article-body .orderbook-learning-hero h2,
.article-body .orderbook-execution-sim h3,
.article-body .orderbook-mini-quiz h2 {
  margin: 0;
  color: var(--text-1);
  font-size: var(--fs-xl);
  font-weight: 900;
  line-height: 1.42;
}

.orderbook-learning-hero__copy p,
.orderbook-execution-sim__control p,
.orderbook-mini-quiz__result {
  margin: 0;
  color: var(--text-2);
  font-size: var(--fs-sm);
  line-height: 1.75;
}

.orderbook-learning-hero__book {
  display: grid;
  gap: 7px;
  padding: var(--sp-3);
  border: 1px solid var(--line-weak);
  border-radius: var(--r);
  background: rgba(4, 7, 10, 0.5);
}

.orderbook-learning-hero__book-head,
.orderbook-learning-row,
.orderbook-execution-level,
.orderbook-execution-limit-line,
.orderbook-execution-spread-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-2);
  min-width: 0;
}

.orderbook-learning-hero__book-head {
  min-height: 24px;
  padding: 0 3px;
  color: var(--text-3);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.orderbook-learning-hero__book-head strong {
  color: var(--text-4);
  font-family: var(--font-mono);
  font-size: 10px;
}

.orderbook-learning-hero__rows {
  display: grid;
  gap: 6px;
}

.orderbook-learning-row,
.orderbook-execution-level,
.orderbook-execution-limit-line {
  position: relative;
  overflow: hidden;
  min-height: 36px;
  padding: 0 10px;
  border: 1px solid transparent;
  border-radius: var(--r-sm);
  font-size: var(--fs-xs);
  font-weight: 900;
}

.orderbook-learning-row::before,
.orderbook-execution-level::before,
.orderbook-execution-limit-line::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--depth);
  opacity: 0.78;
}

.orderbook-learning-row--ask,
.orderbook-execution-level {
  border-color: rgba(255, 107, 112, 0.14);
  color: var(--ask);
  background: rgba(255, 107, 112, 0.07);
}

.orderbook-learning-row--ask::before,
.orderbook-execution-level::before {
  background: rgba(255, 107, 112, 0.12);
}

.orderbook-learning-row--bid,
.orderbook-execution-limit-line {
  border-color: rgba(53, 224, 165, 0.16);
  color: var(--bid);
  background: rgba(53, 224, 165, 0.08);
}

.orderbook-learning-row--bid::before,
.orderbook-execution-limit-line::before {
  background: rgba(53, 224, 165, 0.13);
}

.orderbook-learning-row span,
.orderbook-learning-row strong,
.orderbook-execution-level span,
.orderbook-execution-level small,
.orderbook-execution-limit-line span,
.orderbook-execution-limit-line small {
  position: relative;
  z-index: 1;
  min-width: 0;
}

.orderbook-learning-row strong,
.orderbook-execution-level strong,
.orderbook-execution-limit-line strong {
  color: var(--text-1);
  font-family: var(--font-mono);
  font-size: var(--fs-xs);
  overflow-wrap: anywhere;
}

.orderbook-learning-hero__spread,
.orderbook-execution-spread-line {
  min-height: 32px;
  padding: 0 10px;
  border: 1px dashed rgba(53, 200, 210, 0.34);
  border-radius: var(--r-sm);
  background: rgba(53, 200, 210, 0.08);
  color: var(--accent);
  font-size: var(--fs-xs);
  font-weight: 900;
}

.orderbook-learning-hero__spread strong {
  color: var(--text-1);
  font-family: var(--font-mono);
}

.orderbook-learning-hero.is-ticking .orderbook-learning-row {
  animation: orderbook-row-flash 420ms ease;
}

.orderbook-execution-sim {
  display: grid;
  gap: var(--sp-4);
  padding: var(--sp-4);
  border-color: rgba(53, 224, 165, 0.22);
  background:
    linear-gradient(135deg, rgba(53, 224, 165, 0.08), rgba(53, 200, 210, 0.06)),
    rgba(8, 12, 14, 0.9);
}

.orderbook-execution-sim__header,
.orderbook-execution-sim__body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(210px, auto);
  gap: var(--sp-4);
  align-items: center;
}

.orderbook-execution-sim__mode {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--sp-2);
}

.orderbook-execution-sim__mode button,
.orderbook-mini-quiz__choices button {
  min-height: 40px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: rgba(17, 22, 24, 0.78);
  color: var(--text-2);
  font-size: var(--fs-xs);
  font-weight: 900;
}

.orderbook-execution-sim__mode button:hover,
.orderbook-execution-sim__mode button:focus-visible,
.orderbook-mini-quiz__choices button:hover,
.orderbook-mini-quiz__choices button:focus-visible {
  border-color: rgba(53, 200, 210, 0.42);
  color: var(--text-1);
  background: rgba(53, 200, 210, 0.11);
}

.orderbook-execution-sim__mode button.is-active {
  border-color: rgba(53, 224, 165, 0.46);
  background: rgba(53, 224, 165, 0.13);
  color: var(--bid);
}

.orderbook-execution-sim__control {
  display: grid;
  gap: var(--sp-3);
  min-width: 0;
}

.orderbook-execution-sim__control label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-2);
  color: var(--text-3);
  font-size: var(--fs-xs);
  font-weight: 900;
}

.orderbook-execution-sim__control label strong {
  color: var(--text-1);
  font-family: var(--font-mono);
}

.orderbook-execution-sim__control input[type="range"] {
  width: 100%;
  height: 8px;
  appearance: none;
  border-radius: 999px;
  outline: none;
  background:
    linear-gradient(90deg, var(--bid) 0%, var(--warn) var(--orderbook-sim-progress), rgba(255, 255, 255, 0.14) var(--orderbook-sim-progress));
}

.orderbook-execution-sim__control input[type="range"]::-webkit-slider-thumb {
  width: 22px;
  height: 22px;
  appearance: none;
  border: 2px solid rgba(4, 7, 10, 0.92);
  border-radius: 999px;
  background: var(--warn);
  box-shadow: 0 0 0 4px rgba(244, 201, 93, 0.18);
}

.orderbook-execution-sim__control input[type="range"]::-moz-range-thumb {
  width: 22px;
  height: 22px;
  border: 2px solid rgba(4, 7, 10, 0.92);
  border-radius: 999px;
  background: var(--warn);
  box-shadow: 0 0 0 4px rgba(244, 201, 93, 0.18);
}

.orderbook-execution-sim__summary {
  display: grid;
  gap: 5px;
  min-width: 0;
  padding: var(--sp-3);
  border: 1px solid rgba(244, 201, 93, 0.28);
  border-radius: var(--r);
  background: rgba(244, 201, 93, 0.08);
}

.orderbook-execution-sim__summary span,
.orderbook-execution-sim__summary small {
  color: var(--text-3);
  font-size: var(--fs-xs);
  line-height: 1.6;
}

.orderbook-execution-sim__summary strong {
  color: var(--warn);
  font-family: var(--font-mono);
  font-size: var(--fs-xl);
  font-weight: 900;
  line-height: 1.2;
  overflow-wrap: anywhere;
}

.orderbook-execution-sim__book {
  display: grid;
  gap: 7px;
  padding: var(--sp-3);
  border: 1px solid var(--line-weak);
  border-radius: var(--r);
  background: rgba(4, 7, 10, 0.48);
}

.orderbook-execution-level::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--fill);
  background: linear-gradient(90deg, rgba(244, 201, 93, 0.28), rgba(255, 107, 112, 0.26));
  opacity: 0.95;
}

.orderbook-execution-level.is-filled,
.orderbook-execution-level.is-partial {
  border-color: rgba(244, 201, 93, 0.42);
}

.orderbook-execution-level em,
.orderbook-execution-limit-line em {
  margin-right: 6px;
  font-style: normal;
  color: currentColor;
}

.orderbook-execution-level small,
.orderbook-execution-limit-line small {
  color: var(--text-2);
  font-family: var(--font-mono);
  font-size: var(--fs-xs);
  font-weight: 900;
}

.orderbook-execution-spread-line {
  justify-content: center;
  color: var(--accent);
}

.orderbook-mini-quiz {
  padding: var(--sp-4);
  border-color: rgba(244, 201, 93, 0.24);
  background:
    radial-gradient(circle at top right, rgba(244, 201, 93, 0.12), transparent 40%),
    linear-gradient(150deg, rgba(17, 22, 24, 0.94), rgba(8, 12, 14, 0.9));
}

.orderbook-mini-quiz__choices {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--sp-2);
}

.orderbook-mini-quiz__choices button.is-correct {
  border-color: rgba(53, 224, 165, 0.48);
  background: rgba(53, 224, 165, 0.13);
  color: var(--bid);
}

.orderbook-mini-quiz__choices button.is-wrong {
  border-color: rgba(255, 107, 112, 0.44);
  background: rgba(255, 107, 112, 0.11);
  color: var(--ask);
}

.orderbook-mini-quiz__cta {
  width: max-content;
  max-width: 100%;
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 var(--sp-3);
  border: 1px solid rgba(53, 224, 165, 0.34);
  border-radius: var(--r);
  background: rgba(53, 224, 165, 0.1);
  color: var(--bid) !important;
  font-size: var(--fs-xs);
  font-weight: 900;
  text-decoration: none !important;
}

.orderbook-mini-quiz__cta[hidden] {
  display: none !important;
}

.beginner-spotlight-overlay {
  position: fixed;
  inset: 0;
  z-index: 34;
  pointer-events: none;
  background: rgba(0, 0, 0, 0.48);
  backdrop-filter: blur(1px);
  animation: beginner-spotlight-fade 180ms ease;
}

.beginner-spotlight-callout {
  position: fixed;
  z-index: 37;
  display: grid;
  gap: 5px;
  padding: 12px 14px;
  border: 1px solid rgba(244, 201, 93, 0.4);
  border-radius: var(--r);
  background: rgba(18, 18, 14, 0.96);
  box-shadow: var(--shadow-lg);
  pointer-events: none;
}

.beginner-spotlight-callout strong {
  color: var(--warn);
  font-size: var(--fs-sm);
  font-weight: 900;
}

.beginner-spotlight-callout span {
  color: var(--text-1);
  font-size: var(--fs-xs);
  line-height: 1.6;
}

.is-beginner-spotlight {
  position: relative;
  z-index: 36;
  box-shadow:
    0 0 0 1px rgba(244, 201, 93, 0.28),
    0 0 0 8px rgba(244, 201, 93, 0.08),
    var(--shadow-lg) !important;
}

.article-mode-note {
  display: grid;
  gap: 6px;
  padding: var(--sp-3);
  border-color: rgba(244, 201, 93, 0.24);
  background: rgba(244, 201, 93, 0.08);
}

.article-mode-note strong {
  color: var(--warn);
  font-size: var(--fs-sm);
  font-weight: 800;
}

.article-mode-note span {
  color: var(--text-2);
  font-size: var(--fs-sm);
  line-height: 1.7;
}

.article-mode-note--advanced {
  border-color: rgba(53, 200, 210, 0.22);
  background: rgba(53, 200, 210, 0.07);
}

.article-mode-note--advanced strong {
  color: var(--accent);
}

.fee-cost-compare {
  display: grid;
  gap: var(--sp-3);
  padding: var(--sp-4);
}

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

.fee-cost-card {
  display: grid;
  gap: var(--sp-3);
  min-width: 0;
  padding: var(--sp-3);
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: rgba(8, 12, 14, 0.56);
}

.fee-cost-card--broker {
  border-color: rgba(244, 201, 93, 0.24);
}

.fee-cost-card--exchange {
  border-color: rgba(53, 200, 210, 0.24);
}

.fee-cost-card__badge {
  width: max-content;
  min-height: 24px;
  display: inline-flex;
  align-items: center;
  padding: 0 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--text-2);
  font-size: 10px;
  font-weight: 900;
}

.article-body .fee-cost-card h4 {
  margin: 0;
  color: var(--text-1);
  font-size: var(--fs-md);
  font-weight: 800;
  line-height: 1.5;
}

.fee-cost-card dl {
  display: grid;
  gap: 8px;
  margin: 0;
}

.fee-cost-card dl div {
  display: grid;
  grid-template-columns: 116px minmax(0, 1fr);
  gap: var(--sp-2);
  padding-top: 8px;
  border-top: 1px solid var(--line-weak);
}

.fee-cost-card dt {
  color: var(--text-4);
  font-size: var(--fs-xs);
  font-weight: 800;
}

.fee-cost-card dd {
  margin: 0;
  color: var(--text-2);
  font-size: var(--fs-xs);
  line-height: 1.65;
}

.fee-step-list {
  display: grid;
  gap: 0;
  padding: var(--sp-2);
}

.fee-step {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: var(--sp-3);
  padding: var(--sp-3);
  border-radius: var(--r-sm);
}

.fee-step + .fee-step {
  border-top: 1px solid var(--line-weak);
}

.fee-step__number {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(53, 200, 210, 0.32);
  border-radius: 999px;
  background: rgba(53, 200, 210, 0.1);
  color: var(--accent);
  font-size: var(--fs-xs);
  font-weight: 900;
}

.fee-step strong {
  display: block;
  color: var(--text-1);
  font-size: var(--fs-sm);
  line-height: 1.55;
}

.fee-step small {
  display: block;
  margin-top: 4px;
  color: var(--text-3);
  font-size: var(--fs-xs);
  line-height: 1.65;
}

.fee-mini-sim {
  display: grid;
  gap: var(--sp-4);
  padding: var(--sp-4);
  border-color: rgba(53, 224, 165, 0.22);
  background:
    linear-gradient(135deg, rgba(53, 224, 165, 0.08), rgba(53, 200, 210, 0.06)),
    rgba(8, 12, 14, 0.9);
}

.fee-mini-sim__controls {
  display: grid;
  grid-template-columns: minmax(180px, 1fr) minmax(190px, auto);
  gap: var(--sp-3);
  align-items: end;
}

.fee-mini-sim__field {
  display: grid;
  gap: 6px;
}

.fee-mini-sim__field span {
  color: var(--text-3);
  font-size: var(--fs-xs);
  font-weight: 800;
}

.fee-mini-sim__field input {
  min-height: 42px;
  width: 100%;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: rgba(4, 7, 10, 0.64);
  color: var(--text-1);
  font-size: var(--fs-md);
  font-weight: 800;
}

.fee-mini-sim__modes {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--sp-2);
}

.fee-mini-sim__modes button {
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: rgba(17, 22, 24, 0.78);
  color: var(--text-2);
  font-size: var(--fs-xs);
  font-weight: 900;
}

.fee-mini-sim__modes button.is-active {
  border-color: rgba(53, 224, 165, 0.44);
  background: rgba(53, 224, 165, 0.12);
  color: var(--bid);
}

.fee-mini-sim__result {
  display: grid;
  gap: 4px;
  padding: var(--sp-3);
  border: 1px solid rgba(53, 224, 165, 0.22);
  border-radius: var(--r);
  background: rgba(4, 7, 10, 0.48);
}

.fee-mini-sim__result span,
.fee-mini-sim__result small {
  color: var(--text-3);
  font-size: var(--fs-xs);
  line-height: 1.6;
}

.fee-mini-sim__result strong {
  color: var(--text-1);
  font-family: var(--font-mono);
  font-size: var(--fs-xl);
  font-weight: 900;
}

.fee-mini-sim__link {
  width: max-content;
  max-width: 100%;
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 var(--sp-3);
  border: 1px solid rgba(53, 200, 210, 0.34);
  border-radius: var(--r);
  background: rgba(53, 200, 210, 0.1);
  color: var(--accent) !important;
  font-size: var(--fs-xs);
  font-weight: 900;
  text-decoration: none !important;
}

.jpy-withdrawal-tool {
  display: grid;
  gap: var(--sp-4);
  margin: var(--sp-5) 0;
  padding: var(--sp-4);
  border: 1px solid rgba(53, 200, 210, 0.24);
  border-radius: var(--r);
  background:
    linear-gradient(135deg, rgba(53, 200, 210, 0.08), rgba(53, 224, 165, 0.06)),
    rgba(8, 12, 14, 0.9);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.035);
}

.jpy-withdrawal-tool__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--sp-4);
}

.article-body .jpy-withdrawal-tool h3 {
  margin: 0;
  color: var(--text-1);
  font-size: var(--fs-lg);
  font-weight: 900;
  line-height: 1.45;
}

.jpy-withdrawal-tool__header p:last-child,
.jpy-withdrawal-help {
  max-width: 360px;
  margin: 0;
  color: var(--text-3);
  font-size: var(--fs-xs);
  line-height: 1.65;
}

.jpy-withdrawal-beginner {
  gap: var(--sp-2);
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding: var(--sp-3);
  border: 1px solid rgba(244, 201, 93, 0.24);
  border-radius: var(--r);
  background: rgba(244, 201, 93, 0.08);
}

.beginner-mode .jpy-withdrawal-beginner.beginner-only:not([hidden]) {
  display: grid !important;
}

.jpy-withdrawal-beginner__item {
  display: grid;
  gap: 5px;
  padding: var(--sp-2);
}

.jpy-withdrawal-beginner__item span {
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(244, 201, 93, 0.16);
  color: var(--warn);
  font-size: 11px;
  font-weight: 900;
}

.jpy-withdrawal-beginner__item strong {
  color: var(--text-1);
  font-size: var(--fs-sm);
  font-weight: 900;
}

.jpy-withdrawal-beginner__item small {
  color: var(--text-3);
  font-size: var(--fs-xs);
  line-height: 1.65;
}

.jpy-withdrawal-controls {
  display: grid;
  grid-template-columns: minmax(220px, 0.72fr) minmax(280px, 1fr);
  gap: var(--sp-3);
  align-items: end;
}

.jpy-withdrawal-field {
  display: grid;
  gap: 6px;
}

.jpy-withdrawal-field > span:first-child {
  color: var(--text-3);
  font-size: var(--fs-xs);
  font-weight: 900;
}

.jpy-withdrawal-field__control {
  display: flex;
  align-items: center;
  min-height: 44px;
  padding: 0 12px;
  border: 1px solid rgba(53, 200, 210, 0.28);
  border-radius: var(--r);
  background: rgba(4, 7, 10, 0.72);
  color: var(--text-3);
}

.jpy-withdrawal-field__control input {
  min-width: 0;
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--text-1);
  font-family: var(--font-mono);
  font-size: var(--fs-lg);
  font-weight: 900;
}

.jpy-withdrawal-bank-filter {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--sp-2);
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: rgba(4, 7, 10, 0.46);
}

.jpy-withdrawal-bank-filter button {
  min-height: 38px;
  padding: 0 var(--sp-3);
  border: 1px solid transparent;
  border-radius: var(--r-sm);
  background: transparent;
  color: var(--text-3);
  font-size: var(--fs-xs);
  font-weight: 900;
}

.jpy-withdrawal-bank-filter button:hover,
.jpy-withdrawal-bank-filter button:focus-visible,
.jpy-withdrawal-bank-filter button.is-active {
  border-color: rgba(53, 200, 210, 0.36);
  background: rgba(53, 200, 210, 0.12);
  color: var(--text-1);
}

.jpy-withdrawal-summary {
  display: grid;
  gap: 5px;
  padding: var(--sp-3);
  border: 1px solid rgba(53, 224, 165, 0.24);
  border-radius: var(--r);
  background: rgba(53, 224, 165, 0.08);
}

.jpy-withdrawal-summary span,
.jpy-withdrawal-summary small {
  color: var(--text-3);
  font-size: var(--fs-xs);
}

.jpy-withdrawal-summary strong {
  color: var(--text-1);
  font-size: var(--fs-md);
  font-weight: 900;
}

.jpy-withdrawal-table-shell {
  max-height: min(68vh, 620px);
  overflow: auto;
  border: 1px solid var(--line-weak);
  border-radius: var(--r);
  background: rgba(3, 7, 5, 0.9);
}

.article-body .jpy-withdrawal-table {
  display: table;
  width: 100%;
  min-width: 930px;
  border: 0;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 0;
  background: transparent;
  font-size: var(--fs-xs);
  line-height: 1.5;
}

.article-body .jpy-withdrawal-table th,
.article-body .jpy-withdrawal-table td {
  min-width: 0;
  padding: var(--sp-2) var(--sp-3);
  border-right: 1px solid rgba(118, 140, 120, 0.18);
  border-bottom: 1px solid rgba(118, 140, 120, 0.18);
  vertical-align: middle;
  background: rgba(5, 10, 6, 0.78);
  white-space: normal;
}

.article-body .jpy-withdrawal-table thead th {
  position: sticky;
  top: 0;
  z-index: 2;
  color: var(--text-1);
  background: rgba(18, 33, 25, 0.98);
  box-shadow: 0 1px 0 rgba(118, 140, 120, 0.22);
  white-space: nowrap;
}

.article-body .jpy-withdrawal-table tr.is-best td {
  background: rgba(21, 42, 31, 0.9);
}

.article-body .jpy-withdrawal-table tr.is-muted td {
  color: var(--text-3);
}

.jpy-rank {
  min-width: 34px;
  min-height: 26px;
  display: inline-grid;
  place-items: center;
  padding: 0 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-1);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 900;
}

.is-best .jpy-rank {
  background: rgba(244, 201, 93, 0.18);
  color: var(--warn);
}

.jpy-exchange {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  min-width: 0;
}

.jpy-exchange-mark {
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: color-mix(in srgb, var(--exchange-color) 22%, rgba(4, 7, 10, 0.86));
  color: #fff;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0 !important;
  box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--exchange-color) 52%, transparent);
}

.jpy-exchange strong,
.jpy-withdrawal-table td > strong {
  display: block;
  color: var(--text-1);
  font-size: var(--fs-sm);
  font-weight: 900;
}

.jpy-exchange small,
.jpy-table-note {
  display: block;
  margin-top: 3px;
  color: var(--text-3);
  font-size: 11px;
  line-height: 1.5;
}

.jpy-fee-badge {
  width: max-content;
  max-width: 100%;
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 9px;
  border-radius: 999px;
  background: rgba(53, 200, 210, 0.12);
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: var(--fs-xs);
  font-weight: 900;
}

.jpy-fee-badge.is-free {
  background: rgba(53, 224, 165, 0.18);
  color: #d8ffd9;
}

.jpy-fee-badge.is-low {
  background: rgba(53, 224, 165, 0.12);
  color: var(--bid);
}

.jpy-fee-badge.is-unknown {
  background: rgba(140, 150, 150, 0.14);
  color: var(--text-3);
}

.jpy-source-button {
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
  border: 1px solid rgba(53, 200, 210, 0.28);
  border-radius: var(--r-sm);
  background: rgba(53, 200, 210, 0.1);
  color: var(--accent) !important;
  font-size: 11px;
  font-weight: 900;
  text-decoration: none !important;
  white-space: nowrap;
}

.jpy-source-button:hover,
.jpy-source-button:focus-visible {
  border-color: rgba(53, 200, 210, 0.48);
  background: rgba(53, 200, 210, 0.16);
  color: var(--text-1) !important;
}

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

.article-next-card {
  display: grid;
  gap: 8px;
  padding: var(--sp-4);
  color: var(--text-2) !important;
  text-decoration: none;
  transition: transform 180ms cubic-bezier(0.22, 1, 0.36, 1), border-color 180ms ease, box-shadow 180ms ease;
}

.article-next-card__action {
  width: max-content;
  max-width: 100%;
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
  border: 1px solid rgba(53, 200, 210, 0.26);
  border-radius: var(--r-sm);
  color: var(--accent);
  font-size: 11px;
  font-weight: 900;
  transition: transform 180ms cubic-bezier(0.22, 1, 0.36, 1), border-color 180ms ease, background-color 180ms ease;
}

.article-next-card--primary {
  border-color: rgba(53, 224, 165, 0.26);
  background:
    radial-gradient(circle at top right, rgba(53, 224, 165, 0.12), transparent 42%),
    linear-gradient(180deg, rgba(14, 22, 18, 0.92), rgba(8, 12, 14, 0.88));
}

.article-next-card:hover,
.article-next-card:focus-visible {
  border-color: rgba(53, 200, 210, 0.46);
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.32);
}

.article-next-card:hover .article-next-card__action,
.article-next-card:focus-visible .article-next-card__action {
  border-color: rgba(244, 201, 93, 0.42);
  background: rgba(244, 201, 93, 0.1);
  transform: translate(2px, -2px);
}

.article-next-card strong {
  color: var(--text-1);
  font-size: var(--fs-md);
  font-weight: 900;
}

.broker-hero-visual,
.broker-comparison-section,
.broker-choice,
.broker-spread-visual {
  display: grid;
  gap: var(--sp-4);
  margin: var(--sp-5) 0;
  padding: var(--sp-4);
  border: 1px solid rgba(53, 200, 210, 0.24);
  border-radius: var(--r);
  background:
    linear-gradient(135deg, rgba(53, 200, 210, 0.08), rgba(244, 201, 93, 0.05)),
    rgba(8, 12, 14, 0.9);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.035);
}

.broker-hero-visual {
  border-color: rgba(244, 201, 93, 0.26);
}

.broker-hero-visual__badges {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
}

.broker-hero-visual__badges span,
.broker-section-heading > span,
.broker-procon-card > span {
  width: max-content;
  max-width: 100%;
  min-height: 26px;
  display: inline-flex;
  align-items: center;
  padding: 0 9px;
  border: 1px solid rgba(53, 200, 210, 0.24);
  border-radius: 999px;
  background: rgba(53, 200, 210, 0.09);
  color: var(--accent);
  font-size: 10px;
  font-weight: 900;
  line-height: 1;
}

.broker-hero-visual__badges span:first-child {
  border-color: rgba(244, 201, 93, 0.3);
  background: rgba(244, 201, 93, 0.1);
  color: var(--warn);
}

.broker-flow-grid,
.broker-procon-grid,
.broker-choice__buttons {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--sp-3);
}

.broker-flow {
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 36px minmax(0, 1fr);
  gap: var(--sp-2);
  align-items: center;
  padding: var(--sp-3);
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: rgba(5, 9, 10, 0.58);
}

.broker-flow--shop {
  border-color: rgba(244, 201, 93, 0.24);
}

.broker-flow--book {
  border-color: rgba(53, 224, 165, 0.22);
}

.broker-flow__node {
  min-width: 0;
  min-height: 116px;
  display: grid;
  align-content: center;
  gap: 6px;
  padding: var(--sp-3);
  border: 1px solid var(--line-weak);
  border-radius: var(--r-sm);
  background: rgba(17, 22, 24, 0.74);
}

.broker-flow__node span {
  color: var(--text-3);
  font-size: 10px;
  font-weight: 900;
}

.broker-flow__node strong {
  color: var(--text-1);
  font-size: var(--fs-lg);
  font-weight: 900;
  line-height: 1.3;
}

.broker-flow__node small {
  color: var(--text-3);
  font-size: var(--fs-xs);
  line-height: 1.5;
}

.broker-flow__node--source {
  background: rgba(53, 200, 210, 0.08);
}

.broker-flow--shop .broker-flow__node--source {
  background: rgba(244, 201, 93, 0.09);
}

.broker-flow__arrow {
  display: grid;
  place-items: center;
  min-height: 36px;
  border-radius: 999px;
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: var(--fs-sm);
  font-weight: 900;
}

.broker-hero-visual p,
.broker-section-heading p {
  margin: 0;
  color: var(--text-2);
  font-size: var(--fs-sm);
  line-height: 1.75;
}

.broker-section-heading {
  display: grid;
  gap: var(--sp-2);
}

.article-body .broker-section-heading h2,
.article-body .broker-section-heading h3 {
  margin: 0;
  color: var(--text-1);
  font-weight: 900;
}

.article-body .broker-section-heading h2 {
  font-size: var(--fs-xl);
}

.article-body .broker-section-heading h3 {
  font-size: var(--fs-lg);
}

.broker-section-heading--compact {
  gap: 7px;
}

.broker-table-scroll-hint {
  display: none;
}

.broker-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line-weak);
  border-radius: var(--r);
  background: rgba(4, 7, 10, 0.5);
}

.article-body .broker-compare-table {
  display: table;
  width: 100%;
  min-width: 760px;
  overflow: visible;
  border: 0;
  border-collapse: separate;
  border-spacing: 0;
  background: transparent;
}

.article-body .broker-compare-table th,
.article-body .broker-compare-table td {
  min-width: 0;
  padding: var(--sp-3);
  border-right: 1px solid var(--line-weak);
  border-bottom: 1px solid var(--line-weak);
  background: rgba(8, 12, 14, 0.62);
  color: var(--text-2);
  font-size: var(--fs-xs);
  line-height: 1.65;
}

.article-body .broker-compare-table thead th {
  color: var(--text-1);
  background: rgba(53, 200, 210, 0.12);
  font-size: var(--fs-sm);
  font-weight: 900;
}

.article-body .broker-compare-table tbody th {
  color: var(--text-1);
  background: rgba(244, 201, 93, 0.08);
  font-weight: 900;
  white-space: nowrap;
}

.broker-choice__buttons button {
  min-height: 48px;
  padding: 0 var(--sp-3);
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: rgba(17, 22, 24, 0.78);
  color: var(--text-2);
  font-size: var(--fs-sm);
  font-weight: 900;
  text-align: center;
}

.broker-choice__buttons button:hover,
.broker-choice__buttons button:focus-visible,
.broker-choice__buttons button.is-active {
  border-color: rgba(53, 224, 165, 0.38);
  background: rgba(53, 224, 165, 0.11);
  color: var(--text-1);
}

.broker-choice__result {
  display: grid;
  gap: 5px;
  padding: var(--sp-3);
  border: 1px solid rgba(53, 224, 165, 0.22);
  border-radius: var(--r);
  background: rgba(53, 224, 165, 0.08);
}

.broker-choice__result span,
.broker-choice__result small {
  color: var(--text-3);
  font-size: var(--fs-xs);
  line-height: 1.65;
}

.broker-choice__result strong {
  color: var(--text-1);
  font-size: var(--fs-md);
  font-weight: 900;
  line-height: 1.55;
}

.broker-choice__link,
.broker-inline-button {
  width: max-content;
  max-width: 100%;
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 var(--sp-3);
  border: 1px solid rgba(53, 200, 210, 0.34);
  border-radius: var(--r-sm);
  background: rgba(53, 200, 210, 0.1);
  color: var(--accent) !important;
  font-size: var(--fs-xs);
  font-weight: 900;
  line-height: 1.35;
  text-decoration: none !important;
}

.broker-choice__link:hover,
.broker-choice__link:focus-visible,
.broker-inline-button:hover,
.broker-inline-button:focus-visible {
  border-color: rgba(53, 200, 210, 0.52);
  background: rgba(53, 200, 210, 0.16);
  color: var(--text-1) !important;
}

.broker-inline-button--primary {
  border-color: rgba(53, 224, 165, 0.4);
  background: rgba(53, 224, 165, 0.12);
  color: var(--bid) !important;
}

.broker-spread-visual {
  border-color: rgba(244, 201, 93, 0.24);
  background:
    linear-gradient(135deg, rgba(244, 201, 93, 0.08), rgba(53, 200, 210, 0.05)),
    rgba(8, 12, 14, 0.9);
}

.broker-spread-visual__graphic {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(132px, 0.74fr) minmax(0, 1fr);
  gap: var(--sp-3);
  align-items: center;
}

.broker-spread-visual__price {
  display: grid;
  gap: 6px;
  min-height: 74px;
  padding: var(--sp-3);
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  background: rgba(17, 22, 24, 0.76);
}

.broker-spread-visual__price span {
  color: var(--text-3);
  font-size: var(--fs-xs);
  font-weight: 900;
}

.broker-spread-visual__price strong {
  color: var(--text-1);
  font-family: var(--font-mono);
  font-size: var(--fs-md);
  font-weight: 900;
}

.broker-spread-visual__price--sell {
  border-color: rgba(53, 224, 165, 0.22);
}

.broker-spread-visual__price--buy {
  border-color: rgba(255, 107, 112, 0.22);
}

.broker-spread-visual__gap {
  position: relative;
  min-height: 74px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px dashed rgba(244, 201, 93, 0.38);
  border-radius: var(--r-sm);
  color: var(--warn);
  font-size: var(--fs-xs);
  font-weight: 900;
}

.broker-spread-visual__gap::before {
  content: "";
  position: absolute;
  inset: 14px auto 14px 50%;
  width: 64%;
  border-radius: 999px;
  background: rgba(244, 201, 93, 0.16);
  transform: translateX(-50%) scaleX(0.62);
  animation: broker-spread-gap 2.8s ease-in-out infinite;
}

.broker-spread-visual__gap span {
  position: relative;
}

.broker-procon-grid {
  margin: var(--sp-5) 0;
}

.broker-procon-card {
  min-width: 0;
  display: grid;
  gap: var(--sp-3);
  padding: var(--sp-4);
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: rgba(8, 12, 14, 0.72);
}

.broker-procon-card--good {
  border-color: rgba(53, 224, 165, 0.26);
}

.broker-procon-card--risk {
  border-color: rgba(255, 107, 112, 0.24);
}

.broker-procon-card--good > span {
  border-color: rgba(53, 224, 165, 0.3);
  background: rgba(53, 224, 165, 0.1);
  color: var(--bid);
}

.broker-procon-card--risk > span {
  border-color: rgba(255, 107, 112, 0.3);
  background: rgba(255, 107, 112, 0.1);
  color: var(--ask);
}

.article-body .broker-procon-card ul {
  display: grid;
  gap: var(--sp-2);
  margin: 0;
  padding: 0;
  list-style: none;
}

.article-body .broker-procon-card li {
  position: relative;
  margin: 0;
  padding-left: var(--sp-4);
  color: var(--text-2);
  font-size: var(--fs-sm);
  line-height: 1.7;
}

.article-body .broker-procon-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--bid);
}

.article-body .broker-procon-card--risk li::before {
  background: var(--ask);
}

.broker-step-list {
  display: grid;
  gap: 0;
  margin: var(--sp-5) 0;
  padding: var(--sp-2);
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: rgba(8, 12, 14, 0.72);
}

.broker-step {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: var(--sp-3);
  padding: var(--sp-3);
  border-radius: var(--r-sm);
}

.broker-step + .broker-step {
  border-top: 1px solid var(--line-weak);
}

.broker-step > span {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(53, 200, 210, 0.32);
  border-radius: 999px;
  background: rgba(53, 200, 210, 0.1);
  color: var(--accent);
  font-size: var(--fs-xs);
  font-weight: 900;
}

.broker-step strong {
  display: block;
  color: var(--text-1);
  font-size: var(--fs-sm);
  line-height: 1.55;
}

.broker-step small {
  display: block;
  margin-top: 4px;
  color: var(--text-3);
  font-size: var(--fs-xs);
  line-height: 1.65;
}

.broker-step .broker-inline-button {
  margin-top: var(--sp-2);
}

.article-tldr,
.broker-dialogue,
.broker-loss-story,
.article-author-card {
  min-width: 0;
  display: grid;
  gap: var(--sp-3);
  margin: var(--sp-5) 0;
  padding: var(--sp-4);
  border: 1px solid var(--line);
  border-radius: var(--r);
  background:
    linear-gradient(135deg, rgba(53, 200, 210, 0.08), rgba(244, 201, 93, 0.05)),
    rgba(8, 12, 14, 0.88);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.035);
}

.article-tldr {
  border-color: rgba(53, 224, 165, 0.26);
  background:
    radial-gradient(circle at top right, rgba(53, 224, 165, 0.12), transparent 40%),
    linear-gradient(180deg, rgba(13, 20, 16, 0.94), rgba(8, 12, 14, 0.9));
}

.article-tldr__kicker,
.broker-loss-story__kicker,
.article-author-card__kicker {
  width: max-content;
  max-width: 100%;
  min-height: 24px;
  display: inline-flex;
  align-items: center;
  padding: 0 8px;
  border: 1px solid rgba(53, 200, 210, 0.24);
  border-radius: 999px;
  background: rgba(53, 200, 210, 0.09);
  color: var(--accent);
  font-size: 10px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.article-body .article-tldr h2,
.article-body .article-author-card h2 {
  margin: 0;
  color: var(--text-1);
  font-size: var(--fs-xl);
  font-weight: 900;
  line-height: 1.4;
}

.article-body .article-tldr ul {
  display: grid;
  gap: var(--sp-2);
  margin: 0;
  padding: 0;
  list-style: none;
}

.article-body .article-tldr li {
  position: relative;
  margin: 0;
  padding-left: 30px;
  color: var(--text-2);
  font-size: var(--fs-sm);
  line-height: 1.75;
}

.article-body .article-tldr li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 0.52em;
  width: 14px;
  height: 14px;
  border: 1px solid rgba(53, 224, 165, 0.44);
  border-radius: 999px;
  background:
    radial-gradient(circle, var(--bid) 0 34%, transparent 38%),
    rgba(53, 224, 165, 0.12);
}

.article-highlight {
  padding: 0 0.08em 0.05em;
  color: var(--text-1);
  font-weight: 900;
  background:
    linear-gradient(90deg, rgba(53, 200, 210, 0.02), rgba(244, 201, 93, 0.04)) 0 72% / 100% 0.82em no-repeat,
    linear-gradient(90deg, rgba(53, 200, 210, 0.78), rgba(244, 201, 93, 0.72)) 0 92% / 100% 0.18em no-repeat;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.broker-dialogue {
  border-color: rgba(53, 200, 210, 0.22);
  background:
    linear-gradient(135deg, rgba(53, 200, 210, 0.08), rgba(53, 224, 165, 0.05)),
    rgba(8, 12, 14, 0.9);
}

.broker-speech {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: var(--sp-3);
  align-items: start;
  padding: var(--sp-3);
  border: 1px solid var(--line-weak);
  border-radius: var(--r);
  background: rgba(4, 7, 10, 0.46);
}

.broker-speech--question {
  border-color: rgba(244, 201, 93, 0.24);
}

.broker-speech--answer {
  border-color: rgba(53, 224, 165, 0.22);
}

.broker-speech__avatar,
.article-author-card__avatar {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(53, 200, 210, 0.12);
  color: var(--accent);
  font-size: var(--fs-sm);
  font-weight: 900;
  box-shadow: inset 0 0 0 1px rgba(53, 200, 210, 0.28);
}

.broker-speech--question .broker-speech__avatar {
  background: rgba(244, 201, 93, 0.12);
  color: var(--warn);
  box-shadow: inset 0 0 0 1px rgba(244, 201, 93, 0.28);
}

.broker-speech--answer .broker-speech__avatar,
.article-author-card__avatar {
  background: rgba(53, 224, 165, 0.12);
  color: var(--bid);
  box-shadow: inset 0 0 0 1px rgba(53, 224, 165, 0.28);
}

.broker-speech strong,
.broker-loss-story strong {
  color: var(--text-1);
  font-size: var(--fs-md);
  font-weight: 900;
  line-height: 1.55;
}

.broker-speech p,
.broker-loss-story p,
.article-author-card p {
  margin: 0;
  color: var(--text-2);
  font-size: var(--fs-sm);
  line-height: 1.75;
}

.broker-spread-visual__price small,
.broker-spread-visual__gap small,
.broker-spread-visual__gap strong {
  position: relative;
  z-index: 1;
  color: var(--text-3);
  font-size: var(--fs-xs);
  line-height: 1.45;
}

.broker-spread-visual__gap strong {
  display: block;
  color: var(--warn);
  font-size: var(--fs-sm);
  font-weight: 900;
}

.broker-spread-visual__gap--user {
  gap: 3px;
  text-align: center;
}

.broker-spread-visual__gap--user span {
  min-width: 52px;
  min-height: 52px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(244, 201, 93, 0.15);
  color: var(--warn);
  box-shadow: inset 0 0 0 1px rgba(244, 201, 93, 0.32);
}

.broker-loss-story {
  border-color: rgba(255, 107, 112, 0.28);
  background:
    radial-gradient(circle at top right, rgba(255, 107, 112, 0.12), transparent 42%),
    linear-gradient(180deg, rgba(24, 12, 14, 0.92), rgba(8, 12, 14, 0.9));
}

.broker-loss-story__kicker {
  border-color: rgba(255, 107, 112, 0.3);
  background: rgba(255, 107, 112, 0.1);
  color: var(--ask);
}

.broker-loss-story strong {
  color: var(--warn);
  font-size: var(--fs-lg);
}

.broker-mini-compare {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--sp-3);
}

.broker-mini-compare__card {
  min-width: 0;
  display: grid;
  gap: var(--sp-3);
  padding: var(--sp-4);
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: rgba(4, 7, 10, 0.5);
}

.broker-mini-compare__card--broker {
  border-color: rgba(244, 201, 93, 0.24);
}

.broker-mini-compare__card--exchange {
  border-color: rgba(53, 224, 165, 0.22);
}

.broker-mini-compare__icon {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(53, 200, 210, 0.11);
  color: var(--accent);
  font-size: var(--fs-xs);
  font-weight: 900;
}

.broker-mini-compare__card--broker .broker-mini-compare__icon {
  background: rgba(244, 201, 93, 0.12);
  color: var(--warn);
}

.broker-mini-compare__card--exchange .broker-mini-compare__icon {
  background: rgba(53, 224, 165, 0.12);
  color: var(--bid);
}

.article-body .broker-mini-compare h3 {
  margin: 0;
  color: var(--text-1);
  font-size: var(--fs-md);
  font-weight: 900;
}

.broker-mini-compare dl {
  display: grid;
  gap: 8px;
  margin: 0;
}

.broker-mini-compare dl div {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: var(--sp-2);
  padding-top: 8px;
  border-top: 1px solid var(--line-weak);
}

.broker-mini-compare dt {
  color: var(--text-4);
  font-size: var(--fs-xs);
  font-weight: 900;
}

.broker-mini-compare dd {
  margin: 0;
  color: var(--text-2);
  font-size: var(--fs-xs);
  line-height: 1.65;
}

.article-author-card {
  grid-template-columns: 52px minmax(0, 1fr);
  align-items: start;
  border-color: rgba(53, 200, 210, 0.2);
}

.article-author-card__avatar {
  width: 52px;
  height: 52px;
  font-size: var(--fs-md);
}

.article-author-card a {
  width: max-content;
  max-width: 100%;
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: var(--sp-2);
  padding: 0 var(--sp-3);
  border: 1px solid rgba(53, 200, 210, 0.32);
  border-radius: var(--r-sm);
  background: rgba(53, 200, 210, 0.1);
  color: var(--accent) !important;
  font-size: var(--fs-xs);
  font-weight: 900;
  text-decoration: none !important;
}

.article-author-card a:hover,
.article-author-card a:focus-visible {
  border-color: rgba(244, 201, 93, 0.38);
  background: rgba(244, 201, 93, 0.1);
  color: var(--text-1) !important;
}

.article-toc:not(.is-expanded) .article-toc__link--extra,
.article-mobile-toc:not(.is-expanded) .article-toc__link--extra {
  display: none;
}

.article-toc__more {
  min-height: 34px;
  width: 100%;
  margin-top: 4px;
  border: 1px solid rgba(53, 200, 210, 0.24);
  border-radius: var(--r-sm);
  background: rgba(53, 200, 210, 0.08);
  color: var(--accent);
  font-size: var(--fs-xs);
  font-weight: 900;
}

.article-toc__more:hover,
.article-toc__more:focus-visible {
  border-color: rgba(244, 201, 93, 0.38);
  background: rgba(244, 201, 93, 0.1);
  color: var(--text-1);
}

.article-term[data-beginner-label]::after {
  content: attr(data-beginner-label);
  display: none;
  margin-left: 0.12em;
  color: var(--warn);
  font-size: 0.92em;
  font-weight: 900;
  white-space: nowrap;
}

.beginner-mode .article-term[data-beginner-label]::after {
  display: inline;
  animation: beginner-term-fade 220ms ease;
}

.beginner-mode .article-main .article-body {
  font-size: 16px;
  transition: font-size 180ms ease;
}

.buying-priority-filter {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--sp-2);
  margin: var(--sp-5) 0;
  padding: var(--sp-3);
  border: 1px solid rgba(53, 200, 210, 0.18);
  border-radius: var(--r);
  background: rgba(4, 7, 10, 0.44);
}

.buying-priority-filter > span {
  color: var(--text-3);
  font-size: var(--fs-xs);
  font-weight: 900;
}

.buying-priority-filter a {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(17, 22, 24, 0.76);
  color: var(--text-2) !important;
  font-size: var(--fs-xs);
  font-weight: 900;
  text-decoration: none !important;
  transition: transform 160ms ease, border-color 160ms ease, background-color 160ms ease, color 160ms ease;
}

.buying-priority-filter a:hover,
.buying-priority-filter a:focus-visible,
.buying-priority-filter a.is-active {
  transform: translateY(-1px);
  border-color: rgba(53, 224, 165, 0.42);
  background: rgba(53, 224, 165, 0.12);
  color: var(--text-1) !important;
}

.buying-amount-sim,
.buying-concept-visual {
  display: grid;
  gap: var(--sp-4);
  margin: var(--sp-5) 0;
  padding: var(--sp-4);
  border: 1px solid rgba(53, 200, 210, 0.24);
  border-radius: var(--r);
  background:
    radial-gradient(circle at top right, rgba(53, 200, 210, 0.12), transparent 42%),
    linear-gradient(180deg, rgba(13, 18, 20, 0.94), rgba(8, 12, 14, 0.9));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.035);
}

.buying-amount-sim {
  border-color: rgba(53, 224, 165, 0.24);
}

.buying-amount-sim__header,
.buying-amount-sim__footer,
.buying-section-heading {
  display: grid;
  gap: var(--sp-2);
}

.buying-amount-sim__header {
  grid-template-columns: minmax(0, 1fr) minmax(150px, auto);
  align-items: start;
}

.buying-section-kicker {
  width: max-content;
  max-width: 100%;
  min-height: 24px;
  display: inline-flex;
  align-items: center;
  padding: 0 8px;
  border: 1px solid rgba(53, 200, 210, 0.24);
  border-radius: 999px;
  background: rgba(53, 200, 210, 0.09);
  color: var(--accent);
  font-size: 10px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.article-body .buying-amount-sim h2,
.article-body .buying-concept-visual h2,
.article-body .buying-procon-card h3 {
  margin: 0;
  color: var(--text-1);
  font-weight: 900;
  line-height: 1.42;
}

.article-body .buying-amount-sim h2,
.article-body .buying-concept-visual h2 {
  font-size: var(--fs-xl);
}

.article-body .buying-procon-card h3 {
  font-size: var(--fs-md);
}

.buying-amount-sim__header p,
.buying-section-heading p,
.buying-amount-sim__footer p,
.buying-cost-meter p {
  margin: 0;
  color: var(--text-2);
  font-size: var(--fs-sm);
  line-height: 1.75;
}

.buying-amount-sim__amount {
  min-height: 46px;
  display: grid;
  place-items: center;
  padding: 0 var(--sp-3);
  border: 1px solid rgba(244, 201, 93, 0.28);
  border-radius: var(--r);
  background: rgba(244, 201, 93, 0.09);
  color: var(--warn);
  font-family: var(--font-mono);
  font-size: var(--fs-xl);
  font-weight: 900;
}

.buying-amount-sim__controls {
  display: grid;
  grid-template-columns: minmax(220px, 0.72fr) minmax(0, 1fr);
  gap: var(--sp-3);
  align-items: end;
}

.buying-amount-sim__presets {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--sp-2);
}

.buying-amount-sim__presets button {
  min-height: 42px;
  padding: 0 10px;
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: rgba(17, 22, 24, 0.78);
  color: var(--text-2);
  font-size: var(--fs-xs);
  font-weight: 900;
}

.buying-amount-sim__presets button:hover,
.buying-amount-sim__presets button:focus-visible,
.buying-amount-sim__presets button.is-active {
  border-color: rgba(53, 224, 165, 0.44);
  background: rgba(53, 224, 165, 0.12);
  color: var(--bid);
}

.buying-amount-sim__range {
  display: grid;
  gap: 8px;
  min-width: 0;
}

.buying-amount-sim__range span {
  color: var(--text-3);
  font-size: var(--fs-xs);
  font-weight: 900;
}

.buying-amount-sim__range input[type="range"] {
  width: 100%;
  height: 8px;
  appearance: none;
  border-radius: 999px;
  outline: none;
  background:
    linear-gradient(90deg, var(--bid) 0%, var(--warn) var(--buying-amount-progress), rgba(255, 255, 255, 0.14) var(--buying-amount-progress));
}

.buying-amount-sim__range input[type="range"]::-webkit-slider-thumb {
  width: 22px;
  height: 22px;
  appearance: none;
  border: 2px solid rgba(4, 7, 10, 0.92);
  border-radius: 999px;
  background: var(--warn);
  box-shadow: 0 0 0 4px rgba(244, 201, 93, 0.18);
}

.buying-amount-sim__range input[type="range"]::-moz-range-thumb {
  width: 22px;
  height: 22px;
  border: 2px solid rgba(4, 7, 10, 0.92);
  border-radius: 999px;
  background: var(--warn);
  box-shadow: 0 0 0 4px rgba(244, 201, 93, 0.18);
}

.buying-cost-meter {
  display: grid;
  gap: var(--sp-2);
  padding: var(--sp-3);
  border: 1px solid var(--line-weak);
  border-radius: var(--r);
  background: rgba(4, 7, 10, 0.48);
}

.buying-cost-meter__row {
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr) minmax(150px, auto);
  gap: var(--sp-2);
  align-items: center;
}

.buying-cost-meter__row > span,
.buying-cost-meter__row > strong {
  color: var(--text-3);
  font-size: var(--fs-xs);
  font-weight: 900;
}

.buying-cost-meter__row > strong {
  color: var(--text-1);
  font-family: var(--font-mono);
  text-align: right;
}

.buying-cost-meter__track {
  height: 12px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.buying-cost-meter__track span {
  display: block;
  height: 100%;
  border-radius: inherit;
  transition: width 260ms cubic-bezier(0.22, 1, 0.36, 1);
}

.buying-cost-meter__row--broker .buying-cost-meter__track span {
  background: linear-gradient(90deg, rgba(244, 201, 93, 0.78), rgba(255, 107, 112, 0.72));
}

.buying-cost-meter__row--exchange .buying-cost-meter__track span {
  background: linear-gradient(90deg, rgba(53, 200, 210, 0.78), rgba(53, 224, 165, 0.82));
}

.buying-amount-sim__rows {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--sp-3);
}

.buying-sim-row {
  min-width: 0;
  display: grid;
  gap: 7px;
  padding: var(--sp-3);
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: rgba(8, 12, 14, 0.62);
  color: var(--text-2) !important;
  text-decoration: none !important;
  transition: transform 160ms ease, border-color 160ms ease, background-color 160ms ease;
}

.buying-sim-row--sales {
  border-color: rgba(244, 201, 93, 0.22);
}

.buying-sim-row--venue {
  border-color: rgba(53, 224, 165, 0.22);
}

.buying-sim-row:hover,
.buying-sim-row:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(53, 200, 210, 0.46);
  background: rgba(53, 200, 210, 0.1);
}

.buying-sim-row span {
  width: max-content;
  max-width: 100%;
  min-height: 22px;
  display: inline-flex;
  align-items: center;
  padding: 0 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-3);
  font-size: 10px;
  font-weight: 900;
}

.buying-sim-row strong {
  color: var(--text-1);
  font-size: var(--fs-sm);
  font-weight: 900;
  line-height: 1.45;
}

.buying-sim-row strong em {
  color: var(--warn);
  font-family: var(--font-mono);
  font-style: normal;
  white-space: nowrap;
}

.buying-sim-row small {
  color: var(--text-3);
  font-size: var(--fs-xs);
  line-height: 1.6;
}

.buying-amount-sim.is-fresh .buying-sim-row {
  animation: buying-row-flash 560ms ease;
}

.buying-primary-link {
  width: max-content;
  max-width: 100%;
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 0 var(--sp-3);
  border: 1px solid rgba(53, 224, 165, 0.38);
  border-radius: var(--r);
  background: rgba(53, 224, 165, 0.11);
  color: var(--bid) !important;
  font-size: var(--fs-xs);
  font-weight: 900;
  text-decoration: none !important;
}

.buying-primary-link span {
  transition: transform 160ms ease;
}

.buying-primary-link:hover span,
.buying-primary-link:focus-visible span {
  transform: translate(2px, -2px);
}

.buying-first-checks,
.buying-procon-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--sp-3);
  margin: var(--sp-5) 0;
}

.buying-first-checks article,
.buying-procon-card {
  min-width: 0;
  display: grid;
  gap: var(--sp-2);
  padding: var(--sp-4);
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: rgba(8, 12, 14, 0.66);
}

.buying-first-checks article span,
.buying-procon-card > span {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(53, 200, 210, 0.28);
  border-radius: 999px;
  background: rgba(53, 200, 210, 0.09);
  color: var(--accent);
  font-size: var(--fs-xs);
  font-weight: 900;
}

.buying-procon-card > span {
  width: max-content;
  min-height: 24px;
  height: auto;
  padding: 0 9px;
}

.buying-first-checks article strong {
  color: var(--text-1);
  font-size: var(--fs-md);
  font-weight: 900;
}

.buying-first-checks article small {
  color: var(--text-3);
  font-size: var(--fs-xs);
  line-height: 1.65;
}

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

.buying-procon-card--broker {
  border-color: rgba(244, 201, 93, 0.24);
}

.buying-procon-card--exchange {
  border-color: rgba(53, 224, 165, 0.24);
}

.article-body .buying-procon-card ul {
  display: grid;
  gap: var(--sp-2);
  margin: 0;
  padding: 0;
  list-style: none;
}

.article-body .buying-procon-card li {
  position: relative;
  margin: 0;
  padding-left: 28px;
  color: var(--text-2);
  font-size: var(--fs-sm);
  line-height: 1.7;
}

.article-body .buying-procon-card li::before {
  position: absolute;
  left: 0;
  top: 0.2em;
  width: 18px;
  height: 18px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
}

.article-body .buying-procon-card li.is-good::before {
  content: "+";
  background: rgba(53, 224, 165, 0.14);
  color: var(--bid);
}

.article-body .buying-procon-card li.is-risk::before {
  content: "-";
  background: rgba(255, 107, 112, 0.13);
  color: var(--ask);
}

.buying-procon-card li strong {
  display: block;
  color: var(--text-1);
  font-size: var(--fs-xs);
  font-weight: 900;
}

.buying-step-timeline {
  position: relative;
  display: grid;
  gap: 0;
  margin: var(--sp-5) 0;
  padding: var(--sp-2);
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: rgba(8, 12, 14, 0.68);
}

.buying-step-timeline__item {
  position: relative;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: var(--sp-3);
  padding: var(--sp-3);
  border-radius: var(--r-sm);
}

.buying-step-timeline__item + .buying-step-timeline__item {
  border-top: 1px solid var(--line-weak);
}

.buying-step-timeline__item::before {
  content: "";
  position: absolute;
  left: 33px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: rgba(53, 200, 210, 0.16);
}

.buying-step-timeline__item:first-child::before {
  top: 50%;
}

.buying-step-timeline__item:last-child::before {
  bottom: 50%;
}

.buying-step-timeline__item > span {
  position: relative;
  z-index: 1;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(53, 200, 210, 0.34);
  border-radius: 999px;
  background: rgba(7, 14, 16, 0.96);
  color: var(--accent);
  font-size: var(--fs-xs);
  font-weight: 900;
}

.buying-step-timeline__item strong {
  display: block;
  color: var(--text-1);
  font-size: var(--fs-sm);
  line-height: 1.6;
}

.buying-step-timeline__item small {
  display: block;
  margin-top: 4px;
  color: var(--text-3);
  font-size: var(--fs-xs);
  line-height: 1.65;
}

[data-buying-highlight].is-highlighted {
  animation: buying-highlight-pulse 1.2s ease-in-out 3;
}

.buying-mobile-fab {
  display: none;
}

.article-toast {
  position: fixed;
  left: 50%;
  bottom: calc(var(--sp-4) + env(safe-area-inset-bottom));
  z-index: 60;
  min-height: 38px;
  display: grid;
  place-items: center;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(5, 9, 10, 0.94);
  color: #fff;
  font-size: var(--fs-xs);
  font-weight: 900;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 10px);
  transition: opacity 180ms ease, transform 180ms ease;
  box-shadow: var(--shadow-lg);
}

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

.article-table-scroll {
  position: relative;
  overflow-x: auto;
}

.article-table-scroll::after {
  content: "";
  position: sticky;
  right: 0;
  display: block;
  width: 42px;
  min-height: 1px;
  margin-left: auto;
  background: linear-gradient(90deg, transparent, rgba(4, 7, 10, 0.86));
  pointer-events: none;
}

.common-disclosure {
  border-color: rgba(244, 201, 93, 0.16);
  background:
    linear-gradient(180deg, rgba(17, 21, 20, 0.9), rgba(9, 13, 14, 0.92)),
    rgba(17, 22, 24, 0.82);
}

.common-disclosure__summary::after {
  content: '+';
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(244, 201, 93, 0.22);
  border-radius: 999px;
  background: rgba(244, 201, 93, 0.08);
  flex: 0 0 auto;
  color: var(--warn);
  font-weight: 900;
  line-height: 1;
  transition: transform 160ms ease, background-color 160ms ease, border-color 160ms ease;
}

.common-disclosure__details[open] .common-disclosure__summary::after {
  content: '+';
  border-color: rgba(244, 201, 93, 0.36);
  background: rgba(244, 201, 93, 0.14);
  transform: rotate(45deg);
}

.exchange-checklist-hero,
.checklist-compare-visual,
.checklist-book-visual,
.interactive-checklist {
  display: grid;
  gap: var(--sp-4);
  margin: var(--sp-5) 0;
  padding: var(--sp-4);
  border: 1px solid rgba(53, 200, 210, 0.24);
  border-radius: var(--r);
  background:
    radial-gradient(circle at top right, rgba(53, 200, 210, 0.12), transparent 42%),
    linear-gradient(180deg, rgba(13, 18, 20, 0.94), rgba(8, 12, 14, 0.9));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.035);
}

.exchange-checklist-hero {
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 1fr);
  align-items: center;
  border-color: rgba(53, 224, 165, 0.24);
  background:
    linear-gradient(135deg, rgba(53, 224, 165, 0.09), rgba(244, 201, 93, 0.05)),
    rgba(8, 12, 14, 0.9);
}

.article-body .exchange-checklist-hero h2,
.article-body .checklist-visual-heading h3,
.article-body .fee-mini-sim h3,
.article-body .interactive-checklist h3 {
  margin: 0;
  color: var(--text-1);
  font-size: var(--fs-lg);
  font-weight: 900;
  line-height: 1.45;
}

.exchange-checklist-hero p,
.checklist-callout p {
  margin: 0;
  color: var(--text-2);
  font-size: var(--fs-sm);
  line-height: 1.75;
}

.checklist-kicker {
  width: max-content;
  max-width: 100%;
  min-height: 24px;
  display: inline-flex;
  align-items: center;
  padding: 0 8px;
  border: 1px solid rgba(53, 200, 210, 0.24);
  border-radius: 999px;
  background: rgba(53, 200, 210, 0.09);
  color: var(--accent);
  font-size: 10px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.checklist-hero-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--sp-2);
}

.checklist-hero-steps span {
  min-width: 0;
  min-height: 42px;
  display: grid;
  place-items: center;
  padding: 0 8px;
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  background: rgba(4, 7, 10, 0.5);
  color: var(--text-2);
  font-size: var(--fs-xs);
  font-weight: 900;
  text-align: center;
  line-height: 1.35;
}

.checklist-hero-steps span:first-child,
.checklist-hero-steps span:nth-child(4),
.checklist-hero-steps span:last-child {
  border-color: rgba(244, 201, 93, 0.24);
  background: rgba(244, 201, 93, 0.09);
  color: var(--warn);
}

.checklist-callout {
  display: grid;
  grid-template-columns: 34px minmax(0, auto) minmax(0, 1fr);
  gap: var(--sp-2);
  align-items: start;
  padding: var(--sp-3);
  border: 1px solid rgba(53, 200, 210, 0.24);
  border-radius: var(--r);
  background: rgba(53, 200, 210, 0.08);
}

.checklist-callout > span {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
}

.checklist-callout strong {
  color: var(--text-1);
  font-size: var(--fs-sm);
  font-weight: 900;
  line-height: 1.6;
  white-space: nowrap;
}

.checklist-callout--important {
  border-color: rgba(53, 224, 165, 0.24);
  background: rgba(53, 224, 165, 0.08);
}

.checklist-callout--risk {
  border-color: rgba(255, 107, 112, 0.26);
  background: rgba(255, 107, 112, 0.08);
}

.checklist-visual-heading {
  display: grid;
  gap: var(--sp-2);
}

.checklist-compare-grid,
.checklist-book-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--sp-3);
}

.checklist-compare-card,
.checklist-book-card {
  min-width: 0;
  display: grid;
  gap: var(--sp-3);
  padding: var(--sp-3);
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: rgba(4, 7, 10, 0.5);
}

.checklist-compare-card--broker,
.checklist-book-card--thin {
  border-color: rgba(244, 201, 93, 0.24);
}

.checklist-compare-card--exchange,
.checklist-book-card--thick {
  border-color: rgba(53, 224, 165, 0.22);
}

.checklist-compare-card__badge {
  width: max-content;
  max-width: 100%;
  min-height: 26px;
  display: inline-flex;
  align-items: center;
  padding: 0 9px;
  border: 1px solid rgba(53, 200, 210, 0.24);
  border-radius: 999px;
  background: rgba(53, 200, 210, 0.09);
  color: var(--accent);
  font-size: 10px;
  font-weight: 900;
}

.checklist-compare-card--broker .checklist-compare-card__badge {
  border-color: rgba(244, 201, 93, 0.3);
  background: rgba(244, 201, 93, 0.1);
  color: var(--warn);
}

.checklist-flow {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(92px, auto) minmax(0, 1fr);
  gap: var(--sp-2);
  align-items: center;
}

.checklist-flow span,
.checklist-flow strong {
  min-height: 62px;
  display: grid;
  place-items: center;
  padding: var(--sp-2);
  border: 1px solid var(--line-weak);
  border-radius: var(--r-sm);
  text-align: center;
  line-height: 1.4;
}

.checklist-flow span {
  color: var(--text-3);
  font-size: var(--fs-xs);
  font-weight: 900;
}

.checklist-flow strong {
  border-color: rgba(53, 200, 210, 0.24);
  background: rgba(53, 200, 210, 0.08);
  color: var(--text-1);
  font-size: var(--fs-xs);
  font-weight: 900;
}

.checklist-compare-card dl {
  display: grid;
  gap: 8px;
  margin: 0;
}

.checklist-compare-card dl div {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  gap: var(--sp-2);
  padding-top: 8px;
  border-top: 1px solid var(--line-weak);
}

.checklist-compare-card dt {
  color: var(--text-4);
  font-size: var(--fs-xs);
  font-weight: 900;
}

.checklist-compare-card dd {
  margin: 0;
  color: var(--text-2);
  font-size: var(--fs-xs);
  line-height: 1.65;
}

.checklist-book-card strong {
  color: var(--text-1);
  font-size: var(--fs-sm);
  font-weight: 900;
}

.checklist-book-card small {
  color: var(--text-3);
  font-size: var(--fs-xs);
  line-height: 1.65;
}

.checklist-depth-bars {
  display: grid;
  gap: 7px;
  padding: var(--sp-3);
  border: 1px solid var(--line-weak);
  border-radius: var(--r-sm);
  background: rgba(4, 7, 10, 0.44);
}

.checklist-depth-bars span {
  position: relative;
  overflow: hidden;
  min-height: 34px;
  display: flex;
  align-items: center;
  padding: 0 10px;
  border-radius: var(--r-sm);
  color: var(--ask);
  font-family: var(--font-mono);
  font-size: var(--fs-xs);
  font-weight: 900;
  background: rgba(255, 107, 112, 0.08);
}

.checklist-depth-bars span::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--depth);
  background: rgba(255, 107, 112, 0.16);
}

.checklist-depth-bars span {
  z-index: 1;
}

.checklist-inline-cta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
}

.checklist-inline-cta a,
.interactive-checklist__complete a {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 var(--sp-3);
  border: 1px solid rgba(53, 200, 210, 0.32);
  border-radius: var(--r-sm);
  background: rgba(53, 200, 210, 0.1);
  color: var(--accent) !important;
  font-size: var(--fs-xs);
  font-weight: 900;
  text-decoration: none !important;
  transition: transform 160ms ease, border-color 160ms ease, background-color 160ms ease;
}

.checklist-inline-cta a:hover,
.checklist-inline-cta a:focus-visible,
.interactive-checklist__complete a:hover,
.interactive-checklist__complete a:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(244, 201, 93, 0.42);
  background: rgba(244, 201, 93, 0.1);
  color: var(--text-1) !important;
}

.interactive-checklist {
  border-color: rgba(53, 224, 165, 0.26);
}

.interactive-checklist__header,
.interactive-checklist__complete {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--sp-3);
}

.interactive-checklist__header > strong {
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  padding: 0 10px;
  border: 1px solid rgba(53, 224, 165, 0.32);
  border-radius: 999px;
  background: rgba(53, 224, 165, 0.1);
  color: var(--bid);
  font-family: var(--font-mono);
  font-size: var(--fs-xs);
  font-weight: 900;
  white-space: nowrap;
}

.interactive-checklist__meter {
  height: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.09);
}

.interactive-checklist__meter span {
  display: block;
  width: 100%;
  height: 100%;
  transform: scaleX(0);
  transform-origin: left center;
  background: linear-gradient(90deg, var(--accent), var(--bid), var(--warn));
  transition: transform 220ms cubic-bezier(0.22, 1, 0.36, 1);
}

.interactive-checklist__items {
  display: grid;
  gap: var(--sp-2);
}

.interactive-checklist__items label {
  min-width: 0;
  min-height: 46px;
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  gap: var(--sp-3);
  align-items: center;
  padding: var(--sp-3);
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  background: rgba(4, 7, 10, 0.48);
  color: var(--text-2);
  cursor: pointer;
  transition: transform 160ms ease, border-color 160ms ease, background-color 160ms ease;
}

.interactive-checklist__items label:hover,
.interactive-checklist__items label:focus-within,
.interactive-checklist__items label.is-checked {
  border-color: rgba(53, 224, 165, 0.34);
  background: rgba(53, 224, 165, 0.08);
}

.interactive-checklist__items input {
  width: 18px;
  height: 18px;
  accent-color: var(--bid);
}

.interactive-checklist__items span {
  min-width: 0;
  color: var(--text-2);
  font-size: var(--fs-sm);
  font-weight: 800;
  line-height: 1.6;
}

.interactive-checklist__items label.is-checked span {
  color: var(--text-1);
}

.interactive-checklist__complete {
  align-items: center;
  padding: var(--sp-3);
  border: 1px solid rgba(244, 201, 93, 0.28);
  border-radius: var(--r);
  background: rgba(244, 201, 93, 0.09);
}

.interactive-checklist__complete[hidden] {
  display: none !important;
}

.interactive-checklist__complete strong {
  color: var(--warn);
  font-size: var(--fs-sm);
  font-weight: 900;
  white-space: nowrap;
}

.interactive-checklist__complete span {
  color: var(--text-2);
  font-size: var(--fs-xs);
  line-height: 1.65;
}

.article-mobile-actions {
  display: none;
}

html.theme-light .article-mobile-toc,
html.theme-light .article-live-ticker,
html.theme-light .article-toc,
html.theme-light .spread-visual-card,
html.theme-light .spread-mini-calculator,
html.theme-light .spread-next-card,
html.theme-light .fee-summary-item,
html.theme-light .fee-visual,
html.theme-light .fee-cost-compare,
html.theme-light .fee-step-list,
html.theme-light .fee-mini-sim,
html.theme-light .jpy-withdrawal-tool,
html.theme-light .article-mode-note,
html.theme-light .article-next-card,
html.theme-light .orderbook-learning-hero,
html.theme-light .orderbook-execution-sim,
html.theme-light .orderbook-mini-quiz,
html.theme-light .fee-cost-card,
html.theme-light .quick-recommendation-card,
html.theme-light .broker-hero-visual,
html.theme-light .broker-comparison-section,
html.theme-light .broker-choice,
html.theme-light .broker-spread-visual,
html.theme-light .broker-procon-card,
html.theme-light .broker-step-list,
html.theme-light .article-tldr,
html.theme-light .broker-dialogue,
html.theme-light .broker-loss-story,
html.theme-light .broker-mini-compare__card,
html.theme-light .article-author-card,
html.theme-light .buying-priority-filter,
html.theme-light .buying-amount-sim,
html.theme-light .buying-concept-visual,
html.theme-light .buying-first-checks article,
html.theme-light .buying-procon-card,
html.theme-light .buying-step-timeline,
html.theme-light .exchange-checklist-hero,
html.theme-light .checklist-compare-visual,
html.theme-light .checklist-book-visual,
html.theme-light .interactive-checklist {
  background: rgba(255, 255, 255, 0.82);
}

html.theme-light .orderbook-visual__book,
html.theme-light .orderbook-learning-hero__book,
html.theme-light .orderbook-execution-sim__book,
html.theme-light .spread-bar-visual__scale,
html.theme-light .spread-bar-visual__marker,
html.theme-light .mini-orderbook__side,
html.theme-light .spread-next-card img,
html.theme-light .fee-mini-sim__field input,
html.theme-light .fee-mini-sim__result,
html.theme-light .jpy-withdrawal-field__control,
html.theme-light .jpy-withdrawal-table-shell,
html.theme-light .broker-flow,
html.theme-light .broker-flow__node,
html.theme-light .broker-table-wrap,
html.theme-light .broker-spread-visual__price,
html.theme-light .broker-speech,
html.theme-light .buying-cost-meter,
html.theme-light .buying-sim-row,
html.theme-light .checklist-hero-steps span,
html.theme-light .checklist-compare-card,
html.theme-light .checklist-book-card,
html.theme-light .checklist-depth-bars,
html.theme-light .interactive-checklist__items label {
  background: rgba(244, 248, 246, 0.82);
}

html.theme-light .buying-step-timeline__item > span {
  background: rgba(244, 248, 246, 0.96);
}

html.theme-light .article-table-scroll::after {
  background: linear-gradient(90deg, transparent, rgba(244, 248, 246, 0.92));
}

html.theme-light .article-body .jpy-withdrawal-table th,
html.theme-light .article-body .jpy-withdrawal-table td,
html.theme-light .article-body .broker-compare-table th,
html.theme-light .article-body .broker-compare-table td {
  background: rgba(255, 255, 255, 0.78);
}

html.theme-light .article-body .jpy-withdrawal-table thead th {
  background: rgba(232, 243, 238, 0.98);
}

html.theme-light .article-body .broker-compare-table thead th {
  background: rgba(23, 125, 146, 0.1);
}

html.theme-light .article-body .broker-compare-table tbody th {
  background: rgba(154, 106, 10, 0.08);
}

html.theme-light .article-body .jpy-withdrawal-table tr.is-best td {
  background: rgba(226, 246, 236, 0.96);
}

html.theme-light .jpy-fee-badge.is-free {
  color: #106b3d;
}

html.theme-light .article-live-ticker__label {
  background: rgba(255, 255, 255, 0.92);
}

html.theme-light .beginner-guide-panel {
  border-color: rgba(23, 125, 146, 0.22);
  background:
    radial-gradient(circle at top right, rgba(23, 125, 146, 0.1), transparent 38%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(241, 247, 244, 0.92));
}

html.theme-light .beginner-guide-visual,
html.theme-light .beginner-guide-term,
html.theme-light .beginner-guide-link {
  background: rgba(255, 255, 255, 0.72);
}

html.theme-light .beginner-guide-warning {
  background: rgba(154, 106, 10, 0.08);
}

@keyframes beginner-term-fade {
  from { opacity: 0; filter: blur(2px); }
  to { opacity: 1; filter: blur(0); }
}

@keyframes buying-row-flash {
  0% { transform: translateY(0); filter: brightness(1); }
  45% { transform: translateY(-1px); filter: brightness(1.18); }
  100% { transform: translateY(0); filter: brightness(1); }
}

@keyframes buying-highlight-pulse {
  0%, 100% { box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.035); }
  50% {
    border-color: rgba(244, 201, 93, 0.48);
    box-shadow:
      0 0 0 1px rgba(244, 201, 93, 0.22),
      0 0 0 8px rgba(244, 201, 93, 0.08),
      inset 0 1px 0 rgba(255, 255, 255, 0.045);
  }
}

@keyframes maker-pulse {
  0%, 100% { opacity: 0.36; transform: translateY(-50%) scaleX(0.72); }
  50% { opacity: 1; transform: translateY(-50%) scaleX(1); }
}

@keyframes taker-pulse {
  0%, 100% { opacity: 0.46; transform: translateY(-50%) scaleX(1); }
  50% { opacity: 1; transform: translateY(-50%) scaleX(0.62); }
}

@keyframes broker-spread-gap {
  0%, 100% { transform: translateX(-50%) scaleX(0.54); opacity: 0.72; }
  50% { transform: translateX(-50%) scaleX(1); opacity: 1; }
}

@keyframes broker-scroll-hint {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(6px); }
}

@keyframes spread-gap-sheen {
  0%, 35% { transform: translateX(-100%); }
  70%, 100% { transform: translateX(100%); }
}

@keyframes spread-mid-pulse {
  0%, 100% { border-color: rgba(53, 200, 210, 0.28); transform: translateY(0); }
  50% { border-color: rgba(244, 201, 93, 0.48); transform: translateY(-1px); }
}

@keyframes spread-ticker-flash {
  0% { opacity: 0.4; transform: translateY(1px); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes orderbook-row-flash {
  0% { transform: translateY(0); filter: brightness(1); }
  50% { transform: translateY(-1px); filter: brightness(1.22); }
  100% { transform: translateY(0); filter: brightness(1); }
}

@keyframes beginner-spotlight-fade {
  from { opacity: 0; }
  to { opacity: 1; }
}

@media (min-width: 1180px) {
  .article-shell {
    grid-template-columns: minmax(0, 1fr) 230px;
  }

  .article-main {
    grid-column: 1;
    grid-row: 1;
  }

  .article-toc {
    grid-column: 2;
    grid-row: 1;
    position: sticky;
    top: 96px;
    display: block;
    max-height: calc(100vh - 116px);
    overflow-y: auto;
    padding: var(--sp-3);
    border: 1px solid var(--line);
    border-radius: var(--r);
    background: rgba(8, 12, 14, 0.72);
  }
}

@media (max-width: 900px) {
  .spread-visual-card,
  .exchange-checklist-hero,
  .checklist-compare-grid,
  .checklist-book-grid,
  .orderbook-learning-hero,
  .spread-mini-calculator__body,
  .mini-orderbook,
  .spread-next-card-grid,
  .quick-recommendation-grid,
  .fee-summary-strip,
  .fee-visual,
  .fee-cost-grid,
  .fee-mini-sim__controls,
  .orderbook-execution-sim__header,
  .orderbook-execution-sim__body,
  .jpy-withdrawal-tool__header,
  .jpy-withdrawal-controls,
  .jpy-withdrawal-beginner,
  .article-next-grid,
  .broker-flow-grid,
  .broker-procon-grid,
  .broker-choice__buttons,
  .broker-mini-compare {
    grid-template-columns: 1fr;
  }

  .jpy-withdrawal-tool__header {
    display: grid;
  }

  .jpy-withdrawal-tool__header p:last-child,
  .jpy-withdrawal-help {
    max-width: none;
  }

  .orderbook-visual {
    grid-template-columns: 1fr;
  }

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

  .orderbook-visual__actor::before {
    left: 50%;
    top: -10px;
    width: 2px;
    height: 10px;
    transform: translateX(-50%);
  }

  .orderbook-visual__actor--maker::before,
  .orderbook-visual__actor--taker::before {
    animation: none;
  }
}

@media (max-width: 1179px) {
  .article-page-shell {
    padding-bottom: calc(86px + env(safe-area-inset-bottom));
  }

  .article-mobile-toc:not([hidden]) {
    position: fixed;
    left: var(--sp-3);
    right: var(--sp-3);
    bottom: calc(var(--sp-3) + env(safe-area-inset-bottom));
    z-index: 30;
    display: block;
    margin: 0;
    border: 1px solid rgba(53, 200, 210, 0.3);
    border-radius: var(--r);
    background: rgba(8, 12, 14, 0.94);
    box-shadow: var(--shadow-lg);
    backdrop-filter: blur(14px);
  }

  .article-mobile-toc[open]:not([hidden]) {
    max-height: min(70vh, 520px);
  }
}

@media (max-width: 767px) {
  .article-live-ticker__inner {
    padding-inline: var(--sp-3);
  }

  .article-live-ticker__label {
    position: sticky;
    left: 0;
    padding-right: var(--sp-2);
    background: rgba(5, 9, 10, 0.92);
  }

  .article-main .article-body {
    font-size: 14px;
    line-height: 1.82;
  }

  .article-main .article-body h2 {
    font-size: 21px;
  }

  .spread-visual-card,
  .spread-mini-calculator,
  .spread-next-card,
  .orderbook-learning-hero,
  .orderbook-execution-sim,
  .orderbook-mini-quiz,
  .fee-visual,
  .fee-cost-compare,
  .fee-mini-sim,
  .jpy-withdrawal-tool,
  .article-next-card,
  .broker-hero-visual,
  .broker-comparison-section,
  .broker-choice,
  .broker-spread-visual,
  .broker-procon-card,
  .article-tldr,
  .broker-dialogue,
  .broker-loss-story,
  .broker-mini-compare__card,
  .article-author-card {
    padding: var(--sp-3);
  }

  .spread-bar-visual__scale,
  .spread-bar-visual__loss,
  .orderbook-visual__actions,
  .orderbook-mini-quiz__choices,
  .fee-cost-card dl div,
  .fee-step,
  .fee-mini-sim__modes,
  .jpy-withdrawal-bank-filter,
  .broker-spread-visual__graphic,
  .broker-mini-compare dl div,
  .article-author-card,
  .broker-step {
    grid-template-columns: 1fr;
  }

  .spread-bar-visual__scale::before {
    top: var(--sp-4);
    bottom: var(--sp-4);
    left: 50%;
    right: auto;
    width: 8px;
    height: auto;
    background:
      linear-gradient(180deg, rgba(53, 224, 165, 0.6), rgba(244, 201, 93, 0.9), rgba(255, 107, 112, 0.72));
    transform: translateX(-50%);
  }

  .spread-bar-visual__marker,
  .spread-bar-visual__gap {
    min-height: 86px;
  }

  .spread-mini-calculator__result strong {
    font-size: 24px;
  }

  .fee-step__number {
    width: 30px;
    height: 30px;
  }

  .quick-recommendation-card {
    min-height: 0;
  }

  .jpy-withdrawal-table-shell {
    max-height: none;
    overflow: visible;
    border: 0;
    background: transparent;
  }

  .article-body .jpy-withdrawal-table {
    display: block;
    min-width: 0;
  }

  .article-body .jpy-withdrawal-table thead {
    display: none;
  }

  .article-body .jpy-withdrawal-table,
  .article-body .jpy-withdrawal-table tbody,
  .article-body .jpy-withdrawal-table tr,
  .article-body .jpy-withdrawal-table td {
    width: 100%;
    display: block;
  }

  .article-body .jpy-withdrawal-table tbody {
    display: grid;
    gap: var(--sp-3);
  }

  .article-body .jpy-withdrawal-table tr {
    padding: var(--sp-3);
    border: 1px solid var(--line);
    border-radius: var(--r);
    background: rgba(13, 18, 20, 0.72);
    box-shadow: var(--shadow-sm);
  }

  .article-body .jpy-withdrawal-table th,
  .article-body .jpy-withdrawal-table td,
  html.theme-light .article-body .jpy-withdrawal-table th,
  html.theme-light .article-body .jpy-withdrawal-table td,
  .article-body .jpy-withdrawal-table tr.is-best td,
  html.theme-light .article-body .jpy-withdrawal-table tr.is-best td {
    padding: var(--sp-2) 0;
    border-right: 0;
    border-bottom: 1px solid var(--line-weak);
    background: transparent;
  }

  .article-body .jpy-withdrawal-table td:last-child {
    padding-bottom: 0;
    border-bottom: 0;
  }

  .article-body .jpy-withdrawal-table td::before {
    content: attr(data-label);
    display: block;
    margin-bottom: 3px;
    color: var(--text-3);
    font-size: 11px;
    font-weight: 800;
  }

  .jpy-exchange {
    align-items: flex-start;
  }

  .jpy-source-button {
    width: 100%;
  }

  .broker-flow {
    grid-template-columns: minmax(0, 1fr) 30px minmax(0, 1fr);
    padding: var(--sp-2);
  }

  .broker-flow__node {
    min-height: 104px;
    padding: var(--sp-2);
  }

  .broker-flow__node strong {
    font-size: var(--fs-md);
  }

  .broker-table-scroll-hint {
    width: max-content;
    max-width: 100%;
    min-height: 26px;
    display: inline-flex;
    align-items: center;
    padding: 0 9px;
    border: 1px solid rgba(244, 201, 93, 0.28);
    border-radius: 999px;
    background: rgba(244, 201, 93, 0.1);
    color: var(--warn);
    font-size: 10px;
    font-weight: 900;
    animation: broker-scroll-hint 1.6s ease-in-out infinite;
  }

  .article-body .broker-compare-table {
    min-width: 680px;
  }

  .broker-choice__link,
  .broker-inline-button,
  .checklist-inline-cta a,
  .interactive-checklist__complete a,
  .article-author-card a {
    width: 100%;
  }
}

@media (max-width: 900px) {
  .buying-amount-sim__header,
  .buying-amount-sim__controls,
  .buying-amount-sim__rows,
  .buying-first-checks,
  .buying-procon-grid {
    grid-template-columns: 1fr;
  }

  .buying-amount-sim__amount {
    width: max-content;
    max-width: 100%;
  }

  .buying-cost-meter__row {
    grid-template-columns: 68px minmax(0, 1fr);
  }

  .buying-cost-meter__row > strong {
    grid-column: 2;
    text-align: left;
  }
}

@media (max-width: 767px) {
  .article-main .article-body {
    font-size: 16px;
    line-height: 1.8;
  }

  .article-main .article-body p {
    line-height: 1.8;
  }

  .buying-priority-filter,
  .buying-amount-sim,
  .buying-concept-visual,
  .buying-first-checks article,
  .buying-procon-card,
  .exchange-checklist-hero,
  .checklist-compare-visual,
  .checklist-book-visual,
  .interactive-checklist {
    padding: var(--sp-3);
  }

  .checklist-hero-steps,
  .checklist-flow,
  .checklist-compare-card dl div,
  .interactive-checklist__header,
  .interactive-checklist__complete {
    grid-template-columns: 1fr;
  }

  .checklist-callout {
    grid-template-columns: 30px minmax(0, 1fr);
  }

  .checklist-callout p {
    grid-column: 1 / -1;
  }

  .interactive-checklist__header,
  .interactive-checklist__complete {
    display: grid;
  }

  .article-mobile-actions {
    position: fixed;
    right: var(--sp-3);
    bottom: calc(var(--sp-3) + env(safe-area-inset-bottom));
    z-index: 42;
    display: flex;
    gap: 6px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(8px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .article-mobile-actions.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .article-mobile-actions button {
    min-width: 48px;
    min-height: 40px;
    padding: 0 10px;
    border: 1px solid rgba(53, 200, 210, 0.34);
    border-radius: 999px;
    background: rgba(8, 14, 16, 0.94);
    color: var(--accent);
    font-size: 11px;
    font-weight: 900;
    box-shadow: var(--shadow-lg);
    backdrop-filter: blur(14px);
  }

  html.theme-light .article-mobile-actions button {
    background: rgba(255, 255, 255, 0.94);
  }

  .buying-priority-filter a,
  .buying-primary-link {
    width: 100%;
  }

  .buying-amount-sim__presets,
  .buying-cost-meter__row,
  .buying-step-timeline__item {
    grid-template-columns: 1fr;
  }

  .buying-cost-meter__row > strong {
    grid-column: auto;
  }

  .buying-step-timeline__item::before {
    display: none;
  }

  .buying-mobile-fab {
    position: fixed;
    left: var(--sp-3);
    right: var(--sp-3);
    bottom: calc(78px + env(safe-area-inset-bottom));
    z-index: 31;
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 var(--sp-3);
    border: 1px solid rgba(53, 224, 165, 0.42);
    border-radius: var(--r);
    background: rgba(8, 20, 15, 0.96);
    color: var(--bid) !important;
    font-size: var(--fs-sm);
    font-weight: 900;
    text-decoration: none !important;
    box-shadow: var(--shadow-lg);
    backdrop-filter: blur(14px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .article-live-ticker.is-fresh .article-live-ticker__item span,
  .spread-bar-visual__gap::before,
  .orderbook-learning-hero.is-ticking .orderbook-learning-row,
  .mini-orderbook__mid,
  .broker-spread-visual__gap::before,
  .broker-table-scroll-hint,
  .buying-amount-sim.is-fresh .buying-sim-row,
  [data-buying-highlight].is-highlighted,
  .beginner-mode .article-term[data-beginner-label]::after {
    animation: none;
  }

  .theme-ripple,
  .beginner-spotlight-overlay,
  .beginner-spotlight-callout {
    display: none;
  }

  .article-mobile-actions {
    transition: none;
  }
}
