/* Ryo Network Observatory 1.2.0 */
:root {
  --ryo-bg: #030916;
  --ryo-bg-2: #071326;
  --ryo-panel: rgba(9, 24, 46, 0.82);
  --ryo-panel-solid: #09182e;
  --ryo-panel-2: rgba(13, 34, 62, 0.72);
  --ryo-line: rgba(86, 164, 255, 0.18);
  --ryo-line-strong: rgba(86, 164, 255, 0.38);
  --ryo-blue: #4da8ff;
  --ryo-blue-2: #456fe1;
  --ryo-cyan: #72e2ff;
  --ryo-text: #f4f8ff;
  --ryo-muted: #91a6c2;
  --ryo-dim: #607694;
  --ryo-good: #65e8bc;
  --ryo-warn: #ffc96a;
  --ryo-error: #ff758a;
  --ryo-radius: 20px;
  --ryo-shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
  --ryo-font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --ryo-mono: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, monospace;
}

body.ryo-explorer-canvas {
  margin: 0 !important;
  background: var(--ryo-bg) !important;
  color: var(--ryo-text) !important;
}

body.ryo-explorer-canvas.admin-bar .ryo-explorer__topbar {
  top: 32px;
}

.ryo-explorer-canvas__main,
.ryo-explorer-canvas__main > article,
.ryo-explorer-canvas__main .entry-content {
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

.ryo-explorer {
  position: relative;
  isolation: isolate;
  width: 100%;
  max-width: 100%;
  min-height: 260px;
  overflow: hidden;
  color: var(--ryo-text);
  background:
    radial-gradient(circle at 12% 8%, rgba(63, 115, 230, 0.18), transparent 34%),
    radial-gradient(circle at 88% 18%, rgba(56, 190, 255, 0.12), transparent 31%),
    linear-gradient(180deg, var(--ryo-bg), #041020 56%, #020711);
  font-family: var(--ryo-font);
  font-size: 16px;
  line-height: 1.5;
  text-align: left;
  box-sizing: border-box;
}

.ryo-explorer *,
.ryo-explorer *::before,
.ryo-explorer *::after {
  box-sizing: border-box;
}

.ryo-explorer a {
  color: inherit;
  text-decoration: none;
}

.ryo-explorer button,
.ryo-explorer input,
.ryo-explorer select {
  font: inherit;
}

.ryo-explorer button {
  cursor: pointer;
}

.ryo-explorer__shell {
  position: relative;
  z-index: 2;
  min-height: 100vh;
}

.ryo-explorer__grid-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  opacity: 0.4;
  background-image:
    linear-gradient(rgba(77, 168, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(77, 168, 255, 0.055) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to bottom, #000 0, rgba(0,0,0,.7) 52%, transparent 100%);
}

.ryo-explorer__grid-bg::after {
  content: "";
  position: absolute;
  inset: -40%;
  background: linear-gradient(110deg, transparent 38%, rgba(103, 210, 255, 0.06) 50%, transparent 62%);
  transform: translateX(-30%);
  animation: ryo-grid-scan 14s linear infinite;
}

@keyframes ryo-grid-scan {
  to { transform: translateX(30%); }
}

.ryo-explorer__topbar {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
  padding: 12px clamp(18px, 4vw, 64px);
  border-bottom: 1px solid rgba(97, 171, 255, 0.14);
  background: rgba(3, 9, 22, 0.78);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.ryo-explorer__brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 210px;
}

.ryo-explorer__brand img {
  width: 38px;
  height: 38px;
  object-fit: contain;
  filter: drop-shadow(0 0 14px rgba(77, 168, 255, 0.35));
}

.ryo-explorer__brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.08;
}

.ryo-explorer__brand-copy strong {
  font-size: 15px;
  letter-spacing: .04em;
}

.ryo-explorer__brand-copy span {
  margin-top: 4px;
  color: var(--ryo-muted);
  font-size: 11px;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.ryo-explorer__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  flex: 1;
}

.ryo-explorer__nav a {
  padding: 9px 12px;
  border-radius: 999px;
  color: var(--ryo-muted);
  font-size: 13px;
  font-weight: 650;
  transition: color .2s ease, background .2s ease;
}

.ryo-explorer__nav a:hover,
.ryo-explorer__nav a:focus-visible {
  color: var(--ryo-text);
  background: rgba(77, 168, 255, .1);
  outline: none;
}

.ryo-explorer__top-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  min-width: 210px;
}

.ryo-explorer__live {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 11px;
  border: 1px solid rgba(101, 232, 188, .22);
  border-radius: 999px;
  background: rgba(101, 232, 188, .07);
  color: var(--ryo-good);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.ryo-explorer__live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 0 0 rgba(101, 232, 188, .45);
  animation: ryo-live-pulse 2s infinite;
}

.ryo-explorer__live.is-stale {
  color: var(--ryo-warn);
  border-color: rgba(255, 201, 106, .25);
  background: rgba(255, 201, 106, .07);
}

.ryo-explorer__live.is-error {
  color: var(--ryo-error);
  border-color: rgba(255, 117, 138, .25);
  background: rgba(255, 117, 138, .07);
}

@keyframes ryo-live-pulse {
  70% { box-shadow: 0 0 0 7px rgba(101, 232, 188, 0); }
  100% { box-shadow: 0 0 0 0 rgba(101, 232, 188, 0); }
}

.ryo-explorer__external {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 12px;
  border: 1px solid var(--ryo-line);
  border-radius: 12px;
  color: var(--ryo-muted);
  font-size: 12px;
  font-weight: 700;
  transition: border-color .2s ease, color .2s ease, transform .2s ease;
}

.ryo-explorer__external:hover {
  color: var(--ryo-text);
  border-color: var(--ryo-line-strong);
  transform: translateY(-1px);
}

.ryo-explorer__container {
  width: min(1480px, calc(100% - clamp(28px, 7vw, 110px)));
  margin: 0 auto;
}

.ryo-explorer__hero {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, .65fr);
  align-items: center;
  gap: clamp(30px, 6vw, 92px);
  min-height: 540px;
  padding: clamp(70px, 9vw, 128px) 0 clamp(42px, 6vw, 86px);
}

