:root {
  color-scheme: dark;
  --bg: #07110f;
  --surface: #101a17;
  --surface-soft: #17241f;
  --ink: #f4fbf7;
  --muted: #91a39c;
  --line: #243932;
  --line-soft: #1b2d27;
  --primary: #39e29b;
  --primary-hover: #63ecb3;
  --green: #53e6a7;
  --green-soft: rgba(83, 230, 167, 0.14);
  --red: #ff786f;
  --red-soft: rgba(255, 120, 111, 0.14);
  --gold: #f4c76b;
  --gold-soft: rgba(244, 199, 107, 0.14);
  --blue: #78c8ff;
  --blue-soft: rgba(120, 200, 255, 0.14);
  --plum: #c59cff;
  --plum-soft: rgba(197, 156, 255, 0.16);
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.34);
  --radius: 8px;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  min-width: 0;
  margin: 0;
  overflow-x: hidden;
  background: linear-gradient(180deg, #050807 0, #0b1714 28rem, var(--bg) 100%);
  color: var(--ink);
}

button,
input,
select,
textarea {
  font: inherit;
}

img,
svg {
  max-width: 100%;
}

button {
  border: 0;
  cursor: pointer;
}

button:disabled {
  cursor: default;
  opacity: 0.55;
}

.shell {
  min-height: 100vh;
  max-width: 100vw;
  overflow-x: hidden;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  padding: 14px max(20px, calc((100% - 1180px) / 2));
  display: flex;
  align-items: center;
  gap: 18px;
  border-bottom: 1px solid rgba(83, 230, 167, 0.12);
  background: rgba(5, 8, 7, 0.86);
  backdrop-filter: blur(18px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0;
  background: transparent;
  color: var(--ink);
  text-align: left;
}

.brand-mark,
.merchant-token,
.mini-token {
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  background: var(--primary);
  color: #04100d;
  font-weight: 850;
}

.brand-mark {
  width: 50px;
  height: 42px;
  overflow: hidden;
  border-radius: 0;
  background: transparent;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 560;
}

.nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav button {
  min-height: 40px;
  padding: 0 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  border-radius: var(--radius);
  background: transparent;
  color: var(--muted);
  white-space: nowrap;
}

.nav button:hover,
.nav button.active {
  background: var(--surface-soft);
  color: var(--ink);
}

.nav .nav-request {
  margin-right: 8px;
  border-color: rgba(83, 230, 167, 0.74);
  background: var(--primary);
  color: #04100d;
}

.nav .nav-request:hover,
.nav .nav-request:focus-visible {
  border-color: var(--primary);
  background: #79efbb;
  color: #04100d;
}

.main {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 34px 0 54px;
}

.eyebrow {
  margin: 0 0 8px;
  color: var(--green);
  font-size: 13px;
  font-weight: 820;
}

h1,
h2,
h3,
p {
  margin-top: 0;
  letter-spacing: 0;
}

h1 {
  max-width: 850px;
  margin-bottom: 12px;
  font-size: 62px;
  line-height: 1;
}

h2 {
  margin-bottom: 0;
  font-size: 21px;
  line-height: 1.16;
}

h3 {
  margin-bottom: 8px;
  font-size: 18px;
}

.subtext,
.stage-copy {
  max-width: 780px;
  color: var(--muted);
  line-height: 1.55;
}

.subtext {
  margin-bottom: 18px;
  font-size: 18px;
}

.stage-copy {
  margin-bottom: 0;
  font-size: 17px;
}

.mandate-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 26px;
  align-items: start;
  margin-bottom: 18px;
}

.hero-copy {
  min-width: 0;
  padding-top: 16px;
}

.hero-actions,
.trust-row,
.chip-row,
.review-actions,
.boundary-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hero-actions {
  margin-bottom: 16px;
}

.primary,
.ghost {
  min-height: 44px;
  padding: 0 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: var(--radius);
  text-decoration: none;
}

.primary {
  border: 1px solid var(--primary);
  background: var(--primary);
  color: #04100d;
  font-weight: 840;
}

.primary:hover {
  background: var(--primary-hover);
}

.ghost {
  border: 1px solid var(--line);
  background: rgba(16, 26, 23, 0.82);
  color: var(--ink);
}

.ghost:hover {
  background: var(--surface-soft);
}

.wide {
  width: 100%;
  margin-top: 12px;
}

.trust-row span,
.chip-row span,
.boundary-grid span {
  min-height: 30px;
  padding: 6px 10px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--muted);
  font-size: 13px;
  font-weight: 720;
}

.mission-card,
.truth-card,
.product-demo,
.panel,
.info-card,
.path-step,
.impact-card,
.metric,
.architecture-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(12, 24, 21, 0.88);
  box-shadow: var(--shadow);
}

.mission-card,
.truth-card,
.product-demo {
  padding: 22px;
}

.product-demo {
  display: grid;
  gap: 14px;
}

.demo-topline {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: flex-start;
}

.demo-topline span {
  padding: 5px 8px;
  border-radius: 999px;
  background: var(--surface-soft);
  color: var(--muted);
  font-size: 12px;
  font-weight: 760;
  white-space: nowrap;
}

.demo-window {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.demo-toolbar {
  min-height: 34px;
  padding: 0 10px;
  display: flex;
  align-items: center;
  gap: 6px;
  border-bottom: 1px solid var(--line);
  background: var(--surface-soft);
}

.demo-toolbar span {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--line);
}

.demo-toolbar strong {
  margin-left: auto;
  color: var(--muted);
  font-size: 12px;
}

.wallet-preview {
  display: grid;
  gap: 9px;
  padding: 12px;
}

.wallet-preview-head {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: center;
}

.wallet-preview-head span,
.demo-subscription small,
.demo-sub-meta span,
.demo-note {
  color: var(--muted);
  font-size: 12px;
}

.wallet-preview-head strong {
  font-size: 20px;
}

.demo-subscription {
  position: relative;
  display: grid;
  gap: 9px;
  padding: 11px;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background: var(--surface);
}

.demo-sub-topline {
  display: flex;
  justify-content: space-between;
  gap: 9px;
  align-items: flex-start;
}

.demo-sub-main {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 9px;
  align-items: center;
}

.demo-sub-main strong,
.demo-sub-main small,
.demo-sub-meta b,
.demo-sub-meta span {
  display: block;
}

.demo-sub-meta {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: center;
}

.demo-sub-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.state-pill,
.paid-line,
.demo-sub-actions button {
  min-height: 28px;
  padding: 0 9px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 760;
}

.state-pill {
  flex: 0 0 auto;
  background: var(--green-soft);
  color: var(--green);
}

.state-pill.paused {
  background: var(--gold-soft);
  color: var(--gold);
}

.state-pill.pending {
  background: var(--blue-soft);
  color: var(--blue);
}

.state-pill.blocked,
.state-pill.cancelled {
  background: var(--red-soft);
  color: var(--red);
}

.paid-line {
  width: fit-content;
}

.paid-line.valid {
  background: var(--green-soft);
  color: var(--green);
}

.paid-line.expired {
  background: var(--red-soft);
  color: var(--red);
}

.paid-line.pending {
  background: var(--blue-soft);
  color: var(--blue);
}

.demo-sub-actions button {
  border: 1px solid var(--line);
  background: var(--surface-soft);
  color: var(--ink);
}

.demo-sub-actions button.success {
  border-color: var(--green);
  background: var(--green);
  color: #04100d;
}

.demo-sub-actions button.warning {
  border-color: var(--gold);
  background: var(--gold);
  color: #181003;
}

.demo-sub-actions button.danger {
  border-color: var(--red);
  background: var(--red);
  color: #190403;
}

.demo-sub-actions button:hover {
  filter: brightness(1.08);
}

.demo-note {
  margin: 0;
  line-height: 1.45;
}

.icon {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
}

.showcase-head {
  max-width: 820px;
  margin: 32px auto 32px;
  text-align: center;
}

.showcase-head h1 {
  margin-right: auto;
  margin-left: auto;
  font-size: 58px;
}

.showcase-head .subtext {
  margin-right: auto;
  margin-left: auto;
}

.demo-brief {
  width: min(100%, 760px);
  margin: 0 auto 32px;
  padding: 11px 13px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 12px;
  align-items: center;
  border: 1px solid rgba(120, 200, 255, 0.22);
  border-radius: var(--radius);
  background: rgba(120, 200, 255, 0.08);
}

.demo-brief span {
  min-height: 30px;
  padding: 0 10px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border-radius: 999px;
  background: var(--blue-soft);
  color: var(--blue);
  font-size: 13px;
  font-weight: 820;
}

.demo-brief p,
.demo-explain-panel p,
.demo-brief-grid p,
.privacy-call-panel p,
.privacy-card p,
.demand-step p,
.demand-action-head p,
.privacy-note {
  margin: 0;
  color: var(--muted);
  line-height: 1.48;
}

.demo-brief p {
  flex: 1 1 280px;
  min-width: 0;
  overflow-wrap: anywhere;
}

.demo-brief strong {
  color: #ffe9e7;
}

.demo-explain-panel {
  width: 100%;
  margin: 48px auto 0;
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  gap: 18px;
  align-items: start;
  border-color: rgba(120, 200, 255, 0.2);
  background:
    linear-gradient(135deg, rgba(120, 200, 255, 0.08), rgba(83, 230, 167, 0.06)),
    rgba(12, 24, 21, 0.9);
}

.demo-explain-panel h2 {
  margin-bottom: 10px;
  font-size: 24px;
}

.demo-request-cta {
  width: min(100%, 426px);
  margin: 18px auto 0;
  display: none;
  gap: 10px;
  text-align: center;
}

.demo-request-cta p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.demo-request-cta .large-action {
  width: 100%;
  min-height: 54px;
}

.demo-brief-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.demo-brief-grid article {
  min-height: 126px;
  padding: 13px;
  display: grid;
  gap: 8px;
  align-content: start;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #0b1713;
}

.demo-brief-grid span,
.demand-step > span {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: var(--green-soft);
  color: var(--green);
}

.demo-brief-grid strong {
  line-height: 1.2;
}

.demo-brief-grid p {
  margin-top: 0;
  font-size: 13px;
}

.phone-showcase {
  max-width: 100vw;
  margin-bottom: 56px;
}

