/* ════════════════════════════════════════════════════════════════════════
   Apple-Music-style shell for the whole Sustainability Tools platform.
   ONE shared sidebar + always-visible logged-in user + account modal,
   injected on every page by am-shell.js. Reuses Predict Bangers tokens
   from styles.css; only the music-library pieces (.am-*) live here.
   ════════════════════════════════════════════════════════════════════════ */

/* Rail becomes a flex column so the account chip pins bottom-left,
   exactly like the Apple Music desktop account button. */
:root { scroll-behavior: auto; view-transition-name: none; }
html.am-route-pending,
html.am-route-pending * {
  cursor: progress !important;
}
html.am-route-pending .main-stage {
  opacity: 0.001;
}
.side-rail.am-rail { display: flex !important; flex-direction: column; gap: 14px; }
.am-rail-scroll { display: flex; flex-direction: column; gap: 14px; min-height: 0; overflow-y: auto; }
.access-page-shell .side-rail:not(.am-rail),
.access-page-shell .access-hero:not(.am-hero-x) {
  visibility: hidden;
}
.access-page-shell .side-rail.am-rail,
.access-page-shell .access-hero.am-hero-x {
  visibility: visible;
}
.am-rail .rail-nav a span, .am-rail .rail-actions a span { opacity: 0.5; }
.am-core-label { color: var(--green) !important; }
.am-rail .rail-nav a[aria-current="page"],
.am-rail .rail-actions a[aria-current="page"] { color: var(--text); border-color: var(--green-border); background: var(--green-dim); }

/* Account chip — bottom-left corner, visible at all times */
.am-account {
  margin-top: auto;
  display: flex; align-items: center; gap: 10px;
  width: 100%; text-align: left;
  background: var(--surface-2); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 10px 12px;
  color: var(--text); cursor: pointer;
  transition: border-color .15s ease, background .15s ease;
}
.am-account:hover { border-color: var(--border-hover); background: var(--surface-hover); }
.am-avatar {
  flex: 0 0 auto; width: 34px; height: 34px; border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--mono); font-size: .72rem; font-weight: 700; letter-spacing: .02em;
  color: #07120c; background: linear-gradient(135deg, var(--green), #2bb673);
}
.am-account[data-on="false"] .am-avatar { background: var(--surface-hover); color: var(--text-dim); }
.am-account-text { display: grid; gap: 1px; min-width: 0; }
.am-account-text strong { font-size: .86rem; line-height: 1.1; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.am-account-text small { font-size: .68rem; color: var(--text-dim); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.am-account .am-on-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--text-faint); margin-left: auto; flex: 0 0 auto; }
.am-account[data-on="true"] .am-on-dot { background: var(--green); box-shadow: 0 0 0 3px var(--green-dim); }