.ryo-explorer__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--ryo-cyan);
  font-size: 12px;
  font-weight: 780;
  letter-spacing: .17em;
  text-transform: uppercase;
}

.ryo-explorer__eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--ryo-cyan));
}

.ryo-explorer__hero h1 {
  max-width: 850px;
  margin: 0;
  color: var(--ryo-text);
  font-size: clamp(44px, 6vw, 82px);
  font-weight: 760;
  letter-spacing: -.052em;
  line-height: .98;
}

.ryo-explorer__hero h1 span {
  display: block;
  background: linear-gradient(100deg, #f5f9ff 5%, #77dfff 46%, #6484ef 92%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.ryo-explorer__hero-copy {
  max-width: 720px;
  margin: 24px 0 0;
  color: var(--ryo-muted);
  font-size: clamp(16px, 1.5vw, 20px);
  line-height: 1.65;
}

.ryo-explorer__search-wrap {
  position: relative;
  max-width: 900px;
  margin-top: 34px;
}

.ryo-explorer__search {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  padding: 9px 9px 9px 18px;
  border: 1px solid rgba(102, 181, 255, .3);
  border-radius: 18px;
  background: rgba(8, 24, 47, .82);
  box-shadow: 0 14px 50px rgba(0,0,0,.26), inset 0 1px 0 rgba(255,255,255,.035);
  backdrop-filter: blur(16px);
  transition: border-color .2s ease, box-shadow .2s ease;
}

.ryo-explorer__search:focus-within {
  border-color: rgba(114, 226, 255, .72);
  box-shadow: 0 14px 50px rgba(0,0,0,.28), 0 0 0 4px rgba(77,168,255,.1);
}

.ryo-explorer__search-icon {
  width: 22px;
  height: 22px;
  color: var(--ryo-cyan);
}

.ryo-explorer__search input {
  width: 100%;
  min-width: 0;
  padding: 10px 0;
  border: 0 !important;
  outline: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  color: var(--ryo-text) !important;
  font-family: var(--ryo-mono);
  font-size: 14px;
}

.ryo-explorer__search input::placeholder {
  color: #7087a5;
  opacity: 1;
}

.ryo-explorer__search button,
.ryo-explorer__primary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 46px;
  padding: 0 20px;
  border: 0;
  border-radius: 13px;
  background: linear-gradient(135deg, var(--ryo-blue), var(--ryo-blue-2));
  color: white;
  font-weight: 760;
  box-shadow: 0 9px 24px rgba(56, 114, 229, .3);
  transition: transform .2s ease, filter .2s ease;
}

.ryo-explorer__search button:hover,
.ryo-explorer__primary-button:hover {
  transform: translateY(-1px);
  filter: brightness(1.08);
}

.ryo-explorer__search button:disabled,
.ryo-explorer__primary-button:disabled {
  cursor: wait;
  opacity: .65;
  transform: none;
}

.ryo-explorer__search-help {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 11px 4px 0;
  color: var(--ryo-dim);
  font-size: 12px;
}

.ryo-explorer__kbd {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 24px;
  min-height: 22px;
  padding: 2px 7px;
  border: 1px solid var(--ryo-line);
  border-bottom-color: rgba(93, 165, 255, .34);
  border-radius: 6px;
  background: rgba(255,255,255,.03);
  color: var(--ryo-muted);
  font-family: var(--ryo-mono);
  font-size: 11px;
}

.ryo-explorer__search-message {
  min-height: 22px;
  margin-top: 10px;
  color: var(--ryo-error);
  font-size: 13px;
}

.ryo-explorer__core-wrap {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 340px;
}

.ryo-explorer__core {
  position: relative;
  width: min(320px, 72vw);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
}

.ryo-explorer__core::before,
.ryo-explorer__core::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.ryo-explorer__core::before {
  inset: 0;
  border: 1px solid rgba(90, 173, 255, .22);
  box-shadow: 0 0 45px rgba(77,168,255,.13), inset 0 0 45px rgba(77,168,255,.08);
  animation: ryo-core-rotate 20s linear infinite;
}

.ryo-explorer__core::after {
  inset: 10%;
  border: 1px dashed rgba(114, 226, 255, .28);
  animation: ryo-core-rotate-reverse 16s linear infinite;
}

.ryo-explorer__core-halo {
  position: absolute;
  inset: 18%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(75, 164, 255, .16), transparent 64%);
  filter: blur(4px);
  animation: ryo-core-breathe 4s ease-in-out infinite;
}

.ryo-explorer__core img {
  position: relative;
  z-index: 4;
  width: 56%;
  height: 56%;
  object-fit: contain;
  filter: drop-shadow(0 0 20px rgba(75, 164, 255, .45));
  animation: ryo-logo-float 5s ease-in-out infinite;
}

.ryo-explorer__orbit {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  animation: ryo-core-rotate 11s linear infinite;
}

.ryo-explorer__orbit span {
  position: absolute;
  left: 50%;
  top: -4px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--ryo-cyan);
  box-shadow: 0 0 16px var(--ryo-cyan);
}

