.hero {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  padding: 64px 0 34px;
}
.eyebrow {
  display: block;
  font-size: 0.69rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  line-height: 1.6;
  margin-bottom: 18px;
  color: var(--muted);
}
.intro {
  font-size: 1.1rem;
  color: var(--muted);
  margin-bottom: 0;
  max-width: 660px;
}
.hero-note {
  max-width: 250px;
  min-width: 190px;
  font-size: 0.78rem;
  color: var(--muted);
  border-left: 1px solid var(--line);
  padding-left: 24px;
}
.hero-note p {
  margin: 12px 0 4px;
}
.small-symbol .icon {
  width: 26px;
  height: 26px;
}
.status-bar {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.74rem;
  color: var(--muted);
  padding: 13px 0 20px;
}
.status-bar > #data-status {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--ink);
}
.status-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  background: currentColor;
  border-radius: 50%;
  flex: none;
}
.status-bar > #data-status.warning {
  color: var(--danger);
}
#collection-time {
  margin-left: auto;
}
.status-bar .text-button {
  font-size: 0.74rem;
}
.currency-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.currency-card {
  background: var(--surface);
  padding: 24px;
  text-align: left;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition:
    background 0.2s,
    transform 0.2s;
}
.currency-card:hover {
  transform: translateY(-2px);
}
.currency-card[aria-pressed='true'] {
  background: var(--ink);
  color: var(--inverse);
  border-color: var(--ink);
}
.currency-title {
  display: flex;
  align-items: center;
  gap: 12px;
}
.currency-title > span:nth-child(2) {
  display: flex;
  gap: 4px;
  flex-direction: column;
  flex: 1;
}
.currency-title > span:nth-child(2) > span {
  font-size: 0.75rem;
  opacity: 0.8;
}
.currency-title strong {
  font-size: 0.95rem;
  letter-spacing: 0.03em;
}
.currency-title > .icon {
  width: 16px;
  opacity: 0.65;
}
.currency-symbol {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-family: Newsreader, Georgia, serif;
  font-size: 1.5rem;
}
.currency-prices {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 24px;
}
.currency-prices > span {
  min-width: 0;
}
.currency-prices small {
  display: block;
  font-size: 0.68rem;
  line-height: 1.5;
  opacity: 0.83;
  margin-bottom: 8px;
}
.currency-prices b {
  font-size: clamp(1.45rem, 2.3vw, 2.2rem);
  font-weight: 500;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.055em;
}
.currency-unit {
  display: block;
  font-size: 0.65rem;
  margin-top: 17px;
  opacity: 0.7;
}
.best-note {
  font-size: 0.7rem;
  color: var(--muted);
  margin: 12px 0 0;
  max-width: 1020px;
  line-height: 1.65;
}
