:root {
  color-scheme: light;
  --blue: #3b6cff;
  --blue-deep: #0a2158;
  --blue-dark: #06143a;
  --blue-shade: #1a4fd6;
  --skin: #fcb275;
  --skin-shade: #e99e68;
  --outline: #0a2158;
  --wood: #704120;
  --bone: #f4f7fc;
  --bg: #3b6cff;
  --surface: #f4f7fc;
  --surface-raised: #ffffff;
  --surface-sunken: #e4ebf7;
  --surface-hover: #eaf0fa;
  --ink: #0a2158;
  --ink-muted: #1c3568;
  --ink-faint: #3a5280;
  --paper-muted: #4a5d7a;
  --paper-faint: #6b7c96;
  --on-blue: #e8efff;
  --on-blue-muted: #c5d4f5;
  --on-accent: #f4f7fc;
  --rule: #c5d2e8;
  --rule-strong: #0a2158;
  --salary: #0891b2;
  --salary-soft: #d7f3f8;
  --stamp: #c02a25;
  --stamp-soft: #f8dedd;
  --amber: #b45309;
  --amber-soft: #fbeadb;
  --fast-track: #1a4fd6;
  --rank-1: #9aa6bc;
  --rank-2: #8aa0d4;
  --rank-3: #3b6cff;
  --rank-4: #1a4fd6;
  --rank-5: #0a2158;
  --rank-6: #06143a;
  --rank-7: #c07a25;
  --rank-8: #e8b23a;
  --font-ui-loaded: "Archivo", "Archivo Fallback", sans-serif;
  --font-mono-loaded: "IBM Plex Mono", "IBM Plex Mono Fallback", monospace;
  --font-display: var(--font-ui-loaded), "Helvetica Neue", Arial, sans-serif;
  --font-ui: var(--font-ui-loaded), -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-mono: var(--font-mono-loaded), ui-monospace, SFMono-Regular, Menlo, monospace;
  --numeric: tabular-nums lining-nums;
  --radius-sm: 0px;
  --radius: 0px;
  --radius-lg: 0px;
  --hairline: 1px;
  --shadow-card: 3px 3px 0 #0a21582e;
  --shadow-raised: 5px 5px 0 #0a21583d;
  --extrude: 4px 4px 0 var(--blue-deep);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --dur-fast: 0.12s;
  --dur: 0.2s;
  --dur-slow: 0.38s;
  --label: var(--on-blue-muted);
}

@font-face {
  font-family: "Archivo Fallback";
  src: local("Arial");
  ascent-override: 88.96%;
  descent-override: 21.28%;
  line-gap-override: 0%;
  size-adjust: 98.7%;
}

@font-face {
  font-family: "IBM Plex Mono Fallback";
  src: local("Arial");
  ascent-override: 76.16%;
  descent-override: 20.43%;
  line-gap-override: 0%;
  size-adjust: 134.59%;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  border-color: var(--rule);
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  background-color: var(--bg);
  background-image:
    linear-gradient(rgba(6, 20, 58, 0.14) 1px, transparent 1px),
    linear-gradient(90deg, rgba(6, 20, 58, 0.14) 1px, transparent 1px);
  background-size: 32px 32px;
  tab-size: 4;
  line-height: 1.5;
}

body {
  margin: 0;
  background:
    radial-gradient(900px 420px at 12% -8%, rgba(255, 255, 255, 0.22), transparent 55%),
    radial-gradient(800px 380px at 92% 8%, rgba(6, 20, 58, 0.2), transparent 50%),
    transparent;
  color: var(--ink);
  font-family: var(--font-ui);
  font-feature-settings: "kern", "liga", "calt";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 15px;
  line-height: 1.55;
}

body.is-locked {
  overflow: hidden;
}

::selection {
  background: var(--blue-deep);
  color: var(--bone);
}

img {
  max-width: 100%;
  display: block;
}

a {
  font: inherit;
  color: inherit;
  text-decoration: none;
  background: transparent;
  border-radius: 0;
}

button {
  font: inherit;
  letter-spacing: inherit;
  color: inherit;
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 0;
  cursor: pointer;
}