.ryo-explorer__core-label {
  position: absolute;
  bottom: 4%;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  min-width: 160px;
  padding: 9px 14px;
  border: 1px solid rgba(82, 163, 255, .2);
  border-radius: 12px;
  background: rgba(3, 12, 28, .74);
  backdrop-filter: blur(10px);
  color: var(--ryo-muted);
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.ryo-explorer__core-label strong {
  color: var(--ryo-text);
  font-family: var(--ryo-mono);
  font-size: 16px;
  letter-spacing: 0;
}

.ryo-explorer__core.is-new-block::before {
  animation: ryo-core-burst .9s ease-out, ryo-core-rotate 20s linear infinite;
}

.ryo-explorer__core.is-new-block img {
  animation: ryo-logo-flash .9s ease-out, ryo-logo-float 5s ease-in-out infinite;
}

@keyframes ryo-core-rotate { to { transform: rotate(360deg); } }
@keyframes ryo-core-rotate-reverse { to { transform: rotate(-360deg); } }
@keyframes ryo-core-breathe { 50% { transform: scale(1.12); opacity: .65; } }
@keyframes ryo-logo-float { 50% { transform: translateY(-7px); } }
@keyframes ryo-core-burst {
  0% { box-shadow: 0 0 0 0 rgba(114,226,255,.55); }
  100% { box-shadow: 0 0 0 48px rgba(114,226,255,0); }
}
@keyframes ryo-logo-flash {
  35% { transform: scale(1.08); filter: drop-shadow(0 0 42px rgba(114,226,255,.92)); }
}

.ryo-explorer__status-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 26px;
  padding: 13px 17px;
  border: 1px solid var(--ryo-line);
  border-radius: 14px;
  background: rgba(7, 21, 42, .62);
  color: var(--ryo-muted);
  font-size: 12px;
}

.ryo-explorer__status-strip > div {
  display: flex;
  align-items: center;
  gap: 8px;
}

.ryo-explorer__status-strip strong {
  color: var(--ryo-text);
}

.ryo-explorer__metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: clamp(48px, 6vw, 84px);
}

.ryo-explorer__metric,
.ryo-explorer__panel,
.ryo-explorer__mini-card {
  border: 1px solid var(--ryo-line);
  background: linear-gradient(145deg, rgba(13, 33, 61, .8), rgba(5, 17, 35, .83));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.025);
}

.ryo-explorer__metric {
  position: relative;
  min-height: 130px;
  padding: 20px;
  border-radius: 17px;
  overflow: hidden;
  transition: transform .2s ease, border-color .2s ease;
}

.ryo-explorer__metric:hover {
  transform: translateY(-2px);
  border-color: rgba(91, 174, 255, .34);
}

.ryo-explorer__metric::after {
  content: "";
  position: absolute;
  right: -26px;
  bottom: -34px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(77,168,255,.12), transparent 68%);
}

.ryo-explorer__metric-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  color: var(--ryo-muted);
  font-size: 11px;
  font-weight: 760;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.ryo-explorer__metric-value {
  position: relative;
  z-index: 1;
  display: block;
  margin-top: 17px;
  color: var(--ryo-text);
  font-size: clamp(22px, 2.3vw, 32px);
  font-weight: 740;
  letter-spacing: -.035em;
  line-height: 1.05;
  font-variant-numeric: tabular-nums;
}

.ryo-explorer__metric-note {
  position: relative;
  z-index: 1;
  display: block;
  margin-top: 10px;
  color: var(--ryo-dim);
  font-size: 11px;
}

.ryo-explorer__section {
  margin-bottom: clamp(52px, 7vw, 92px);
  scroll-margin-top: 95px;
}

.ryo-explorer__section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 22px;
}

.ryo-explorer__section-heading h2 {
  margin: 0;
  color: var(--ryo-text);
  font-size: clamp(25px, 3vw, 38px);
  font-weight: 720;
  letter-spacing: -.035em;
}

.ryo-explorer__section-heading p {
  max-width: 650px;
  margin: 8px 0 0;
  color: var(--ryo-muted);
  font-size: 14px;
}

.ryo-explorer__section-kicker {
  display: block;
  margin-bottom: 7px;
  color: var(--ryo-cyan);
  font-size: 10px;
  font-weight: 780;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.ryo-explorer__block-stream {
  position: relative;
  display: grid;
  grid-template-columns: repeat(7, minmax(140px, 1fr));
  gap: 12px;
  overflow-x: auto;
  padding: 22px 2px 12px;
  scrollbar-width: thin;
  scrollbar-color: rgba(83,165,255,.28) transparent;
}

.ryo-explorer__block-stream::before {
  content: "";
  position: absolute;
  top: 53px;
  left: 4%;
  right: 4%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(77,168,255,.32), transparent);
}