.demo-mode-banner {
  width: 100%;
  min-width: 0;
  max-width: 760px;
  margin: 0 auto 16px;
  padding: 12px 14px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  border: 1px solid rgba(120, 200, 255, 0.22);
  border-radius: var(--radius);
  background: rgba(120, 200, 255, 0.08);
}

.demo-mode-banner span {
  min-height: 30px;
  padding: 0 10px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border-radius: 999px;
  background: var(--blue-soft);
  color: var(--blue);
  font-size: 13px;
  font-weight: 820;
  white-space: nowrap;
}

.demo-mode-banner p {
  min-width: 0;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.phone-stage {
  position: relative;
  display: grid;
  grid-template-columns: minmax(220px, 0.82fr) minmax(370px, 450px) minmax(220px, 0.82fr);
  grid-template-areas:
    "leftTop phone rightTop"
    "leftMid phone rightMid"
    "leftBottom phone rightBottom";
  gap: 16px 34px;
  align-items: center;
}

.phone-connector-map {
  display: none;
}

.phone-center {
  grid-area: phone;
  display: grid;
  place-items: center;
}

.app-callout {
  position: relative;
  min-height: 118px;
  padding: 14px;
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  border: 1px solid rgba(83, 230, 167, 0.2);
  border-radius: var(--radius);
  background: rgba(14, 27, 24, 0.78);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.2);
}

.app-callout.left.top {
  grid-area: leftTop;
}

.app-callout.right.top {
  grid-area: rightTop;
}

.app-callout.left.mid {
  grid-area: leftMid;
}

.app-callout.right.mid {
  grid-area: rightMid;
}

.app-callout.bottom {
  grid-area: leftBottom;
}

.app-callout::after,
.app-callout::before {
  position: absolute;
  display: block;
  background: rgba(83, 230, 167, 0.35);
  content: "";
}

.app-callout.left::after {
  top: 50%;
  right: -29px;
  width: 29px;
  height: 1px;
}

.app-callout.right::before {
  top: 50%;
  left: -29px;
  width: 29px;
  height: 1px;
}

.app-callout.bottom::before {
  display: none;
}

.app-callout.bottom::after {
  top: 50%;
  right: -29px;
  width: 29px;
  height: 1px;
}

.app-callout b {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--primary);
  color: #04100d;
  font-weight: 900;
}

.app-callout strong {
  display: block;
  line-height: 1.2;
}

.app-callout p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.showcase-actions,
.showcase-trust {
  justify-content: center;
}

.showcase-actions {
  margin-top: 18px;
}

.mobile-quick-actions {
  display: none;
}

.callout-action {
  min-height: 34px;
  margin-top: 10px;
  padding: 0 11px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border-radius: 999px;
  background: var(--primary);
  color: #04100d;
  font-size: 13px;
  font-weight: 860;
}

.large-action {
  min-height: 52px;
  padding: 0 20px;
  font-size: 15px;
}

.callout-action .icon {
  width: 14px;
  height: 14px;
}

.showcase-trust {
  margin-top: 14px;
}

.phone-center .product-demo {
  width: min(100%, 426px);
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.phone-frame {
  position: relative;
  width: 100%;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 38px;
  background: #020504;
  box-shadow:
    inset 0 0 0 2px rgba(255, 255, 255, 0.04),
    0 38px 95px rgba(0, 0, 0, 0.55);
}

.phone-notch {
  position: absolute;
  top: 18px;
  left: 50%;
  z-index: 2;
  width: 104px;
  height: 22px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: #020504;
}

.phone-screen {
  --phone-gutter: 18px;
  position: relative;
  aspect-ratio: 25 / 46;
  height: auto;
  min-height: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 1px solid #1d2f29;
  border-radius: 30px;
  background: #08120f;
  color: #f4fbf7;
}

.phone-statusbar {
  flex: 0 0 auto;
  height: 38px;
  padding: 0 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(244, 251, 247, 0.78);
  font-size: 12px;
  font-weight: 760;
}

.phone-statusbar div {
  display: flex;
  gap: 7px;
}

.phone-statusbar .icon {
  width: 14px;
  height: 14px;
}

.phone-app-header {
  flex: 0 0 auto;
  padding: 8px 18px 12px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
}

.app-title-row {
  display: flex;
  gap: 10px;
  align-items: center;
}

.app-icon {
  width: 46px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 0;
  overflow: hidden;
  background: transparent;
  color: #04100d;
}

.app-icon .icon {
  width: 22px;
  height: 22px;
}

.app-icon img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

.phone-app-header strong,
.phone-app-header small {
  display: block;
}

.phone-app-header small {
  margin-top: 2px;
  color: rgba(244, 251, 247, 0.58);
  font-size: 12px;
}

.phone-app-header button {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid #244139;
  border-radius: 999px;
  background: #0d1a16;
  color: var(--green);
}

.phone-app-header button.active {
  border-color: var(--green);
  background: var(--green-soft);
}

.phone-scroll {
  flex: 1 1 auto;
  min-height: 0;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
}

.phone-balance {
  margin: 0 var(--phone-gutter) 12px;
  padding: 14px;
  display: grid;
  gap: 10px;
  border: 1px solid rgba(83, 230, 167, 0.22);
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(57, 226, 155, 0.2), rgba(120, 200, 255, 0.1));
}

.phone-balance span,
.phone-balance b {
  color: rgba(244, 251, 247, 0.72);
  font-size: 12px;
  font-weight: 760;
}

.phone-balance strong {
  display: block;
  margin-top: 4px;
  font-size: 31px;
  line-height: 1;
}

.phone-balance b {
  width: fit-content;
  min-height: 30px;
  padding: 0 10px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-radius: 999px;
  background: rgba(3, 9, 7, 0.42);
  color: var(--green);
}

