:root {
  --bg: #f8fafc;
  --surface: #ffffff;
  --surface2: #f1f5f9;
  --border: #e2e8f0;
  --text: #1e293b;
  --muted: #64748b;
  --accent: #2563eb;
  --accent-hover: #1d4ed8;
  --accent-light: #eff6ff;
  --ok: #16a34a;
  --ok-bg: #f0fdf4;
  --caution: #d97706;
  --caution-bg: #fffbeb;
  --avoid: #dc2626;
  --avoid-bg: #fef2f2;
  --radius: 12px;
  --shadow: 0 1px 3px rgba(15, 23, 42, 0.08), 0 4px 12px rgba(15, 23, 42, 0.04);
  --font: "Inter", system-ui, -apple-system, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
}

a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }

.container {
  width: min(1100px, 100% - 2rem);
  margin: 0 auto;
}

/* Header */
.header {
  border-bottom: 1px solid var(--border);
  background: var(--surface);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--text);
  text-decoration: none;
  font-weight: 700;
  font-size: 1.15rem;
}

.logo:hover { text-decoration: none; }

.logo__icon {
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, var(--accent), #7c3aed);
  border-radius: 10px;
  display: grid;
  place-items: center;
  font-size: 1.1rem;
  color: #fff;
  font-weight: 800;
}

.logo__domain {
  color: var(--muted);
  font-weight: 500;
  font-size: 0.85rem;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.nav a {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 500;
}

.nav a:hover, .nav a.active { color: var(--text); text-decoration: none; }

/* Balance badge */
.balance {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--accent-light);
  border: 1px solid #bfdbfe;
  border-radius: 999px;
  padding: 0.35rem 0.85rem;
  font-size: 0.82rem;
  color: var(--accent);
  font-weight: 600;
}

.balance--unlimited {
  background: var(--ok-bg);
  border-color: #bbf7d0;
  color: var(--ok);
}

.balance--empty {
  background: var(--avoid-bg);
  border-color: #fecaca;
  color: var(--avoid);
}

a.balance { text-decoration: none; }
a.balance:hover { opacity: 0.85; text-decoration: none; }

/* Mobile balance strip */
.mobile-balance {
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: var(--accent-light);
  border: 1px solid #bfdbfe;
  border-radius: var(--radius);
  padding: 0.75rem 1rem;
  margin-bottom: 1rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--accent);
}

.mobile-balance a {
  font-size: 0.82rem;
  font-weight: 600;
  white-space: nowrap;
}

.mobile-balance--unlimited {
  background: var(--ok-bg);
  border-color: #bbf7d0;
  color: var(--ok);
}

/* Account panel */
.account-stats { display: flex; flex-direction: column; gap: 1rem; }

.account-stat__head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 0.35rem;
}

.account-stat__label { font-size: 0.82rem; color: var(--muted); }
.account-stat__value { font-size: 0.95rem; font-weight: 700; }

.account-stat--unlimited {
  background: var(--ok-bg);
  border: 1px solid #bbf7d0;
  border-radius: 8px;
  padding: 1rem;
  text-align: center;
}

.account-stat--unlimited .account-stat__label {
  display: block;
  color: var(--ok);
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.account-stat--unlimited .account-stat__value {
  color: var(--ok);
  font-size: 1.05rem;
}

.account-meter {
  height: 6px;
  background: var(--surface2);
  border-radius: 999px;
  overflow: hidden;
}

.account-meter__fill {
  height: 100%;
  background: var(--accent);
  border-radius: 999px;
  transition: width 0.3s;
}

.account-meter--credits .account-meter__fill { background: #7c3aed; }

.account-hint {
  margin: 0.75rem 0 0;
  font-size: 0.82rem;
  color: var(--muted);
}

.account-hint--warn { color: var(--avoid); }

.account-help {
  margin: 0;
  padding-left: 1.1rem;
  font-size: 0.85rem;
  color: var(--muted);
}

.account-help li { margin-bottom: 0.4rem; }

/* Cabinet */
.cabinet { padding: 2rem 0 3rem; }

.cabinet-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.cabinet-header h1 { margin: 0 0 0.35rem; }

.cabinet-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 1.5rem;
  align-items: start;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.stat-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
  text-align: center;
  box-shadow: var(--shadow);
}

.stat-card__value {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1.1;
}

.stat-card__label {
  font-size: 0.82rem;
  color: var(--muted);
}

.tabs {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.tabs__btn {
  padding: 0.5rem 1rem;
  border: 1px solid var(--border);
  background: var(--surface);
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  color: var(--muted);
}

.tabs__btn.active {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.history-row {
  display: flex;
  gap: 0.35rem;
  align-items: stretch;
  margin-bottom: 0.5rem;
}

.history-row .history-item { flex: 1; margin-bottom: 0; }

.history-share {
  flex-shrink: 0;
  width: 40px;
  border: 1px solid var(--border);
  background: var(--surface2);
  border-radius: 8px;
  cursor: pointer;
  font-size: 1rem;
  transition: border-color 0.15s, background 0.15s;
}

.history-share:hover {
  border-color: var(--accent);
  background: var(--accent-light);
}

/* Share bar */
.share-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
  background: var(--accent-light);
  border: 1px solid #bfdbfe;
  border-radius: 8px;
  padding: 0.75rem 1rem;
  margin-bottom: 1.25rem;
}

.share-bar__label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--accent);
  width: 100%;
}