.ryo-explorer__block-node {
  position: relative;
  z-index: 1;
  min-width: 145px;
  padding: 20px 16px 16px;
  border: 1px solid var(--ryo-line);
  border-radius: 16px;
  background: rgba(7, 21, 42, .92);
  color: var(--ryo-text);
  text-align: left;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.ryo-explorer__block-node:hover,
.ryo-explorer__block-node:focus-visible {
  outline: none;
  transform: translateY(-3px);
  border-color: rgba(103, 203, 255, .5);
  box-shadow: 0 12px 35px rgba(0,0,0,.24);
}

.ryo-explorer__block-node.is-latest {
  border-color: rgba(114,226,255,.52);
  box-shadow: 0 0 28px rgba(72,165,255,.12);
}

.ryo-explorer__block-node-dot {
  position: absolute;
  top: -5px;
  left: 50%;
  width: 10px;
  height: 10px;
  transform: translateX(-50%);
  border: 2px solid var(--ryo-bg);
  border-radius: 50%;
  background: var(--ryo-blue);
  box-shadow: 0 0 13px rgba(77,168,255,.7);
}

.ryo-explorer__block-node.is-latest .ryo-explorer__block-node-dot {
  background: var(--ryo-cyan);
  box-shadow: 0 0 18px rgba(114,226,255,.9);
}

.ryo-explorer__block-height {
  display: block;
  color: var(--ryo-text);
  font-family: var(--ryo-mono);
  font-size: 15px;
  font-weight: 760;
}

.ryo-explorer__block-meta {
  display: grid;
  gap: 5px;
  margin-top: 13px;
  color: var(--ryo-muted);
  font-size: 11px;
}

.ryo-explorer__two-col {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.ryo-explorer__panel {
  min-width: 0;
  border-radius: var(--ryo-radius);
  overflow: hidden;
  box-shadow: var(--ryo-shadow);
}

.ryo-explorer__panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 22px;
  border-bottom: 1px solid var(--ryo-line);
  background: rgba(255,255,255,.012);
}

.ryo-explorer__panel-header h3 {
  margin: 0;
  color: var(--ryo-text);
  font-size: 16px;
  font-weight: 720;
}

.ryo-explorer__panel-header span {
  color: var(--ryo-dim);
  font-size: 11px;
}

.ryo-explorer__table-wrap {
  overflow-x: auto;
}

.ryo-explorer__table {
  width: 100%;
  min-width: 600px;
  border-collapse: collapse;
  border-spacing: 0;
  margin: 0;
  color: var(--ryo-text);
  background: transparent;
  font-size: 12px;
}

.ryo-explorer__table th,
.ryo-explorer__table td {
  padding: 14px 17px;
  border: 0;
  border-bottom: 1px solid rgba(85, 158, 238, .1);
  background: transparent;
  text-align: left;
  vertical-align: middle;
}

.ryo-explorer__table th {
  color: var(--ryo-dim);
  font-size: 9px;
  font-weight: 780;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.ryo-explorer__table tr:last-child td {
  border-bottom: 0;
}

.ryo-explorer__table tbody tr {
  transition: background .2s ease;
}

.ryo-explorer__table tbody tr:hover {
  background: rgba(73, 151, 245, .045);
}

.ryo-explorer__link-button,
.ryo-explorer__hash-button {
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--ryo-blue);
  font-weight: 720;
  text-align: left;
}

.ryo-explorer__link-button:hover,
.ryo-explorer__hash-button:hover {
  color: var(--ryo-cyan);
}

.ryo-explorer__hash {
  display: inline-flex;
  align-items: center;
  max-width: 220px;
  color: #bad2f2;
  font-family: var(--ryo-mono);
  font-size: 11px;
}

.ryo-explorer__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 8px;
  border: 1px solid rgba(95, 172, 255, .17);
  border-radius: 999px;
  background: rgba(77,168,255,.07);
  color: #abd0ff;
  font-size: 9px;
  font-weight: 780;
  letter-spacing: .07em;
  text-transform: uppercase;
  white-space: nowrap;
}

.ryo-explorer__badge.is-good {
  border-color: rgba(101,232,188,.2);
  background: rgba(101,232,188,.07);
  color: var(--ryo-good);
}

.ryo-explorer__badge.is-warn {
  border-color: rgba(255,201,106,.2);
  background: rgba(255,201,106,.07);
  color: var(--ryo-warn);
}

.ryo-explorer__chart-toolbar {
  display: flex;
  align-items: center;
  gap: 5px;
  flex-wrap: wrap;
}

.ryo-explorer__range-button,
.ryo-explorer__ghost-button,
.ryo-explorer__tab-button,
.ryo-explorer__copy-button {
  border: 1px solid var(--ryo-line);
  background: rgba(255,255,255,.025);
  color: var(--ryo-muted);
  transition: color .2s ease, border-color .2s ease, background .2s ease;
}

.ryo-explorer__range-button {
  min-width: 42px;
  padding: 7px 10px;
  border-radius: 9px;
  font-size: 10px;
  font-weight: 760;
}

.ryo-explorer__range-button:hover,
.ryo-explorer__range-button.is-active,
.ryo-explorer__tab-button.is-active {
  color: var(--ryo-text);
  border-color: rgba(90,177,255,.45);
  background: rgba(77,168,255,.12);
}

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

.ryo-explorer__chart-card {
  min-height: 330px;
  padding: 20px;
  border: 1px solid var(--ryo-line);
  border-radius: var(--ryo-radius);
  background: linear-gradient(145deg, rgba(12,31,58,.75), rgba(4,15,31,.82));
}

.ryo-explorer__chart-card h3 {
  margin: 0;
  color: var(--ryo-text);
  font-size: 15px;
}

.ryo-explorer__chart-value {
  display: block;
  margin-top: 6px;
  color: var(--ryo-muted);
  font-size: 12px;
}

.ryo-explorer__chart-canvas-wrap {
  position: relative;
  height: 235px;
  margin-top: 18px;
}

.ryo-explorer__chart-canvas-wrap canvas {
  display: block;
  width: 100%;
  height: 100%;
}

.ryo-explorer__empty-chart {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 24px;
  color: var(--ryo-muted);
  font-size: 13px;
  text-align: center;
}

.ryo-explorer__network-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 18px;
}

.ryo-explorer__mempool-summary {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  padding: 18px;
}

.ryo-explorer__mini-card {
  padding: 15px;
  border-radius: 13px;
}