.phone-setting-badges {
  margin: 0 var(--phone-gutter) 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.phone-setting-badges span {
  min-height: 28px;
  padding: 0 9px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  border: 1px solid rgba(120, 200, 255, 0.18);
  border-radius: 999px;
  background: rgba(120, 200, 255, 0.09);
  color: rgba(244, 251, 247, 0.76);
  font-size: 11px;
  font-weight: 780;
}

.phone-setting-badges .icon {
  width: 12px;
  height: 12px;
}

.phone-tabs {
  margin: 0 var(--phone-gutter) 12px;
  padding: 4px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid #1d312b;
  border-radius: 999px;
  background: #0b1713;
}

.phone-tabs button {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.phone-tabs .icon {
  width: 13px;
  height: 13px;
}

.phone-tabs button.active {
  background: #f4fbf7;
  color: #08120f;
}

.phone-screen .wallet-preview {
  min-height: 0;
  overflow: visible;
  width: 100%;
  box-sizing: border-box;
  padding: 0 var(--phone-gutter) 12px;
}

.phone-scroll,
.phone-picker-results {
  scrollbar-width: thin;
  scrollbar-color: rgba(83, 230, 167, 0.5) rgba(12, 24, 21, 0.8);
}

.phone-scroll::-webkit-scrollbar,
.phone-picker-results::-webkit-scrollbar {
  width: 7px;
}

.phone-scroll::-webkit-scrollbar-track,
.phone-picker-results::-webkit-scrollbar-track {
  background: rgba(12, 24, 21, 0.8);
}

.phone-scroll::-webkit-scrollbar-thumb,
.phone-picker-results::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(83, 230, 167, 0.5);
}

.phone-screen .demo-subscription {
  padding: 10px;
  border-color: #1c3029;
  background: #0c1814;
}

.phone-screen .demo-subscription.is-active {
  border-color: rgba(83, 230, 167, 0.28);
}

.phone-screen .demo-subscription.is-paused {
  border-color: rgba(244, 199, 107, 0.28);
}

.phone-screen .demo-subscription.is-pending {
  border-color: rgba(120, 200, 255, 0.28);
}

.phone-screen .demo-subscription.is-blocked,
.phone-screen .demo-subscription.is-cancelled {
  border-color: rgba(255, 120, 111, 0.28);
}

.phone-screen .demo-sub-main {
  grid-template-columns: 36px minmax(0, 1fr);
}

.phone-screen .mini-token {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  color: #fff;
}

.mini-token.brand-red {
  background: linear-gradient(135deg, #e50914, #681014);
}

.mini-token.brand-green {
  background: linear-gradient(135deg, #1ed760, #0c5a38);
}

.mini-token.brand-plum {
  background: linear-gradient(135deg, #ff5a7a, #6a49e8);
}

.mini-token.brand-blue {
  background: linear-gradient(135deg, #3bb7ff, #2653d9);
}

.mini-token.brand-gold {
  background: linear-gradient(135deg, #f4c76b, #956010);
}

.mini-token.brand-custom {
  background: linear-gradient(135deg, #7ad7ff, #18a06f);
}

.phone-screen .demo-sub-main small,
.phone-screen .demo-sub-meta span {
  color: rgba(244, 251, 247, 0.58);
}

.phone-screen .demo-sub-meta b {
  font-size: 17px;
}

.phone-screen .demo-sub-actions button {
  gap: 5px;
}

.phone-screen .demo-sub-actions .icon,
.phone-screen .state-pill .icon,
.phone-screen .paid-line .icon {
  width: 13px;
  height: 13px;
}

.phone-screen .demo-sub-actions button {
  flex: 1 1 0;
  justify-content: center;
}

.phone-screen .demo-sub-actions button.neutral {
  border-color: #284139;
  background: #111f1a;
  color: #f4fbf7;
}

.limit-controls {
  margin-top: 10px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 7px;
}

.limit-controls button {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border: 1px solid #284139;
  border-radius: 999px;
  background: #111f1a;
  color: #f4fbf7;
  font-size: 12px;
  font-weight: 820;
}

.limit-controls button:not(:disabled):hover {
  border-color: var(--green);
  color: var(--green);
}

.remove-demo-button {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border: 1px solid rgba(255, 120, 111, 0.4);
  border-radius: 999px;
  background: var(--red-soft);
  color: var(--red);
}

.remove-demo-button .icon {
  width: 16px;
  height: 16px;
}

.demo-message {
  margin: 0 0 1px;
  padding: 9px 10px;
  border: 1px solid rgba(120, 200, 255, 0.22);
  border-radius: 12px;
  background: var(--blue-soft);
  color: var(--blue);
  font-size: 12px;
  line-height: 1.35;
}

.phone-list {
  min-height: 0;
  overflow: visible;
  display: grid;
  align-content: start;
  gap: 9px;
  width: 100%;
  box-sizing: border-box;
  padding: 0 var(--phone-gutter) 14px;
}

.limit-row,
.activity-row {
  padding: 12px;
  border: 1px solid #1c3029;
  border-radius: 15px;
  background: #0c1814;
}

.limit-row-head {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: center;
}

.limit-row-head strong,
.limit-row-head b {
  line-height: 1.2;
}

.limit-row p,
.activity-row p {
  margin: 6px 0 0;
  color: rgba(244, 251, 247, 0.58);
  font-size: 12px;
  line-height: 1.4;
}

.limit-track {
  height: 8px;
  margin-top: 10px;
  overflow: hidden;
  border-radius: 999px;
  background: #152821;
}

.limit-track span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--green), var(--blue));
}

.activity-row {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 10px;
}

.activity-row > span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--green-soft);
  color: var(--green);
}

.activity-row.paused > span {
  background: var(--gold-soft);
  color: var(--gold);
}

.activity-row.blocked > span,
.activity-row.cancelled > span {
  background: var(--red-soft);
  color: var(--red);
}

.phone-empty {
  min-height: 210px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 7px;
  padding: 20px;
  border: 1px dashed #284139;
  border-radius: 16px;
  background: #0c1814;
  color: rgba(244, 251, 247, 0.72);
  text-align: center;
}

.phone-empty strong,
.phone-empty p {
  margin: 0;
}

.phone-empty p {
  color: rgba(244, 251, 247, 0.58);
  font-size: 12px;
}

.phone-empty button {
  min-height: 34px;
  padding: 0 12px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-radius: 999px;
  background: var(--primary);
  color: #04100d;
  font-size: 12px;
  font-weight: 840;
}

.phone-picker {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: grid;
  align-items: end;
  padding: 12px;
  background: rgba(2, 5, 4, 0.62);
  backdrop-filter: blur(8px);
}

.phone-settings {
  position: absolute;
  inset: 0;
  z-index: 4;
  display: grid;
  align-items: end;
  padding: 12px;
  background: rgba(2, 5, 4, 0.62);
  backdrop-filter: blur(8px);
}

.settings-sheet {
  display: grid;
  gap: 14px;
  overflow: hidden;
  border: 1px solid rgba(83, 230, 167, 0.24);
  border-radius: 24px;
  background: #09140f;
  box-shadow: 0 -24px 60px rgba(0, 0, 0, 0.42);
}

.settings-header {
  padding: 15px 15px 12px;
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: flex-start;
  border-bottom: 1px solid #1c3029;
}

.settings-header strong,
.settings-header small {
  display: block;
}

.settings-header small {
  margin-top: 3px;
  color: rgba(244, 251, 247, 0.58);
  font-size: 12px;
}

.settings-header button {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border: 1px solid #284139;
  border-radius: 999px;
  background: #111f1a;
  color: #f4fbf7;
}

.settings-group {
  padding: 0 15px 15px;
  display: grid;
  gap: 10px;
}

.settings-group + .settings-group {
  padding-top: 0;
}

.settings-label {
  color: rgba(244, 251, 247, 0.58);
  font-size: 12px;
  font-weight: 760;
}

.theme-segment {
  padding: 4px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 4px;
  border: 1px solid #1d312b;
  border-radius: 999px;
  background: #0b1713;
}

.theme-segment button {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 820;
}

.theme-segment button.active {
  background: #f4fbf7;
  color: #08120f;
}

.settings-row {
  min-height: 62px;
  padding: 10px;
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  border: 1px solid #1c3029;
  border-radius: 15px;
  background: #0c1814;
}

.settings-row-icon {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--green-soft);
  color: var(--green);
}

.settings-row-icon .icon {
  width: 15px;
  height: 15px;
}

.settings-row strong,
.settings-row small {
  display: block;
}

.settings-row small {
  margin-top: 3px;
  color: rgba(244, 251, 247, 0.58);
  font-size: 12px;
  line-height: 1.35;
}

.settings-switch {
  position: relative;
  width: 46px;
  height: 26px;
  border: 1px solid #284139;
  border-radius: 999px;
  background: #16241f;
}

.settings-switch span {
  position: absolute;
  top: 50%;
  left: 4px;
  width: 18px;
  height: 18px;
  transform: translateY(-50%);
  border-radius: 999px;
  background: rgba(244, 251, 247, 0.72);
  transition: left 160ms ease, background 160ms ease;
}

.settings-switch.active {
  border-color: rgba(83, 230, 167, 0.6);
  background: var(--green-soft);
}

.settings-switch.active span {
  left: 22px;
  background: var(--green);
}

.picker-sheet {
  max-height: 78%;
  min-height: 430px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(83, 230, 167, 0.24);
  border-radius: 24px;
  background: #09140f;
  box-shadow: 0 -24px 60px rgba(0, 0, 0, 0.42);
}

.picker-header {
  padding: 15px 15px 12px;
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: flex-start;
  border-bottom: 1px solid #1c3029;
}

.picker-header strong,
.picker-header small {
  display: block;
}

.picker-header small {
  margin-top: 3px;
  color: rgba(244, 251, 247, 0.58);
  font-size: 12px;
}

.picker-header button {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border: 1px solid #284139;
  border-radius: 999px;
  background: #111f1a;
  color: #f4fbf7;
}

.phone-search {
  display: grid;
  gap: 6px;
  padding: 12px 15px;
}

.phone-search span {
  color: rgba(244, 251, 247, 0.58);
  font-size: 12px;
  font-weight: 760;
}

.phone-search input {
  min-height: 40px;
  border-color: #284139;
  border-radius: 14px;
}

.phone-picker-results {
  flex: 1 1 auto;
  min-height: 0;
  overflow-y: auto;
  display: grid;
  align-content: start;
  gap: 8px;
  padding: 0 15px 15px;
}

.phone-picker-item {
  width: 100%;
  min-height: 58px;
  padding: 9px;
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr) auto;
  gap: 9px;
  align-items: center;
  border: 1px solid #1c3029;
  border-radius: 15px;
  background: #0c1814;
  color: #f4fbf7;
  text-align: left;
}

.phone-picker-item:hover {
  border-color: var(--green);
}

.phone-picker-item:disabled {
  cursor: default;
  opacity: 0.58;
}

.phone-picker-item strong,
.phone-picker-item small {
  display: block;
}

.phone-picker-item small {
  margin-top: 2px;
  color: rgba(244, 251, 247, 0.58);
  font-size: 12px;
}

.phone-picker-item b {
  padding: 5px 8px;
  border-radius: 999px;
  background: var(--green-soft);
  color: var(--green);
  font-size: 11px;
}

.phone-picker-card,
.manual-subscription {
  padding: 10px;
  display: grid;
  gap: 10px;
  border: 1px solid #1c3029;
  border-radius: 15px;
  background: #0c1814;
}

.phone-picker-main {
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr);
  gap: 9px;
  align-items: center;
  color: #f4fbf7;
}

.phone-picker-main strong,
.phone-picker-main small,
.phone-plan-button strong,
.phone-plan-button small {
  display: block;
}

.phone-picker-main small,
.phone-plan-button small {
  margin-top: 2px;
  color: rgba(244, 251, 247, 0.58);
  font-size: 12px;
  line-height: 1.35;
}

.phone-plan-options {
  display: grid;
  gap: 7px;
}

.phone-plan-button {
  width: 100%;
  min-height: 52px;
  padding: 8px 9px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 9px;
  align-items: center;
  border: 1px solid #284139;
  border-radius: 13px;
  background: #111f1a;
  color: #f4fbf7;
  text-align: left;
}

.phone-plan-button:hover {
  border-color: var(--green);
}

.phone-plan-button:disabled {
  cursor: default;
  opacity: 0.58;
}

.phone-plan-button b {
  padding: 5px 8px;
  border-radius: 999px;
  background: var(--green-soft);
  color: var(--green);
  font-size: 11px;
}

.manual-subscription {
  border-style: dashed;
}

.manual-subscription.compact {
  padding: 0;
  border: 0;
  background: transparent;
}

.manual-subscription.compact button,
.manual-add-button {
  width: 100%;
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  border-radius: 14px;
  background: var(--primary);
  color: #04100d;
  font-size: 12px;
  font-weight: 850;
}

.manual-head {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: center;
}

.manual-head button {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border: 1px solid #284139;
  border-radius: 999px;
  background: #111f1a;
  color: #f4fbf7;
}

.manual-subscription label {
  display: grid;
  gap: 6px;
}

.manual-subscription label span {
  color: rgba(244, 251, 247, 0.58);
  font-size: 12px;
  font-weight: 760;
}

.manual-subscription input {
  min-height: 38px;
  border-color: #284139;
  border-radius: 13px;
}

.manual-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.picker-empty {
  padding: 18px;
  border: 1px dashed #284139;
  border-radius: 16px;
  color: rgba(244, 251, 247, 0.58);
  text-align: center;
}

.phone-screen.theme-light {
  border-color: #d7e7df;
  background: #f6fbf8;
  color: #13241e;
}

.phone-screen.theme-light .phone-statusbar {
  color: rgba(19, 36, 30, 0.68);
}

.phone-screen.theme-light .phone-app-header small,
.phone-screen.theme-light .phone-balance span,
.phone-screen.theme-light .phone-balance b,
.phone-screen.theme-light .demo-sub-main small,
.phone-screen.theme-light .demo-sub-meta span,
.phone-screen.theme-light .limit-row p,
.phone-screen.theme-light .activity-row p,
.phone-screen.theme-light .phone-empty,
.phone-screen.theme-light .phone-empty p,
.phone-screen.theme-light .phone-picker-item small,
.phone-screen.theme-light .phone-picker-main small,
.phone-screen.theme-light .phone-plan-button small,
.phone-screen.theme-light .picker-header small,
.phone-screen.theme-light .settings-header small,
.phone-screen.theme-light .settings-label,
.phone-screen.theme-light .settings-row small,
.phone-screen.theme-light .manual-subscription label span,
.phone-screen.theme-light .phone-search span {
  color: rgba(19, 36, 30, 0.58);
}

