/* HoodGO dark grey + fine grain */
:root {
  --bg: #111113;
  --surface: #18181b;
  --border: #26262a;
  --text: #f0f0f2;
  --muted: #a8a8ae;
  --dim: #737378;
  --accent: #f0f0f2;
  --accent-soft: rgba(255, 255, 255, 0.06);
  --danger: #ff7b7b;
  --lime: #d4ff00;
  --lime-dim: #8fa030;
  --font-sans: 'Inter', system-ui, sans-serif;
  --header-h: 64px;
  --radius: 12px;
  --radius-sm: 8px;
  --shadow: 0 16px 48px rgba(0, 0, 0, 0.45);
  --heading-track: -0.055em;
}

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

html {
  scroll-behavior: smooth;
}

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

body {
  margin: 0;
  min-height: 100vh;
  background-color: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  font-weight: 400;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

.grain {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  opacity: 0.42;
  background-image: radial-gradient(rgba(255, 255, 255, 0.11) 0.45px, transparent 0.45px);
  background-size: 2px 2px;
}

body.panel-open {
  overflow: hidden;
}

.heading-bold {
  font-weight: 700;
  letter-spacing: var(--heading-track);
}

.text-underline {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.hidden {
  display: none !important;
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 0.75rem 1.25rem;
  min-height: var(--header-h);
  background: rgba(17, 17, 19, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.header__inner {
  width: min(100%, 920px);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: var(--text);
}

.wordmark__logo {
  display: block;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  object-fit: cover;
}

.wordmark__text {
  font-size: 1.125rem;
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.header__balance {
  display: flex;
  align-items: baseline;
  gap: 0.35rem;
  font-size: 0.8125rem;
  color: var(--muted);
}

.header__balance-label {
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.625rem;
  color: var(--dim);
  font-weight: 600;
}

.header__balance-token {
  color: var(--text);
  font-weight: 600;
}

/* Buttons */
.btn {
  appearance: none;
  border: 2px solid var(--text);
  cursor: pointer;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.8125rem;
  letter-spacing: 0.02em;
  padding: 0.65rem 1.1rem;
  border-radius: 999px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease, background 0.2s ease;
}

.btn--primary {
  background: var(--text);
  color: var(--bg);
  border-color: var(--text);
}

.btn--primary:hover:not(:disabled) {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

.btn--primary:disabled,
.btn--disabled {
  opacity: 0.35;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

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

.btn--surface {
  background: var(--bg);
  color: var(--text);
  border: 2px solid var(--text);
}

.btn--full {
  width: 100%;
}

.wallet-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.65rem 0.4rem 0.5rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 0.75rem;
  max-width: min(100vw - 2rem, 420px);
  flex-wrap: wrap;
  justify-content: flex-end;
}

.wallet-pill__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #7dff9a;
  flex-shrink: 0;
}

.wallet-pill__addr {
  color: var(--text);
  font-weight: 500;
}

.wallet-pill__chain {
  padding: 0.15rem 0.45rem;
  border-radius: 999px;
  font-size: 0.625rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 600;
}

.wallet-pill__chain--ok {
  background: var(--accent-soft);
  color: var(--text);
}

.wallet-pill__chain--bad {
  background: rgba(198, 40, 40, 0.08);
  color: var(--danger);
}

.wallet-pill__switch {
  background: none;
  border: none;
  color: inherit;
  font: inherit;
  cursor: pointer;
  text-decoration: underline;
  padding: 0;
}

.wallet-pill__disconnect {
  background: none;
  border: none;
  color: var(--dim);
  cursor: pointer;
  font-size: 1rem;
  line-height: 1;
  padding: 0 0.15rem;
}

/* Layout */
.main {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.section-reveal {
  width: 100%;
}

/* Hero */
.hero {
  width: min(100%, 920px);
  padding: 2.5rem 1.25rem 1.25rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero__brand {
  width: 112px;
  height: 112px;
  border-radius: 16px;
  object-fit: cover;
  margin-bottom: 1.25rem;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}

.hero__title {
  margin: 0 0 0.75rem;
  font-size: clamp(2.25rem, 6vw, 3.5rem);
  line-height: 1.05;
}

.hero__sub {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  max-width: 36rem;
  line-height: 1.6;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1rem;
  border-radius: 6px;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 0.9375rem;
  letter-spacing: -0.02em;
  text-decoration: none;
  line-height: 1.2;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.cta-btn--primary {
  background: #ececee;
  color: #0a0a0b;
  border: 1px solid #ececee;
}

.cta-btn--primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

.cta-btn--ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid #3a3a40;
}

.cta-btn--ghost:hover {
  border-color: #52525b;
  background: rgba(255, 255, 255, 0.03);
}

.cta-btn__icon {
  flex-shrink: 0;
}

.cta-btn__ext {
  flex-shrink: 0;
  opacity: 0.85;
}

.cta-btn--compact {
  padding: 0.5rem 0.85rem;
  font-size: 0.8125rem;
}

.header__x {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  border: 1px solid var(--border);
  color: var(--text);
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.header__x:hover {
  background: var(--accent-soft);
  border-color: #3a3a40;
}

.header__x-icon {
  display: block;
}

.stats-band {
  width: min(100%, 920px);
  padding: 0 1.25rem 2rem;
  text-align: center;
}

.stat-strip {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.75rem 1.25rem;
  padding: 1rem 1.5rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.stat-strip__item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  align-items: center;
  text-align: center;
}

.stat-strip__label {
  font-size: 0.625rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--dim);
  font-weight: 600;
}

.stat-strip__value {
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: var(--heading-track);
  color: var(--text);
}

.stat-strip__dot {
  color: var(--dim);
  display: none;
}

@media (min-width: 640px) {
  .stat-strip__dot {
    display: inline;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(28px) scale(0.98);
  transition:
    opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.map-shell.reveal.is-visible {
  transform: translateY(0) scale(1);
}

.map-shell.reveal {
  transform: translateY(36px) scale(0.96);
}

/* US silhouette map */
.map-section {
  position: relative;
  width: 100%;
  margin: 0 0 2.5rem;
  padding: 0 1.25rem 2rem;
  border-block: 1px solid var(--border);
  background: var(--bg);
  text-align: center;
}

.map-section__title {
  margin: 0.35rem 0 0.5rem;
  font-size: clamp(1.5rem, 4vw, 2rem);
}

.map-section__lead {
  margin: 0 0 1.25rem;
  color: var(--muted);
  font-size: 0.9375rem;
  max-width: 28rem;
  margin-inline: auto;
}

.map-shell {
  position: relative;
  width: min(100%, 960px);
  margin: 0 auto;
}

.map,
.us-map {
  width: 100%;
  height: min(68vh, 620px);
  min-height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 1.25rem 1.5rem;
  background: transparent;
}

.us-map__svg {
  width: 100%;
  max-width: 960px;
  height: auto;
  max-height: min(64vh, 560px);
  display: block;
}

.us-map__state {
  fill: #1c1c20;
  stroke: #2a2a30;
  stroke-width: 0.6;
  vector-effect: non-scaling-stroke;
}

.us-map__land {
  filter: none;
}

.hood-pin {
  cursor: pointer;
  outline: none;
}

.hood-pin__hit {
  fill: transparent;
  stroke: none;
  pointer-events: all;
}

.hood-pin__shape {
  fill: var(--lime);
  pointer-events: none;
  stroke: #111113;
  stroke-width: 0.35;
  vector-effect: non-scaling-stroke;
}

.hood-pin--cleared .hood-pin__shape {
  fill: var(--lime-dim);
  opacity: 0.55;
}

.hood-pin--focus .hood-pin__shape {
  fill: #eeff66;
}

.map-overlay {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  z-index: 500;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  padding: 0.5rem 0.75rem;
  background: rgba(24, 24, 27, 0.94);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  pointer-events: none;
  font-weight: 500;
}

.map-overlay__tag {
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--dim);
  font-size: 0.5625rem;
  font-weight: 700;
}

.leaflet-control-zoom a,
.leaflet-control-attribution {
  display: none !important;
}

/* Panels */
.panel-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 1100;
  opacity: 0;
  animation: fade-in 0.25s ease forwards;
}

.hood-panel,
.proof-panel {
  position: fixed;
  z-index: 1200;
  background: var(--bg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  padding: 1.5rem;
  overflow-y: auto;
  max-height: 100vh;
}

.hood-panel {
  top: 0;
  right: 0;
  width: min(400px, 100%);
  height: 100%;
  transform: translateX(100%);
  animation: slide-in-right 0.35s ease forwards;
}

.proof-panel {
  top: 0;
  right: 0;
  width: min(440px, 100%);
  height: 100%;
  transform: translateX(100%);
  animation: slide-in-right 0.35s ease forwards;
}

.hood-panel.hidden,
.proof-panel.hidden {
  display: none;
}

@keyframes slide-in-right {
  to {
    transform: translateX(0);
  }
}

@keyframes fade-in {
  to {
    opacity: 1;
  }
}

.hood-panel__close,
.proof-panel__close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  background: none;
  border: none;
  color: var(--muted);
  font-size: 1.5rem;
  cursor: pointer;
  line-height: 1;
}

.section-tag {
  margin: 0 0 0.5rem;
  font-size: 0.625rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--dim);
}

.map-section .section-tag,
.how .section-tag {
  margin-bottom: 0.35rem;
}

.hood-panel__title,
.proof-panel__title {
  margin: 0 0 0.35rem;
  font-size: 1.75rem;
}

.hood-panel__location {
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: 0.8125rem;
}

.hood-panel__flavor {
  margin: 0 0 1.5rem;
  color: var(--muted);
  font-size: 0.9375rem;
}

.hood-panel__progress-head {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  margin-bottom: 0.5rem;
  color: var(--muted);
  font-weight: 600;
  text-transform: uppercase;
}

.progress-bar {
  height: 6px;
  background: var(--border);
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 1.5rem;
}

.progress-bar__fill {
  height: 100%;
  width: 0;
  background: var(--text);
  border-radius: 999px;
  transition: width 0.5s ease;
}

.upload-zone {
  position: relative;
  border: 2px dashed var(--border);
  border-radius: var(--radius);
  margin-bottom: 1rem;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.upload-zone--drag,
.upload-zone:hover {
  border-color: var(--text);
  background: var(--accent-soft);
}

.upload-zone__input {
  position: absolute;
  width: 0;
  height: 0;
  opacity: 0;
  pointer-events: none;
}

.upload-zone__inner {
  padding: 2rem 1rem;
  text-align: center;
}

.upload-zone__icon {
  display: inline-flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--text);
  margin-bottom: 0.75rem;
  font-size: 0.875rem;
}

.upload-zone__text {
  margin: 0 0 0.35rem;
  font-size: 0.9375rem;
}

.upload-zone__hint {
  margin: 0;
  font-size: 0.8125rem;
  color: var(--dim);
}

.upload-preview video {
  width: 100%;
  max-height: 180px;
  display: block;
  background: #000;
  border-radius: var(--radius-sm) var(--radius-sm) 0 0;
}

.upload-preview__meta {
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 0.65rem 0.75rem;
  font-size: 0.75rem;
  color: var(--muted);
  border-top: 1px solid var(--border);
}

.upload-preview__clear {
  width: 100%;
  padding: 0.5rem;
  background: transparent;
  border: none;
  border-top: 1px solid var(--border);
  color: var(--muted);
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: 0.8125rem;
}

.field {
  display: block;
  margin-bottom: 1rem;
}

.field__label {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  color: var(--muted);
  margin-bottom: 0.35rem;
  font-weight: 600;
}

.field__input {
  width: 100%;
  padding: 0.65rem 0.75rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 0.875rem;
}

.field__input:focus {
  outline: none;
  border-color: var(--text);
}

.proof-hint {
  margin: 0 0 0.75rem;
  font-size: 0.8125rem;
  color: var(--dim);
}

.proof-success {
  margin: 0 0 0.75rem;
  font-size: 0.875rem;
  color: var(--text);
  font-weight: 600;
  animation: fade-in 0.3s ease;
}

.proof-panel__hood {
  margin: 0 0 1.25rem;
  color: var(--muted);
  font-size: 0.8125rem;
}

/* How */
.how {
  width: min(100%, 720px);
  padding: 2.5rem 1.25rem 3rem;
  text-align: center;
}

.how__heading {
  margin: 0.35rem 0 1.75rem;
  font-size: clamp(1.35rem, 3.5vw, 1.75rem);
}

.how__steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}

.how__step {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  width: min(100%, 480px);
  text-align: left;
  padding: 1rem 1.1rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.how__num {
  color: var(--text);
  font-size: 0.875rem;
  flex-shrink: 0;
  font-weight: 700;
  letter-spacing: var(--heading-track);
}

.how__title {
  display: block;
  font-weight: 700;
  letter-spacing: var(--heading-track);
  margin-bottom: 0.25rem;
}

.how__desc {
  margin: 0;
  color: var(--muted);
  font-size: 0.875rem;
}

/* Footer links */
.footer {
  width: 100%;
  padding: 3rem 1.25rem 2rem;
  border-top: 1px solid var(--border);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer__logo {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  object-fit: cover;
  margin-bottom: 1.25rem;
}

.footer__links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 1rem;
}

.footer__links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.8125rem;
  font-weight: 500;
}

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

.footer__fine {
  margin: 0;
  font-size: 0.6875rem;
  color: var(--dim);
}

/* Docs */
.docs {
  width: min(100%, 920px);
  margin: 0 auto;
  padding: 2rem 1.25rem 3rem;
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .docs {
    grid-template-columns: 180px 1fr;
    align-items: start;
  }
}

.docs__nav {
  position: sticky;
  top: calc(var(--header-h) + 1rem);
}

.docs__nav-label {
  margin: 0 0 0.75rem;
  font-size: 0.625rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--dim);
  font-weight: 600;
}

.docs__nav nav {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.docs__nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
}

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

.docs__title {
  margin: 0.5rem 0 0.75rem;
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  line-height: 1.1;
}

.docs__lead {
  margin: 0 0 2rem;
  color: var(--muted);
  font-size: 1.0625rem;
  line-height: 1.6;
  max-width: 40rem;
}

.docs__section {
  margin-bottom: 2.5rem;
  scroll-margin-top: calc(var(--header-h) + 1rem);
}

.docs__heading {
  margin: 0 0 0.75rem;
  font-size: 1.25rem;
}

.docs__section p,
.docs__section li {
  color: var(--muted);
  line-height: 1.65;
  font-size: 0.9375rem;
}

.docs__section a {
  color: var(--text);
  font-weight: 500;
}

.docs__callout {
  margin-top: 1.25rem;
  padding: 1rem 1.15rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}

.docs__callout strong {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--text);
  font-size: 0.875rem;
}

.docs__callout p {
  margin: 0;
  font-size: 0.875rem;
}

.docs__steps {
  margin: 0;
  padding-left: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.docs__list {
  margin: 0.75rem 0 0;
  padding-left: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.docs__code {
  margin: 1.25rem 0 0;
  padding: 1rem 1.15rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow-x: auto;
}

.docs__code code {
  font-family: ui-monospace, 'Cascadia Code', monospace;
  font-size: 0.8125rem;
  color: var(--text);
  line-height: 1.55;
  white-space: pre;
}

.docs__muted {
  font-size: 0.875rem !important;
  color: var(--dim) !important;
}

.docs__table {
  width: 100%;
  margin-top: 1rem;
  border-collapse: collapse;
  font-size: 0.875rem;
}

.docs__table th {
  text-align: left;
  padding: 0.65rem 0.75rem 0.65rem 0;
  color: var(--dim);
  font-weight: 600;
  vertical-align: top;
  width: 7rem;
}

.docs__table td {
  padding: 0.65rem 0;
  color: var(--muted);
}

.docs__table code {
  font-size: 0.75rem;
  word-break: break-all;
}

.docs__faq {
  margin: 0;
}

.docs__faq dt {
  margin-top: 1rem;
  color: var(--text);
  font-weight: 600;
  font-size: 0.9375rem;
}

.docs__faq dt:first-child {
  margin-top: 0;
}

.docs__faq dd {
  margin: 0.35rem 0 0;
  color: var(--muted);
  font-size: 0.9375rem;
  line-height: 1.6;
}

.docs__footer-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

/* Modal + toast */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 2000;
}

.modal {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 2001;
  width: min(360px, calc(100% - 2rem));
  padding: 1.5rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.modal__title {
  margin: 0 0 0.5rem;
}

.modal__body {
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: 0.875rem;
}

.modal__actions {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.toast {
  position: fixed;
  bottom: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3000;
  padding: 0.65rem 1rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 0.8125rem;
  box-shadow: var(--shadow);
  max-width: calc(100% - 2rem);
  text-align: center;
}

.toast a {
  color: var(--text);
  font-weight: 600;
}

.toast--error {
  border-color: rgba(198, 40, 40, 0.35);
  color: var(--danger);
}

/* Mobile */
@media (max-width: 768px) {
  .header__balance {
    display: none;
  }

  .hood-panel,
  .proof-panel {
    top: auto;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: auto;
    max-height: 88vh;
    border-radius: var(--radius) var(--radius) 0 0;
    transform: translateY(100%);
    animation: slide-up 0.35s ease forwards;
  }

  @keyframes slide-up {
    to {
      transform: translateY(0);
    }
  }

  .hero {
    padding-top: 1.25rem;
  }
}

@media (max-width: 480px) {
  .header__actions {
    gap: 0.35rem;
  }

  .btn--primary {
    padding: 0.55rem 0.85rem;
    font-size: 0.75rem;
  }

  .wallet-pill {
    font-size: 0.6875rem;
    padding: 0.35rem 0.5rem;
  }

  .wallet-pill__chain {
    display: none;
  }
}