.ryo-explorer__mini-card span {
  display: block;
  color: var(--ryo-dim);
  font-size: 9px;
  font-weight: 750;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.ryo-explorer__mini-card strong {
  display: block;
  margin-top: 9px;
  color: var(--ryo-text);
  font-size: 19px;
  font-weight: 730;
}

.ryo-explorer__emission {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  align-items: center;
  gap: 28px;
  padding: 28px;
}

.ryo-explorer__emission-ring {
  --progress: 0deg;
  position: relative;
  width: 170px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: conic-gradient(var(--ryo-cyan) var(--progress), rgba(86,164,255,.12) 0);
  box-shadow: 0 0 38px rgba(73,166,255,.12);
}

.ryo-explorer__emission-ring::before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid var(--ryo-line);
  border-radius: 50%;
  background: var(--ryo-panel-solid);
}

.ryo-explorer__emission-ring-content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.ryo-explorer__emission-ring-content strong {
  display: block;
  font-size: 28px;
  line-height: 1;
}

.ryo-explorer__emission-ring-content span {
  display: block;
  margin-top: 7px;
  color: var(--ryo-muted);
  font-size: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.ryo-explorer__emission-copy h3 {
  margin: 0;
  font-size: 22px;
}

.ryo-explorer__emission-copy p {
  margin: 9px 0 20px;
  color: var(--ryo-muted);
  font-size: 13px;
  line-height: 1.65;
}

.ryo-explorer__emission-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.ryo-explorer__detail {
  display: none;
  min-height: calc(100vh - 72px);
  padding: 44px 0 90px;
}

.ryo-explorer.is-detail-open .ryo-explorer__dashboard {
  display: none;
}

.ryo-explorer.is-detail-open .ryo-explorer__detail {
  display: block;
}

.ryo-explorer__detail-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 26px;
}

.ryo-explorer__ghost-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 11px;
  font-size: 12px;
  font-weight: 700;
}

.ryo-explorer__ghost-button:hover {
  color: var(--ryo-text);
  border-color: var(--ryo-line-strong);
  background: rgba(77,168,255,.08);
}

.ryo-explorer__detail-title {
  margin-bottom: 22px;
}

.ryo-explorer__detail-title h1 {
  margin: 0;
  color: var(--ryo-text);
  font-size: clamp(30px, 4vw, 54px);
  line-height: 1.05;
  letter-spacing: -.045em;
}

.ryo-explorer__detail-title p {
  margin: 11px 0 0;
  color: var(--ryo-muted);
}

.ryo-explorer__detail-hash {
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: 100%;
  margin-top: 18px;
  padding: 13px 15px;
  border: 1px solid var(--ryo-line);
  border-radius: 12px;
  background: rgba(6,18,37,.72);
  color: #bed7f6;
  font-family: var(--ryo-mono);
  font-size: 12px;
  overflow-wrap: anywhere;
}

.ryo-explorer__copy-button {
  flex: 0 0 auto;
  min-height: 30px;
  padding: 5px 9px;
  border-radius: 8px;
  font-size: 10px;
}

.ryo-explorer__detail-tabs {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--ryo-line);
}

.ryo-explorer__tab-button {
  padding: 9px 13px;
  border-radius: 10px;
  font-size: 11px;
  font-weight: 760;
}

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

.ryo-explorer__detail-card {
  min-width: 0;
  padding: 18px;
  border: 1px solid var(--ryo-line);
  border-radius: 15px;
  background: rgba(9,25,48,.72);
}

.ryo-explorer__detail-card span {
  display: block;
  color: var(--ryo-dim);
  font-size: 9px;
  font-weight: 760;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.ryo-explorer__detail-card strong {
  display: block;
  margin-top: 10px;
  color: var(--ryo-text);
  font-size: 17px;
  overflow-wrap: anywhere;
}

.ryo-explorer__technical-list {
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr);
  margin: 0;
  border: 1px solid var(--ryo-line);
  border-radius: 16px;
  overflow: hidden;
}

.ryo-explorer__technical-list dt,
.ryo-explorer__technical-list dd {
  min-width: 0;
  margin: 0;
  padding: 14px 17px;
  border-bottom: 1px solid rgba(85,158,238,.1);
}

.ryo-explorer__technical-list dt {
  background: rgba(255,255,255,.018);
  color: var(--ryo-dim);
  font-size: 10px;
  font-weight: 760;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.ryo-explorer__technical-list dd {
  color: #c5d8ef;
  font-family: var(--ryo-mono);
  font-size: 11px;
  overflow-wrap: anywhere;
}

.ryo-explorer__technical-list dt:last-of-type,
.ryo-explorer__technical-list dd:last-of-type {
  border-bottom: 0;
}

.ryo-explorer__raw {
  position: relative;
  min-height: 280px;
  max-height: 70vh;
  overflow: auto;
  margin: 0;
  padding: 22px;
  border: 1px solid var(--ryo-line);
  border-radius: 16px;
  background: #020814;
  color: #bcd7f7;
  font-family: var(--ryo-mono);
  font-size: 11px;
  line-height: 1.65;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
}

.ryo-explorer__notice,
.ryo-explorer__error {
  padding: 14px 16px;
  border-radius: 12px;
  font-size: 13px;
}

.ryo-explorer__notice {
  border: 1px solid rgba(255,201,106,.2);
  background: rgba(255,201,106,.07);
  color: #f7d996;
}

.ryo-explorer__error {
  border: 1px solid rgba(255,117,138,.22);
  background: rgba(255,117,138,.08);
  color: #ff9bab;
}

.ryo-explorer__loading {
  display: grid;
  place-items: center;
  min-height: 320px;
  color: var(--ryo-muted);
}

.ryo-explorer__spinner,
.ryo-explorer__boot-ring {
  display: inline-block;
  width: 28px;
  height: 28px;
  border: 2px solid rgba(77,168,255,.18);
  border-top-color: var(--ryo-cyan);
  border-radius: 50%;
  animation: ryo-spin .8s linear infinite;
}

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

.ryo-explorer__boot {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 280px;
  color: var(--ryo-muted);
}

.ryo-explorer__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 30px 0 42px;
  border-top: 1px solid var(--ryo-line);
  color: var(--ryo-dim);
  font-size: 11px;
}

