/* ============================================================
   Design tokens
   Palette: graphite/navy base, signal-orange accent, terminal green
   for "online" states. Type: Space Grotesk (display) + Inter (body)
   + JetBrains Mono (specs/console/data).
   ============================================================ */
:root {
  --bg: #0F1216;
  --surface: #171B22;
  --surface-raised: #1E232C;
  --border: #2A303B;
  --text: #E7EAEE;
  --text-muted: #8A93A3;
  --accent: #FF6A3D;
  --accent-dim: #C24E29;
  --online: #3DDC84;
  --warn: #E8B93D;

  --font-display: 'Space Grotesk', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  --radius: 6px;
  --container: 1120px;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.1;
  margin: 0 0 0.5em;
}

.mono { font-family: var(--font-mono); }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Nav ---------- */
.nav {
  border-bottom: 1px solid var(--border);
  background: rgba(15, 18, 22, 0.9);
  backdrop-filter: blur(8px);
  position: sticky;
  top: 0;
  z-index: 50;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  max-width: var(--container);
  margin: 0 auto;
}
.nav-brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-brand .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--online);
  box-shadow: 0 0 8px var(--online);
}
.nav-links { display: flex; gap: 28px; align-items: center; }
.nav-links a { color: var(--text-muted); font-size: 0.92rem; transition: color .15s; }
.nav-links a:hover { color: var(--text); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 20px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.92rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .1s ease, background .15s;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--accent); color: #16110D; }
.btn-primary:hover { background: #ff7d54; }
.btn-ghost { background: transparent; border-color: var(--border); color: var(--text); }
.btn-ghost:hover { border-color: var(--text-muted); }
.btn-block { width: 100%; justify-content: center; }
.btn-sm { padding: 7px 14px; font-size: 0.82rem; }
.btn-danger { background: transparent; border-color: #5A2A22; color: #E8836A; }
.btn-danger:hover { background: #2A1712; }

/* ---------- Hero: the "rack" signature element ---------- */
.hero {
  padding: 88px 0 64px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}
@media (max-width: 860px) {
  .hero { grid-template-columns: 1fr; padding: 56px 0 40px; }
}
.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--accent);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.hero h1 {
  font-size: clamp(2.1rem, 4vw, 3.2rem);
  letter-spacing: -0.01em;
}
.hero p.lead {
  color: var(--text-muted);
  font-size: 1.08rem;
  max-width: 46ch;
  margin: 16px 0 28px;
}
.hero-actions { display: flex; gap: 12px; }

/* The rack: numbered slots standing in for provisioned server instances.
   Ordering is real here — slot 01 fills before 02, mirroring how a rack
   physically populates — so the numbering earns its place. */
.rack {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px;
}
.rack-header {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--text-muted);
  padding: 4px 8px 12px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 10px;
}
.slot {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--surface-raised);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 10px 12px;
  margin-bottom: 6px;
  font-family: var(--font-mono);
  font-size: 0.78rem;
}
.slot:last-child { margin-bottom: 0; }
.slot .idx { color: var(--text-muted); width: 22px; }
.slot .led {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--online);
  box-shadow: 0 0 6px var(--online);
  animation: blink 2.4s infinite ease-in-out;
}
.slot:nth-child(3) .led { animation-delay: .4s; }
.slot:nth-child(4) .led { animation-delay: .8s; }
.slot .label { flex: 1; color: var(--text); }
.slot .ping { color: var(--online); }
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: .35; } }

@media (prefers-reduced-motion: reduce) {
  .slot .led { animation: none; }
}

/* ---------- Sections ---------- */
.section { padding: 64px 0; }
.section-head { margin-bottom: 36px; text-align: center; }
.section-head p { color: var(--text-muted); }

/* ---------- Plan cards ---------- */
.plans-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}
.plan-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
}
.plan-card.featured { border-color: var(--accent); position: relative; }
.plan-card.featured::before {
  content: 'MOST POPULAR';
  position: absolute; top: -11px; left: 24px;
  background: var(--accent); color: #16110D;
  font-family: var(--font-mono); font-size: 0.65rem;
  padding: 3px 8px; border-radius: 3px; letter-spacing: 0.05em;
}
.plan-name { font-family: var(--font-display); font-size: 1.3rem; margin-bottom: 4px; }
.plan-price { font-family: var(--font-mono); font-size: 2rem; margin: 12px 0 4px; }
.plan-price span { font-size: 0.9rem; color: var(--text-muted); }
.plan-specs { list-style: none; padding: 0; margin: 18px 0 24px; font-family: var(--font-mono); font-size: 0.85rem; color: var(--text-muted); }
.plan-specs li { padding: 6px 0; border-top: 1px solid var(--border); display: flex; justify-content: space-between; }
.plan-specs li span { color: var(--text); }

