/* VoteDesk — fintech/infra UI (Utila / Openfort / Ankr influence) · TRON red */
:root {
  --red: #e1062c;
  --red-dim: rgba(225, 6, 44, 0.1);
  --ink: #0a0a0b;
  --ink-2: #3a3a3f;
  --mute: #6e6e76;
  --line: #e6e6ea;
  --fog: #f4f4f6;
  --paper: #ffffff;
  --ok: #15803d;
  --bg: var(--fog);
  --bg-elev: var(--paper);
  --text: var(--ink);
  --text-mut: var(--mute);
  --border: var(--line);
  --nav: rgba(244, 244, 246, 0.92);
  --accent: var(--red);
  --font: "IBM Plex Sans", system-ui, sans-serif;
  --display: "IBM Plex Sans", system-ui, sans-serif;
  --mono: "IBM Plex Mono", ui-monospace, monospace;
  --wide: 1120px;
  --nav-h: 3.75rem;
  --r: 6px;
  --ease: cubic-bezier(0.25, 0.1, 0.25, 1);
}

[data-theme="dark"] {
  --bg: #09090b;
  --bg-elev: #121214;
  --text: #f4f4f5;
  --text-mut: #a1a1aa;
  --border: #27272a;
  --nav: rgba(9, 9, 11, 0.92);
  --fog: #09090b;
  --paper: #121214;
  --line: #27272a;
  --ink: #f4f4f5;
  --mute: #a1a1aa;
  --ok: #4ade80;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 15px;
  color: var(--text);
  background: var(--bg);
  line-height: 1.5;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: var(--red);
  text-underline-offset: 0.12em;
}

a:hover {
  color: var(--text);
}

code,
.mono {
  font-family: var(--mono);
  font-size: 0.84em;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  z-index: 100;
  background: var(--red);
  color: #fff;
  padding: 0.5rem 0.85rem;
}

.skip-link:focus {
  left: 0.5rem;
  top: 0.5rem;
}

.wrap {
  width: min(100% - 2rem, 680px);
  margin-inline: auto;
}

.wrap--wide {
  width: min(100% - 2rem, var(--wide));
}

/* —— Nav —— */
.nav {
  position: sticky;
  top: 0;
  z-index: 60;
  background: color-mix(in srgb, var(--nav) 92%, var(--red) 8%);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid color-mix(in srgb, var(--border) 70%, var(--red) 30%);
  padding-top: env(safe-area-inset-top, 0);
  box-shadow: 0 10px 30px color-mix(in srgb, var(--red) 8%, transparent);
}

.nav__inner {
  width: min(100% - 1.5rem, var(--wide));
  margin-inline: auto;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: var(--text);
  flex-shrink: 0;
}

.brand:hover {
  color: var(--text);
}

.brand__mark {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  border-radius: 6px;
}

h1,
h2,
.hero-strip h1,
.split__copy h2,
.page-hero h1 {
  font-family: var(--font);
  font-weight: 700;
}

.brand__text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
  gap: 0.05rem;
}

.brand__name {
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
}

.brand__dot {
  display: inline-block;
  width: 0.32em;
  height: 0.32em;
  background: var(--red);
  border-radius: 50%;
  flex-shrink: 0;
  align-self: flex-end;
  margin-bottom: 0.22em;
  margin-left: 0.08em;
}

.brand__tag {
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-mut);
}

.nav__links {
  display: none;
  gap: 0 1.1rem;
  margin-left: 0.5rem;
  flex: 1;
  justify-content: center;
}

.nav__links a {
  color: var(--text-mut);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.nav__links a:hover,
.nav__links a[aria-current="page"] {
  color: var(--text);
}

.nav__right {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.nav__cta {
  display: none !important;
  white-space: nowrap;
  border-radius: 999px;
  padding-inline: 0.95rem;
  box-shadow: 0 0 0 1px color-mix(in srgb, var(--red) 35%, transparent),
    0 8px 22px color-mix(in srgb, var(--red) 28%, transparent);
}

.nav__cta:hover {
  filter: brightness(1.06);
}

.page-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 1.5rem 0 0;
}

.status-out {
  margin: 0 0 1rem;
}

.status-msg {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-mut);
}

.status-msg--err {
  color: var(--red);
}

.status-msg--ok {
  color: var(--ok, #22c55e);
}

.status-live {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-mut);
  font-family: var(--mono);
}

.status-live__dot {
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--ok, #22c55e);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--ok, #22c55e) 25%, transparent);
}

.mobile-nav__cta {
  margin-top: 0.5rem;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  background: var(--red) !important;
  color: #fff !important;
  border-radius: 999px;
  font-weight: 600;
}

.lang-dd {
  position: relative;
  z-index: 70;
}