.ryo-explorer__footer-links {
  display: flex;
  align-items: center;
  gap: 15px;
}

.ryo-explorer__footer a:hover {
  color: var(--ryo-text);
}

/* Modular shortcode modes */
.ryo-explorer:not(.ryo-explorer--full) {
  min-height: auto;
  border-radius: var(--ryo-radius);
}

.ryo-explorer:not(.ryo-explorer--full) .ryo-explorer__shell {
  min-height: auto;
  padding: 24px;
}

.ryo-explorer:not(.ryo-explorer--full) .ryo-explorer__container {
  width: 100%;
}

.ryo-explorer__module-title {
  margin: 0 0 16px;
  color: var(--ryo-text);
  font-size: 22px;
}

@media (max-width: 1180px) {
  .ryo-explorer__metrics { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .ryo-explorer__detail-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .ryo-explorer__top-actions { min-width: auto; }
  .ryo-explorer__nav { display: none; }
}

@media (max-width: 900px) {
  body.ryo-explorer-canvas.admin-bar .ryo-explorer__topbar { top: 46px; }
  .ryo-explorer__topbar { min-height: 64px; padding-inline: 16px; }
  .ryo-explorer__external { display: none; }
  .ryo-explorer__brand { min-width: auto; }
  .ryo-explorer__container { width: min(100% - 30px, 760px); }
  .ryo-explorer__hero { grid-template-columns: 1fr; min-height: auto; padding-top: 62px; }
  .ryo-explorer__core-wrap { order: -1; min-height: 270px; }
  .ryo-explorer__core { width: 250px; }
  .ryo-explorer__hero-copy { font-size: 16px; }
  .ryo-explorer__two-col,
  .ryo-explorer__chart-grid,
  .ryo-explorer__network-grid { grid-template-columns: 1fr; }
  .ryo-explorer__block-stream { grid-template-columns: repeat(7, 155px); }
  .ryo-explorer__section-heading { align-items: flex-start; flex-direction: column; }
  .ryo-explorer__emission { grid-template-columns: 1fr; justify-items: center; text-align: center; }
  .ryo-explorer__emission-stats { text-align: left; }
}

@media (max-width: 620px) {
  .ryo-explorer__brand-copy span { display: none; }
  .ryo-explorer__live { padding: 7px 9px; font-size: 10px; }
  .ryo-explorer__hero h1 { font-size: clamp(38px, 13vw, 58px); }
  .ryo-explorer__search { grid-template-columns: auto minmax(0,1fr); padding: 10px 13px; }
  .ryo-explorer__search button { grid-column: 1 / -1; width: 100%; }
  .ryo-explorer__search-help { align-items: flex-start; flex-direction: column; gap: 5px; }
  .ryo-explorer__status-strip { align-items: flex-start; flex-direction: column; }
  .ryo-explorer__metrics { grid-template-columns: 1fr; }
  .ryo-explorer__metric { min-height: 110px; }
  .ryo-explorer__mempool-summary,
  .ryo-explorer__emission-stats,
  .ryo-explorer__detail-grid { grid-template-columns: 1fr; }
  .ryo-explorer__technical-list { grid-template-columns: 1fr; }
  .ryo-explorer__technical-list dt { border-bottom: 0; padding-bottom: 4px; }
  .ryo-explorer__technical-list dd { padding-top: 4px; }
  .ryo-explorer__detail-top { align-items: flex-start; flex-direction: column; }
  .ryo-explorer__footer { align-items: flex-start; flex-direction: column; }
  .ryo-explorer__footer-links { flex-wrap: wrap; }
}

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

/* Ryo Network Observatory 1.1.0 enhancements */
.ryo-explorer { overflow: visible; }
.ryo-explorer__shell { overflow-x: clip; }
.ryo-explorer__topbar { position: sticky; top: 0; }
.ryo-explorer__section { scroll-margin-top: 108px; }
.ryo-explorer__filter {
  display: flex;
  gap: 8px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--ryo-line);
}
.ryo-explorer__filter input {
  flex: 1;
  min-width: 0;
  padding: 10px 12px;
  border: 1px solid var(--ryo-line-strong);
  border-radius: 10px;
  background: rgba(4, 14, 29, .76);
  color: var(--ryo-text);
  outline: none;
}
.ryo-explorer__filter input:focus { border-color: var(--ryo-cyan); box-shadow: 0 0 0 3px rgba(114,226,255,.1); }
.ryo-explorer__filter button,
.ryo-explorer__api-row button {
  border: 1px solid var(--ryo-line-strong);
  border-radius: 10px;
  background: rgba(77,168,255,.08);
  color: var(--ryo-muted);
  padding: 9px 12px;
}
.ryo-explorer__network-stats {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 16px;
}
.ryo-explorer__chart-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.ryo-explorer__emission--v11 { align-items: stretch; }
.ryo-explorer__emission-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 260px;
}
.ryo-explorer__emission-bar {
  width: min(260px, 100%);
  height: 8px;
  margin-top: 20px;
  overflow: hidden;
  border: 1px solid var(--ryo-line);
  border-radius: 999px;
  background: rgba(255,255,255,.05);
}
.ryo-explorer__emission-bar i {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg,var(--ryo-blue-2),var(--ryo-cyan));
  box-shadow: 0 0 18px rgba(114,226,255,.45);
}
.ryo-explorer__emission-caption { margin-top: 9px; color: var(--ryo-muted); font-size: 12px; }
.ryo-explorer__emission-stats { grid-template-columns: repeat(3,minmax(0,1fr)); }
.ryo-explorer__api-docs {
  border: 1px solid var(--ryo-line);
  border-radius: var(--ryo-radius);
  background: var(--ryo-panel);
  box-shadow: var(--ryo-shadow);
  overflow: hidden;
}
.ryo-explorer__api-docs summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 20px 22px;
  cursor: pointer;
  list-style: none;
}
.ryo-explorer__api-docs summary::-webkit-details-marker { display:none; }
.ryo-explorer__api-docs summary span:first-child { display:flex; flex-direction:column; gap:4px; }
.ryo-explorer__api-docs summary small { color:var(--ryo-cyan); letter-spacing:.12em; text-transform:uppercase; }
.ryo-explorer__api-docs summary strong { font-size:20px; }
.ryo-explorer__api-docs summary > span:last-child { color:var(--ryo-muted); font-size:12px; }
.ryo-explorer__api-docs-body { padding: 0 22px 22px; }
.ryo-explorer__api-docs-body > p { color:var(--ryo-muted); }
.ryo-explorer__api-row {
  display:grid;
  grid-template-columns: 62px minmax(0,1fr) auto;
  gap:10px;
  align-items:center;
  padding:14px 0;
  border-top:1px solid var(--ryo-line);
}
.ryo-explorer__api-row p { grid-column:2 / 4; margin:0; color:var(--ryo-muted); font-size:12px; }
.ryo-explorer__api-row code { overflow:auto; color:var(--ryo-text); font-family:var(--ryo-mono); font-size:12px; }
.ryo-explorer__api-method { color:var(--ryo-good); font-size:11px; font-weight:800; letter-spacing:.08em; }
.ryo-explorer__to-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 60;
  width: 44px;
  height: 44px;
  border: 1px solid var(--ryo-line-strong);
  border-radius: 50%;
  background: rgba(5,16,34,.9);
  color: var(--ryo-cyan);
  box-shadow: 0 10px 30px rgba(0,0,0,.32);
}
@media (max-width: 1050px) {
  .ryo-explorer__chart-grid { grid-template-columns: 1fr; }
  .ryo-explorer__network-stats { grid-template-columns: repeat(2,minmax(0,1fr)); }
}
@media (max-width: 700px) {
  .ryo-explorer__network-stats,
  .ryo-explorer__emission-stats { grid-template-columns: 1fr 1fr; }
  .ryo-explorer__emission-visual { min-width: 0; }
  .ryo-explorer__api-row { grid-template-columns: 54px minmax(0,1fr); }
  .ryo-explorer__api-row button { grid-column:1 / 3; }
  .ryo-explorer__api-row p { grid-column:1 / 3; }
}