.share-bar__input {
  flex: 1;
  min-width: 200px;
  padding: 0.45rem 0.65rem;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: 0.85rem;
  font-family: inherit;
  background: var(--surface);
}

.share-page-badge {
  display: inline-block;
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0.25rem 0.75rem;
  font-size: 0.78rem;
  color: var(--muted);
  margin-bottom: 0.75rem;
}

.share-cta {
  text-align: center;
  margin-top: 2rem;
  padding: 2rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.pay-status {
  font-size: 0.82rem;
  font-weight: 600;
  padding: 0.15rem 0.5rem;
  border-radius: 999px;
}

.pay-status--paid { background: var(--ok-bg); color: var(--ok); }
.pay-status--pending { background: var(--caution-bg); color: var(--caution); }

/* Auth */
.auth-section {
  max-width: 440px;
  margin: 2rem auto 3rem;
}

.auth-card h1 { margin: 0 0 0.5rem; }

.auth-tabs { margin: 1.25rem 0 1rem; }

.auth-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.auth-form[hidden] {
  display: none !important;
}

.auth-form label {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-size: 0.88rem;
  font-weight: 600;
}

.auth-form input {
  padding: 0.65rem 0.85rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
}

.auth-form input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-light);
}

.auth-forgot {
  margin: -0.25rem 0 0;
  text-align: right;
  font-size: 0.85rem;
}

.auth-forgot a { font-weight: 500; }

.user-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--muted);
  max-width: 120px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.cabinet-header__actions {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

/* Hero */
.hero {
  text-align: center;
  padding: 2.5rem 0 2rem;
}

.hero__badge {
  display: inline-block;
  background: var(--accent-light);
  color: var(--accent);
  border: 1px solid #bfdbfe;
  border-radius: 999px;
  padding: 0.3rem 0.9rem;
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.hero h1 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin: 0 0 0.75rem;
  line-height: 1.2;
}

.hero__subtitle {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 640px;
  margin: 0 auto 2rem;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  text-align: left;
}

.step {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
  box-shadow: var(--shadow);
}

.step--action {
  display: block;
  width: 100%;
  text-align: left;
  font: inherit;
  color: inherit;
  cursor: pointer;
  transition: border-color 0.15s, box-shadow 0.15s;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  box-sizing: border-box;
}

.step--action:hover,
.step--action:focus-visible {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
  outline: none;
}

.step--action:active {
  border-color: var(--accent);
}

.step__num {
  width: 32px;
  height: 32px;
  background: var(--accent);
  color: #fff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
}

.step h3 { margin: 0 0 0.35rem; font-size: 1rem; }
.step p { margin: 0; color: var(--muted); font-size: 0.88rem; }

/* Layout */
.layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 1.5rem;
  padding-bottom: 3rem;
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
}

.card h2 { margin: 0 0 1rem; font-size: 1.25rem; }
.card h3 { margin: 0 0 0.75rem; font-size: 1rem; }