/* ---------- Forms ---------- */
.form-card {
  max-width: 420px;
  margin: 64px auto;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 32px;
}
.field { margin-bottom: 16px; }
.field label { display: block; font-size: 0.85rem; color: var(--text-muted); margin-bottom: 6px; }
.field input {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 10px 12px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.95rem;
}
.field input:focus {
  outline: 2px solid var(--accent);
  outline-offset: 1px;
  border-color: var(--accent);
}
.form-note { text-align: center; margin-top: 16px; color: var(--text-muted); font-size: 0.88rem; }
.form-error {
  background: #2A1712; border: 1px solid #5A2A22; color: #E8836A;
  padding: 10px 14px; border-radius: var(--radius); font-size: 0.88rem; margin-bottom: 16px;
}

/* ---------- Dashboard ---------- */
.dash-header {
  display: flex; justify-content: space-between; align-items: center;
  padding: 32px 0; border-bottom: 1px solid var(--border); margin-bottom: 32px;
}
.server-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 24px;
  margin-bottom: 16px;
}
.server-card-head {
  display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px;
}
.status-badge {
  font-family: var(--font-mono); font-size: 0.72rem; text-transform: uppercase;
  padding: 3px 9px; border-radius: 20px; letter-spacing: 0.04em;
}
.status-active { background: rgba(61,220,132,0.12); color: var(--online); }
.status-provisioning { background: rgba(232,185,61,0.12); color: var(--warn); }
.status-suspended { background: rgba(232,132,106,0.12); color: #E8836A; }
.server-stats {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px;
  font-family: var(--font-mono); font-size: 0.85rem; margin: 16px 0;
}
.server-stats .stat { background: var(--surface-raised); border-radius: 6px; padding: 12px; }
.server-stats .stat .val { font-size: 1.2rem; color: var(--text); }
.server-stats .stat .lbl { color: var(--text-muted); font-size: 0.72rem; text-transform: uppercase; margin-bottom: 4px; }
.server-actions { display: flex; gap: 8px; }

/* ---------- Footer ---------- */
.footer {
  border-top: 1px solid var(--border);
  padding: 32px 0;
  color: var(--text-muted);
  font-size: 0.85rem;
  text-align: center;
}

.empty-state {
  text-align: center;
  padding: 64px 24px;
  color: var(--text-muted);
}

/* ---------- Icon badges (Why Vyrexhost cards) ---------- */
.icon-badge {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: rgba(255, 106, 61, 0.12);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent);
  margin-bottom: 16px;
}

/* ---------- Accordion (homepage FAQ) ---------- */
.accordion-item { border-bottom: 1px solid var(--border); }
.accordion-item:first-child { border-top: 1px solid var(--border); }
.accordion-q {
  display: flex; justify-content: space-between; align-items: center;
  padding: 18px 4px; cursor: pointer;
  font-family: var(--font-display); font-weight: 600; font-size: 1.02rem;
}
.accordion-q .chev { color: var(--text-muted); transition: transform .2s ease; flex-shrink: 0; margin-left: 12px; }
.accordion-item.open .chev { transform: rotate(180deg); color: var(--accent); }
.accordion-a-wrap { display: grid; grid-template-rows: 0fr; min-height: 0; transition: grid-template-rows .25s ease; }
.accordion-item.open .accordion-a-wrap { grid-template-rows: 1fr; }
.accordion-a-inner { overflow: hidden; }
.accordion-a { color: var(--text-muted); font-size: 0.92rem; margin: 0 4px 18px; }

/* ---------- CTA band ---------- */
.cta-band {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 56px 24px;
  text-align: center;
  margin: 24px 0 64px;
}

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity .5s ease, transform .5s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ============================================================
   Interaction layer
   Hover/focus highlighting, the plans picker, and toasts.
   Everything here degrades to the static design without JS.
   ============================================================ */

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

/* ---------- Focus visibility ----------
   Keyboard users get a clear ring; mouse users don't see it at all. */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
  border-radius: 3px;
}
.btn:focus-visible { outline-offset: 3px; }

/* ---------- Nav: active page + hover underline ---------- */
.nav-links a { position: relative; padding: 4px 0; }
.nav-links a:not(.btn)::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .18s ease;
}
.nav-links a:not(.btn):hover::after { transform: scaleX(1); }
.nav-links a.is-current { color: var(--text); }
.nav-links a.is-current:not(.btn)::after { transform: scaleX(1); }

