:root {
  color-scheme: dark;
  --bg: #0b0e11;
  --panel: #111619;
  --line: #252d2c;
  --text: #f0f3ec;
  --muted: #96a09c;
  --lime: #c5f56b;
  --lime-dark: #253319;
  --orange: #eab77a;
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --mono: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
}
.page-intro { padding: 72px 0 28px; max-width: 920px; }
.start-hero {
  padding: 48px 0 40px;
  max-width: 850px;
}
.start-hero h1 {
  margin: 12px 0 14px;
  font-size: clamp(42px, 5.4vw, 68px);
  letter-spacing: -.045em;
  line-height: 1.08;
  font-weight: 550;
}
.start-hero h1 span { color: var(--lime); }
.start-fees {
  display: flex;
  flex-wrap: wrap;
  gap: 24px 40px;
  margin: 24px 0;
}
.start-fees > div { display: grid; grid-template-columns: auto 1fr; column-gap: 12px; align-items: center; }
.start-fees strong { grid-row: span 2; color: var(--lime); font-size: 38px; letter-spacing: -.05em; line-height: 1; }
.start-fees span { font-size: 14px; font-weight: 600; }
.start-fees small { color: var(--muted); font-size: 11px; margin-top: 3px; }
.start-hero > p {
  max-width: 590px;
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  color: var(--muted);
}
.start-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}
.start-actions .button { min-height: 52px; font-size: 14px; }
.start-prompt { margin-top: 18px; max-width: 700px; }
.start-prompt summary { width: fit-content; cursor: pointer; font-size: 12px; color: var(--muted); }
.start-prompt summary:hover { color: var(--text); }
@media (max-width: 650px) {
  .start-hero { padding: 32px 0 30px; }
  .start-hero h1 { max-width: 420px; }
  .start-hero > p { font-size: 14px; }
}
@media (max-width: 450px) {
  .start-fees { gap: 18px 24px; }
  .start-fees > div { grid-template-columns: 1fr; gap: 5px; }
  .start-fees strong { grid-row: auto; font-size: 36px; }
  .start-fees small { margin-top: 0; }
  .start-actions { flex-direction: column; gap: 10px; margin-top: 20px; }
  .start-actions .button { width: 100%; justify-content: space-between; }
}
.page-intro h1 { margin: 12px 0 18px; font-size: clamp(42px, 6vw, 72px); letter-spacing: -.045em; line-height: 1.08; }
.page-intro > p { max-width: 650px; color: var(--muted); font-size: 17px; }
.page-status { display: flex; align-items: center; flex-wrap: wrap; gap: 15px; margin: 26px 0 20px; }
.page-intro .notice { margin-top: 16px; }
.miner-spotlight { display: grid; grid-template-columns: 1.1fr 1fr; gap: 64px; align-items: center; padding: 56px 0; }
.miner-spotlight h2 { font-size: clamp(40px, 4.8vw, 60px); line-height: 1.08; letter-spacing: -.04em; margin: 16px 0 24px; }
.miner-spotlight-copy > p { max-width: 490px; font-size: 16px; color: var(--muted); }
.miner-product-card { background: radial-gradient(ellipse at 60% 40%, #c5f56b0d, transparent 65%), var(--panel); border: 1px solid var(--line); border-radius: 16px; padding: 30px; }
.product-topline { display: flex; justify-content: space-between; align-items: center; }
.product-glyph { color: var(--lime); font-size: 84px; line-height: 1.2; margin: 24px 0 10px; }
.miner-product-card h3 { font-size: 25px; letter-spacing: -.02em; line-height: 1.2; }
.product-features { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px; }
.product-features span { border: 1px solid var(--line); border-radius: 6px; padding: 5px 10px; font-size: 11px; color: var(--muted); }
.ai-setup { border: 1px solid #c5f56b38; border-radius: 10px; padding: 16px; margin-top: 24px; background: #c5f56b05; scroll-margin-top: 32px; }
.ai-setup summary { color: var(--text); font-weight: 600; cursor: pointer; }
.ai-setup > p { color: var(--muted); font-size: 13px; }
.ai-prompt { display: block; width: 100%; resize: vertical; max-height: 380px; min-height: 160px; background: var(--bg); border: 1px solid var(--line); border-radius: 8px; color: var(--muted); padding: 12px; margin: 12px 0; font: 12px/1.65 var(--font); }
.ai-prompt:focus-visible { outline: 2px solid var(--lime); outline-offset: 3px; }
@media (max-width: 700px) {
  .page-intro { padding-top: 42px; }
  .miner-spotlight { grid-template-columns: 1fr; gap: 28px; }
  .miner-product-card { padding: 24px; }
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 32px;
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font: 14px/1.6 var(--font);
  -webkit-font-smoothing: antialiased;
}
body::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 70%;
  height: 750px;
  background: radial-gradient(ellipse at top right, #baf06108, transparent 65%);
  pointer-events: none;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
select {
  font: inherit;
}
button,
a,
input,
select,
summary {
  -webkit-tap-highlight-color: transparent;
}
button {
  cursor: pointer;
}
button:disabled {
  cursor: not-allowed;
  opacity: 0.42;
}
button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--lime);
  outline-offset: 5px;
}
a,
button {
  transition:
    color 0.18s,
    background 0.18s,
    border-color 0.18s,
    transform 0.18s;
}
button,
input,
select {
  border-radius: 8px;
}
input,
select {
  min-width: 0;
  width: 100%;
  border: 1px solid #343d37;
  background: #101511;
  color: var(--text);
  padding: 13px 15px;
  outline-offset: 2px;
}
input::placeholder {
  color: #737e78;
}
input:focus,
select:focus {
  border-color: var(--lime);
}
input[aria-invalid="true"] {
  border-color: var(--orange);
}
h1,
h2,
h3,
p {
  margin: 0;
}
h1,
h2,
h3 {
  font-weight: 600;
}
h3 {
  font-size: 16px;
  letter-spacing: -0.25px;
}
strong {
  font-weight: 600;
}
svg {
  display: block;
}
::selection {
  background: var(--lime);
  color: var(--bg);
}
[hidden] {
  display: none !important;
}
.shell {
  width: min(1240px, calc(100% - 96px));
  margin: auto;
}
.site-header {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 108px;
  border-bottom: 1px solid var(--line);
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  white-space: nowrap;
  font-weight: 750;
  font-size: 31px;
  letter-spacing: -1.3px;
  line-height: 1;
}
.brand-mark {
  width: 29px;
  height: 29px;
  fill: var(--lime);
}
.brand-period {
  color: var(--lime);
}
.brand-label {
  font: 10px var(--mono);
  letter-spacing: 1.4px;
  color: var(--muted);
  border-left: 1px solid #3c453e;
  padding: 5px 0 5px 13px;
  margin-left: 1px;
}
.main-nav {
  display: flex;
  gap: 32px;
  font-size: 13px;
  color: var(--muted);
}
.main-nav a:hover,
.main-nav .active {
  color: var(--text);
}
.main-nav a {
  position: relative;
  padding: 12px 0;
}
.main-nav .active::after {
  content: "";
  position: absolute;
  bottom: 2px;
  left: calc(50% - 2px);
  width: 4px;
  height: 4px;
  background: var(--lime);
  border-radius: 50%;
}
.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  min-height: 49px;
  border: 1px solid transparent;
  border-radius: 7px;
  padding: 13px 20px;
  line-height: 1.4;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
}
.button-primary {
  background: var(--lime);
  color: #17200e;
}
.button-primary:hover {
  background: #d7ff95;
  transform: translateY(-1px);
}
.button-secondary {
  background: transparent;
  border-color: #38433b;
  color: var(--text);
}
.button-secondary:hover {
  border-color: var(--lime);
}
.button-small {
  min-height: 39px;
  padding: 10px 15px;
  font-size: 12px;
  gap: 20px;
}
.button span {
  font-size: 19px;
  line-height: 1;
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  font-size: 12px;
  color: var(--muted);
}
.text-link:hover {
  color: var(--lime);
}
.text-link span {
  font-size: 18px;
}
.hero {
  display: grid;
  grid-template-columns: 1.23fr 1fr;
  align-items: center;
  gap: 35px;
  min-height: 518px;
  padding: 65px 0 78px;
}
.eyebrow {
  font-size: 9px;
  letter-spacing: 1.9px;
  color: var(--muted);
  font-weight: 600;
  line-height: 1.7;
}
.tiny-flower {
  color: var(--lime);
  font-size: 18px;
  vertical-align: -1px;
  margin-right: 7px;
}
.hero h1 {
  font-size: clamp(46px, 5.2vw, 73px);
  line-height: 1.09;
  letter-spacing: -3.4px;
  margin: 20px 0 22px;
  font-weight: 550;
}
.hero h1 > span {
  color: var(--lime);
}
.hero p {
  font-size: 15px;
  color: #a8b0aa;
  line-height: 1.8;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-top: 29px;
}
.hero-art {
  height: 360px;
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-art::before {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, #c5f56b13, transparent 66%);
  z-index: -1;
}
.orbital {
  position: absolute;
  border: 1px solid #34412b;
  border-radius: 50%;
  transform: rotate(-27deg);
  width: 90%;
  height: 69%;
}
.orbital-outer {
  transform: rotate(-27deg);
  border-style: dashed;
  border-color: #283124;
  height: 77%;
  width: 97%;
}
.orbital-mid {
  transform: rotate(31deg);
  width: 86%;
  height: 80%;
  border-color: #3a472f;
}
.orbital-inner {
  transform: rotate(-54deg);
  height: 58%;
  width: 86%;
  border-color: #45573a;
}
.orbital-core {
  width: 150px;
  height: 150px;
  padding: 26px;
  border: 1px solid #829951;
  transform: rotate(-12deg);
  border-radius: 32px;
  background: linear-gradient(135deg, #354426, #142014);
  box-shadow:
    0 0 75px #c5f56b0c,
    inset 0 0 35px #c5f56b0a;
}
.orbital-core svg {
  width: 100%;
  height: 100%;
  fill: var(--lime);
  filter: drop-shadow(0 2px 11px #c5f56b24);
}
.orbital-point {
  position: absolute;
  width: 9px;
  height: 9px;
  background: var(--lime);
  border-radius: 50%;
  box-shadow: 0 0 0 5px #c5f56b0a;
}
.point-a {
  top: 47px;
  left: 45%;
}
.point-b {
  bottom: 55px;
  right: 21%;
  width: 6px;
  height: 6px;
}
.point-c {
  left: 11%;
  top: 49%;
  width: 6px;
  height: 6px;
  background: #7e9658;
}
.art-label {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 9px;
  border: 1px solid #35402e;
  background: #11180fe8;
  padding: 10px 13px;
  border-radius: 5px;
  font: 9px var(--mono);
  letter-spacing: 0.6px;
  box-shadow: 0 9px 25px #0004;
}
.label-one {
  top: 65px;
  right: 0;
}
.label-two {
  bottom: 70px;
  left: 0;
  color: #b0bba3;
}
.label-two span {
  color: var(--lime);
  font-size: 15px;
  margin-left: 8px;
}
.art-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  text-align: center;
  font: 8px var(--mono);
  letter-spacing: 3px;
  color: #79816d;
}
.section {
  margin-bottom: 73px;
  scroll-margin-top: 25px;
}
.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 20px;
  margin-bottom: 25px;
}
.section-heading .eyebrow {
  margin-bottom: 8px;
}
.section-heading h2 {
  font-size: 29px;
  letter-spacing: -1.05px;
  line-height: 1.3;
}
.heading-dot {
  color: var(--lime);
}
.status-group {
  display: flex;
  align-items: center;
  gap: 13px;
  padding-bottom: 3px;
}
.live-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #162013;
  border: 1px solid #2e4021;
  border-radius: 50px;
  padding: 5px 11px;
  font-size: 10px;
  color: var(--lime);
  white-space: nowrap;
}
.live-pill.is-waiting {
  background: #201d14;
  border-color: #413824;
  color: var(--orange);
}
.live-pill.is-offline {
  background: #191e1c;
  border-color: #323a34;
  color: var(--muted);
}
.status-dot,
.lime-dot,
.legend-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  flex-shrink: 0;
  background: var(--lime);
  border-radius: 50%;
}
.status-dot.muted {
  background: currentColor;
}
.updated {
  font-size: 10px;
  color: var(--muted);
}
.icon-button {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  background: transparent;
  border: 1px solid var(--line);
  color: var(--muted);
  font-size: 20px;
}
.icon-button:hover {
  border-color: #68804f;
  color: var(--lime);
}
.notice {
  border: 1px solid #45402d;
  border-radius: 8px;
  background: #211f164d;
  color: #d9c39e;
  font-size: 12px;
  padding: 13px 17px;
  margin-bottom: 15px;
}
.notice-warning {
  border-color: #3a432b;
  background: #18201480;
  color: #bdc8a8;
}
.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 20px;
}
.stat-card {
  border: 1px solid var(--line);
  border-radius: 10px;
  background: linear-gradient(125deg, #151a1b, #111518);
  padding: 22px 23px 19px;
}
.stat-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #b0b8b3;
  font-size: 11px;
}
.stat-icon {
  font-size: 17px;
  color: #8d9c83;
}
.stat-value {
  font-size: 32px;
  letter-spacing: -1.1px;
  font-weight: 550;
  line-height: 1.4;
  margin: 13px 0 10px;
  font-variant-numeric: tabular-nums;
}
.stat-value small {
  font-size: 16px;
  color: var(--muted);
  letter-spacing: -0.2px;
  margin-left: 5px;
}
.stat-foot {
  font-size: 10px;
  color: #89958e;
  display: flex;
  align-items: center;
  gap: 5px;
}
.stat-foot .lime-dot {
  width: 5px;
  height: 5px;
  margin-right: 2px;
}
.panel {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 11px;
  overflow: hidden;
}
.performance-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.9fr) minmax(290px, 1fr);
  gap: 20px;
}
.panel-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
  padding: 24px 25px 16px;
}
.panel-heading p {
  font-size: 11px;
  color: var(--muted);
  margin-top: 3px;
}
.tag {
  font: 8px/1.4 var(--mono);
  letter-spacing: 1px;
  color: #a1aaa3;
  background: #ffffff03;
  border: 1px solid #313a33;
  border-radius: 4px;
  padding: 5px 7px;
  white-space: nowrap;
}
.tag-online {
  color: var(--lime);
  border-color: #425431;
  background: #c5f56b07;
}
.tag-pending {
  color: var(--orange);
  border-color: #584830;
}
.chart {
  position: relative;
  height: 252px;
  padding: 10px 18px 0;
}
.chart > svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}
.chart-placeholder {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: var(--muted);
  font-size: 11px;
  gap: 4px;
  background: repeating-linear-gradient(
    to bottom,
    transparent,
    transparent 49px,
    #ffffff04 49px,
    #ffffff04 50px
  );
  margin: 4px 9px;
}
.chart-placeholder strong {
  font-size: 13px;
  color: #bcc6ba;
  font-weight: 500;
}
.empty-symbol {
  font-size: 30px;
  color: #66765c;
  margin-bottom: 6px;
  font-weight: 400;
  line-height: 1.3;
}
.chart-footer {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  color: #8e9b91;
  font-size: 9px;
  padding: 13px 26px 20px;
}
.chart-footer > span:first-child {
  display: flex;
  align-items: center;
  gap: 7px;
}
.chart-grid {
  stroke: #29302c;
  stroke-width: 1;
  stroke-dasharray: 3 5;
}
.chart-label {
  fill: #7f8d81;
  font: 10px var(--mono);
}
.chart-line {
  fill: none;
  stroke: var(--lime);
  stroke-width: 2.1;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.chart-point {
  fill: var(--lime);
  stroke: var(--panel);
  stroke-width: 2;
}
.chart-point:hover {
  r: 6;
}
.quantus-mark {
  width: 32px;
  height: 32px;
  border: 1px solid #47523e;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--lime);
  font-weight: 400;
  font-size: 21px;
}
.detail-list {
  margin: 0;
  padding: 3px 25px 13px;
}
.detail-list > div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 0;
  font-size: 11px;
}
.detail-list dt {
  color: var(--muted);
}
.detail-list dd {
  margin: 0;
  text-align: right;
}
.subtle {
  color: var(--muted);
}
.detail-list .subtle {
  font-size: 9px;
  margin-left: 4px;
}
.panel-bottom-link {
  border-top: 1px solid var(--line);
  padding: 13px 25px;
  display: flex;
  justify-content: space-between;
  font-size: 10px;
  color: var(--lime);
}
.panel-bottom-link:hover {
  background: #c5f56b06;
}
.section-description {
  font-size: 12px;
  color: var(--muted);
  text-align: right;
  line-height: 1.65;
}
.region-layout {
  display: grid;
  grid-template-columns: minmax(0, 2.25fr) minmax(260px, 1fr);
  gap: 20px;
}
.world-panel {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background:
    radial-gradient(ellipse at 55% 42%, #1b261766, transparent 55%),
    var(--panel);
}
.world-caption {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px 0;
  color: var(--muted);
  font-size: 10px;
}
.world-map {
  width: 100%;
  height: auto;
  max-height: 320px;
  padding: 5px 12px;
}
.map-label {
  font: 9px var(--mono);
  letter-spacing: 1.3px;
  fill: var(--lime);
}
.map-label-muted {
  fill: #88917f;
  font-size: 8px;
}
.world-bottom {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  padding: 0 25px 21px;
  font-size: 9px;
  color: var(--muted);
}
.world-bottom > span {
  display: flex;
  align-items: center;
  gap: 7px;
}
.legend-dot.planned {
  background: #647366;
}
.region-cards {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.region-card {
  border: 1px solid #394331;
  border-radius: 9px;
  background: linear-gradient(120deg, #1a2116, #141a16);
  padding: 19px 21px;
}
.region-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}
.region-flag {
  display: inline-grid;
  place-items: center;
  font: 10px var(--mono);
  color: #cfdbbf;
  border: 1px solid #45533a;
  background: #c5f56b07;
  width: 30px;
  height: 25px;
  border-radius: 4px;
  letter-spacing: 1px;
}
.region-card h3 {
  font-size: 17px;
}
.region-card p {
  font-size: 11px;
  color: var(--muted);
  margin-top: 2px;
}
.region-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  border-top: 1px solid #303b29;
  margin-top: 17px;
  padding-top: 12px;
}
.region-metrics > div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.region-metrics span {
  font-size: 9px;
  color: var(--muted);
}
.region-metrics strong {
  font-size: 16px;
  font-weight: 500;
}
.region-planned {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: #111617;
  border-color: var(--line);
  padding: 16px 21px;
}
.region-planned > div {
  display: flex;
  align-items: center;
  gap: 11px;
}
.region-planned h3 {
  font-size: 12px;
  color: #a0aaa2;
  font-weight: 400;
}
.region-planned .region-flag {
  background: none;
  border-color: #303931;
  color: #7f8b7c;
}
.region-planned .tag {
  font-size: 7px;
  color: #8c968a;
}
.privacy-note {
  font-size: 11px;
  color: var(--muted);
  padding-bottom: 4px;
}
.privacy-note > span {
  font-size: 20px;
  margin-right: 4px;
}
.wallet-panel {
  padding: 25px;
}
.wallet-form {
  display: flex;
  gap: 12px;
}
.wallet-input-wrap {
  position: relative;
  flex: 1;
  min-width: 0;
}
.wallet-input-wrap svg {
  position: absolute;
  top: 16px;
  left: 17px;
  width: 18px;
  height: 18px;
  stroke: #83927c;
  stroke-width: 1.5;
  fill: none;
}
.wallet-input-wrap input {
  padding: 15px 17px 15px 47px;
  background: #0d1213;
  border-color: #303a31;
  border-radius: 7px;
  font-size: 12px;
  height: 51px;
}
.wallet-hint {
  font-size: 11px;
  color: var(--muted);
  margin-top: 12px;
}
.wallet-hint.is-error {
  color: var(--orange);
}
.wallet-result-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin: 29px 0 20px;
  padding-top: 25px;
  border-top: 1px solid var(--line);
}
.wallet-result-heading > div {
  min-width: 0;
}
.wallet-result-heading h3 {
  font: 12px/1.6 var(--mono);
  overflow-wrap: anywhere;
  margin-top: 7px;
  color: #cad5c5;
}
.wallet-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
}
.wallet-stats > div {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.wallet-stats span {
  font-size: 10px;
  color: var(--muted);
}
.wallet-stats strong {
  font-size: 19px;
  font-weight: 500;
  letter-spacing: -0.5px;
  overflow-wrap: anywhere;
}
.wallet-stats small {
  font-size: 11px;
  color: var(--muted);
  font-weight: 400;
  margin-left: 4px;
}
.wallet-subheading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  margin: 26px 0 12px;
}
.wallet-subheading h3 {
  font-size: 14px;
}
.wallet-subheading > .subtle {
  font-size: 10px;
}
.count-badge {
  display: inline-block;
  font: 9px var(--mono);
  padding: 2px 5px;
  background: #24301e;
  color: var(--lime);
  border-radius: 3px;
  margin-left: 5px;
  vertical-align: 1px;
}
.table-scroll {
  width: 100%;
  overflow-x: auto;
  overscroll-behavior-x: contain;
}
.data-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  white-space: nowrap;
  font-size: 11px;
}
.data-table th {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.15px;
  color: var(--muted);
  padding: 12px 15px;
  background: #ffffff02;
  border-bottom: 1px solid var(--line);
}
.data-table td {
  padding: 15px;
  border-bottom: 1px solid #252d2c99;
  color: #c5cec4;
}
.data-table tbody tr:last-child td {
  border-bottom: 0;
}
.data-table td:first-child,
.data-table th:first-child {
  padding-left: 0;
}
.data-table td:last-child,
.data-table th:last-child {
  padding-right: 0;
}
.block-table td:first-child,
.block-table th:first-child {
  padding-left: 25px;
}
.block-table td:last-child,
.block-table th:last-child {
  padding-right: 25px;
}
.data-table tbody tr:hover:not(:has(.table-empty)) {
  background: #c5f56b03;
}
.data-table .table-empty {
  text-align: center;
  white-space: normal;
  padding: 37px 20px !important;
  color: var(--muted);
  font-size: 11px;
}
.table-empty > * {
  display: block;
}
.table-empty strong {
  font-weight: 500;
  color: #b4c0af;
  margin-bottom: 4px;
  font-size: 12px;
}
.mono {
  font-family: var(--mono);
  font-size: 10px;
}
.data-table a {
  color: #bccfae;
}
.data-table a:hover {
  color: var(--lime);
}
.worker-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.worker-status .legend-dot {
  width: 5px;
  height: 5px;
}
.table-muted {
  color: #7e8a7e !important;
}
.amount-incoming {
  color: var(--lime) !important;
}
.account-section {
  margin-top: 30px;
  border-top: 1px solid var(--line);
  padding-top: 4px;
}
.account-intro {
  font-size: 11px;
  color: var(--muted);
  margin-bottom: 15px;
}
.account-stats {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  background: #c5f56b03;
  border: 1px solid #2f392b;
  border-radius: 7px;
  padding: 18px 20px;
}
.source-note {
  font-size: 10px;
  color: #879481;
  margin-top: 13px;
}
.source-note a {
  text-decoration: underline;
  text-underline-offset: 3px;
}
.source-note a:hover {
  color: var(--lime);
}
.inline-empty {
  font-size: 11px;
  color: var(--muted);
  padding: 18px 0;
}
.connect-section {
  border-top: 1px solid var(--line);
  padding-top: 58px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.07fr);
  gap: 65px;
  align-items: center;
  margin-bottom: 70px;
}
.connect-copy h2 {
  font-size: 47px;
  font-weight: 550;
  line-height: 1.16;
  letter-spacing: -2px;
  margin: 19px 0 20px;
}
.connect-copy h2 span {
  color: var(--lime);
}
.connect-copy > p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.8;
}
.connect-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 24px;
  font-size: 9px;
  color: #abb69f;
}
.connect-facts > span {
  display: flex;
  align-items: center;
  gap: 6px;
}
.connect-facts > span + span::before {
  content: "";
  height: 3px;
  width: 3px;
  background: #4c5845;
  border-radius: 50%;
  margin-right: 7px;
}
.connect-panel {
  background: linear-gradient(125deg, #17201444, #111619);
}
.connect-panel .panel-heading {
  padding-bottom: 22px;
}
.connect-form {
  padding: 0 25px;
}
.connect-form label {
  font-size: 10px;
  display: block;
  color: #b8c2b3;
  margin-bottom: 7px;
}
.connect-form input,
.connect-form select {
  font-size: 11px;
  background: #0e1410;
  border-color: #354030;
  border-radius: 6px;
}
.join-field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px;
  margin-top: 15px;
}
.command-box {
  margin: 21px 25px 0;
  background: #0a100c;
  border: 1px solid #303e29;
  border-radius: 7px;
  overflow: hidden;
}
.command-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 11px 14px;
  border-bottom: 1px solid #283022;
}
.command-top > span {
  font: 8px var(--mono);
  letter-spacing: 1.5px;
  color: #829176;
}
.command-top button {
  border: 0;
  background: none;
  color: var(--lime);
  font-size: 9px;
  padding: 2px;
}
.command-top button span {
  font-size: 14px;
  margin-left: 5px;
}
.command-box pre {
  font: 10px/1.9 var(--mono);
  color: #c0d7ad;
  margin: 0;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
  padding: 16px 14px;
  min-height: 90px;
}
.join-hint {
  font-size: 10px;
  color: var(--muted);
  padding: 10px 25px 17px;
}
.tls-details {
  border-top: 1px solid var(--line);
  padding: 14px 25px 17px;
  font-size: 10px;
}
.tls-details summary {
  cursor: pointer;
  color: #acb99f;
  font-size: 10px;
}
.tls-details dl {
  margin: 13px 0;
}
.tls-details dt {
  font-size: 9px;
  color: var(--muted);
  margin-top: 10px;
}
.tls-details dd {
  font: 10px/1.7 var(--mono);
  margin: 4px 0 0;
  overflow-wrap: anywhere;
  color: #d4dfca;
}
.tls-details p {
  font-size: 10px;
  color: var(--muted);
}
footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  border-top: 1px solid var(--line);
  padding: 31px 0 40px;
}
.footer-brand {
  font-size: 25px;
  gap: 0;
}
footer p {
  font-size: 10px;
  color: var(--muted);
  margin-top: 8px;
}
.footer-links {
  display: flex;
  gap: 24px;
  font-size: 10px;
  color: #a5afa2;
}
.footer-links a:hover {
  color: var(--lime);
}
.footer-note {
  font-size: 10px;
  text-align: right;
}
.footer-note span {
  color: var(--muted);
}
.toast {
  position: fixed;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  padding: 12px 22px;
  max-width: calc(100% - 30px);
  background: #d0f5a0;
  color: #18230e;
  box-shadow: 0 8px 40px #0005;
  border-radius: 7px;
  z-index: 10;
  font-size: 12px;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  background: var(--lime);
  color: #17200e;
  padding: 12px 18px;
  z-index: 99;
  transform: translateY(-150%);
  border-radius: 5px;
}
.skip-link:focus {
  transform: translateY(0);
}
@media (min-width: 1550px) {
  .shell {
    width: min(1280px, calc(100% - 120px));
  }
  .hero {
    min-height: 560px;
  }
  .hero h1 {
    font-size: 77px;
  }
  .hero-art {
    height: 390px;
  }
}
@media (max-width: 1100px) {
  .shell {
    width: calc(100% - 64px);
  }
  .hero {
    gap: 15px;
    min-height: 470px;
  }
  .hero h1 {
    font-size: 60px;
  }
  .hero-art {
    height: 325px;
  }
  .hero-actions {
    gap: 18px;
    flex-wrap: wrap;
  }
  .hero-actions .button {
    gap: 15px;
  }
  .stat-card {
    padding: 19px 17px;
  }
  .stat-value {
    font-size: 28px;
  }
  .stat-foot {
    font-size: 9px;
  }
  .performance-grid {
    grid-template-columns: minmax(0, 1.7fr) minmax(270px, 1fr);
  }
  .connect-section {
    gap: 35px;
  }
  .connect-copy h2 {
    font-size: 41px;
  }
  .status-group {
    gap: 9px;
  }
  .main-nav {
    gap: 22px;
  }
  .region-layout {
    grid-template-columns: minmax(0, 1.8fr) minmax(250px, 1fr);
  }
}
@media (max-width: 850px) {
  .shell {
    width: calc(100% - 40px);
  }
  .site-header {
    min-height: 89px;
    gap: 20px;
  }
  .brand {
    font-size: 27px;
  }
  .brand-mark {
    width: 25px;
    height: 25px;
  }
  .brand-label {
    display: none;
  }
  .main-nav {
    gap: 17px;
    font-size: 11px;
  }
  .hero {
    grid-template-columns: 1.3fr 1fr;
    padding: 55px 0;
    min-height: 435px;
  }
  .hero h1 {
    font-size: 53px;
    letter-spacing: -2.5px;
  }
  .hero p {
    font-size: 13px;
  }
  .hero-art {
    height: 300px;
  }
  .orbital-core {
    width: 118px;
    height: 118px;
    padding: 21px;
    border-radius: 25px;
  }
  .art-label {
    font-size: 7px;
    padding: 8px;
    gap: 6px;
  }
  .label-one {
    top: 55px;
    right: -4px;
  }
  .label-two {
    bottom: 57px;
  }
  .art-caption {
    font-size: 6px;
    letter-spacing: 2px;
  }
  .hero-actions {
    margin-top: 24px;
    gap: 18px;
  }
  .hero-actions .button {
    font-size: 11px;
    padding: 12px 14px;
    min-height: 43px;
  }
  .text-link {
    font-size: 10px;
  }
  .section {
    margin-bottom: 53px;
  }
  .section-heading h2 {
    font-size: 25px;
  }
  .eyebrow {
    font-size: 8px;
    letter-spacing: 1.5px;
  }
  .updated {
    display: none;
  }
  .stat-grid {
    gap: 11px;
  }
  .stat-card {
    padding: 18px 14px;
  }
  .stat-label {
    font-size: 10px;
  }
  .stat-value {
    font-size: 25px;
  }
  .stat-icon {
    font-size: 14px;
  }
  .stat-foot {
    font-size: 8px;
    gap: 3px;
  }
  .stat-value small {
    font-size: 12px;
  }
  .performance-grid {
    grid-template-columns: minmax(0, 1.45fr) minmax(250px, 1fr);
    gap: 15px;
  }
  .panel-heading {
    padding: 20px 19px 15px;
  }
  .panel-heading h3 {
    font-size: 14px;
  }
  .panel-heading p {
    font-size: 10px;
  }
  .chart-panel .panel-heading {
    align-items: flex-start;
  }
  .chart-panel .tag {
    font-size: 6px;
    padding: 4px;
  }
  .detail-list {
    padding: 3px 19px 13px;
  }
  .panel-bottom-link {
    padding: 13px 19px;
  }
  .region-layout {
    gap: 15px;
  }
  .region-card {
    padding: 17px;
  }
  .region-planned {
    padding: 14px 17px;
  }
  .region-planned h3 {
    font-size: 11px;
  }
  .world-caption {
    padding: 20px 18px 0;
  }
  .world-bottom {
    padding: 0 18px 18px;
    font-size: 8px;
  }
  .privacy-note {
    font-size: 9px;
  }
  .wallet-panel {
    padding: 20px;
  }
  .wallet-stats strong {
    font-size: 16px;
  }
  .wallet-stats > div > span {
    font-size: 9px;
  }
  .connect-section {
    gap: 24px;
    padding-top: 45px;
  }
  .connect-copy h2 {
    font-size: 37px;
  }
  .connect-copy > p {
    font-size: 12px;
  }
  .connect-facts {
    gap: 11px;
    font-size: 8px;
  }
  .connect-facts > span + span::before {
    display: none;
  }
  .connect-form {
    padding: 0 19px;
  }
  .command-box {
    margin: 20px 19px 0;
  }
  .join-hint {
    padding: 10px 19px 17px;
  }
  .tls-details {
    padding: 14px 19px 17px;
  }
  .footer-links {
    gap: 17px;
    font-size: 9px;
  }
}
@media (max-width: 650px) {
  .site-header {
    flex-wrap: wrap;
    padding: 22px 0 15px;
    row-gap: 14px;
  }
  .main-nav {
    order: 3;
    width: 100%;
    justify-content: center;
    gap: 38px;
    border-top: 1px solid #242c2577;
    padding-top: 7px;
  }
  .site-header > .button {
    min-height: 35px;
    padding: 9px 12px;
    font-size: 10px;
  }
  .hero {
    grid-template-columns: 1fr;
    gap: 15px;
    padding: 38px 0 37px;
    min-height: 0;
  }
  .hero-copy {
    position: relative;
    z-index: 1;
  }
  .hero h1 {
    font-size: 57px;
    margin: 17px 0 19px;
    line-height: 1.08;
  }
  .hero p {
    font-size: 13px;
  }
  .hero-actions {
    gap: 21px;
  }
  .hero-actions .button {
    font-size: 11px;
    padding: 13px 14px;
  }
  .hero-art {
    height: 250px;
    max-width: 330px;
    width: 100%;
    margin: 14px auto 0;
  }
  .orbital-core {
    width: 112px;
    height: 112px;
  }
  .label-one {
    top: 43px;
    right: 0;
  }
  .label-two {
    bottom: 47px;
    left: 0;
  }
  .point-a {
    top: 29px;
  }
  .point-b {
    bottom: 29px;
  }
  .art-caption {
    bottom: -4px;
    font-size: 6px;
  }
  .section-heading {
    margin-bottom: 18px;
    gap: 10px;
  }
  .section-heading h2 {
    font-size: 24px;
    letter-spacing: -0.85px;
  }
  .section-heading .eyebrow {
    font-size: 7px;
    letter-spacing: 1.3px;
    margin-bottom: 6px;
  }
  .status-group {
    gap: 7px;
    align-self: flex-end;
  }
  .live-pill {
    font-size: 8px;
    padding: 4px 8px;
    gap: 5px;
  }
  .status-dot {
    width: 5px;
    height: 5px;
  }
  .icon-button {
    height: 27px;
    width: 27px;
    font-size: 18px;
  }
  .stat-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 11px;
    margin-bottom: 15px;
  }
  .stat-card {
    padding: 19px 17px;
  }
  .stat-label {
    font-size: 10px;
  }
  .stat-value {
    font-size: 29px;
    margin: 11px 0 7px;
  }
  .stat-foot {
    font-size: 8px;
  }
  .stat-icon {
    font-size: 15px;
  }
  .performance-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .panel-heading {
    padding: 21px 20px 13px;
  }
  .panel-heading h3 {
    font-size: 15px;
  }
  .panel-heading p {
    font-size: 10px;
  }
  .chart-panel .tag {
    font-size: 7px;
  }
  .chart {
    height: 227px;
    padding: 10px 12px 0;
  }
  .chart-footer {
    padding: 12px 20px 19px;
    font-size: 8px;
  }
  .detail-list {
    padding: 3px 20px 15px;
  }
  .detail-list > div {
    font-size: 11px;
    padding: 8px 0;
  }
  .panel-bottom-link {
    padding: 14px 20px;
  }
  .network-details .panel-heading {
    padding-bottom: 16px;
  }
  .section-description {
    font-size: 9px;
  }
  .region-layout {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .world-caption {
    padding: 20px 20px 8px;
  }
  .world-map {
    padding: 0;
    min-height: 190px;
  }
  .world-bottom {
    padding: 5px 20px 20px;
    font-size: 8px;
  }
  .region-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .region-cards > .region-card:first-child {
    grid-column: 1/-1;
  }
  .region-card {
    padding: 18px 20px;
  }
  .region-top {
    margin-bottom: 8px;
  }
  .region-metrics {
    grid-template-columns: 1fr 1fr;
    padding-top: 12px;
    margin-top: 14px;
  }
  .region-planned {
    padding: 14px 12px;
    gap: 8px;
    flex-direction: column;
    align-items: flex-start;
  }
  .region-planned > div {
    gap: 8px;
  }
  .region-planned .tag {
    margin-left: 34px;
  }
  .region-planned .region-flag {
    width: 26px;
    height: 22px;
    font-size: 8px;
  }
  .region-planned h3 {
    font-size: 11px;
  }
  #wallet .section-heading {
    flex-wrap: wrap;
  }
  .privacy-note {
    font-size: 9px;
    padding: 0;
    line-height: 1.5;
  }
  .privacy-note > span {
    font-size: 15px;
  }
  .wallet-panel {
    padding: 19px;
  }
  .wallet-form {
    flex-direction: column;
    gap: 10px;
  }
  .wallet-input-wrap input {
    font-size: 11px;
    height: 48px;
    padding-left: 41px;
  }
  .wallet-input-wrap svg {
    left: 14px;
    top: 15px;
  }
  .wallet-form .button {
    font-size: 11px;
    min-height: 42px;
    padding: 11px 15px;
    gap: 15px;
  }
  .wallet-hint {
    font-size: 10px;
    line-height: 1.7;
  }
  .wallet-result-heading {
    align-items: flex-start;
    gap: 13px;
    flex-direction: column;
    margin-top: 23px;
    padding-top: 21px;
  }
  .wallet-result-heading h3 {
    font-size: 10px;
  }
  .wallet-result-heading .button {
    font-size: 9px;
    min-height: 32px;
    padding: 8px 11px;
  }
  .wallet-stats {
    grid-template-columns: 1fr 1fr;
    gap: 18px 15px;
    padding: 17px 0;
  }
  .wallet-stats strong {
    font-size: 18px;
  }
  .wallet-stats small {
    font-size: 10px;
  }
  .wallet-subheading {
    margin-top: 23px;
    align-items: flex-start;
    gap: 10px;
  }
  .wallet-subheading h3 {
    font-size: 13px;
  }
  .wallet-subheading > .subtle {
    font-size: 8px;
    text-align: right;
  }
  .data-table {
    font-size: 10px;
  }
  .data-table th {
    font-size: 8px;
  }
  .data-table th,
  .data-table td {
    padding: 12px;
  }
  .block-table td:first-child,
  .block-table th:first-child {
    padding-left: 20px;
  }
  .block-table td:last-child,
  .block-table th:last-child {
    padding-right: 20px;
  }
  .table-empty strong {
    font-size: 11px;
  }
  .data-table .table-empty {
    font-size: 10px;
  }
  .account-stats {
    padding: 16px;
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .account-stats > div {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
  }
  .account-stats strong {
    font-size: 16px;
  }
  .account-stats > div > span {
    font-size: 10px;
  }
  .account-intro {
    font-size: 10px;
  }
  .connect-section {
    grid-template-columns: 1fr;
    gap: 30px;
    padding-top: 36px;
    margin-bottom: 40px;
  }
  .connect-copy h2 {
    font-size: 43px;
    letter-spacing: -1.7px;
    margin: 16px 0;
  }
  .connect-copy > p {
    font-size: 12px;
  }
  .connect-facts {
    margin-top: 20px;
    gap: 17px;
    font-size: 8px;
  }
  .connect-panel .panel-heading {
    padding-bottom: 20px;
  }
  .connect-form {
    padding: 0 20px;
  }
  .join-field-row {
    gap: 12px;
  }
  .command-box {
    margin: 20px 20px 0;
  }
  .join-hint {
    padding: 10px 20px 17px;
  }
  .tls-details {
    padding: 14px 20px 17px;
  }
  footer {
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 25px 0 30px;
    gap: 24px 15px;
  }
  .footer-links {
    grid-row: 2;
    grid-column: 1/-1;
    gap: 25px;
    font-size: 10px;
  }
  .footer-note {
    font-size: 9px;
  }
  .footer-brand {
    font-size: 23px;
  }
  footer p {
    font-size: 9px;
  }
  .section {
    margin-bottom: 46px;
  }
  .desktop-break {
    display: none;
  }
}
@media (max-width: 370px) {
  .shell {
    width: calc(100% - 30px);
  }
  .hero h1 {
    font-size: 51px;
  }
  .hero-actions {
    gap: 15px;
  }
  .hero-actions .button {
    font-size: 10px;
  }
  .hero-actions .text-link {
    font-size: 9px;
  }
  .section-heading h2 {
    font-size: 22px;
  }
  .section-heading .eyebrow {
    font-size: 6.5px;
  }
  .stat-card {
    padding: 16px 14px;
  }
  .stat-foot {
    font-size: 7px;
  }
  .live-pill {
    font-size: 7px;
  }
  .main-nav {
    gap: 29px;
  }
  .connect-copy h2 {
    font-size: 38px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    transition: none !important;
    animation: none !important;
  }
}
.join-fees {
  font-size: 10px;
  color: #c2ceba;
  min-height: 42px;
  display: flex;
  align-items: center;
  padding: 8px 0;
}
.miner-prerequisite {
  font-size: 10px;
  color: var(--muted);
  padding: 12px 25px 0;
}
.miner-prerequisite code {
  font: 10px var(--mono);
  color: #b9cba8;
}
.network-details .detail-list > div {
  padding: 7px 0;
}
@media (max-width: 850px) {
  .miner-prerequisite {
    padding: 12px 19px 0;
  }
}
@media (max-width: 650px) {
  .miner-prerequisite {
    padding: 12px 20px 0;
  }
}
.map-offline {
  opacity: 0.32;
  filter: grayscale(1);
}
.hero-art {
  overflow: clip;
}
.block-economics {
  border-top: 1px solid var(--line);
  padding: 13px 25px;
  font-size: 10px;
  color: var(--muted);
  line-height: 1.7;
}
@media (max-width: 650px) {
  .block-economics {
    padding: 13px 20px;
    font-size: 9px;
  }
}
.skip-link {
  opacity: 0;
  pointer-events: none;
}
.skip-link:focus {
  opacity: 1;
  pointer-events: auto;
}
.download-section {
  padding: 0 25px 19px;
}
.download-section h4 {
  font-size: 10px;
  font-weight: 600;
  margin: 0 0 11px;
  color: #bfceb2;
}
.download-links {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.download-links a {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  border: 1px solid #3b4b2f;
  background: #c5f56b07;
  border-radius: 5px;
  padding: 8px 10px;
  font-size: 9px;
  color: var(--lime);
}
.download-links a:hover {
  background: #c5f56b15;
  border-color: #718b4e;
}
.download-section > p {
  font-size: 10px;
  line-height: 1.7;
  color: var(--muted);
  margin-top: 9px;
}
.checksum-link {
  font-size: 9px;
  color: #b6c5a7;
  display: inline-block;
  margin-top: 8px;
}
.checksum-link:hover {
  color: var(--lime);
}
.download-section details {
  font-size: 10px;
  color: var(--muted);
  margin-top: 10px;
}
.download-section summary {
  cursor: pointer;
  color: #afc49d;
}
.download-section details p {
  margin-top: 8px;
}
.download-section pre {
  white-space: pre-wrap;
  overflow-wrap: anywhere;
  font: 9px/1.8 var(--mono);
  background: #0c120e;
  padding: 12px;
  border-radius: 5px;
  color: #c0d7ad;
}
.download-section code {
  font: 9px var(--mono);
  color: #c0d7ad;
}
.download-section .connect-step {
  margin: 19px 0 0;
  border-top: 1px solid var(--line);
  padding-top: 19px;
}
body[data-page="miner"] .connect-section {
  grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr);
  align-items: start;
  gap: 24px;
  margin-top: 0;
  padding-top: 18px;
  border-top: 0;
}
body[data-page="miner"] .panel-heading {
  padding: 26px 26px 22px;
}
body[data-page="miner"] .panel-heading h2 {
  font-size: 25px;
  letter-spacing: -.03em;
  margin: 10px 0 6px;
}
body[data-page="miner"] .panel-heading p {
  font-size: 13px;
}
.download-panel {
  background: radial-gradient(ellipse at top left, #c5f56b0c, transparent 70%), var(--panel);
}
.miner-capabilities {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}
.miner-capabilities span {
  padding: 4px 8px;
  border: 1px solid var(--line);
  border-radius: 5px;
  color: var(--muted);
  font: 10px/1.6 var(--mono);
}
.download-panel .download-links a {
  width: 100%;
  padding: 15px 18px;
  background: var(--lime);
  color: #17210d;
  font-size: 14px;
  font-weight: 600;
  border-radius: 8px;
}
.download-panel .download-links a:hover {
  background: #d5ff91;
}
.download-panel .download-section > p,
.download-panel .checksum-link {
  font-size: 12px;
}
.download-panel .ai-setup {
  margin-top: 25px;
  padding: 18px;
}
.download-panel .ai-setup summary {
  font-size: 15px;
  color: var(--text);
}
.download-panel .ai-setup p {
  font-size: 12px;
  line-height: 1.7;
}
.download-panel .ai-prompt {
  min-height: 180px;
  font-size: 12px;
}
.download-panel #copy-ai-prompt {
  width: 100%;
  justify-content: space-between;
  font-size: 12px;
}
body[data-page="miner"] .connect-form label,
body[data-page="miner"] .join-fees,
body[data-page="miner"] .join-hint,
body[data-page="miner"] .miner-prerequisite,
body[data-page="miner"] .tls-details summary {
  font-size: 12px;
}
body[data-page="miner"] .connect-form input,
body[data-page="miner"] .connect-form select {
  font-size: 14px;
  min-height: 46px;
}
body[data-page="miner"] .command-box pre {
  font-size: 11px;
  min-height: 125px;
}
body[data-page="miner"] .command-top button {
  font-size: 11px;
  padding: 5px 0;
}
@media (max-width: 850px) {
  body[data-page="miner"] .connect-section {
    grid-template-columns: 1fr;
    gap: 22px;
  }
}
@media (max-width: 450px) {
  body[data-page="miner"] .panel-heading { padding: 22px 20px; }
  body[data-page="miner"] .panel-heading h2 { font-size: 23px; }
  body[data-page="miner"] .join-field-row { grid-template-columns: 1fr; gap: 15px; }
  body[data-page="miner"] .connect-form input,
  body[data-page="miner"] .connect-form select { font-size: 16px; }
}
@media (max-width: 850px) {
  .download-section {
    padding: 0 19px 19px;
  }
}
@media (max-width: 650px) {
  .download-section {
    padding: 0 20px 19px;
  }
}