/* Upload */
.dropzone {
  position: relative;
  border: 2px dashed var(--border);
  border-radius: var(--radius);
  padding: 2.5rem 1.5rem;
  text-align: center;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  background: var(--surface2);
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

.file-input {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
  opacity: 0;
  pointer-events: none;
}

.dropzone:hover, .dropzone.dragover {
  border-color: var(--accent);
  background: var(--accent-light);
}

.dropzone.has-file {
  border-style: solid;
  border-color: var(--accent);
  padding: 1rem;
}
.dropzone.has-file .dropzone__title,
.dropzone.has-file .dropzone__hint { display: none; }

.dropzone__title { font-weight: 600; margin: 0 0 0.35rem; }
.dropzone__hint { color: var(--muted); font-size: 0.88rem; margin: 0.2rem 0; }

.preview-wrap {
  margin-top: 0;
  position: relative;
}

.preview-wrap img {
  max-width: 100%;
  max-height: 180px;
  width: auto;
  object-fit: contain;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: #fff;
}

.preview-remove {
  margin-top: 0.5rem;
  background: none;
  border: none;
  color: var(--avoid);
  cursor: pointer;
  font-size: 0.85rem;
}

.upload-card .btn--primary {
  margin-top: 1rem;
  width: 100%;
}

.upload-actions {
  position: sticky;
  bottom: 0;
  z-index: 5;
  padding: 0.75rem 0 0.25rem;
  background: linear-gradient(180deg, transparent 0%, var(--surface) 28%);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.7rem 1.25rem;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: background 0.15s, transform 0.1s;
  font-family: inherit;
}

.btn:active { transform: scale(0.98); }
.btn:disabled { opacity: 0.5; cursor: not-allowed; }

.btn--primary {
  background: var(--accent);
  color: #fff;
  width: 100%;
  margin-top: 1rem;
}

.btn--primary:hover:not(:disabled) { background: var(--accent-hover); }

.btn--ghost {
  background: var(--surface2);
  color: var(--text);
  border: 1px solid var(--border);
}

.btn--ghost:hover { background: var(--border); }

.btn--accent-outline {
  background: transparent;
  color: var(--accent);
  border: 2px solid var(--accent);
}

.btn--accent-outline:hover { background: var(--accent-light); }

/* Status */
.status {
  margin-top: 0.75rem;
  font-size: 0.9rem;
  min-height: 1.4em;
}

.status--error { color: var(--avoid); }
.status--ok { color: var(--ok); }
.status--warn { color: var(--caution); }

/* Pricing */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

.pricing-card {
  background: var(--surface);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
  transition: border-color 0.2s, box-shadow 0.2s;
  box-shadow: var(--shadow);
}

.pricing-card:hover {
  border-color: var(--accent);
  box-shadow: 0 4px 20px rgba(37, 99, 235, 0.12);
}

.pricing-card--featured {
  border-color: var(--accent);
  position: relative;
}

.pricing-card__badge {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.2rem 0.7rem;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.pricing-card h3 { margin: 0 0 0.5rem; font-size: 1.05rem; }

.pricing-card__price {
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent);
  margin: 0.5rem 0;
}

.pricing-card__price small {
  font-size: 1rem;
  font-weight: 500;
  color: var(--muted);
}

.pricing-card p {
  color: var(--muted);
  font-size: 0.88rem;
  margin: 0 0 1.25rem;
}

.pricing-card .btn { width: 100%; }

.pricing-email {
  display: block;
  width: 100%;
  margin: 0 0 0.75rem;
  text-align: left;
}

.pricing-email__label {
  display: block;
  font-size: 0.78rem;
  color: var(--muted);
  margin-bottom: 0.35rem;
}

.pricing-email input {
  width: 100%;
  padding: 0.55rem 0.75rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font: inherit;
}

.pricing-free-card {
  margin-bottom: 1.5rem;
  max-width: 420px;
}

/* Report */
.report-card { }

.rec-badge {
  display: inline-block;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.88rem;
  margin-bottom: 1rem;
}

.rec-ok { background: var(--ok-bg); color: var(--ok); }
.rec-caution { background: var(--caution-bg); color: var(--caution); }
.rec-avoid { background: var(--avoid-bg); color: var(--avoid); }

.report-summary {
  font-size: 1.05rem;
  margin: 0 0 1.25rem;
  padding: 1rem;
  background: var(--surface2);
  border-radius: 8px;
  border-left: 4px solid var(--accent);
}

.report-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.kv { margin: 0; }
.kv dt { color: var(--muted); font-size: 0.82rem; margin-top: 0.5rem; }
.kv dd { margin: 0.1rem 0 0; font-weight: 500; }

.report-section { margin-bottom: 1.5rem; }
.report-section h3 { font-size: 1rem; margin-bottom: 0.75rem; }

.chip-list { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.chip {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 0.25rem 0.6rem;
  font-size: 0.82rem;
}

.data-table { width: 100%; border-collapse: collapse; font-size: 0.88rem; }
.data-table th, .data-table td {
  border: 1px solid var(--border);
  padding: 0.5rem 0.75rem;
  text-align: left;
}
.data-table th { background: var(--surface2); font-weight: 600; }
.data-table code { background: var(--surface2); padding: 0.1rem 0.35rem; border-radius: 4px; }

.table-wrap { overflow-x: auto; }

.report-preview img {
  max-width: 100%;
  border-radius: 8px;
  border: 1px solid var(--border);
  margin-bottom: 1rem;
}

.teaser-badge {
  display: inline-block;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.82rem;
  margin-bottom: 1rem;
  background: #eff6ff;
  color: var(--accent);
  border: 1px solid #bfdbfe;
}

.teaser-locked {
  position: relative;
  margin-top: 0.5rem;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  background: var(--surface2);
}

.teaser-locked__blur {
  filter: blur(5px);
  user-select: none;
  pointer-events: none;
  opacity: 0.55;
  padding: 1rem 1.25rem 2rem;
  max-height: 220px;
  overflow: hidden;
}

.teaser-locked__cta {
  position: relative;
  text-align: center;
  padding: 1.25rem 1.5rem 1.5rem;
  background: linear-gradient(180deg, rgba(255,255,255,0.92) 0%, #fff 30%);
  margin-top: -3rem;
  z-index: 1;
}

.teaser-locked__cta .btn { min-width: 240px; }

.teaser-locked__hint {
  font-size: 0.78rem;
  margin: 0.75rem 0 0;
}

.notes-ja { color: var(--muted); font-size: 0.85rem; }

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
}

/* History */
.history-item {
  display: block;
  width: 100%;
  text-align: left;
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.65rem 0.85rem;
  margin-bottom: 0.5rem;
  cursor: pointer;
  font-family: inherit;
  color: var(--text);
  transition: border-color 0.15s;
}

.history-item:hover { border-color: var(--accent); }
.history-item strong { display: block; font-size: 0.9rem; }
.history-item span { font-size: 0.78rem; color: var(--muted); }
.history-item small { display: block; font-size: 0.78rem; color: var(--muted); margin-top: 0.2rem; }

/* FAQ */
.faq details {
  border-bottom: 1px solid var(--border);
  padding: 0.75rem 0;
}

.faq details:last-child { border-bottom: none; }
.faq summary { cursor: pointer; font-weight: 600; }
.faq p { color: var(--muted); margin: 0.5rem 0 0; font-size: 0.92rem; }

/* Glossary */
.glossary-search {
  width: 100%;
  padding: 0.65rem 1rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 1rem;
  margin-bottom: 1.5rem;
  font-family: inherit;
}

.glossary-section { margin-bottom: 2rem; }
.glossary-item {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 0.75rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border);
  align-items: baseline;
  font-size: 0.9rem;
}

.glossary-item code {
  background: var(--accent-light);
  color: var(--accent);
  padding: 0.15rem 0.5rem;
  border-radius: 4px;
  font-weight: 600;
}

.glossary-item small { color: var(--muted); font-size: 0.78rem; }

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

.footer a { color: var(--muted); }
.footer a:hover { color: var(--text); }

.muted { color: var(--muted); }

.disclaimer {
  font-size: 0.82rem;
  color: var(--muted);
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

/* Modal */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.45);
  display: grid;
  place-items: center;
  z-index: 200;
  padding: 1rem;
}