.phone-screen.theme-light .phone-app-header button,
.phone-screen.theme-light .settings-header button,
.phone-screen.theme-light .picker-header button {
  border-color: #d7e7df;
  background: #edf7f1;
  color: #167a53;
}

.phone-screen.theme-light .phone-app-header button.active {
  border-color: rgba(22, 122, 83, 0.34);
  background: rgba(44, 191, 128, 0.14);
}

.phone-screen.theme-light .phone-balance {
  border-color: rgba(22, 122, 83, 0.22);
  background: linear-gradient(135deg, rgba(57, 226, 155, 0.18), rgba(120, 200, 255, 0.16));
}

.phone-screen.theme-light .phone-balance b,
.phone-screen.theme-light .phone-setting-badges span {
  background: rgba(255, 255, 255, 0.72);
  color: #167a53;
}

.phone-screen.theme-light .phone-setting-badges span {
  border-color: rgba(22, 122, 83, 0.16);
}

.phone-screen.theme-light .phone-tabs,
.phone-screen.theme-light .theme-segment {
  border-color: #dbe9e3;
  background: #edf6f1;
}

.phone-screen.theme-light .phone-tabs button,
.phone-screen.theme-light .theme-segment button {
  color: #65766e;
}

.phone-screen.theme-light .phone-tabs button.active,
.phone-screen.theme-light .theme-segment button.active {
  background: #13241e;
  color: #f6fbf8;
}

.phone-screen.theme-light .demo-subscription,
.phone-screen.theme-light .limit-row,
.phone-screen.theme-light .activity-row,
.phone-screen.theme-light .phone-empty,
.phone-screen.theme-light .phone-picker-item,
.phone-screen.theme-light .phone-picker-card,
.phone-screen.theme-light .manual-subscription,
.phone-screen.theme-light .settings-row {
  border-color: #dbe9e3;
  background: #ffffff;
  color: #13241e;
}

.phone-screen.theme-light .demo-sub-actions button.neutral,
.phone-screen.theme-light .phone-plan-button,
.phone-screen.theme-light .manual-head button,
.phone-screen.theme-light .limit-controls button {
  border-color: #d7e7df;
  background: #edf7f1;
  color: #13241e;
}

.phone-screen.theme-light .limit-track {
  background: #dfeee7;
}

.phone-screen.theme-light .demo-message {
  border-color: rgba(45, 133, 210, 0.22);
  background: rgba(45, 133, 210, 0.12);
  color: #1c67a8;
}

.phone-screen.theme-light .phone-settings,
.phone-screen.theme-light .phone-picker {
  background: rgba(234, 243, 239, 0.72);
}

.phone-screen.theme-light .settings-sheet,
.phone-screen.theme-light .picker-sheet {
  border-color: #d7e7df;
  background: #f6fbf8;
  box-shadow: 0 -24px 60px rgba(40, 65, 57, 0.22);
}

.phone-screen.theme-light .settings-header,
.phone-screen.theme-light .picker-header {
  border-bottom-color: #dbe9e3;
}

.phone-screen.theme-light .settings-switch {
  border-color: #d7e7df;
  background: #e5efe9;
}

.phone-screen.theme-light .settings-switch span {
  background: #ffffff;
  box-shadow: 0 1px 5px rgba(19, 36, 30, 0.16);
}

.phone-screen.theme-light .phone-search input {
  border-color: #d7e7df;
  background: #ffffff;
  color: #13241e;
}

.phone-screen.theme-light .manual-subscription input {
  border-color: #d7e7df;
  background: #ffffff;
  color: #13241e;
}

.phone-screen.theme-light .phone-picker-main {
  color: #13241e;
}

.phone-screen.theme-light .picker-empty {
  border-color: #d7e7df;
  color: rgba(19, 36, 30, 0.58);
}

.phone-add-button {
  flex: 0 0 auto;
  width: auto;
  align-self: stretch;
  min-height: 46px;
  margin: 0 var(--phone-gutter) 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 16px;
  border: 1px solid var(--primary);
  background: var(--primary);
  color: #04100d;
  font-weight: 850;
}

.mission-list,
.truth-list,
.signal-list,
.wallet-list,
.rank-list,
.merchant-grid,
.control-grid,
.architecture-grid,
.info-split {
  display: grid;
  gap: 10px;
}

.mission-list,
.truth-list {
  margin-top: 18px;
}

.plain-answer {
  max-width: 780px;
  margin: 0 0 18px;
  padding: 14px 16px;
  border-left: 4px solid var(--green);
  background: var(--green-soft);
  color: var(--primary);
}

.plain-answer strong,
.plain-answer p {
  display: block;
}

.plain-answer p {
  margin: 5px 0 0;
  line-height: 1.48;
}

.mission-row {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 12px;
  padding-top: 14px;
  border-top: 1px solid var(--line-soft);
}

.mission-row:first-child {
  padding-top: 0;
  border-top: 0;
}

.mission-row b,
.architecture-card span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--primary);
  color: #04100d;
  font-weight: 850;
}

.mission-row strong,
.mission-row small {
  display: block;
}

.mission-row small {
  margin-top: 4px;
  color: var(--muted);
  line-height: 1.45;
}

.truth-row {
  padding-top: 14px;
  border-top: 1px solid var(--line-soft);
}

.truth-row:first-child {
  padding-top: 0;
  border-top: 0;
}

.truth-row span {
  display: inline-flex;
  min-height: 26px;
  align-items: center;
  padding: 4px 8px;
  border-radius: 999px;
  background: var(--surface-soft);
  color: var(--primary);
  font-size: 12px;
  font-weight: 820;
}

.truth-row p {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.48;
}

.proof-strip,
.roadmap-strip,
.explain-grid,
.metric-grid,
.board-grid {
  display: grid;
  gap: 14px;
}

.proof-strip {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-bottom: 14px;
}

.proof-strip div,
.info-card,
.metric {
  padding: 17px;
}

.proof-strip div {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(12, 24, 21, 0.88);
}

.proof-strip span,
.metric span,
.impact-card > span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  font-weight: 760;
}

.proof-strip strong {
  display: block;
  margin-top: 7px;
  font-size: 26px;
  line-height: 1.05;
  overflow-wrap: anywhere;
}

.proof-strip p,
.info-card p {
  margin: 7px 0 0;
  color: var(--muted);
  line-height: 1.48;
}

.explain-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-bottom: 14px;
}

.info-split {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-bottom: 14px;
}

.example-panel {
  grid-template-columns: minmax(250px, 0.5fr) minmax(0, 1fr);
  margin-bottom: 14px;
}

.example-panel,
.example-result {
  display: grid;
  gap: 12px;
  align-items: start;
}

.example-result {
  padding-left: 16px;
  border-left: 1px solid var(--line);
}

.example-result span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 760;
}

.example-result strong {
  font-size: 20px;
  line-height: 1.25;
}

.example-result p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.roadmap-strip {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-bottom: 14px;
}

.home-roadmap-shell {
  margin: 64px 0 48px;
}

.section-heading {
  max-width: 680px;
  margin-bottom: 24px;
}

.home-roadmap-shell .section-heading {
  margin-bottom: 40px;
}

.section-heading h2 {
  font-size: 26px;
}

.home-roadmap {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 48px minmax(0, 1fr);
  gap: 64px 24px;
}

.home-roadmap::before {
  position: absolute;
  top: 24px;
  bottom: 24px;
  left: 50%;
  width: 2px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: linear-gradient(180deg, var(--green), rgba(120, 200, 255, 0.24));
  content: "";
}

.home-roadmap .path-step {
  position: relative;
  min-height: 160px;
  border-color: rgba(83, 230, 167, 0.22);
  background:
    linear-gradient(180deg, rgba(83, 230, 167, 0.08), rgba(120, 200, 255, 0.04)),
    rgba(12, 24, 21, 0.9);
}

.home-roadmap .path-step:nth-child(odd) {
  grid-column: 1;
}

.home-roadmap .path-step:nth-child(even) {
  grid-column: 3;
}

.home-roadmap .path-step:nth-child(1) {
  grid-row: 1;
}

.home-roadmap .path-step:nth-child(2) {
  grid-row: 2;
}

.home-roadmap .path-step:nth-child(3) {
  grid-row: 3;
}

.home-roadmap .path-step:nth-child(4) {
  grid-row: 4;
}

.home-roadmap .path-step::after {
  position: absolute;
  top: 32px;
  width: 18px;
  height: 1px;
  background: rgba(83, 230, 167, 0.32);
  content: "";
}

.home-roadmap .path-step:nth-child(odd)::after {
  right: -18px;
}

.home-roadmap .path-step:nth-child(even)::after {
  left: -18px;
}

.home-roadmap .path-step:last-child::after {
  display: block;
}

.path-step {
  padding: 17px;
}

.path-step b {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  margin-bottom: 12px;
  border-radius: 999px;
  background: var(--primary);
  color: #04100d;
}

.path-step strong {
  display: block;
  line-height: 1.25;
}

.path-step p {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.48;
}

.architecture-grid {
  margin: 46px 0 58px;
  gap: 24px;
}

.architecture-card {
  min-height: 170px;
  padding: 22px;
}

.architecture-card p {
  line-height: 1.55;
}

.provider-reality-panel {
  margin: 0 0 56px;
  padding: 26px;
  display: grid;
  grid-template-columns: minmax(240px, 0.72fr) minmax(0, 1.28fr);
  gap: 24px;
  align-items: start;
}

.provider-reality-panel h2,
.provider-reality-panel p {
  margin: 0;
}

.provider-reality-panel h2 {
  margin-top: 8px;
}

.provider-reality-panel p {
  color: var(--muted);
  line-height: 1.58;
}

.provider-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.provider-facts article {
  min-height: 132px;
  padding: 14px;
  display: grid;
  gap: 9px;
  align-content: start;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #0b1713;
}

.provider-facts span {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: rgba(120, 200, 255, 0.13);
  color: var(--blue);
}

.provider-facts svg {
  width: 16px;
  height: 16px;
}

.provider-facts strong {
  line-height: 1.25;
}

.transparency-panel + .boundary-panel {
  margin-top: 52px;
}

.plan-page {
  display: grid;
  justify-items: center;
  text-align: center;
}

.plan-page .intro.slim {
  width: min(100%, 860px);
  margin: 32px auto 0;
  grid-template-columns: 1fr;
  justify-items: center;
}