/* ---------- Card highlighting ---------- */
.plan-card {
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.plan-card:hover {
  transform: translateY(-4px);
  border-color: #3C4453;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
}
.plan-card.featured:hover {
  border-color: var(--accent);
  box-shadow: 0 12px 32px rgba(255, 106, 61, 0.18);
}

/* Rows light up as you read down the spec list. */
.plan-specs li { transition: color .15s ease; }
.plan-card:hover .plan-specs li span { color: var(--accent); }

/* The picker's live recommendation. */
.plan-card.recommended {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent), 0 12px 32px rgba(255, 106, 61, 0.22);
}
.plan-card .rec-flag {
  display: none;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.05em;
  color: var(--accent);
  margin-bottom: 8px;
}
.plan-card.recommended .rec-flag { display: block; }

/* Rack slots respond to the pointer too. */
.slot { transition: border-color .15s ease, background .15s ease; }
.slot:hover { border-color: #3C4453; background: #232936; }

/* ---------- Plan picker ---------- */
.picker {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 24px;
  margin-bottom: 28px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
}
@media (max-width: 720px) {
  .picker { grid-template-columns: 1fr; }
}
.picker-label {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  margin-bottom: 12px;
}
.picker-value { color: var(--accent); }

.picker input[type="range"] {
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
  height: 4px;
  border-radius: 2px;
  background: var(--surface-raised);
  outline: none;
}
.picker input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--accent);
  cursor: pointer;
  border: 3px solid var(--bg);
  box-shadow: 0 0 0 1px var(--accent);
}
.picker input[type="range"]::-moz-range-thumb {
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--accent);
  cursor: pointer;
  border: 3px solid var(--bg);
  box-shadow: 0 0 0 1px var(--accent);
}

.picker-toggles { display: flex; gap: 8px; flex-wrap: wrap; }
.chip {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  padding: 7px 13px;
  border-radius: 20px;
  border: 1px solid var(--border);
  background: var(--surface-raised);
  color: var(--text-muted);
  cursor: pointer;
  transition: all .15s ease;
}
.chip:hover { border-color: var(--text-muted); color: var(--text); }
.chip[aria-pressed="true"] {
  background: rgba(255, 106, 61, 0.14);
  border-color: var(--accent);
  color: var(--accent);
}

/* ---------- Toasts (replaces alert()) ---------- */
.toast-stack {
  position: fixed;
  bottom: 20px; right: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  z-index: 200;
}
.toast {
  background: var(--surface-raised);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  border-radius: 6px;
  padding: 12px 16px;
  font-size: 0.88rem;
  color: var(--text);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  animation: toast-in .2s ease;
  max-width: 320px;
}
.toast.ok { border-left-color: var(--online); }
.toast.err { border-left-color: #E8836A; }
.toast.leaving { animation: toast-out .2s ease forwards; }
@keyframes toast-in  { from { opacity: 0; transform: translateY(8px); } }
@keyframes toast-out { to   { opacity: 0; transform: translateY(8px); } }
@media (prefers-reduced-motion: reduce) {
  .toast, .toast.leaving { animation: none; }
}

/* ---------- Button busy state ---------- */
.btn[data-busy="true"] { opacity: .6; pointer-events: none; }

/* ---------- Server configurator ---------- */
.config-grid {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 24px;
  align-items: start;
}
@media (max-width: 780px) {
  .config-grid { grid-template-columns: 1fr; }
}

.config-panel {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 8px 24px 24px;
}
.config-row { padding: 20px 0; border-bottom: 1px solid var(--border); }
.config-row:last-child { border-bottom: none; }
.config-row-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 14px;
}
.config-label {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
}
.config-readout {
  font-family: var(--font-mono);
  font-size: 1.15rem;
  color: var(--accent);
}
.config-note {
  color: var(--text-muted);
  font-size: 0.82rem;
  margin: 12px 0 0;
}

/* Reuse the picker's slider styling on the configurator's ranges. */
.config-row input[type="range"] {
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
  height: 4px;
  border-radius: 2px;
  background: var(--surface-raised);
  outline: none;
}
.config-row input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--accent);
  cursor: pointer;
  border: 3px solid var(--bg);
  box-shadow: 0 0 0 1px var(--accent);
}
.config-row input[type="range"]::-moz-range-thumb {
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--accent);
  cursor: pointer;
  border: 3px solid var(--bg);
  box-shadow: 0 0 0 1px var(--accent);
}
.config-row input[type="range"]:disabled { opacity: .4; cursor: not-allowed; }
.config-row input[type="range"]:disabled::-webkit-slider-thumb { cursor: not-allowed; }