button:disabled {
  cursor: not-allowed;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

h1,
h2,
h3,
p,
ul {
  margin: 0;
  padding: 0;
}

ul {
  list-style: none;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
  border-width: 0;
}

.sr-only:focus {
  clip-path: none;
  width: auto;
  height: auto;
  margin: 0;
  position: absolute;
  left: 16px;
  top: 16px;
  z-index: 50;
  background: var(--blue-deep);
  color: var(--on-accent);
  padding: 8px 12px;
}

.display {
  font-family: var(--font-display);
  letter-spacing: -0.03em;
  font-weight: 800;
  line-height: 0.98;
}

.extruded {
  text-shadow: var(--extrude);
}

.mono {
  font-family: var(--font-mono);
  font-variant-numeric: var(--numeric);
}

.field-label {
  font-family: var(--font-mono);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--label, var(--on-blue-muted));
  font-size: 10px;
  font-weight: 500;
}

.pixelated {
  image-rendering: pixelated;
}

.rise {
  animation: ntf-rise var(--dur-slow) var(--ease-out) both;
}

@keyframes ntf-rise {
  0% {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes pulse {
  50% {
    opacity: 0.5;
  }
}

.animate-pulse {
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.bg-surface,
.bg-sunken,
.bg-hover,
.sheet,
.section-surface,
.section-sunken,
.metric {
  --label: var(--paper-faint);
  --ink-muted: var(--paper-muted);
  --ink-faint: var(--paper-faint);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 2px solid var(--rule-strong);
  background: color-mix(in srgb, var(--blue-deep) 24%, color-mix(in srgb, var(--bg) 76%, transparent));
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.header-inner {
  margin: 0 auto;
  display: flex;
  height: 56px;
  max-width: 1240px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.brand-mark {
  width: 28px;
  height: 28px;
  border: 1px solid color-mix(in srgb, var(--bone) 35%, transparent);
  background: color-mix(in srgb, var(--blue-dark) 35%, transparent);
  transition: transform 0.2s;
}

.brand:hover .brand-mark {
  transform: translateY(-2px);
}

.brand-name {
  font-size: 13px;
  text-transform: uppercase;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--bone);
  white-space: nowrap;
}

.brand-ticker {
  margin-top: 2px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.025em;
  color: var(--on-blue-muted);
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 24px;
}

.nav-link {
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--on-blue-muted);
  transition: color 0.15s;
}

.nav-link:hover,
.nav-link.is-active {
  color: var(--bone);
}

.nav-link-social {
  border-left: 1px solid var(--rule-strong);
  padding-left: 24px;
  display: inline-flex;
  align-items: center;
}

.nav-link-pump {
  display: inline-flex;
  align-items: center;
}

.nav-link-pump img {
  display: block;
  width: 16px;
  height: 16px;
  border-radius: 50%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.wallet-wrap {
  position: relative;
  display: inline-flex;
  height: 32px;
}

.btn-wallet {
  display: inline-flex;
  height: 36px;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--rule-strong);
  background: var(--blue-deep);
  color: var(--on-accent);
  padding: 0 14px;
  font-size: 12px;
  font-weight: 600;
  transition: background-color 0.15s, transform 0.12s, box-shadow 0.12s;
}

.btn-wallet:hover {
  background: var(--ink);
}

.btn-wallet.is-connected {
  background: var(--surface);
  color: var(--ink);
}

.btn-wallet.is-connected:hover {
  background: var(--surface-hover);
}

.btn-wallet:active {
  transform: translate(1px, 1px);
}

.btn-wallet:disabled {
  opacity: 0.5;
}

.wallet-menu {
  display: none;
  position: absolute;
  right: 0;
  z-index: 50;
  margin-top: 4px;
  width: 240px;
  border: 2px solid var(--rule-strong);
  background: var(--surface);
  box-shadow: 4px 4px 0 var(--ink);
}

.wallet-menu.is-open {
  display: block;
}

.wallet-menu-label {
  border-bottom: 1px solid var(--rule);
  padding: 8px 12px;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--paper-faint);
}

.wallet-item {
  display: flex;
  width: 100%;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  text-align: left;
  font-size: 13px;
  color: var(--ink);
  transition: background-color 0.15s;
}

.wallet-item:hover,
.wallet-item:active {
  background: var(--surface-hover);
}

.wallet-icon,
.wallet-icon-svg {
  display: inline-block;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.wallet-icon {
  border: 1px solid var(--rule);
}

.wallet-note {
  border-top: 1px solid var(--rule);
  padding: 8px 12px;
  font-size: 10px;
  line-height: 1.625;
  color: var(--paper-faint);
}

.btn-menu {
  display: grid;
  height: 32px;
  width: 32px;
  place-items: center;
  border: 2px solid var(--bone);
  color: var(--bone);
  transition: background-color 0.12s, transform 0.12s;
}

.btn-menu:hover {
  background: color-mix(in srgb, var(--bone) 14%, transparent);
}

.btn-menu:active {
  transform: translate(1px, 1px);
}

.nav-mobile {
  display: none;
  border-top: 1px solid color-mix(in srgb, var(--bone) 22%, transparent);
  background: var(--blue-deep);
  padding: 12px 20px;
}

.nav-mobile.is-open {
  display: block;
}

.nav-mobile ul {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.nav-mobile a {
  display: block;
  padding: 8px 0;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--on-blue);
}

.nav-mobile .nav-get-ntf {
  border-top: 1px solid color-mix(in srgb, var(--bone) 22%, transparent);
  padding-top: 12px;
}

.nav-mobile .nav-link-pump img {
  width: 18px;
  height: 18px;
  border-radius: 50%;
}

.nav-mobile .nav-mobile-apply {
  display: inline-flex;
  height: 36px;
  align-items: center;
  margin-top: 8px;
  border: 1px solid var(--blue-deep);
  background: var(--blue-deep);
  color: var(--on-accent);
  padding: 0 16px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
}

.truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.nav-mobile .nav-mobile-apply:active {
  transform: translate(1px, 1px);
}

.hero {
  position: relative;
  border-bottom: 2px solid var(--rule-strong);
}

.hero-inner {
  margin: 0 auto;
  display: grid;
  max-width: 1240px;
  align-items: center;
  gap: 32px;
  padding: 56px 20px 40px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
}

.eyebrow img {
  width: 22px;
  height: 22px;
}

.eyebrow .field-label {
  color: var(--on-blue-muted);
}

.hero-title {
  margin-top: 24px;
  font-size: clamp(46px, 8.5vw, 96px);
  text-transform: uppercase;
  color: var(--bone);
}

.hero-lead {
  margin-top: 24px;
  max-width: 40ch;
  font-size: 19px;
  font-weight: 500;
  line-height: 1.5;
  color: var(--on-blue);
}

.hero-actions,
.section-actions {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.btn {
  display: inline-flex;
  height: 48px;
  align-items: center;
  border: 2px solid var(--rule-strong);
  padding: 0 24px;
  font-size: 15px;
  font-weight: 600;
  box-shadow: 4px 4px 0 var(--ink);
  transition: transform 0.12s, box-shadow 0.12s;
}

.btn:hover {
  transform: translate(-2px, -2px);
}

.btn:active {
  transform: translate(1px, 1px);
  box-shadow: 2px 2px 0 var(--ink);
}

.btn-deep {
  background: var(--blue-deep);
  color: var(--on-accent);
}

.btn-surface {
  background: var(--surface);
  color: var(--ink);
}

.btn-azure {
  background: var(--blue-deep);
  color: var(--on-accent);
}

.hint strong {
  font-weight: 600;
}

.hint {
  margin-top: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  line-height: 1.375;
  color: var(--on-blue-muted);
}

.hint-on-surface {
  color: var(--ink-muted);
}

.info-mark {
  display: inline-flex;
  height: 15px;
  width: 15px;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--on-blue-muted);
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
}

.hint-on-surface .info-mark {
  border-color: var(--ink-muted);
}

.contracts {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.chip {
  display: inline-flex;
  align-items: stretch;
  border: 1px solid color-mix(in srgb, var(--bone) 35%, transparent);
  background: color-mix(in srgb, var(--blue-dark) 42%, transparent);
}

.chip-copy,
.chip-soon {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  font-size: 11px;
  color: var(--on-blue);
  transition: background-color 0.15s;
}

.chip-soon {
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.is-hidden {
  display: none !important;
}

.chip-copy:hover,
.chip-copy:active {
  background: var(--blue-dark);
}

.chip-label {
  color: var(--on-blue-muted);
}

.chip-ext {
  display: inline-flex;
  align-items: center;
  border-left: 1px solid var(--rule-strong);
  padding: 0 8px;
  font-size: 11px;
  color: var(--on-blue-muted);
  transition: background-color 0.15s, color 0.15s;
}

.chip-ext:hover,
.chip-ext:active {
  background: var(--blue-dark);
  color: var(--on-blue);
}

.hero-art {
  position: relative;
  margin-left: -20px;
  margin-right: -20px;
  height: 180px;
}

.hero-art img {
  position: absolute;
  inset: 0;
  height: 100%;
  width: 100%;
  object-fit: contain;
  object-position: bottom;
}

.section-surface {
  border-bottom: 1px solid var(--rule);
  background: var(--surface);
}

.section-plain {
  border-bottom: 1px solid var(--rule);
}

.section-sunken {
  border-bottom: 1px solid var(--rule);
  background: var(--surface-sunken);
}

.section-inner {
  margin: 0 auto;
  max-width: 1240px;
  padding: 56px 20px;
}

.section-inner-lg {
  padding: 64px 20px;
}

.steps {
  display: grid;
  gap: 24px;
}

.step {
  border-top: 2px solid var(--rule-strong);
  padding-top: 16px;
}

.step-num {
  font-size: 11px;
  color: var(--blue-deep);
}

.step h3 {
  margin-top: 8px;
  font-size: 22px;
  text-transform: uppercase;
  line-height: 1;
  color: var(--ink);
}

.step p {
  margin-top: 8px;
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-muted);
}

.link-quiet {
  font-size: 13px;
  color: var(--ink-muted);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.link-quiet:hover {
  color: var(--ink);
}

.stats-head {
  margin-bottom: 24px;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
}

.stats-chain {
  font-size: 10px;
  color: var(--on-blue-muted);
}

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

.metric {
  position: relative;
  cursor: help;
  border: 1px solid var(--rule);
  background: var(--surface);
  padding: 16px;
  transition: border-color 0.15s, background-color 0.15s;
  --label: var(--paper-faint);
  --ink-muted: var(--paper-muted);
  --ink-faint: var(--paper-faint);
}

.metric:hover,
.metric:focus-within {
  border-color: var(--rule-strong);
  background: var(--surface-hover);
  outline: none;
}

.metric:focus-within {
  border-color: var(--blue-deep);
}

.metric-value {
  margin-top: 8px;
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.metric-num {
  font-size: 26px;
  font-weight: 500;
  line-height: 1;
}

.metric-unit {
  font-size: 11px;
  color: var(--ink-faint);
}

.tone-ink {
  color: var(--ink);
}

.tone-azure {
  color: var(--blue-deep);
}

.tone-salary {
  color: var(--salary);
}

.tone-stamp {
  color: var(--stamp);
}

.tone-amber {
  color: var(--amber);
}

.metric-rule {
  margin-top: 12px;
  height: 1px;
  width: 100%;
  background: var(--rule);
}

.metric-rule-fill {
  height: 1px;
  width: 0;
  background: var(--blue-deep);
  transition: width 0.3s;
}

.metric:hover .metric-rule-fill,
.metric:focus-within .metric-rule-fill {
  width: 100%;
}

.metric-detail {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  transition: grid-template-rows 0.2s, opacity 0.2s;
}

.metric:hover .metric-detail,
.metric:focus-within .metric-detail {
  grid-template-rows: 1fr;
  opacity: 1;
}

.metric-detail p {
  overflow: hidden;
  font-size: 12px;
  line-height: 1.625;
  color: var(--ink-muted);
}

.metric-detail span {
  display: block;
  padding-top: 10px;
}

.section-title {
  font-size: clamp(28px, 4vw, 42px);
  text-transform: uppercase;
  color: var(--ink);
}

.section-lead {
  margin-top: 12px;
  max-width: 58ch;
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-muted);
}

.table-wrap {
  margin-top: 32px;
  overflow-x: auto;
}

.ranks {
  width: 100%;
  min-width: 820px;
  font-size: 13px;
}

.ranks thead tr {
  background: var(--blue-deep);
  color: var(--on-accent);
}

.ranks th {
  white-space: nowrap;
  padding: 10px 12px;
  text-align: right;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.ranks th.is-left {
  text-align: left;
}

.ranks td {
  white-space: nowrap;
  border-bottom: 1px solid var(--rule);
  padding: 10px 12px;
  text-align: right;
  color: var(--ink-muted);
}

.ranks td.is-left {
  text-align: left;
}

.rank-cell {
  display: flex;
  align-items: center;
  gap: 8px;
}

.rank-dot {
  display: inline-block;
  height: 10px;
  width: 10px;
  flex-shrink: 0;
  border-radius: 1px;
}

.rank-name,
.rank-weight {
  font-weight: 600;
  color: var(--ink);
}

.row-alt {
  background: color-mix(in oklab, var(--surface-sunken) 40%, transparent);
}

.rank-actions {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn-sm {
  display: inline-flex;
  height: 44px;
  align-items: center;
  border: 2px solid var(--rule-strong);
  padding: 0 20px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--ink);
  box-shadow: 3px 3px 0 var(--ink);
  transition: transform 0.12s, box-shadow 0.12s;
}

.btn-sm:hover {
  transform: translate(-2px, -2px);
}

.btn-sm:active {
  transform: translate(1px, 1px);
  box-shadow: 1px 1px 0 var(--ink);
}

.btn-sm-surface {
  background: var(--surface);
}

.btn-sm-fast {
  border-color: var(--fast-track);
  background: color-mix(in oklab, var(--fast-track) 10%, transparent);
}

.fine-print {
  margin-top: 16px;
  max-width: 80ch;
  font-size: 12px;
  line-height: 1.625;
  color: var(--ink-faint);
}

.risks {
  margin-top: 32px;
  display: grid;
  gap: 24px 40px;
}

.risk {
  border-top: 1px solid var(--rule-strong);
  padding-top: 16px;
}

.risk h3 {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
}

.risk p {
  margin-top: 6px;
  font-size: 13px;
  line-height: 1.625;
  color: var(--ink-muted);
}

.site-footer {
  background: var(--blue-dark);
  color: var(--bone);
}

.site-footer .field-label {
  color: var(--on-blue-muted);
}

.site-footer .footer-blurb p,
.site-footer .footer-cols a {
  color: var(--on-blue-muted);
}

.site-footer .footer-cols a:hover {
  color: var(--bone);
}

.site-footer .footer-top {
  border-bottom-color: color-mix(in srgb, var(--bone) 18%, transparent);
}

.site-footer .footer-legal,
.site-footer .footer-meta {
  color: color-mix(in srgb, var(--bone) 48%, transparent);
}

.footer-inner {
  margin: 0 auto;
  max-width: 1240px;
  padding: 48px 20px;
}

.footer-top {
  display: flex;
  flex-direction: column;
  gap: 32px;
  border-bottom: 1px solid var(--rule);
  padding-bottom: 32px;
}

.footer-blurb {
  max-width: 36ch;
}

.footer-blurb img {
  width: 30px;
  height: 30px;
}

.footer-blurb p {
  margin-top: 12px;
  font-size: 13px;
  line-height: 1.625;
  color: var(--ink-muted);
}

.footer-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 48px;
  row-gap: 8px;
}

.footer-cols ul {
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer-cols a {
  font-size: 13px;
  color: var(--ink-muted);
  transition: color 0.15s;
}

.footer-cols a:hover {
  color: var(--ink);
}

.footer-legal {
  margin-top: 24px;
  max-width: 100ch;
  font-size: 11px;
  line-height: 1.625;
  color: var(--ink-faint);
}

.footer-meta {
  margin-top: 20px;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--ink-faint);
}

.intro {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 100;
  align-items: center;
  justify-content: center;
  background: color-mix(in srgb, var(--ink) 95%, transparent);
  padding: 16px;
}

.intro.is-open {
  display: flex;
}

.intro video {
  max-height: 80vh;
  width: auto;
  max-width: 100%;
  border: 2px solid var(--rule-strong);
}

.intro-skip {
  position: absolute;
  bottom: 32px;
  right: 24px;
  border: 2px solid color-mix(in oklab, var(--bone) 60%, transparent);
  padding: 8px 16px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--bone);
  transition: background-color 0.15s, color 0.15s;
}

.intro-skip:hover,
.intro-skip:active {
  background: var(--bone);
  color: var(--ink);
}

.opacity-40 {
  opacity: 0.4;
}

.page-hero {
  border-bottom: 2px solid var(--rule-strong);
}

.page-hero-inner {
  margin: 0 auto;
  max-width: 1240px;
  padding: 56px 20px 40px;
}

.page-hero h1 {
  margin-top: 16px;
  font-size: clamp(36px, 6vw, 64px);
  text-transform: uppercase;
  color: var(--bone);
}

.page-hero p {
  margin-top: 16px;
  max-width: 48ch;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.5;
  color: var(--on-blue);
}

.page-body {
  background: var(--surface);
  border-bottom: 1px solid var(--rule);
}

.page-body-inner {
  margin: 0 auto;
  max-width: 1240px;
  padding: 40px 20px 72px;
  --label: var(--paper-faint);
  --ink-muted: var(--paper-muted);
  --ink-faint: var(--paper-faint);
}

.page-grid {
  display: grid;
  gap: 16px;
}

.page-grid-2 {
  display: grid;
  gap: 16px;
}

.page-panel {
  border: 1px solid var(--rule);
  background: var(--surface);
  padding: 20px;
}

.page-panel h2 {
  font-size: 22px;
  text-transform: uppercase;
  color: var(--ink);
}

.page-panel p,
.page-copy {
  margin-top: 10px;
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-muted);
}

.page-stat {
  margin-top: 12px;
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.page-stat-num {
  font-size: 28px;
  font-weight: 500;
  color: var(--ink);
}

.page-actions {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.page-empty {
  border: 1px dashed var(--rule);
  padding: 28px 20px;
  color: var(--ink-muted);
  font-size: 14px;
}

@media (min-width: 640px) {
  .page-hero-inner,
  .page-body-inner {
    padding-left: 32px;
    padding-right: 32px;
  }

  .page-grid-2 {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 640px) {
  .brand-name {
    font-size: 16px;
  }

  .header-inner,
  .hero-inner,
  .section-inner,
  .section-inner-lg,
  .footer-inner {
    padding-left: 32px;
    padding-right: 32px;
  }

  .wallet-wrap {
    display: inline-flex;
  }

  .hero-inner {
    padding-top: 80px;
  }

  .hero-art {
    margin-left: -32px;
    margin-right: -32px;
    height: 240px;
  }

  .section-inner {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .section-inner-lg {
    padding-top: 80px;
    padding-bottom: 80px;
  }

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

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

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

  .footer-top {
    flex-direction: row;
    justify-content: space-between;
  }

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

  .intro-skip {
    right: 40px;
  }

  .nav-mobile {
    padding-left: 32px;
    padding-right: 32px;
  }
}

@media (min-width: 1024px) {
  .brand-name {
    font-size: 17px;
  }

  .nav-desktop {
    display: flex;
  }

  .btn-menu,
  .nav-mobile,
  .nav-mobile.is-open {
    display: none;
  }

  .hero-inner {
    grid-template-columns: minmax(0, 36rem) minmax(0, 1fr);
    gap: 48px;
    padding-bottom: 56px;
  }

  .hero-art {
    margin-left: 0;
    margin-right: 0;
    height: 460px;
  }

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

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