.plan-page .intro-copy,
.plan-page .intro-copy h1,
.plan-page .intro-copy .subtext {
  margin-right: auto;
  margin-left: auto;
}

.plan-page .architecture-grid {
  width: min(100%, 1060px);
  margin: 54px auto 68px;
  justify-content: center;
}

.plan-page .architecture-card {
  display: grid;
  justify-items: center;
  text-align: center;
}

.plan-page .provider-reality-panel,
.plan-page .transparency-panel,
.plan-page .boundary-panel {
  width: min(100%, 960px);
  grid-template-columns: 1fr;
  justify-items: center;
  text-align: center;
}

.plan-page .provider-reality-panel {
  margin-right: auto;
  margin-left: auto;
}

.plan-page .provider-reality-panel > div:first-child {
  max-width: 740px;
}

.plan-page .provider-facts {
  width: 100%;
}

.plan-page .provider-facts article {
  justify-items: center;
  text-align: center;
}

.plan-page .transparency-panel {
  margin-right: auto;
  margin-left: auto;
}

.plan-page .transparency-panel > p {
  max-width: 740px;
}

.plan-page .transparency-panel + .boundary-panel {
  margin: 64px auto 0;
}

.plan-page .boundary-grid {
  justify-content: center;
}

@media (max-width: 860px) {
  .provider-reality-panel {
    grid-template-columns: 1fr;
  }

  .provider-facts {
    grid-template-columns: 1fr;
  }
}

.site-footer {
  width: min(1180px, calc(100% - 40px));
  margin: 8px auto 0;
  padding: 32px 0 48px;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 48px;
  border-top: 1px solid rgba(244, 251, 247, 0.1);
}

.privacy-page {
  width: min(860px, 100%);
  margin: 0 auto;
  padding: 34px 0 52px;
  display: grid;
  gap: 20px;
}

.privacy-page .intro {
  margin: 0 0 12px;
}

.privacy-page .privacy-policy {
  margin: 0;
  padding: 26px 28px;
}

.privacy-policy .panel-head {
  margin-bottom: 12px;
}

.privacy-policy p,
.privacy-policy ul {
  margin: 0;
  color: var(--muted);
  line-height: 1.62;
}

.privacy-policy p + p,
.privacy-policy ul + p {
  margin-top: 14px;
}

.privacy-policy ul {
  display: grid;
  gap: 8px;
  padding-left: 20px;
}

.site-footer h2,
.site-footer p {
  margin: 0;
}

.site-footer h2 {
  max-width: 560px;
  font-size: 22px;
  line-height: 1.15;
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.footer-columns section {
  min-width: 0;
  padding: 0;
  border: 0;
  background: transparent;
}

.footer-columns strong {
  display: block;
  margin-bottom: 8px;
  color: rgba(244, 251, 247, 0.72);
  font-size: 12px;
  text-transform: uppercase;
}

.footer-columns p,
.footer-columns a {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.footer-columns a {
  text-decoration: none;
}

.footer-columns a:hover {
  color: var(--green);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-links a {
  min-height: 0;
  padding: 0;
  display: inline-flex;
  align-items: center;
  border: 0;
  background: transparent;
}

.panel {
  min-width: 0;
  padding: 20px;
}

.transparency-panel,
.reality-panel,
.privacy-call-panel,
.build-demand-panel,
.boundary-panel {
  display: grid;
  grid-template-columns: minmax(230px, 0.6fr) minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.transparency-panel p,
.reality-panel p,
.privacy-call-panel p,
.build-demand-panel p,
.boundary-panel p,
.side-brief p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.55;
}

.privacy-call-panel {
  margin-bottom: 64px;
  padding: 24px;
  grid-template-columns: minmax(0, 0.84fr) minmax(0, 1.16fr);
  border-color: rgba(120, 200, 255, 0.24);
  background:
    linear-gradient(135deg, rgba(120, 200, 255, 0.1), rgba(83, 230, 167, 0.08)),
    rgba(12, 24, 21, 0.92);
}

.privacy-call-panel h2 {
  margin-bottom: 12px;
  font-size: 26px;
}

.privacy-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.privacy-card {
  min-height: 168px;
  padding: 14px;
  display: grid;
  gap: 10px;
  align-content: start;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #0b1713;
}

.privacy-card span,
.request-explainer-icon {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: var(--blue-soft);
  color: var(--blue);
}

.privacy-card strong {
  line-height: 1.2;
}

.privacy-card p {
  font-size: 13px;
}

.build-demand-panel {
  margin-bottom: 0;
  padding: 24px;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  border-color: rgba(83, 230, 167, 0.28);
  background:
    linear-gradient(135deg, rgba(83, 230, 167, 0.12), rgba(120, 200, 255, 0.07)),
    rgba(12, 24, 21, 0.92);
}

.support-section {
  margin-bottom: 72px;
}

.support-heading {
  max-width: 760px;
  margin-bottom: 24px;
}

.support-heading h2 {
  font-size: 31px;
}

.demand-copy h2 {
  font-size: 25px;
}

.demand-copy p {
  margin-top: 12px;
}

.demand-action-card {
  min-width: 0;
  display: grid;
  gap: 16px;
}

.demand-action-head {
  padding: 14px;
  border: 1px solid rgba(83, 230, 167, 0.24);
  border-radius: var(--radius);
  background: rgba(83, 230, 167, 0.08);
}

.demand-action-head strong {
  display: block;
  line-height: 1.25;
}

.demand-action-head p {
  margin-top: 5px;
  font-size: 13px;
}

.demand-steps {
  display: grid;
  gap: 12px;
}

.demand-step {
  min-width: 0;
  padding: 12px;
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr);
  gap: 11px;
  align-items: start;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #0b1713;
}

.demand-step strong {
  line-height: 1.2;
}

.demand-step p {
  font-size: 13px;
}

.privacy-note {
  min-width: 0;
  padding: 11px 12px;
  display: flex;
  gap: 8px;
  align-items: flex-start;
  border: 1px solid rgba(120, 200, 255, 0.2);
  border-radius: var(--radius);
  background: var(--blue-soft);
  color: #bfe4ff;
  font-size: 13px;
}

.privacy-note .icon {
  color: var(--blue);
}

.demand-actions {
  width: 100%;
  margin-top: 22px;
  margin-bottom: 0;
  display: grid;
  grid-template-columns: minmax(260px, 1fr) minmax(150px, 220px);
  align-items: stretch;
}

.demand-actions .large-action {
  width: 100%;
  min-height: 66px;
  padding: 0 30px;
  border-color: rgba(83, 230, 167, 0.92);
  box-shadow:
    0 22px 58px rgba(57, 226, 155, 0.32),
    inset 0 0 0 1px rgba(255, 255, 255, 0.18);
  font-size: 17px;
}

.demand-actions .ghost {
  min-height: 66px;
}

.demand-actions .large-action:hover {
  transform: translateY(-1px);
}

.request-summary-panel {
  margin-bottom: 14px;
  border-color: rgba(83, 230, 167, 0.26);
  background: rgba(12, 24, 21, 0.94);
}

.request-summary-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 260px;
  gap: 16px;
  align-items: start;
  margin-bottom: 16px;
}

.request-summary-head p {
  max-width: 680px;
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.5;
}

.request-total {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #0c1814;
}

.request-total span,
.request-total strong {
  display: block;
}

.request-total span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 760;
}

.request-total strong {
  margin-top: 6px;
  font-size: 26px;
  line-height: 1.05;
}

.inline-claim-form {
  margin-top: 14px;
}

.request-modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(2, 5, 4, 0.78);
  backdrop-filter: blur(10px);
}

.request-modal {
  position: relative;
  width: min(860px, 100%);
  max-height: calc(100vh - 48px);
  overflow-y: auto;
  padding: 22px;
  border: 1px solid rgba(83, 230, 167, 0.28);
  border-radius: 18px;
  background: #09140f;
  box-shadow: 0 40px 110px rgba(0, 0, 0, 0.58);
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border: 1px solid #284139;
  border-radius: 999px;
  background: #111f1a;
  color: #f4fbf7;
}

.request-modal .request-summary-head {
  padding-right: 46px;
}

.request-explainer {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 14px;
}

.request-explainer div {
  padding: 13px;
  display: grid;
  gap: 7px;
  align-content: start;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #0c1814;
}

.request-explainer strong,
.request-explainer p {
  display: block;
}

.request-explainer p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.request-readonly-list {
  display: grid;
  gap: 9px;
  max-height: 232px;
  overflow-y: auto;
  padding-right: 4px;
  scrollbar-width: thin;
  scrollbar-color: rgba(83, 230, 167, 0.5) rgba(12, 24, 21, 0.8);
}

.request-readonly-list::-webkit-scrollbar {
  width: 7px;
}

.request-readonly-list::-webkit-scrollbar-track {
  background: rgba(12, 24, 21, 0.8);
}

.request-readonly-list::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(83, 230, 167, 0.5);
}