/* Summary rail — sticky on desktop so the price stays in view while dragging. */
.config-summary {
  background: var(--surface);
  border: 1px solid var(--accent);
  border-radius: 10px;
  padding: 24px;
  position: sticky;
  top: 88px;
}
@media (max-width: 780px) {
  .config-summary { position: static; }
}
.config-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin: 18px 0 4px;
}
.config-price-value {
  font-family: var(--font-mono);
  font-size: 2.1rem;
  color: var(--text);
}
.config-price-unit { color: var(--text-muted); font-size: 0.9rem; }
.config-breakdown {
  color: var(--text-muted);
  font-size: 0.8rem;
  margin: 0 0 20px;
  min-height: 1.2em;
}

/* ============================================================
   Live dashboard + account management
   ============================================================ */

/* ---------- Live power state ---------- */
.live-state {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--surface-raised);
    color: var(--text-muted);
}
.live-state .state-dot {
    width: 7px; height: 7px; border-radius: 50%;
    background: var(--text-muted);
    flex-shrink: 0;
}
.live-state.state-running       { background: rgba(61,220,132,0.12); color: var(--online); }
.live-state.state-running .state-dot {
    background: var(--online);
    box-shadow: 0 0 6px var(--online);
    animation: blink 2.4s infinite ease-in-out;
}
.live-state.state-starting,
.live-state.state-stopping      { background: rgba(232,185,61,0.12); color: var(--warn); }
.live-state.state-starting .state-dot,
.live-state.state-stopping .state-dot { background: var(--warn); }
.live-state.state-offline       { background: rgba(138,147,163,0.12); color: var(--text-muted); }
.live-state.state-unavailable   { background: rgba(232,132,106,0.12); color: #E8836A; }
.live-state.state-unavailable .state-dot { background: #E8836A; }

/* ---------- Connection address ---------- */
.server-address {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 8px 12px;
    margin-bottom: 16px;
}
.server-address .addr-label {
    font-family: var(--font-mono);
    font-size: 0.66rem;
    letter-spacing: 0.08em;
    color: var(--text-muted);
}
.server-address .addr-value {
    font-family: var(--font-mono);
    font-size: 0.92rem;
    color: var(--accent);
    flex: 1;
    word-break: break-all;
}

/* ---------- Usage meters ---------- */
.server-stats .stat .meter {
    height: 3px;
    background: var(--bg);
    border-radius: 2px;
    overflow: hidden;
    margin-top: 8px;
}
.server-stats .stat .meter > span {
    display: block;
    height: 100%;
    width: 0;
    background: var(--accent);
    border-radius: 2px;
    transition: width .4s ease;
}
.server-stats .stat .cap {
    color: var(--text-muted);
    font-size: 0.68rem;
    margin-top: 6px;
}

.live-error {
    color: #E8836A;
    font-size: 0.82rem;
    margin: 0 0 12px;
}

/* ---------- Account page ---------- */
.acct-overview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
    gap: 12px;
    margin-bottom: 24px;
}
.acct-overview .stat {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 14px 16px;
}
.acct-overview .stat .lbl {
    font-family: var(--font-mono);
    font-size: 0.66rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 8px;
}
.acct-overview .stat .val {
    font-family: var(--font-mono);
    font-size: 1.35rem;
    color: var(--text);
}

.acct-section {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 24px;
    margin-bottom: 16px;
}
.acct-section h2 {
    font-size: 1.15rem;
    margin: 0 0 6px;
}
.acct-section .acct-note {
    color: var(--text-muted);
    font-size: 0.88rem;
    margin: 0 0 18px;
}
.acct-section form { max-width: 420px; }
.acct-section.danger { border-color: #5A2A22; }
.acct-section.danger h2 { color: #E8836A; }

.acct-kv {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-top: 1px solid var(--border);
    font-size: 0.9rem;
}
.acct-kv span:first-child { color: var(--text-muted); }

.form-success {
    background: rgba(61, 220, 132, 0.10);
    border: 1px solid rgba(61, 220, 132, 0.35);
    color: var(--online);
    padding: 10px 14px;
    border-radius: var(--radius);
    font-size: 0.88rem;
}

/* ---------- Currency ---------- */

/* The USD figure that accompanies every converted price. Deliberately legible
   rather than fine print — it's the amount that actually gets charged. */
.price-usd {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    color: var(--text-muted);
    margin: -6px 0 14px;
}

.currency-switch {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
    font-size: 0.8rem;
    color: var(--text-muted);
}
.currency-switch select {
    background: var(--surface);
    border: 1px solid var(--border);
    color: var(--text);
    border-radius: 6px;
    padding: 6px 10px;
    font-family: var(--font-body);
    font-size: 0.8rem;
    cursor: pointer;
}
.currency-switch select:hover { border-color: var(--text-muted); }
.currency-switch select:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
}

.currency-note {
    color: var(--text-muted);
    font-size: 0.75rem;
    max-width: 52ch;
    margin: 10px auto 0;
}