.lang-dd__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  height: 2.25rem;
  padding: 0 0.65rem;
  border: 1px solid var(--border);
  border-radius: var(--r);
  background: var(--bg-elev);
  color: var(--text);
  font: inherit;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
}

.lang-dd__btn:hover,
.lang-dd.is-open .lang-dd__btn {
  border-color: var(--text-mut);
}

.lang-dd__menu {
  display: none;
  position: absolute;
  right: 0;
  top: calc(100% + 0.3rem);
  z-index: 200;
  min-width: 9.5rem;
  margin: 0;
  padding: 0.25rem;
  list-style: none;
  border: 1px solid var(--border);
  border-radius: var(--r);
  background: var(--bg-elev);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.lang-dd.is-open .lang-dd__menu,
.lang-dd__menu:not([hidden]) {
  display: block;
}

.lang-dd__menu[hidden] {
  display: none !important;
}

.lang-dd__menu a {
  display: block;
  padding: 0.45rem 0.6rem;
  border-radius: 4px;
  color: var(--text);
  text-decoration: none;
  font-size: 0.85rem;
}

.lang-dd__menu a:hover,
.lang-dd__menu a[aria-current="true"] {
  background: var(--red-dim);
  color: var(--red);
}

.icon-btn {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: var(--r);
  border: 1px solid var(--border);
  background: var(--bg-elev);
  color: var(--text);
  cursor: pointer;
  display: grid;
  place-items: center;
  font-size: 0.9rem;
}

.burger {
  display: inline-grid;
  place-content: center;
  gap: 4px;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: var(--r);
  border: 1px solid var(--border);
  background: var(--bg-elev);
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
  color: var(--text);
}

.burger span {
  width: 16px;
  height: 2px;
  background: currentColor;
  margin-inline: auto;
  display: block;
  border-radius: 1px;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  padding: 0.5rem 1.25rem 1rem;
  border-top: 1px solid var(--border);
  background: var(--bg);
}

.mobile-nav[hidden] {
  display: none !important;
}

.mobile-nav a {
  color: var(--text);
  text-decoration: none;
  font-weight: 500;
  min-height: 44px;
  display: flex;
  align-items: center;
}

@media (min-width: 920px) {
  .nav__links {
    display: flex;
  }

  .nav__cta {
    display: inline-flex !important;
  }

  .burger,
  .mobile-nav {
    display: none !important;
  }
}

@media (min-width: 1100px) {
  .nav__links {
    gap: 0 1.25rem;
  }
}

/* —— Buttons —— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  min-height: 2.5rem;
  padding: 0.5rem 1rem;
  border-radius: var(--r);
  border: 1px solid transparent;
  font-family: var(--font);
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.15s var(--ease), border-color 0.15s var(--ease), color 0.15s var(--ease);
}

.btn:hover {
  filter: none;
}

.btn:disabled,
.btn[disabled] {
  opacity: 0.4;
  cursor: not-allowed;
}

/* Table Vote dark + not-allowed until wallet connected (Vote from wallet stays red/active) */
html:not(.is-wallet-connected) .sr-table button.btn--primary.xmrx6xzf,
.sr-table button.btn--primary.xmrx6xzf:disabled,
.sr-table button.btn--primary.xmrx6xzf[disabled] {
  background: #2a2a2e;
  border-color: #3a3a40;
  color: #8a8a93;
  opacity: 1;
  box-shadow: none;
  filter: none;
  cursor: not-allowed;
}

html:not(.is-wallet-connected) .sr-table button.btn--primary.xmrx6xzf:hover,
.sr-table button.btn--primary.xmrx6xzf:disabled:hover {
  cursor: not-allowed;
  filter: none;
  background: #2a2a2e;
  color: #8a8a93;
}

html[data-theme="light"]:not(.is-wallet-connected) .sr-table button.btn--primary.xmrx6xzf,
html[data-theme="light"] .sr-table button.btn--primary.xmrx6xzf:disabled {
  background: #d8d8de;
  border-color: #c4c4cc;
  color: #6b6b73;
}

html[data-theme="light"]:not(.is-wallet-connected) .sr-table button.btn--primary.xmrx6xzf:hover,
html[data-theme="light"] .sr-table button.btn--primary.xmrx6xzf:disabled:hover {
  background: #d8d8de;
  color: #6b6b73;
  cursor: not-allowed;
}

.btn--primary {
  background: var(--red);
  color: #fff;
}

.btn--primary:hover {
  color: #fff;
  background: #c40526;
}

.btn--ghost {
  background: transparent;
  border-color: var(--border);
  color: var(--text);
}

.btn--ghost:hover {
  border-color: var(--text-mut);
  color: var(--text);
}

.btn--sm {
  min-height: 2rem;
  padding: 0.3rem 0.7rem;
  font-size: 0.8rem;
}

.btn--block {
  width: 100%;
}

.live-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-mut);
  font-family: var(--mono);
}