/* Discovery hero — playlist-style header */
.am-hero { display: flex; gap: 24px; align-items: flex-end; margin-bottom: 26px; flex-wrap: wrap; }
.am-cover {
  flex: 0 0 auto; width: 190px; height: 190px; border-radius: var(--radius-xl);
  background: radial-gradient(120% 120% at 30% 20%, rgba(74,222,128,.22), transparent 60%), var(--surface);
  border: 1px solid var(--border-mid);
  display: grid; place-items: center; position: relative; overflow: hidden;
}
.am-cover::after { content: ""; position: absolute; inset: 0; background: radial-gradient(60% 60% at 70% 80%, rgba(96,165,250,.14), transparent 70%); }
.am-cover i { width: 78px; height: 78px; color: var(--green); position: relative; z-index: 1; }
.am-hero-meta { flex: 1 1 320px; min-width: 0; }
.am-eyebrow { font-family: var(--mono); font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: var(--text-dim); margin: 0 0 8px; }
.am-title { font-family: var(--sans); font-size: clamp(2rem, 4vw, 3.1rem); line-height: 1.02; margin: 0 0 10px; font-weight: 800; }
.am-title .accent-green { color: var(--green); }
.am-sub { color: var(--text-muted); max-width: 56ch; margin: 0 0 18px; font-size: .96rem; }
.am-hero-actions { display: flex; flex-wrap: wrap; gap: 10px; }
.am-btn {
  display: inline-flex; align-items: center; gap: 8px;
  border-radius: 999px; padding: 11px 20px; font-weight: 700; font-size: .9rem;
  border: 1px solid var(--border-mid); background: var(--surface-2); color: var(--text);
  cursor: pointer; transition: transform .12s ease, border-color .15s ease, background .15s ease;
}
.am-btn:hover { border-color: var(--border-hover); }
.am-wallet-actions { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
.am-wallet-actions .am-btn { width: 100%; justify-content: center; min-width: 0; padding-inline: 12px; }
.am-btn-play { background: var(--green); color: #07120c; border-color: transparent; }
.am-btn-play:hover { transform: translateY(-1px); }
.am-btn-danger { color: #fecaca; border-color: rgba(248, 113, 113, .34); background: rgba(127, 29, 29, .22); }
.am-btn-danger:hover { border-color: rgba(248, 113, 113, .58); background: rgba(127, 29, 29, .3); }
.am-btn i { width: 17px; height: 17px; }

/* Section header w/ search */
.am-section { margin-bottom: 30px; }
.am-section-head { display: flex; align-items: center; justify-content: space-between; gap: 14px; margin-bottom: 12px; flex-wrap: wrap; }
.am-section-head h2 { font-family: var(--sans); font-size: 1.35rem; margin: 0; font-weight: 800; }
.am-section-head p { margin: 3px 0 0; color: var(--text-dim); font-size: .82rem; }
.am-tools { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.am-search { display: flex; align-items: center; gap: 8px; background: var(--surface); border: 1px solid var(--border); border-radius: 999px; padding: 8px 14px; min-width: 220px; }
.am-search i { width: 15px; height: 15px; color: var(--text-dim); }
.am-search input { background: none; border: none; outline: none; color: var(--text); font-family: var(--body); font-size: .85rem; width: 100%; }
.am-chip-btn { display: inline-flex; align-items: center; gap: 7px; cursor: pointer; background: var(--surface); border: 1px solid var(--border); color: var(--text-muted); border-radius: 999px; padding: 8px 13px; font-size: .8rem; font-weight: 600; }
.am-chip-btn:hover { border-color: var(--border-hover); color: var(--text); }
.am-chip-btn i { width: 14px; height: 14px; }

/* Filter segmented control */
.am-filters { display: inline-flex; background: var(--surface); border: 1px solid var(--border); border-radius: 999px; padding: 3px; gap: 2px; }
.am-filter { border: none; background: none; color: var(--text-dim); padding: 6px 14px; border-radius: 999px; font-size: .78rem; font-weight: 700; cursor: pointer; font-family: var(--body); }
.am-filter[aria-selected="true"] { background: var(--surface-hover); color: var(--text); }

/* Track list */
.am-list { display: grid; gap: 2px; }
.am-list-head, .am-row { display: grid; grid-template-columns: 46px minmax(0,1.7fr) minmax(0,1.1fr) 132px 116px; align-items: center; gap: 12px; }
.am-list-head { padding: 0 14px 8px; border-bottom: 1px solid var(--border); color: var(--text-dim); font-size: .68rem; letter-spacing: .08em; text-transform: uppercase; font-family: var(--mono); }
.am-list-head span:nth-child(4), .am-list-head span:nth-child(5) { text-align: right; }
.am-row { padding: 8px 14px; border-radius: var(--radius-md); transition: background .12s ease; position: relative; }
.am-row:hover { background: var(--surface-hover); }
.am-idx { color: var(--text-dim); font-family: var(--mono); font-size: .8rem; display: grid; place-items: center; }
.am-thumb { width: 38px; height: 38px; border-radius: 8px; display: grid; place-items: center; border: 1px solid var(--border-mid); flex: 0 0 auto; }
.am-thumb i { width: 18px; height: 18px; }
.am-thumb[data-kind="subscription"] { background: var(--purple-dim); color: var(--purple); }
.am-thumb[data-kind="raise"] { background: var(--green-dim); color: var(--green); }
.am-cell-name { display: flex; align-items: center; gap: 12px; min-width: 0; }
.am-name-text { min-width: 0; }
.am-name-text strong { display: block; font-size: .92rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.am-name-text small { display: block; font-size: .76rem; color: var(--text-dim); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.am-cell-by { display: flex; align-items: center; gap: 7px; min-width: 0; flex-wrap: wrap; }
.am-cell-amt { text-align: right; font-family: var(--mono); font-size: .86rem; }
.am-cell-amt small { display: block; color: var(--text-dim); font-size: .68rem; }
.am-cell-act { text-align: right; }
.am-row-act { display: inline-flex; align-items: center; gap: 6px; border-radius: 999px; padding: 7px 14px; font-size: .78rem; font-weight: 700; cursor: pointer; background: var(--green); color: #07120c; border: 1px solid transparent; }
.am-row-act:hover { filter: brightness(1.05); }
.am-row-act.is-ghost { background: transparent; color: var(--text); border-color: var(--border-mid); }
.am-row-act i { width: 13px; height: 13px; }

.am-pill { display: inline-flex; align-items: center; gap: 5px; padding: 2px 9px; border-radius: 999px; border: 1px solid var(--border); font-size: .68rem; color: var(--text-muted); }
.am-pill[data-tone="builder"], .am-pill[data-tone="vouch"] { color: var(--green); border-color: var(--green-border); }
.am-pill[data-tone="collector"] { color: #fbbf24; border-color: rgba(251,191,36,.5); }
.am-pill[data-tone="glyph"] { color: #a7f3d0; border-color: rgba(74,222,128,.45); }
.am-pill[data-tone="slash"] { color: var(--red); border-color: var(--red-border); }

.am-empty { border: 1px dashed var(--border-mid); border-radius: var(--radius-lg); padding: 26px; text-align: center; color: var(--text-muted); }
.am-empty strong { display: block; color: var(--text); margin-bottom: 6px; }

/* Account modal */
.am-modal-backdrop { position: fixed; inset: 0; background: rgba(0,0,0,.62); backdrop-filter: blur(6px); display: grid; place-items: center; z-index: 60; padding: 20px; }
.am-modal { width: min(560px, 100%); max-height: 88vh; overflow-y: auto; background: var(--surface); border: 1px solid var(--border-mid); border-radius: var(--radius-xl); padding: 24px; box-shadow: 0 30px 80px rgba(0,0,0,.6); }
.am-modal-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.am-modal-head h2 { margin: 0; font-family: var(--sans); font-size: 1.6rem; font-weight: 800; }
.am-modal-done { background: var(--green); color: #07120c; border: none; border-radius: 999px; padding: 9px 20px; font-weight: 700; cursor: pointer; }
.am-id-card { display: flex; align-items: center; gap: 14px; background: var(--surface-2); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 14px; margin-bottom: 14px; }
.am-id-card .am-avatar { width: 46px; height: 46px; font-size: .92rem; }
.am-id-meta { display: grid; gap: 2px; min-width: 0; }
.am-id-meta strong { font-size: 1rem; }
.am-id-meta small { color: var(--text-dim); font-family: var(--mono); font-size: .72rem; overflow-wrap: anywhere; }
.am-modal-link { display: flex; align-items: center; gap: 10px; padding: 12px 12px; border-radius: var(--radius-md); color: var(--text); border: 1px solid transparent; }
.am-modal-link:hover { background: var(--surface-hover); }
.am-modal-link i { width: 17px; height: 17px; color: var(--text-muted); }
.am-modal-link .chev { margin-left: auto; color: var(--text-faint); }
.am-divider { height: 1px; background: var(--border); margin: 14px 0; }
.am-profile-form { display: grid; gap: 10px; }
.am-field { display: grid; gap: 5px; }
.am-field span { font-size: .74rem; color: var(--text-muted); }
.am-field input, .am-field select, .am-field textarea { background: var(--surface-2); border: 1px solid var(--border); border-radius: var(--radius-md); color: var(--text); padding: 9px 11px; font-family: var(--body); font-size: .86rem; outline: none; }
.am-field textarea { resize: vertical; min-height: 58px; }
.am-proof-rows { display: grid; gap: 8px; }
.am-proof-row {
  display: grid; grid-template-columns: 118px minmax(0, 1.35fr) minmax(0, 1fr) minmax(0, 1fr) 34px;
  gap: 7px; align-items: end; padding: 9px; border: 1px solid var(--border); border-radius: var(--radius-md);
  background: rgba(255,255,255,.025);
}
.am-proof-row .am-field { min-width: 0; }
.am-proof-row .am-field input, .am-proof-row .am-field select { width: 100%; min-width: 0; }
.am-proof-remove {
  width: 34px; height: 34px; display: inline-grid; place-items: center; border-radius: var(--radius-md);
  border: 1px solid rgba(248, 113, 113, .28); color: #fecaca; background: rgba(127, 29, 29, .18); cursor: pointer;
}
.am-proof-remove i { width: 15px; height: 15px; }
.am-proof-empty { border: 1px dashed var(--border); border-radius: var(--radius-md); padding: 10px 12px; color: var(--text-dim); font-size: .8rem; }
.am-proof-add { justify-content: center; width: fit-content; }
.am-status { font-size: .8rem; color: var(--text-dim); margin-top: 6px; }

@media (max-width: 900px) {
  .am-list-head { display: none; }
  .am-row { grid-template-columns: 38px minmax(0,1fr) auto; row-gap: 6px; }
  .am-cell-by { display: none; }
  .am-cell-amt { grid-column: 2; text-align: left; }
  .am-cell-act { grid-column: 3; grid-row: 1 / span 2; }
  .am-proof-row { grid-template-columns: 1fr; }
  .am-proof-remove { width: 100%; }
}

/* ════════════════════════════════════════════════════════════════════════
   COHERENCE LAYER — re-skins the shared access.css / styles.css chrome that
   every subpage uses so the whole platform matches the music-app look.
   Loaded after access.css on every page (source-order wins). No JS touched,
   so all existing page capabilities stay intact — this is purely visual.
   ════════════════════════════════════════════════════════════════════════ */

/* Subpage hero: trade the loud orange glow for the calm green library look. */
.access-hero {
  background:
    radial-gradient(120% 130% at 88% -10%, rgba(74, 222, 128, 0.12), transparent 55%),
    linear-gradient(180deg, var(--surface), var(--bg-alt));
  border-color: var(--border-mid);
}
.access-title { font-size: clamp(1.7rem, 3.2vw, 2.8rem); line-height: 1.0; }
.predict-lead { color: var(--text-muted); }
.predict-kicker { color: var(--text-dim); }

/* Stat cards → subtle lifted chips like the am surfaces. */
.predict-stat { background: var(--surface-2); border-radius: var(--radius-lg); }

/* Panels + section titles align with the am cards. */
.access-panel { border-radius: var(--radius-xl); }
.access-section-title { font-size: clamp(1.2rem, 2vw, 1.6rem); }

/* Fields → am field surface + green focus ring. */
.access-input { background: var(--surface-2); border-color: var(--border); border-radius: var(--radius-md); }
.access-input:focus, .access-input:focus-visible { border-color: var(--green-border); outline: none; }

/* Rounded controls everywhere (radius only — never touch button backgrounds,
   so .access-action-primary / -danger keep their colour). */
.access-action, .access-icon-button { border-radius: 999px; }
.access-pill { border-radius: 999px; }
.primary-cta, .secondary-cta { border-radius: 999px; }

/* Empty states + content cards round + lift consistently. */
.access-empty { border-radius: var(--radius-lg); }
.access-plan-card, .access-route-card, .access-badge-card, .access-perk-card,
.access-subscription-card, .access-status-card, .access-vouch-card, .dir-card, .tbp-card {
  border-radius: var(--radius-lg);
}

/* ════════════════════════════════════════════════════════════════════════
   UP-TO-DOWN ONLY. No side-by-side panels, stat rows, or field grids on any
   sustainability page. Every multi-column container collapses to one column.
   (Button rows like .cta-row / .am-tools stay horizontal — those are controls,
   not stacked "functions", and match the Apple Music play/shuffle row.)
   ════════════════════════════════════════════════════════════════════════ */
.access-page-shell .main-stage .access-grid,
.access-page-shell .main-stage .access-tool-grid,
.access-page-shell .main-stage .access-vouch-grid,
.access-page-shell .main-stage .access-operator-grid,
.access-page-shell .main-stage .access-form-section-grid,
.access-page-shell .main-stage .access-vouch-list,
.access-page-shell .main-stage .access-trust-log-grid,
.access-page-shell .main-stage .predict-stats-row,
.access-page-shell .main-stage .access-stats-row {
  grid-template-columns: 1fr !important;
}

/* ════════════════════════════════════════════════════════════════════════
   TYPOGRAPHY + SIZING UNIFICATION — one coherent scale across the home
   dashboard, the account modal, and every subpage. (Loaded last → wins.)
   ════════════════════════════════════════════════════════════════════════ */

/* Hero titles: identical scale to the dashboard's .am-title everywhere. */
.access-page-shell .main-stage .access-title {
  font-size: clamp(2rem, 4vw, 3.1rem) !important;
  line-height: 1.02;
}
.access-page-shell .main-stage .predict-kicker,
.access-page-shell .main-stage .am-eyebrow {
  font-size: 0.72rem; letter-spacing: 0.12em;
}

/* Section headings: one size, matching .am-section-head h2. */
.access-page-shell .main-stage .access-section-title,
.access-page-shell .main-stage .am-section-head h2 {
  font-size: 1.4rem !important;
  line-height: 1.15;
}

/* Body copy + labels: one size everywhere. */
.access-page-shell .main-stage .predict-lead,
.access-page-shell .main-stage .am-sub { font-size: 1rem; line-height: 1.5; max-width: 64ch; }
.access-page-shell .main-stage .access-section-copy { font-size: 0.92rem; line-height: 1.5; }
.access-page-shell .main-stage .access-label { font-size: 0.7rem; letter-spacing: 0.08em; }

/* Panels: consistent padding + radius so column widths read the same. */
.access-page-shell .main-stage .access-panel { padding: 22px; border-radius: var(--radius-xl); }
.access-page-shell .main-stage .raise-overview-panel { max-width: none; }
.access-page-shell .main-stage .access-stats-row,
.access-page-shell .main-stage .predict-stats-row { gap: 10px; }
.access-page-shell .main-stage .predict-stat { padding: 14px 16px; }
.access-page-shell .main-stage .stat-value-big { font-size: 1.5rem; letter-spacing: -0.02em; }

/* Account modal — pull the scattered text into one tight rhythm. */
.am-modal { padding: 22px; }
.am-modal-head { margin-bottom: 16px; }
.am-modal-head h2 { font-size: 1.5rem; }
.am-id-card { padding: 13px; gap: 12px; }
.am-id-meta strong { font-size: 0.98rem; }
.am-id-meta small { font-family: var(--body); font-size: 0.8rem; color: var(--text-muted); letter-spacing: 0; }
.am-divider { margin: 12px 0; }
.am-modal-link { font-size: 0.92rem; font-weight: 600; padding: 11px 12px; }
.am-modal-link i { width: 16px; height: 16px; }
.am-status { font-size: 0.8rem; }
.am-field span { font-size: 0.72rem; }

/* ════════════════════════════════════════════════════════════════════════
   UNIVERSAL CHAIN SWITCH (bottom-left, grouped with the account chip) +
   one shared hero template (cover tile → header → buttons) on every page.
   ════════════════════════════════════════════════════════════════════════ */
.am-rail-bottom { margin-top: auto; display: grid; gap: 8px; }
.am-rail-bottom .am-account { margin-top: 0; }
.am-chain-wrap { display: grid; gap: 5px; }
.am-chain-label { margin: 0; padding: 0 4px; font: 700 .6rem/1 var(--mono); letter-spacing: .12em; text-transform: uppercase; color: var(--text-faint); }
.am-chain { display: flex; gap: 4px; background: var(--surface); border: 1px solid var(--border); border-radius: 999px; padding: 3px; }
.am-chain button { flex: 1; display: inline-flex; align-items: center; justify-content: center; gap: 5px; border: none; background: none; color: var(--text-dim); font: 700 .68rem/1 var(--body); padding: 8px 6px; border-radius: 999px; cursor: pointer; white-space: nowrap; }
.am-chain button i { width: 13px; height: 13px; }
.am-chain button[aria-selected="true"] { background: var(--surface-hover); color: var(--text); }
.am-chain button[data-chain="curtis"][aria-selected="true"] { color: var(--green); }
.am-chain button[data-chain="apechain"][aria-selected="true"] { color: var(--blue); }

/* Same hero on every subpage as the dashboard: a REAL cover tile (injected by
   am-shell.js as .am-cover) beside the header. We use the .am-hero-x wrapper
   class — never ::before — because access.css already owns .access-hero::before
   (a decorative absolute line); reusing it pins the tile behind the title. */
.access-page-shell .main-stage .access-hero.am-hero-x {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 24px;
}
.am-hero-x > .am-cover { order: 0; }
.am-hero-x > .access-hero-copy { order: 1; flex: 1 1 360px; min-width: 0; }
.am-hero-x > *:not(.am-cover):not(.access-hero-copy) { order: 2; flex-basis: 100%; }

/* The raises page's network switch now lives in the universal bottom-left chip. */
.raise-page-shell .raise-network-control { display: none; }

/* Keep the bottom group (chain + account) pinned; only the nav scrolls. */
.side-rail.am-rail { overflow: hidden; }
.am-rail.side-rail .am-rail-scroll { flex: 1 1 auto; }

/* Stable native-feeling motion: no route-level fades or page-entry transforms.
   Page switches are static HTML navigations, so global animations cause flashes
   when am-shell.js replaces the rail and injects the hero cover. Keep motion
   scoped to controls that the user is directly pressing. */
.am-btn, .am-chip-btn, .am-row-act, .am-filter, .am-account, .am-chain button,
.access-action, .access-icon-button, .primary-cta, .secondary-cta, .am-modal-link,
.am-rail .rail-nav a, .am-rail .rail-actions a, .am-row, .am-cover {
  transition: background-color .14s ease, border-color .14s ease, color .14s ease,
              box-shadow .14s ease, filter .14s ease;
}

/* Account modal: the only overlay transition, kept short and local. */
#am-modal:not([hidden]) { animation: am-fade 150ms ease both; }
#am-modal:not([hidden]) .am-modal { animation: am-pop 180ms cubic-bezier(.16, 1, .3, 1) both; }
@keyframes am-fade { from { opacity: 0; } }
@keyframes am-pop { from { opacity: 0; transform: translateY(4px) scale(.99); } to { opacity: 1; transform: none; } }

/* Always respect reduced motion. */
@media (prefers-reduced-motion: reduce) {
  #am-modal, #am-modal .am-modal { animation: none !important; }
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: 0.001ms !important; }
}

/* ════ Prominent figure-label verification (claims unverified until approved) ════ */
.am-fig[data-verified="false"] { color: var(--text-dim); border-style: dashed; }
.am-fig[data-verified="true"] { color: var(--green); border-color: var(--green-border); }
.am-fig-self { font-size: .8rem; color: var(--text-muted); margin-top: 8px; }
.am-verify-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 2px; }
.am-verify-head strong { font-family: var(--sans); font-size: 1.05rem; }
.am-verify-list { display: grid; gap: 8px; margin-top: 8px; }
.am-verify-row { display: flex; align-items: center; justify-content: space-between; gap: 10px; border: 1px solid var(--border); border-radius: var(--radius-md); padding: 10px 12px; }
.am-verify-meta { min-width: 0; }
.am-verify-meta strong { display: block; font-size: .9rem; }
.am-verify-meta small { display: block; color: var(--text-dim); font: 600 .72rem/1.3 var(--mono); overflow-wrap: anywhere; }
.am-verify-acts { display: flex; gap: 6px; flex: 0 0 auto; }
.am-vbtn { border-radius: 999px; padding: 7px 13px; font-weight: 700; font-size: .76rem; cursor: pointer; border: 1px solid var(--border-mid); background: var(--surface-2); color: var(--text); }
.am-vbtn-ok { background: var(--green); color: #07120c; border-color: transparent; }
.am-vbtn-no { color: var(--red); border-color: var(--red-border); background: transparent; }