.request-list-head {
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.request-list-head strong {
  color: var(--ink);
  font-size: 14px;
}

.request-list-head span {
  min-height: 24px;
  padding: 3px 8px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(83, 230, 167, 0.24);
  border-radius: 999px;
  color: var(--green);
  font-size: 12px;
  font-weight: 800;
}

.request-readonly-item {
  padding: 12px;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background: #0c1814;
}

.request-readonly-item .wallet-main {
  grid-template-columns: 38px minmax(0, 1fr);
}

.request-readonly-item .mini-token {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  flex: 0 0 38px;
  margin-top: 0;
  padding: 1px 0 0;
  border-radius: 12px;
  color: #fff;
  font-size: 12px;
  line-height: 1;
  text-align: center;
}

.request-controls,
.request-demo-details {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 10px;
}

.request-controls span,
.request-demo-details span {
  min-height: 25px;
  padding: 4px 8px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  border-radius: 999px;
  background: var(--green-soft);
  color: var(--green);
  font-size: 12px;
  font-weight: 760;
}

.request-demo-details span.active,
.request-demo-details span.requested {
  background: var(--green-soft);
  color: var(--green);
}

.request-demo-details span.paused {
  background: var(--gold-soft);
  color: var(--gold);
}

.request-demo-details span.blocked,
.request-demo-details span.cancelled {
  background: var(--red-soft);
  color: var(--red);
}

.request-demo-details span.pending {
  background: var(--blue-soft);
  color: var(--blue);
}

.request-controls .icon,
.request-demo-details .icon {
  width: 13px;
  height: 13px;
}

.request-modal-form {
  margin-top: 16px;
}

.request-modal-form .form-grid > label:not(.full) {
  grid-template-rows: auto 44px minmax(32px, auto);
}

.request-modal-form .field-hint {
  min-height: 32px;
}

.flow-progress {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 16px;
}

.referral-invite {
  max-width: 860px;
  margin: 0 auto 20px;
  padding: 16px 18px;
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  border: 1px solid rgba(83, 230, 167, 0.42);
  border-radius: 8px;
  background: rgba(83, 230, 167, 0.09);
}

.referral-invite > span {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #04100d;
  background: var(--primary);
}

.referral-invite .icon {
  width: 18px;
  height: 18px;
}

.referral-invite strong,
.referral-invite p {
  display: block;
  margin: 0;
}

.referral-invite p {
  margin-top: 3px;
  color: var(--muted);
  line-height: 1.45;
}

.progress-step {
  min-height: 88px;
  padding: 13px;
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  gap: 4px 10px;
  align-content: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(12, 24, 21, 0.88);
  color: var(--ink);
  text-align: left;
}

.progress-step:hover,
.progress-step.active {
  border-color: var(--green);
  background: rgba(83, 230, 167, 0.1);
}

.progress-step.complete {
  border-color: rgba(83, 230, 167, 0.42);
}

.progress-step span {
  grid-row: span 2;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--surface-soft);
  color: var(--muted);
  font-weight: 850;
}

.progress-step.active span,
.progress-step.complete span {
  background: var(--primary);
  color: #04100d;
}

.progress-step strong,
.progress-step small {
  display: block;
  min-width: 0;
  overflow-wrap: anywhere;
}

.progress-step small {
  color: var(--muted);
  line-height: 1.3;
}

.guided-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 350px;
  gap: 16px;
  align-items: start;
}

.stage-head {
  margin-bottom: 18px;
}

.stage-head h1 {
  max-width: 850px;
  font-size: 42px;
  line-height: 1.05;
}

.control-heading {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: flex-start;
}

.side-brief {
  position: sticky;
  top: 86px;
}

.signal-list {
  margin-top: 16px;
}

.signal-row {
  display: grid;
  gap: 4px;
  padding-top: 12px;
  border-top: 1px solid var(--line-soft);
}

.signal-row:first-child {
  padding-top: 0;
  border-top: 0;
}

.signal-row span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 760;
}

.signal-row strong {
  font-size: 15px;
  line-height: 1.35;
}

.search-box,
.claim-form label {
  display: grid;
  gap: 7px;
}

.search-box span,
.claim-form label > span,
.section-label {
  color: var(--muted);
  font-size: 13px;
  font-weight: 760;
}

input,
select,
textarea {
  width: 100%;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 10px 11px;
  background: #0c1814;
  color: var(--ink);
  outline: none;
}

textarea {
  min-height: 92px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(83, 230, 167, 0.16);
}

.field-hint {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}

.merchant-grid {
  margin-top: 14px;
}

.merchant-card {
  width: 100%;
  min-height: 72px;
  padding: 12px;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) auto;
  gap: 11px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #0c1814;
  color: var(--ink);
  text-align: left;
}

.merchant-card:hover,
.merchant-card.active {
  border-color: var(--green);
  background: rgba(83, 230, 167, 0.1);
}

.merchant-card.custom {
  border-style: dashed;
}

.merchant-card strong,
.merchant-card small,
.wallet-main strong,
.wallet-main span {
  display: block;
  min-width: 0;
}

.merchant-card small,
.wallet-main span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 13px;
}

.merchant-token {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--primary), var(--plum));
}

.merchant-token.muted {
  background: var(--surface-soft);
  color: var(--muted);
}

.mini-token {
  width: 34px;
  height: 34px;
  font-size: 12px;
}

.requested-mark {
  padding: 5px 9px;
  border-radius: 999px;
  background: var(--green-soft);
  color: var(--green);
  font-size: 12px;
}

.section-label {
  margin: 16px 0 8px;
}

.range-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
}

.range-button,
.control-button {
  border-radius: var(--radius);
}

.range-button {
  min-height: 42px;
  border: 1px solid var(--line);
  background: #0c1814;
  color: var(--muted);
}

.range-button:hover,
.range-button.active {
  border-color: var(--primary);
  background: var(--primary);
  color: #04100d;
}

.control-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.control-button {
  min-height: 122px;
  padding: 13px;
  display: grid;
  gap: 5px;
  align-content: start;
  border: 1px solid var(--line);
  background: #0c1814;
  color: var(--ink);
  text-align: left;
}

.control-button:hover,
.control-button.active {
  border-color: var(--green);
  background: var(--green-soft);
}

.control-title {
  width: fit-content;
  padding: 4px 8px;
  border-radius: 999px;
  background: var(--surface-soft);
  color: var(--muted);
  font-size: 12px;
  font-weight: 760;
}

.control-button.active .control-title {
  background: rgba(244, 251, 247, 0.12);
  color: var(--green);
}

.control-button small {
  color: var(--muted);
  line-height: 1.4;
}

.review-actions {
  margin-top: 16px;
}

.review-actions .primary,
.review-actions .ghost {
  flex: 1 1 180px;
}

.empty-state {
  padding: 24px;
  border: 1px dashed var(--line);
  border-radius: var(--radius);
  background: #0c1814;
  color: var(--muted);
  text-align: center;
}

.empty-state.compact {
  padding: 18px;
}

.empty-state strong {
  display: block;
  margin-bottom: 6px;
  color: var(--ink);
}

.empty-state p {
  margin-bottom: 14px;
  line-height: 1.5;
}

.wallet-item {
  padding: 12px;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background: #0c1814;
}

.wallet-main {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
}

.chip-row {
  margin-top: 10px;
}

.chip-row span {
  min-height: 25px;
  padding: 4px 8px;
  border-color: transparent;
  background: var(--plum-soft);
  color: var(--plum);
}

.wallet-item .ghost {
  width: 100%;
  min-height: 34px;
  margin-top: 10px;
}

.danger-text {
  color: var(--red);
}

.mini-summary,
.claim-stat {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--line-soft);
}

.mini-summary strong,
.mini-summary span,
.claim-stat strong,
.claim-stat span {
  display: block;
}

.mini-summary span,
.claim-stat span {
  margin-top: 4px;
  color: var(--muted);
  line-height: 1.45;
}

.claim-stat strong {
  font-size: 34px;
  line-height: 1;
  overflow-wrap: anywhere;
}

.claim-form {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--line-soft);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.full {
  grid-column: 1 / -1;
}

.consent {
  grid-template-columns: 18px minmax(0, 1fr);
  align-items: start;
}

.consent input {
  width: 18px;
  height: 18px;
  min-height: auto;
  margin-top: 4px;
  accent-color: var(--primary);
}

.share-card {
  padding: 6px 0 0;
  color: var(--primary);
}

.share-card h1 {
  font-size: 42px;
  line-height: 1.05;
}

.share-card p {
  color: var(--primary);
  line-height: 1.5;
}

.share-link {
  padding: 12px;
  overflow-wrap: anywhere;
  border-radius: var(--radius);
  background: var(--green-soft);
  color: var(--primary);
  font-size: 13px;
}

.share-actions {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(92px, 1fr));
  gap: 9px;
  margin: 18px 0 12px;
}

.share-option {
  min-height: 76px;
  padding: 10px 6px;
  display: grid;
  place-items: center;
  gap: 5px;
  border: 1px solid rgba(83, 230, 167, 0.3);
  border-radius: 8px;
  color: var(--primary);
  background: rgba(83, 230, 167, 0.06);
  font: inherit;
  cursor: pointer;
}

.share-option:hover,
.share-option:focus-visible {
  border-color: var(--green);
  background: rgba(83, 230, 167, 0.16);
}

.share-option img,
.share-option .icon {
  width: 25px;
  height: 25px;
  display: grid;
  place-items: center;
  font-size: 14px;
  line-height: 1;
}

.share-option img {
  object-fit: contain;
}

.share-option img[src$="linkedin.svg"] {
  filter: invert(1);
}

.share-option span {
  font-size: 12px;
  line-height: 1.1;
}

.native-share {
  background: var(--primary);
  border-color: var(--primary);
  color: #04100d;
}

.notice {
  margin-bottom: 16px;
  padding: 12px 14px;
  border-radius: var(--radius);
  background: var(--blue-soft);
  color: var(--blue);
  line-height: 1.45;
}

.notice.success {
  background: var(--green-soft);
  color: var(--green);
}

.notice.warning {
  background: var(--gold-soft);
  color: var(--gold);
}

.notice.error {
  background: var(--red-soft);
  color: var(--red);
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 22px;
  align-items: stretch;
  margin-bottom: 22px;
}

.intro.slim {
  grid-template-columns: minmax(0, 1fr) 240px;
}

.intro-copy {
  min-width: 0;
}

.impact-card {
  padding: 20px;
  align-self: stretch;
}

.impact-card strong {
  display: block;
  margin-top: 8px;
  font-size: 54px;
  line-height: 1;
}

.impact-card p {
  margin: 4px 0 20px;
  color: var(--muted);
}

.metric-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-bottom: 16px;
}

.metric strong {
  display: block;
  margin-top: 8px;
  font-size: 26px;
  overflow-wrap: anywhere;
}

.board-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.panel-head {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 16px;
}

.panel-head span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 13px;
}

.rank-row {
  min-height: 44px;
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  padding: 10px 0;
  border-top: 1px solid var(--line-soft);
}

.rank-row:first-child {
  border-top: 0;
}

.rank-row b {
  color: var(--muted);
}

.rank-row strong {
  font-variant-numeric: tabular-nums;
}

.admin-intro {
  margin-bottom: 18px;
}

.admin-lock-panel,
.admin-toolbar,
.admin-privacy-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.75fr);
  gap: 18px;
  align-items: center;
  margin-bottom: 16px;
}

.admin-lock-panel p,
.admin-toolbar p,
.admin-privacy-panel p {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.5;
}

.admin-login-form {
  display: grid;
  gap: 12px;
}