.live-pill__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--red);
}

/* —— Hero —— */
.hero-strip {
  padding: 2.25rem 0 0.25rem;
}

.hero-strip__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.hero-strip h1 {
  margin: 0 0 0.4rem;
  font-size: clamp(1.5rem, 3vw, 1.85rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.2;
}

.hero-strip p {
  margin: 0;
  color: var(--text-mut);
  max-width: 38rem;
  font-size: 0.95rem;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

@media (min-width: 800px) {
  .stats-row {
    grid-template-columns: repeat(4, 1fr);
  }
}

.stat-card {
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 0.75rem 0.85rem;
}

.stat-card__label {
  display: block;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-mut);
  margin-bottom: 0.25rem;
  font-family: var(--mono);
}

.stat-card__value {
  font-size: 1.05rem;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  font-family: var(--mono);
}

/* —— Desk —— */
.desk-layout {
  display: grid;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

@media (min-width: 980px) {
  .desk-layout {
    grid-template-columns: 1fr 300px;
    align-items: start;
  }
}

@media (max-width: 979px) {
  html {
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
  }

  body {
    -webkit-font-smoothing: subpixel-antialiased;
  }

  .wrap,
  .wrap--wide {
    width: min(100% - 1.25rem, var(--wide));
    margin-inline: auto;
  }

  #desk .panel,
  #desk .desk-layout,
  #desk .side-card {
    width: 100%;
    max-width: 100%;
    margin-inline: 0;
    box-sizing: border-box;
  }

  .desk-layout {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }

  .table-scroll {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    overscroll-behavior-x: contain;
    margin-inline: -0.15rem;
  }

  /* Mobile SR table: Rank · SR · Votes · Share — rest in detail sheet */
  .sr-table {
    table-layout: fixed;
    width: 100%;
    font-size: 0.78rem;
  }

  .sr-table th,
  .sr-table td {
    padding: 0.5rem 0.25rem;
  }

  .sr-table th:nth-child(1),
  .sr-table td:nth-child(1) {
    width: 2.4rem;
  }

  .sr-table th:nth-child(3),
  .sr-table td:nth-child(3) {
    width: 4.4rem;
    font-family: var(--mono);
    font-variant-numeric: tabular-nums;
  }

  .sr-table th:nth-child(4),
  .sr-table td:nth-child(4) {
    width: 3.6rem;
    font-family: var(--mono);
    font-variant-numeric: tabular-nums;
  }

  /* Hide Brokerage, APR, Vote — tap row for full details */
  .sr-table th:nth-child(5),
  .sr-table td:nth-child(5),
  .sr-table th:nth-child(6),
  .sr-table td:nth-child(6),
  .sr-table th:last-child,
  .sr-table td:last-child {
    display: none;
  }

  .sr-table tbody tr {
    cursor: pointer;
  }

  .rank-badge {
    width: 1.35rem;
    height: 1.35rem;
    font-size: 0.62rem;
  }

  .sr-who {
    gap: 0.4rem;
    min-width: 0;
  }

  .sr-avatar {
    width: 1.5rem;
    height: 1.5rem;
  }

  .sr-who > span:last-child {
    min-width: 0;
    overflow: hidden;
  }

  .sr-who strong {
    font-size: 0.78rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .sr-who code {
    display: none;
  }

  .panel__body {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }

  .table-foot {
    flex-direction: column;
    align-items: stretch;
    gap: 0.55rem;
  }

  .pager {
    justify-content: center;
  }

  .side-card[data-sr-sheet] {
    display: none;
  }

  .side-card[data-sr-sheet].is-open {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 90;
    margin: 0;
    border-radius: 0;
    border: none;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    background: var(--bg);
    max-width: none;
    width: 100%;
  }

  .side-card[data-sr-sheet].is-open .panel__body {
    max-width: 28rem;
    margin: 0 auto;
    padding: 1rem 1.1rem 2rem;
  }

  .sr-sheet-back {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    margin: 0 0 0.85rem;
    padding: 0.45rem 0.65rem;
    border: 1px solid var(--border);
    border-radius: var(--r-sm, 8px);
    background: var(--bg-elev);
    color: var(--text);
    font: inherit;
    font-size: 0.85rem;
    cursor: pointer;
  }

  .sr-sheet-back:hover {
    border-color: var(--red);
  }

  html.is-sr-sheet-open,
  html.is-sr-sheet-open body {
    overflow: hidden;
    touch-action: none;
  }

  .phone {
    animation: none;
  }
}

@media (min-width: 980px) {
  .sr-sheet-back {
    display: none !important;
  }
}

.panel {
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
}

.panel__head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 0.85rem 1rem;
  border-bottom: 1px solid var(--border);
}

.panel__head h2 {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 600;
}

.panel__sub {
  margin: 0.15rem 0 0;
  font-size: 0.8rem;
  color: var(--text-mut);
}

.panel__body {
  padding: 0.85rem 1rem 1rem;
}

.desk-tabs {
  display: flex;
  gap: 0;
  border-bottom: 1px solid var(--border);
  background: var(--bg);
}

.desk-tabs button {
  flex: 1;
  min-height: 2.5rem;
  border: 0;
  border-bottom: 2px solid transparent;
  background: transparent;
  color: var(--text-mut);
  font-family: var(--font);
  font-weight: 600;
  font-size: 0.8rem;
  cursor: pointer;
  margin-bottom: -1px;
}

.desk-tabs button.is-active {
  color: var(--text);
  border-bottom-color: var(--red);
  background: var(--bg-elev);
}

.toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
  margin-bottom: 0.75rem;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem;
}