/* Ryo Network Observatory 1.2.0 privacy tools */
.ryo-explorer__privacy-tools {
  display: grid;
  gap: 16px;
}

.ryo-explorer__privacy-warning {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 10px 14px;
  align-items: start;
  padding: 16px 18px;
  border: 1px solid rgba(255, 201, 106, .34);
  border-radius: 16px;
  background:
    linear-gradient(135deg, rgba(255, 201, 106, .10), rgba(255, 201, 106, .025)),
    var(--ryo-panel);
  box-shadow: 0 18px 48px rgba(0, 0, 0, .22);
}

.ryo-explorer__privacy-warning::before {
  content: "!";
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border: 1px solid rgba(255, 201, 106, .46);
  border-radius: 50%;
  color: var(--ryo-warn);
  font-weight: 900;
}

.ryo-explorer__privacy-warning strong {
  color: var(--ryo-warn);
  line-height: 28px;
}

.ryo-explorer__privacy-warning span {
  grid-column: 2;
  margin-top: -8px;
  color: var(--ryo-muted);
  font-size: 13px;
  line-height: 1.65;
}

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

.ryo-explorer__tool-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--ryo-line);
  border-radius: var(--ryo-radius);
  background:
    linear-gradient(180deg, rgba(77, 168, 255, .055), transparent 140px),
    var(--ryo-panel);
  box-shadow: var(--ryo-shadow);
}

.ryo-explorer__tool-card-head {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  padding: 20px 20px 16px;
  border-bottom: 1px solid var(--ryo-line);
}

.ryo-explorer__tool-card-head > span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid var(--ryo-line-strong);
  border-radius: 11px;
  background: rgba(77, 168, 255, .09);
  color: var(--ryo-cyan);
  font-family: var(--ryo-mono);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
}

.ryo-explorer__tool-card-head h3 {
  margin: 0 0 5px;
  color: var(--ryo-text);
  font-size: 17px;
  line-height: 1.25;
}

.ryo-explorer__tool-card-head p {
  margin: 0;
  color: var(--ryo-muted);
  font-size: 12px;
  line-height: 1.55;
}

.ryo-explorer__tool-card form {
  display: grid;
  gap: 14px;
  padding: 18px 20px 20px;
}

.ryo-explorer__tool-field,
.ryo-explorer__tool-options > label {
  display: grid;
  gap: 7px;
  min-width: 0;
}

.ryo-explorer__tool-field > span,
.ryo-explorer__tool-options label > span {
  color: var(--ryo-text);
  font-size: 12px;
  font-weight: 700;
}

.ryo-explorer__tool-field small {
  color: var(--ryo-dim);
  font-size: 11px;
  line-height: 1.5;
}