.admin-login-form label {
  display: grid;
  gap: 7px;
}

.admin-login-form label > span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 760;
}

.admin-login-form code {
  color: var(--green);
}

.admin-toolbar {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(12, 24, 21, 0.88);
}

.admin-toolbar strong,
.admin-privacy-panel strong {
  display: block;
}

.admin-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}

.admin-actions button {
  min-height: 38px;
}

.admin-privacy-panel {
  padding: 16px;
  border: 1px solid rgba(120, 200, 255, 0.24);
  border-radius: var(--radius);
  background: rgba(120, 200, 255, 0.08);
}

.admin-privacy-panel > div {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 4px 12px;
  align-items: start;
}

.admin-privacy-panel > div > span {
  grid-row: span 2;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  background: var(--blue-soft);
  color: var(--blue);
}

.admin-privacy-panel b {
  justify-self: end;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(5, 8, 7, 0.38);
  color: var(--blue);
  font-size: 12px;
  text-align: right;
}

.admin-metric-grid,
.admin-board-grid,
.admin-provider-panel,
.admin-record-panel,
.admin-story-panel {
  margin-bottom: 16px;
}

.provider-list,
.admin-record-list,
.story-list {
  display: grid;
  gap: 10px;
}

.provider-row,
.admin-record {
  min-width: 0;
  padding: 14px;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background: rgba(7, 17, 15, 0.72);
}

.provider-row {
  display: grid;
  grid-template-columns: 32px minmax(190px, 0.7fr) minmax(0, 1.3fr);
  gap: 12px;
  align-items: center;
}

.provider-row > b {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--surface-soft);
  color: var(--muted);
  font-size: 13px;
}

.provider-main strong,
.provider-main span {
  display: block;
  min-width: 0;
  overflow-wrap: anywhere;
}

.provider-main span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
}

.provider-evidence,
.admin-record-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.provider-evidence span,
.admin-record-meta span {
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 8px;
  border-radius: 999px;
  background: var(--surface-soft);
  color: var(--muted);
  font-size: 12px;
  font-weight: 760;
}

.provider-evidence .icon,
.admin-record-meta .icon {
  width: 14px;
  height: 14px;
  flex: 0 0 auto;
}

.admin-record {
  display: grid;
  gap: 12px;
}

.admin-record-head {
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
}

.admin-record-head strong,
.admin-record-head small {
  display: block;
  min-width: 0;
  overflow-wrap: anywhere;
}

.admin-record-head small {
  margin-top: 3px;
  color: var(--muted);
}

.admin-record-head b {
  padding: 6px 8px;
  border-radius: 999px;
  background: var(--green-soft);
  color: var(--green);
  font-size: 12px;
}

.admin-record p {
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
}

.admin-subscription-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.admin-subscription-list div {
  min-width: 0;
  padding: 10px;
  border-radius: var(--radius);
  background: rgba(23, 36, 31, 0.72);
}

.admin-subscription-list strong,
.admin-subscription-list span,
.admin-subscription-list small {
  display: block;
  min-width: 0;
  overflow-wrap: anywhere;
}

.admin-subscription-list span,
.admin-subscription-list small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}

.story-list blockquote {
  margin: 0;
  padding: 14px;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background: rgba(7, 17, 15, 0.72);
}

.story-list p {
  margin: 0;
  color: var(--ink);
  line-height: 1.5;
}

.story-list cite {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 12px;
  font-style: normal;
}

.admin-empty {
  margin-bottom: 16px;
}

.architecture-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-bottom: 16px;
}

.architecture-card {
  padding: 18px;
}

.architecture-card span {
  margin-bottom: 18px;
}

.architecture-card p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.5;
}

.boundary-grid {
  margin-top: 14px;
}

.boundary-grid span {
  border-color: transparent;
  background: var(--red-soft);
  color: var(--red);
}