.chip {
  min-height: 1.85rem;
  padding: 0.2rem 0.55rem;
  border-radius: var(--r);
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text-mut);
  font-family: var(--font);
  font-size: 0.75rem;
  font-weight: 600;
  cursor: pointer;
}

.chip.is-active {
  border-color: var(--red);
  color: var(--red);
  background: var(--red-dim);
}

.search {
  flex: 1;
  min-width: 11rem;
  min-height: 2.35rem;
  padding: 0.4rem 0.7rem;
  border-radius: var(--r);
  border: 1px solid var(--border);
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: 0.875rem;
}

.search:focus {
  outline: 1px solid var(--red);
  outline-offset: 0;
}

.sr-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.82rem;
}

.sr-table th {
  text-align: left;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-mut);
  padding: 0.4rem 0.35rem;
  border-bottom: 1px solid var(--border);
  font-family: var(--mono);
}

.sr-table td {
  padding: 0.6rem 0.35rem;
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
}

.sr-table tr {
  cursor: pointer;
}

.sr-table tr:hover,
.sr-table tr.is-selected {
  background: var(--red-dim);
}

.rank-badge {
  display: inline-grid;
  place-items: center;
  width: 1.45rem;
  height: 1.45rem;
  border-radius: 3px;
  background: var(--red);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  font-family: var(--mono);
}

.sr-who {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.sr-avatar {
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 3px;
  background: var(--bg);
  border: 1px solid var(--border);
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 0.7rem;
  color: var(--red);
  flex-shrink: 0;
  font-family: var(--mono);
  overflow: hidden;
}

.sr-avatar--img {
  padding: 0;
  border: 0;
  background: transparent;
}

.sr-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.sr-who strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
}

.sr-who code {
  color: var(--text-mut);
  font-size: 0.72rem;
}

.apr {
  color: var(--ok);
  font-weight: 600;
  font-family: var(--mono);
}

.table-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.table-foot {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.5rem;
  align-items: center;
  margin-top: 0.65rem;
  font-size: 0.75rem;
  color: var(--text-mut);
  font-family: var(--mono);
}

.pager {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem;
  align-items: center;
}

.pager button {
  min-width: 2rem;
  min-height: 2rem;
  border-radius: 6px;
  border: 1px solid var(--border);
  background: var(--bg-elev);
  color: var(--text);
  cursor: pointer;
  font-family: var(--mono);
  font-size: 0.78rem;
  font-weight: 600;
  transition: border-color 0.15s var(--ease), color 0.15s var(--ease), background 0.15s var(--ease);
}

.pager button:hover:not(:disabled) {
  border-color: var(--red);
  color: var(--red);
}

.pager button:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.pager button.is-active {
  border-color: var(--red);
  background: color-mix(in srgb, var(--red) 14%, var(--bg-elev));
  color: var(--red);
}

.pager__gap {
  padding: 0 0.15rem;
  color: var(--text-mut);
  font-family: var(--mono);
  font-size: 0.75rem;
}

.side-card h3 {
  margin: 0 0 0.85rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-mut);
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-family: var(--mono);
}

.sel-sr {
  display: flex;
  gap: 0.65rem;
  align-items: center;
  margin-bottom: 0.85rem;
}

.sel-sr__avatar {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 3px;
  background: var(--red-dim);
  color: var(--red);
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 1rem;
  font-family: var(--mono);
  overflow: hidden;
  flex-shrink: 0;
}

.sel-sr__avatar--img {
  padding: 0;
  background: transparent;
  border: 1px solid var(--border);
}