.ryo-explorer__tool-field input,
.ryo-explorer__tool-options select {
  width: 100%;
  min-width: 0;
  min-height: 44px;
  padding: 10px 12px;
  border: 1px solid var(--ryo-line-strong);
  border-radius: 11px;
  outline: none;
  background: rgba(3, 11, 25, .78);
  color: var(--ryo-text);
  font-family: var(--ryo-mono);
  font-size: 12px;
  transition: border-color .18s ease, box-shadow .18s ease, background .18s ease;
}

.ryo-explorer__tool-field input::placeholder {
  color: var(--ryo-dim);
  opacity: .82;
}

.ryo-explorer__tool-field input:focus,
.ryo-explorer__tool-options select:focus {
  border-color: var(--ryo-cyan);
  background: rgba(5, 18, 37, .94);
  box-shadow: 0 0 0 3px rgba(114, 226, 255, .10);
}

.ryo-explorer__secret-field {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
}

.ryo-explorer__secret-field button {
  min-width: 58px;
  padding: 0 10px;
  border: 1px solid var(--ryo-line-strong);
  border-radius: 11px;
  background: rgba(77, 168, 255, .08);
  color: var(--ryo-cyan);
  font-size: 11px;
  font-weight: 800;
}

.ryo-explorer__secret-field button:hover,
.ryo-explorer__secret-field button:focus-visible {
  border-color: var(--ryo-cyan);
  background: rgba(77, 168, 255, .15);
}

.ryo-explorer__tool-options {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: end;
}

.ryo-explorer__tool-inline-check {
  display: flex !important;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 10px 12px;
  border: 1px solid var(--ryo-line);
  border-radius: 11px;
  background: rgba(3, 11, 25, .58);
  white-space: nowrap;
}

.ryo-explorer__tool-inline-check input,
.ryo-explorer__tool-ack input {
  width: 16px;
  height: 16px;
  margin: 0;
  accent-color: var(--ryo-blue);
}

.ryo-explorer__tool-ack {
  display: grid;
  grid-template-columns: 17px minmax(0, 1fr);
  gap: 9px;
  align-items: start;
  padding: 12px;
  border: 1px solid rgba(255, 201, 106, .22);
  border-radius: 11px;
  background: rgba(255, 201, 106, .055);
  color: var(--ryo-muted);
  font-size: 11px;
  line-height: 1.55;
}

.ryo-explorer__tool-ack input {
  margin-top: 2px;
}

.ryo-explorer__tool-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  min-height: 44px;
  padding: 11px 15px;
  border: 1px solid rgba(114, 226, 255, .38);
  border-radius: 11px;
  background: linear-gradient(135deg, rgba(69, 111, 225, .88), rgba(77, 168, 255, .84));
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  box-shadow: 0 12px 26px rgba(40, 105, 220, .18);
}

.ryo-explorer__tool-submit:hover,
.ryo-explorer__tool-submit:focus-visible {
  border-color: var(--ryo-cyan);
  transform: translateY(-1px);
}

.ryo-explorer__tool-submit:disabled {
  cursor: wait;
  opacity: .58;
  transform: none;
}

.ryo-explorer__tool-result {
  border-top: 1px solid var(--ryo-line);
  background: rgba(2, 8, 18, .38);
}

.ryo-explorer__tool-result:empty {
  display: none;
}

.ryo-explorer__tool-loading {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 20px;
  color: var(--ryo-muted);
  font-size: 12px;
}

.ryo-explorer__tool-result-head,
.ryo-explorer__tool-result-summary {
  display: grid;
  gap: 5px;
  padding: 16px 20px;
  border-bottom: 1px solid var(--ryo-line);
}

.ryo-explorer__tool-result-head strong,
.ryo-explorer__tool-result-summary strong {
  color: var(--ryo-text);
  font-size: 16px;
}

.ryo-explorer__tool-result-head span,
.ryo-explorer__tool-result-summary span {
  color: var(--ryo-muted);
  font-size: 11px;
}

.ryo-explorer__tool-result-head.is-success {
  background: rgba(101, 232, 188, .055);
}

.ryo-explorer__tool-result-head.is-success strong {
  color: var(--ryo-good);
}

.ryo-explorer__tool-result-summary {
  grid-template-columns: auto 1fr;
  align-items: baseline;
}

.ryo-explorer__tool-result-summary strong {
  text-align: right;
}

.ryo-explorer__tool-table {
  min-width: 560px;
  font-size: 11px;
}

.ryo-explorer__tools-disabled {
  padding: 20px 22px;
  color: var(--ryo-muted);
}

.ryo-explorer__tools-disabled p {
  margin: 0;
}

.ryo-explorer__api-sensitive {
  justify-self: end;
  padding: 7px 10px;
  border: 1px solid rgba(255, 201, 106, .26);
  border-radius: 999px;
  background: rgba(255, 201, 106, .07);
  color: var(--ryo-warn);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

@media (max-width: 1120px) {
  .ryo-explorer__tool-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .ryo-explorer__privacy-warning {
    grid-template-columns: 28px minmax(0, 1fr);
  }
  .ryo-explorer__tool-card-head,
  .ryo-explorer__tool-card form {
    padding-inline: 15px;
  }
  .ryo-explorer__tool-options {
    grid-template-columns: 1fr;
  }
  .ryo-explorer__tool-inline-check {
    white-space: normal;
  }
  .ryo-explorer__secret-field {
    grid-template-columns: minmax(0, 1fr) 56px;
  }
  .ryo-explorer__api-sensitive {
    grid-column: 1 / 3;
    justify-self: stretch;
    text-align: center;
  }
}