@media (max-width: 1060px) {
  .mandate-hero,
  .guided-layout,
  .roadmap-strip,
  .board-grid,
  .admin-lock-panel,
  .admin-toolbar,
  .admin-privacy-panel,
  .architecture-grid {
    grid-template-columns: 1fr 1fr;
  }

  .side-brief {
    position: static;
  }

  .proof-strip,
  .metric-grid,
  .info-split,
  .provider-row,
  .request-summary-head {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .provider-row > b {
    grid-row: span 2;
  }

  .phone-stage {
    grid-template-columns: minmax(0, 390px) minmax(0, 1fr);
    grid-template-areas:
      "phone leftTop"
      "phone rightTop"
      "phone leftMid"
      "phone rightMid"
      "phone bottom";
    align-items: start;
  }

  .app-callout {
    min-height: auto;
  }

  .phone-center .product-demo {
    width: min(100%, 390px);
  }

  .app-callout.left::after,
  .app-callout.right::before,
  .app-callout.bottom::before {
    display: none;
  }
}

@media (min-width: 761px) and (max-width: 920px) {
  .phone-stage {
    width: min(100%, 700px);
    max-width: 700px;
    margin-right: auto;
    margin-left: auto;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-areas:
      "phone phone"
      "connectors connectors"
      "leftTop rightTop"
      "leftMid rightMid"
      "bottom bottom";
    column-gap: 14px;
    row-gap: 0;
  }

  .phone-center .product-demo {
    width: min(100%, 360px);
  }

  .phone-center {
    position: relative;
    min-width: 0;
    padding-bottom: 0;
  }

  .phone-stage .app-callout {
    min-width: 0;
  }

  .phone-center::before,
  .phone-center::after,
  .app-callout.left.top::before,
  .app-callout.right.top::before,
  .app-callout.left.top::after,
  .app-callout.right.top::after {
    display: none;
  }

  .phone-connector-map {
    position: relative;
    display: block;
    grid-area: connectors;
    height: 28px;
  }

  .phone-connector {
    position: absolute;
    top: 0;
    display: block;
    height: 28px;
  }

  .phone-connector.left {
    right: calc(50% + 180px);
    width: calc(180px - 20%);
    border-bottom: 1px solid rgba(83, 230, 167, 0.42);
    border-right: 1px solid rgba(83, 230, 167, 0.42);
  }

  .phone-connector.right {
    left: calc(50% + 180px);
    width: calc(180px - 20%);
    border-left: 1px solid rgba(83, 230, 167, 0.42);
    border-bottom: 1px solid rgba(83, 230, 167, 0.42);
  }

  .app-callout.left.mid,
  .app-callout.right.mid,
  .app-callout.bottom {
    margin-top: 14px;
  }

  .app-callout.bottom {
    grid-area: bottom;
  }
}

@media (max-width: 920px) {
  .support-section {
    margin-bottom: 52px;
  }

  .support-heading {
    margin-bottom: 18px;
  }

  .support-heading h2 {
    font-size: 27px;
  }

  .build-demand-panel {
    grid-template-columns: minmax(0, 1fr);
    gap: 22px;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .demand-copy h2 {
    font-size: 23px;
  }

  .demand-action-card {
    gap: 0;
    padding: 18px;
    border: 1px solid rgba(83, 230, 167, 0.26);
    border-radius: var(--radius);
    background: rgba(12, 24, 21, 0.92);
  }

  .demand-action-head {
    padding: 0 0 14px;
    border: 0;
    border-bottom: 1px solid var(--line);
    border-radius: 0;
    background: transparent;
  }

  .demand-steps {
    gap: 0;
  }

  .demand-step {
    padding: 14px 0;
    border: 0;
    border-bottom: 1px solid var(--line-soft);
    border-radius: 0;
    background: transparent;
  }

  .privacy-note {
    margin-top: 14px;
    padding: 0 0 0 11px;
    border: 0;
    border-left: 2px solid var(--blue);
    border-radius: 0;
    background: transparent;
  }

  .demand-actions {
    grid-template-columns: minmax(0, 1fr);
    margin-top: 16px;
  }

  .home-roadmap-shell {
    margin: 52px 0 40px;
  }

  .home-roadmap-shell .section-heading {
    margin-bottom: 28px;
  }

  .home-roadmap {
    grid-template-columns: minmax(0, 1fr);
    gap: 18px;
    padding-left: 46px;
  }

  .home-roadmap::before {
    top: 20px;
    bottom: 20px;
    left: 15px;
    transform: none;
  }

  .home-roadmap .path-step,
  .home-roadmap .path-step:nth-child(odd),
  .home-roadmap .path-step:nth-child(even) {
    grid-column: 1;
    min-height: auto;
    padding: 0 0 18px 4px;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .home-roadmap .path-step::after,
  .home-roadmap .path-step:nth-child(odd)::after,
  .home-roadmap .path-step:nth-child(even)::after {
    display: none;
  }

  .home-roadmap .path-step b {
    position: absolute;
    top: 0;
    left: -46px;
    z-index: 1;
    margin: 0;
    border: 3px solid var(--bg);
  }

  .home-roadmap .path-step p {
    margin-top: 6px;
  }
}

@media (max-width: 760px) {
  .topbar {
    width: 100vw;
    max-width: 100vw;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    padding: 14px 16px;
    overflow: hidden;
  }

  .brand,
  .nav,
  .nav button {
    min-width: 0;
  }

  .nav {
    width: min(100%, 358px);
    max-width: 358px;
    margin-left: 0;
    justify-self: stretch;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 5px;
  }

  .nav .nav-request {
    display: none;
    margin-right: 0;
  }

  .nav button {
    width: 100%;
    min-height: 38px;
    padding: 0;
    gap: 0;
    font-size: 12px;
    white-space: normal;
  }

  .nav-label {
    display: none;
  }

  .main {
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
    padding: 24px 12px 42px;
  }

  h1,
  .stage-head h1,
  .share-card h1 {
    font-size: 36px;
  }

  .showcase-head h1 {
    max-width: 300px;
    font-size: 31px;
    line-height: 1.04;
    overflow-wrap: break-word;
  }

  .showcase-head .subtext {
    width: min(100%, 31ch);
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .subtext,
  .stage-copy {
    font-size: 16px;
  }

  .mobile-quick-actions {
    display: flex;
    justify-content: center;
    margin-top: 16px;
  }

  .demo-mode-banner {
    width: min(100%, 358px);
    max-width: 358px;
    grid-template-columns: 1fr;
    margin-left: 0;
    margin-right: 0;
    text-align: left;
  }

  .demo-mode-banner span {
    width: fit-content;
  }

  .demo-brief {
    width: min(100%, 340px);
    max-width: 340px;
    margin-left: auto;
    margin-right: auto;
    padding: 14px;
  }

  .demo-explain-panel {
    width: min(100%, 350px);
    grid-template-columns: 1fr;
  }

  .demo-request-cta {
    width: min(100%, 350px);
    margin-right: auto;
    margin-left: auto;
    display: grid;
  }

  .support-section {
    width: 100%;
    max-width: none;
  }

  .support-heading,
  .demand-copy {
    width: min(100%, 350px);
    max-width: 350px;
    margin-right: auto;
    margin-left: auto;
  }

  .demo-brief-grid {
    grid-template-columns: 1fr;
  }

  .privacy-grid {
    grid-template-columns: 1fr;
  }

  .privacy-card {
    min-height: auto;
  }

  .demo-brief-grid article {
    min-height: auto;
  }

  .mandate-hero,
  .proof-strip,
  .roadmap-strip,
  .explain-grid,
  .flow-progress,
  .guided-layout,
  .control-grid,
  .form-grid,
  .board-grid,
  .architecture-grid,
  .boundary-panel,
  .reality-panel,
  .privacy-call-panel,
  .build-demand-panel,
  .admin-lock-panel,
  .admin-toolbar,
  .admin-privacy-panel,
  .provider-row,
  .admin-subscription-list,
  .request-summary-head,
  .transparency-panel,
  .metric-grid,
  .info-split,
  .intro,
  .intro.slim {
    grid-template-columns: 1fr;
  }

  .admin-actions {
    justify-content: stretch;
  }

  .admin-actions button {
    flex: 1 1 150px;
  }

  .admin-privacy-panel b {
    justify-self: start;
    text-align: left;
  }

  .provider-row > b {
    grid-row: auto;
  }

  .admin-record-head {
    grid-template-columns: 36px minmax(0, 1fr);
  }

  .admin-record-head b {
    grid-column: 1 / -1;
    justify-self: start;
  }

  .flow-progress {
    gap: 7px;
  }

  .progress-step {
    min-height: 72px;
  }

  .phone-stage {
    width: min(100%, 350px);
    max-width: 350px;
    margin-right: auto;
    margin-left: auto;
    grid-template-columns: 1fr;
    grid-template-areas:
      "phone"
      "leftTop"
      "rightTop"
      "leftMid"
      "rightMid"
      "bottom";
  }

  .phone-center {
    position: relative;
    width: 100%;
  }

  .app-callout.bottom {
    grid-area: bottom;
  }

  .phone-stage .app-callout::before {
    position: absolute;
    top: -15px;
    left: 50%;
    display: block;
    width: 1px;
    height: 15px;
    background: rgba(83, 230, 167, 0.42);
    content: "";
  }

  .phone-stage .app-callout::after {
    position: absolute;
    top: -19px;
    left: calc(50% - 3px);
    display: block;
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: var(--primary);
    content: "";
  }

  .phone-center .product-demo {
    width: min(100%, 350px);
    max-width: 350px;
  }

  .phone-frame {
    padding: 9px;
    border-radius: 34px;
  }

  .phone-screen {
    aspect-ratio: 25 / 46;
    height: auto;
    min-height: 0;
    border-radius: 27px;
  }

  .home-roadmap {
    grid-template-columns: minmax(0, 1fr);
    gap: 16px;
    padding-left: 42px;
  }

  .home-roadmap-shell {
    margin: 52px 0 40px;
  }

  .home-roadmap-shell .section-heading {
    margin-bottom: 28px;
  }

  .site-footer {
    width: 100%;
    max-width: 100vw;
    margin-top: 8px;
    padding: 32px 12px 40px;
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .site-footer h2 {
    font-size: 22px;
  }

  .footer-columns {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .demand-actions {
    grid-template-columns: 1fr;
  }

  .home-roadmap::before {
    top: 20px;
    bottom: 20px;
    left: 14px;
    transform: none;
  }

  .home-roadmap .path-step {
    grid-column: 1;
    min-height: auto;
    padding: 0 0 18px 4px;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .home-roadmap .path-step:nth-child(odd),
  .home-roadmap .path-step:nth-child(even) {
    grid-column: 1;
  }

  .home-roadmap .path-step::after {
    display: none;
  }

  .home-roadmap .path-step:nth-child(odd)::after,
  .home-roadmap .path-step:nth-child(even)::after {
    display: none;
  }

  .home-roadmap .path-step b {
    position: absolute;
    top: 0;
    left: -42px;
    z-index: 1;
    margin: 0;
    border: 3px solid var(--bg);
  }

  .home-roadmap .path-step p {
    margin-top: 6px;
  }

  .support-section {
    margin-bottom: 52px;
  }

  .support-heading {
    margin-bottom: 18px;
  }

  .support-heading h2 {
    font-size: 27px;
  }

  .build-demand-panel {
    gap: 22px;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .demand-copy h2 {
    font-size: 23px;
  }

  .demand-action-card {
    gap: 0;
    padding: 16px;
    border: 1px solid rgba(83, 230, 167, 0.26);
    border-radius: var(--radius);
    background: rgba(12, 24, 21, 0.92);
  }

  .demand-action-head {
    padding: 0 0 14px;
    border: 0;
    border-bottom: 1px solid var(--line);
    border-radius: 0;
    background: transparent;
  }

  .demand-steps {
    gap: 0;
  }

  .demand-step {
    padding: 14px 0;
    border: 0;
    border-bottom: 1px solid var(--line-soft);
    border-radius: 0;
    background: transparent;
  }

  .privacy-note {
    margin-top: 14px;
    padding: 0 0 0 11px;
    border: 0;
    border-left: 2px solid var(--blue);
    border-radius: 0;
    background: transparent;
  }

  .demand-actions {
    margin-top: 16px;
  }

  .request-modal-backdrop {
    padding: 14px;
    min-height: 100dvh;
    place-items: end center;
  }

  .request-modal {
    width: 100%;
    max-height: calc(100dvh - 28px);
    overscroll-behavior: contain;
    padding: 18px;
    border-radius: 16px;
  }

  .request-modal .request-summary-head {
    padding-right: 38px;
  }

  .request-explainer {
    grid-template-columns: 1fr;
  }

  .phone-balance strong {
    font-size: 29px;
  }

  .range-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .merchant-card {
    grid-template-columns: 42px minmax(0, 1fr);
  }

  .requested-mark {
    grid-column: 2;
    width: fit-content;
  }

  .control-heading {
    display: grid;
  }

  .example-panel {
    grid-template-columns: 1fr;
  }

  .example-result {
    padding-left: 0;
    padding-top: 12px;
    border-left: 0;
    border-top: 1px solid var(--line);
  }
}

@media (max-width: 480px) {
  .topbar {
    padding: 12px;
  }

  .brand-mark {
    width: 44px;
    height: 38px;
  }

  .brand small {
    font-size: 12px;
  }

  .nav {
    width: 100%;
    max-width: none;
  }

  .main {
    padding: 20px 12px 36px;
  }

  .showcase-head {
    margin: 20px auto 24px;
  }

  .showcase-head h1,
  h1,
  .stage-head h1,
  .share-card h1 {
    font-size: 34px;
    line-height: 1.04;
  }

  .showcase-head .subtext {
    width: 100%;
  }

  .phone-stage {
    width: min(calc(100% + 24px), 390px);
    max-width: 390px;
    margin-right: auto;
    margin-left: auto;
  }

  .demo-explain-panel {
    width: min(calc(100% + 24px), 390px);
    max-width: 390px;
  }

  .demo-request-cta {
    width: min(calc(100% + 24px), 390px);
    max-width: 390px;
  }

  .support-section {
    width: 100%;
    max-width: none;
  }

  .phone-center .product-demo {
    width: 100%;
    max-width: 390px;
    margin-right: auto;
    margin-left: auto;
  }

  .phone-stage {
    gap: 14px;
  }

  .app-callout {
    min-height: 0;
    padding: 13px;
    box-shadow: none;
  }

  .phone-frame {
    padding: 8px;
    border-radius: 30px;
  }

  .phone-notch {
    top: 14px;
    width: 86px;
    height: 18px;
  }

  .phone-screen {
    border-radius: 23px;
  }

  .phone-statusbar {
    height: 32px;
    padding: 0 14px;
    font-size: 11px;
  }

  .phone-app-header {
    padding: 7px 13px 10px;
  }

  .app-icon {
    width: 40px;
    height: 36px;
  }

.phone-balance,
  .phone-setting-badges,
  .phone-tabs {
    margin-right: var(--phone-gutter);
    margin-left: var(--phone-gutter);
  }

  .phone-screen {
    --phone-gutter: 13px;
  }

  .phone-balance {
    margin-bottom: 10px;
    padding: 12px;
    gap: 8px;
    border-radius: 18px;
  }

  .phone-balance strong {
    font-size: clamp(24px, 8vw, 29px);
  }

  .phone-setting-badges {
    margin-bottom: 10px;
  }

  .phone-tabs {
    margin-bottom: 10px;
  }

  .phone-tabs button {
    min-height: 32px;
    gap: 3px;
    font-size: 11px;
  }

  .phone-tabs .icon {
    width: 12px;
    height: 12px;
  }

  .phone-screen .wallet-preview {
    padding-right: var(--phone-gutter);
    padding-left: var(--phone-gutter);
  }

  .phone-add-button {
    width: auto;
    min-height: 42px;
    margin: 0 var(--phone-gutter) 12px;
  }

  .phone-picker,
  .phone-settings {
    padding: 8px;
  }

  .picker-sheet,
  .settings-sheet {
    border-radius: 18px;
  }

  .phone-picker-item {
    grid-template-columns: 32px minmax(0, 1fr);
  }

  .phone-picker-item b {
    display: none;
  }

  .phone-picker-main {
    grid-template-columns: 32px minmax(0, 1fr);
  }

  .request-modal-backdrop {
    padding: 8px;
  }

  .request-modal {
    max-height: calc(100dvh - 16px);
    padding: 16px;
    border-radius: 14px;
  }

  .request-list-head {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .request-readonly-list {
    max-height: min(232px, 30dvh);
  }

  input,
  select,
  textarea {
    font-size: 16px;
  }
}