.sel-sr__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.sel-sr__name {
  margin: 0;
  font-weight: 600;
  font-size: 0.95rem;
}

.badge {
  display: inline-block;
  margin-top: 0.2rem;
  padding: 0.1rem 0.4rem;
  border-radius: 3px;
  background: var(--red-dim);
  color: var(--red);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-family: var(--mono);
}

.mini-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.4rem;
  margin-bottom: 0.85rem;
}

.mini-stat {
  padding: 0.5rem 0.55rem;
  border-radius: var(--r);
  border: 1px solid var(--border);
  background: var(--bg);
}

.mini-stat span {
  display: block;
  font-size: 0.62rem;
  color: var(--text-mut);
  margin-bottom: 0.15rem;
  font-family: var(--mono);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.mini-stat strong {
  font-size: 0.85rem;
  font-weight: 600;
  font-family: var(--mono);
}

.field {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  margin-bottom: 0.75rem;
}

.field label {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--text-mut);
  font-family: var(--mono);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.field input {
  min-height: 2.35rem;
  padding: 0.4rem 0.65rem;
  border-radius: var(--r);
  border: 1px solid var(--border);
  background: var(--bg);
  color: var(--text);
  font-family: var(--mono);
  font-size: 0.875rem;
}

.field__hint,
.side-note {
  margin: 0;
  font-size: 0.75rem;
  color: var(--text-mut);
}

.side-note {
  margin-top: 0.65rem;
  text-align: center;
}

.claim-hero {
  text-align: center;
  padding: 1rem 1rem 0.9rem;
  margin-bottom: 0.85rem;
  border-radius: var(--r);
  border: 1px solid var(--border);
  background: var(--bg);
}

.claim-hero--hot {
  border-color: color-mix(in srgb, var(--red) 35%, var(--border));
  box-shadow: 0 0 0 1px color-mix(in srgb, var(--red) 12%, transparent),
    0 12px 28px color-mix(in srgb, var(--red) 10%, transparent);
}

.claim-hero__label {
  margin: 0;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-mut);
  font-family: var(--mono);
}

.claim-hero__value {
  margin: 0.35rem 0 0.2rem;
  font-size: clamp(1.85rem, 4.5vw, 2.45rem);
  font-weight: 700;
  color: var(--red);
  font-variant-numeric: tabular-nums;
  font-family: var(--mono);
  letter-spacing: -0.03em;
  line-height: 1;
}

.claim-hero__hint {
  margin: 0;
  font-size: 0.8rem;
  color: var(--text-mut);
}

.claim-ok {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.65rem;
  align-items: center;
  padding: 0.7rem 0.85rem;
  border-radius: var(--r);
  border: 1px solid color-mix(in srgb, var(--ok) 35%, var(--border));
  background: color-mix(in srgb, var(--ok) 10%, var(--bg-elev));
  color: var(--ok);
}

.claim-ok strong {
  display: block;
  font-size: 0.9rem;
  color: var(--ok);
}

.claim-ok span {
  display: block;
  margin-top: 0.15rem;
  font-size: 0.78rem;
  color: var(--text-mut);
}

.claim-breakdown {
  list-style: none;
  margin: 0 0 1rem;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
  background: var(--bg);
}

.claim-breakdown__row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.65rem;
  align-items: center;
  padding: 0.7rem 0.85rem;
  border-bottom: 1px solid var(--border);
}

.claim-breakdown__row:last-child {
  border-bottom: 0;
}

.claim-breakdown__av {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  overflow: hidden;
  background: var(--bg-elev);
  border: 1px solid var(--border);
}

.claim-breakdown__av img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.claim-breakdown__who {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  min-width: 0;
}

.claim-breakdown__who strong {
  font-size: 0.9rem;
}

.claim-breakdown__who span {
  font-size: 0.72rem;
  color: var(--text-mut);
}

.claim-breakdown__amt {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ok);
}

.btn--lg {
  min-height: 3rem;
  font-size: 0.95rem;
}

.claim-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.4rem;
  margin-bottom: 0.85rem;
}

@media (max-width: 640px) {
  .claim-meta {
    grid-template-columns: 1fr;
  }
}

.breakdown {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.85rem;
  margin-bottom: 0.85rem;
}

.breakdown th,
.breakdown td {
  text-align: left;
  padding: 0.45rem 0.2rem;
  border-bottom: 1px solid var(--border);
}

.breakdown th {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text-mut);
  font-family: var(--mono);
}

.tx-preview {
  padding: 1rem;
}

.tx-preview h3 {
  margin: 0 0 0.65rem;
  font-size: 0.9rem;
  font-weight: 600;
}

.tx-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.4rem 0;
  font-size: 0.85rem;
  border-bottom: 1px solid var(--border);
}