.modal-overlay[hidden] { display: none; }

.modal {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 2rem;
  max-width: 480px;
  width: 100%;
  box-shadow: 0 20px 60px rgba(15, 23, 42, 0.2);
  text-align: center;
  position: relative;
  z-index: 1;
  pointer-events: auto;
}

.modal h2 { margin: 0 0 0.5rem; }
.modal p { color: var(--muted); margin: 0 0 1.5rem; }

.pay-modal-teaser {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  font-size: 0.92rem;
  color: var(--text);
  margin-bottom: 1rem !important;
}

.pricing-email__hint {
  display: block;
  font-size: 0.75rem;
  margin-top: 0.35rem;
}

/* Print */
@media print {
  .no-print { display: none !important; }
  body { background: #fff; }
  .card { box-shadow: none; border: none; }
}

@media (max-width: 768px) {
  .layout { grid-template-columns: 1fr; }
  .cabinet-layout { grid-template-columns: 1fr; }
  .cabinet-header { flex-direction: column; }
  .steps { grid-template-columns: 1fr; }
  .report-grid { grid-template-columns: 1fr; }
  .nav { gap: 0.5rem; flex-wrap: wrap; }
  .nav a { font-size: 0.82rem; }
  .balance { font-size: 0.75rem; padding: 0.3rem 0.6rem; }
  .mobile-balance { display: flex; }
}