.tx-row span:first-child {
  color: var(--text-mut);
}

.addr-banner {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 1rem;
  border-radius: var(--r);
  border: 1px solid var(--border);
  border-left: 3px solid var(--red);
  background: var(--bg-elev);
  margin-bottom: 0.85rem;
}

.addr-banner__label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-mut);
  font-family: var(--mono);
}

.addr-banner__addr {
  font-family: var(--mono);
  font-size: 0.85rem;
  word-break: break-all;
}

.res-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
  margin-bottom: 0.85rem;
}

@media (min-width: 800px) {
  .res-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.res-card {
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 0.75rem;
}

.res-card__label {
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--text-mut);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-family: var(--mono);
}

.res-card__value {
  margin: 0.3rem 0;
  font-weight: 600;
  font-size: 0.95rem;
  font-family: var(--mono);
}

.bar {
  height: 4px;
  border-radius: 1px;
  background: var(--border);
  overflow: hidden;
}

.bar > span {
  display: block;
  height: 100%;
  background: var(--red);
}

.vote-status {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  padding: 0.85rem;
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: var(--r);
  margin-bottom: 0.85rem;
}

.vote-status__bar {
  flex: 1;
  min-width: 8rem;
  height: 4px;
  border-radius: 1px;
  background: var(--border);
  overflow: hidden;
}

.vote-status__bar > span {
  display: block;
  height: 100%;
  width: 75%;
  background: var(--red);
}

.events {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.8rem;
}

.events th,
.events td {
  text-align: left;
  padding: 0.55rem 0.35rem;
  border-bottom: 1px solid var(--border);
}

.events th {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text-mut);
  font-family: var(--mono);
}

.events a {
  font-family: var(--mono);
  font-size: 0.75rem;
}

.type-tag {
  color: var(--red);
  font-weight: 600;
}

.desk-panel[hidden] {
  display: none !important;
}

.note-banner {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  align-items: center;
  justify-content: space-between;
  padding: 0.7rem 0.85rem;
  border: 1px solid var(--border);
  border-radius: var(--r);
  background: var(--bg-elev);
  margin: 0 0 0.75rem;
  font-size: 0.8rem;
  color: var(--text-mut);
}

.partners {
  margin: 0 0 2rem;
  padding: 0.85rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--r);
  background: var(--bg-elev);
}

.partners__label {
  margin: 0 0 0.6rem;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-mut);
  font-family: var(--mono);
}

.partners__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 1.1rem;
}

.partners__list a {
  color: var(--text-mut);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
}

.partners__list a:hover {
  color: var(--red);
}

/* —— Sections —— */
.section {
  padding: 2.5rem 0;
  border-top: 1px solid var(--border);
}

.section h2 {
  margin: 0 0 0.4rem;
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  font-weight: 600;
  letter-spacing: -0.02em;
}

.section-lead {
  margin: 0 0 1.25rem;
  color: var(--text-mut);
  max-width: 40rem;
  font-size: 0.95rem;
}

.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.75rem;
}

@media (min-width: 800px) {
  .steps {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
  }
}

.steps li {
  padding: 1rem;
  border: 1px solid var(--border);
  border-radius: var(--r);
  background: var(--bg-elev);
}

.steps__n {
  display: block;
  color: var(--red);
  font-family: var(--mono);
  font-size: 0.75rem;
  margin-bottom: 0.45rem;
  font-weight: 600;
}

.steps h3 {
  margin: 0 0 0.3rem;
  font-size: 0.95rem;
  font-weight: 600;
}

.steps p {
  margin: 0;
  color: var(--text-mut);
  font-size: 0.875rem;
}

.faq {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.faq details {
  border: 1px solid var(--border);
  border-radius: var(--r);
  background: var(--bg-elev);
  padding: 0 0.9rem;
}

.faq summary {
  cursor: pointer;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.85rem 0;
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  min-height: 44px;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  content: "+";
  color: var(--red);
  font-family: var(--mono);
  font-size: 1.1rem;
  font-weight: 400;
}

.faq details[open] summary::after {
  content: "−";
}

.faq details p {
  margin: 0 0 0.9rem;
  color: var(--text-mut);
  font-size: 0.9rem;
}

.faq details a {
  font-weight: 600;
}

.page-hero {
  padding: 2rem 0 1.25rem;
}

.page-hero h1 {
  margin: 0 0 0.4rem;
  font-size: clamp(1.5rem, 3vw, 1.85rem);
  letter-spacing: -0.03em;
  font-weight: 600;
}

.page-hero p {
  margin: 0;
  color: var(--text-mut);
  max-width: 40rem;
}

.prose {
  padding-bottom: 2.5rem;
}

.prose h2 {
  margin: 1.75rem 0 0.5rem;
  font-size: 1.1rem;
  font-weight: 600;
}

.prose p,
.prose li {
  color: var(--text-mut);
  font-size: 0.95rem;
}

.prose ul {
  padding-left: 1.15rem;
}

.prose table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.85rem;
  margin: 0.75rem 0 1rem;
}

.prose th,
.prose td {
  text-align: left;
  padding: 0.5rem 0.4rem;
  border-bottom: 1px solid var(--border);
}

.prose th {
  font-family: var(--mono);
  font-size: 0.7rem;
  text-transform: uppercase;
  color: var(--text-mut);
}

.breadcrumbs {
  font-size: 0.75rem;
  color: var(--text-mut);
  margin-bottom: 0.85rem;
  font-family: var(--mono);
}

.breadcrumbs a {
  color: var(--text-mut);
  text-decoration: none;
}

.breadcrumbs a:hover {
  color: var(--red);
}

.page-hero .meta {
  margin: 0.5rem 0 0;
  font-size: 0.75rem;
  color: var(--text-mut);
  font-family: var(--mono);
}

.cta-band {
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  border-radius: 0;
}

.cta-band p {
  margin: 0;
}

.cta-band .btn {
  margin-right: 0.4rem;
  margin-bottom: 0.35rem;
}

.guide-links {
  list-style: none;
  margin: 1.25rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.65rem;
}

.guide-links a {
  display: block;
  padding: 0.85rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--r);
  color: var(--text);
  text-decoration: none;
  background: var(--bg-elev);
  transition: border-color 0.15s ease, color 0.15s ease;
}

.guide-links a:hover {
  border-color: var(--red);
  color: var(--red);
}

@media (min-width: 720px) {
  .guide-links {
    grid-template-columns: 1fr 1fr;
  }
}

.team-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
  margin: 0.5rem 0 1.5rem;
  list-style: none;
  padding: 0;
}

@media (min-width: 640px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 980px) {
  .team-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.person {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 1.15rem 1.2rem 1.25rem;
  border: 1px solid var(--border);
  border-radius: var(--r);
  background: var(--bg-elev);
}

.person__avatar {
  width: 5.5rem;
  height: 5.5rem;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 0.55rem;
  background: color-mix(in srgb, var(--red) 12%, transparent);
  border: 2px solid color-mix(in srgb, var(--red) 28%, transparent);
}

.person h2 {
  margin: 0;
  font-size: 1.1rem;
  letter-spacing: -0.02em;
}

.person__role {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--red);
  font-family: var(--mono);
}

.person p {
  margin: 0.15rem 0 0.35rem;
  color: var(--text-mut);
  font-size: 0.92rem;
  line-height: 1.45;
}

.person a {
  font-size: 0.88rem;
  font-weight: 550;
  color: var(--text);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  width: max-content;
}

.person a:hover {
  color: var(--red);
  border-bottom-color: color-mix(in srgb, var(--red) 45%, transparent);
}

.lang-dd__soon {
  display: block;
  padding: 0.45rem 0.75rem;
  color: var(--text-mut);
  font-size: 0.88rem;
  cursor: default;
}

.disclaimer-band {
  margin-top: 1.5rem;
  font-size: 0.8rem;
  color: var(--text-mut);
}

.prose ol {
  padding-left: 1.25rem;
}

.prose strong {
  font-weight: 600;
}

.footer {
  border-top: 1px solid var(--border);
  padding: 2rem 0 calc(1.75rem + env(safe-area-inset-bottom, 0));
  margin-top: 0.5rem;
}

.footer__grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 800px) {
  .footer__grid {
    grid-template-columns: 1.2fr repeat(3, 1fr);
  }
}

.footer__brand {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.footer__brand::after {
  content: "";
  display: inline-block;
  width: 0.34em;
  height: 0.34em;
  margin-left: 0.15em;
  background: var(--red);
  border-radius: 1px;
  vertical-align: 0.12em;
}

.footer__note {
  margin: 0 0 0.45rem;
  color: var(--text-mut);
  font-size: 0.88rem;
  line-height: 1.45;
  max-width: 22rem;
}

.footer__about {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.footer h3 {
  margin: 0 0 0.6rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-mut);
  font-family: var(--mono);
}

.footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer li {
  margin-bottom: 0.35rem;
}

.footer a {
  color: var(--text);
  text-decoration: none;
  font-size: 0.875rem;
}

.footer a:hover {
  color: var(--red);
}

.footer__copy {
  margin: 1.5rem 0 0;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  font-size: 0.85rem;
  color: var(--text-mut);
  font-family: var(--font);
  line-height: 1.45;
}

.footer__copy a {
  color: var(--text-mut);
  text-decoration: none;
}

.footer__copy a:hover {
  color: var(--red);
}

.cookie {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: calc(1rem + env(safe-area-inset-bottom, 0));
  z-index: 80;
  max-width: 32rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: flex-end;
  padding: 0.9rem 1rem;
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: var(--r);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.14);
}

.cookie[hidden] {
  display: none !important;
}

.cookie__text {
  flex: 1;
  min-width: 12rem;
}

.cookie__text p {
  margin: 0 0 0.35rem;
  font-size: 0.8rem;
  color: var(--text-mut);
  line-height: 1.45;
}

.cookie__text p:last-child {
  margin-bottom: 0;
}

.cookie__text strong {
  color: var(--text);
  font-size: 0.85rem;
}

[data-theme="light"] .icon-sun {
  display: none;
}

[data-theme="dark"] .icon-moon {
  display: none;
}

/* —— Scroll reveal (bankofai-style) —— */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition:
    opacity 0.85s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

.reveal.is-in {
  opacity: 1;
  transform: none;
}

.reveal-child {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

.reveal.is-in .reveal-child {
  opacity: 1;
  transform: none;
}

.section-num {
  display: block;
  font-family: var(--mono);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--text-mut);
  margin-bottom: 0.65rem;
}

.section--bleed {
  padding-block: 4.5rem;
  border-top: 1px solid var(--border);
}

.section--bleed + .section--bleed {
  border-top: 1px solid color-mix(in srgb, var(--border) 80%, transparent);
}

.split {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 900px) {
  .split {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }

  .split--rev > :first-child {
    order: 2;
  }
}

.split__copy h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.12;
}

.split__copy p {
  margin: 0 0 1.25rem;
  color: var(--text-mut);
  font-size: 1.05rem;
  line-height: 1.6;
  max-width: 34rem;
}

.split__link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text);
  text-decoration: none;
}

.split__link:hover {
  color: var(--red);
}

.split__tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
  margin-top: 1.5rem;
}

.split__tab {
  appearance: none;
  border: 0;
  background: transparent;
  padding: 0.35rem 0;
  font: inherit;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-mut);
  cursor: pointer;
  border-bottom: 2px solid transparent;
}

.split__tab.is-active {
  color: var(--text);
  border-bottom-color: var(--red);
}

.split__tab:hover {
  color: var(--text);
}

/* —— iPhone mockup —— */
.phone {
  --phone-w: 280px;
  --phone-bezel: 12px;
  --phone-r: 44px;
  position: relative;
  width: var(--phone-w);
  margin-inline: auto;
  padding: var(--phone-bezel);
  border-radius: calc(var(--phone-r) + 4px);
  background: linear-gradient(160deg, #2a2a2e 0%, #0a0a0b 45%, #1a1a1e 100%);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.08),
    0 28px 60px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  animation: phone-float 4.5s ease-in-out infinite;
}

@keyframes phone-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.phone__notch {
  position: absolute;
  top: calc(var(--phone-bezel) + 8px);
  left: 50%;
  z-index: 3;
  width: 88px;
  height: 22px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: #0a0a0b;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.phone__screen {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 19.5;
  border-radius: var(--phone-r);
  overflow: hidden;
  background: var(--fog);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.phone__screen iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  background: var(--fog);
  overflow: hidden;
  scrollbar-width: none;
}

.phone__glow {
  position: absolute;
  inset: -20% -10% auto;
  height: 40%;
  background: radial-gradient(ellipse at 50% 0%, rgba(225, 6, 44, 0.18), transparent 70%);
  pointer-events: none;
  z-index: -1;
}

@media (min-width: 900px) {
  .phone {
    --phone-w: 300px;
  }
}

.feature-list {
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.85rem;
}

.feature-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.75rem;
  align-items: start;
  padding: 0.85rem 0;
  border-top: 1px solid var(--border);
}

.feature-list li:last-child {
  border-bottom: 1px solid var(--border);
}

.feature-list__icon {
  width: 2rem;
  height: 2rem;
  border-radius: 5px;
  background: #141416;
  border: 1px solid #2c2c30;
  color: #c8c8ce;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.feature-list__icon svg {
  width: 15px;
  height: 15px;
  display: block;
}

[data-theme="light"] .feature-list__icon {
  background: #101012;
  border-color: #2c2c30;
  color: #d4d4d8;
}

.feature-list strong {
  display: block;
  font-size: 0.95rem;
  margin-bottom: 0.15rem;
}

.feature-list span {
  font-size: 0.85rem;
  color: var(--text-mut);
  line-height: 1.45;
}

.hero-strip {
  padding-top: 1.25rem;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .reveal,
  .reveal-child {
    opacity: 1 !important;
    transform: none !important;
  }
}
