:root {
  --midnight: #121827;
  --white: #ffffff;
  --teal: #0c6966;
  --teal-deep: #08514f;
  --glacier: #a9d8e8;
  --digital: #4e6cff;
  --account-blue: #2446c8;
  --review-blue: #c9d7ff;
  --slate: #9aa6b5;
  --ink-muted: #596273;
  --line: rgba(18, 24, 39, 0.16);
  --line-strong: rgba(18, 24, 39, 0.28);
  --line-light: rgba(255, 255, 255, 0.2);
  --content: 76rem;
  --font-sans: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-mono: "IBM Plex Mono", "SFMono-Regular", Consolas, monospace;
}

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

html {
  min-width: 20rem;
  background: var(--white);
}

section[id] {
  scroll-margin-top: 4.5rem;
}

body.landing-body {
  min-width: 20rem;
  min-height: 100%;
  margin: 0;
  overflow-x: hidden;
  background: var(--white);
  color: var(--midnight);
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.55;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select {
  color: inherit;
  font: inherit;
  letter-spacing: 0;
}

button,
select {
  cursor: pointer;
}

button {
  border: 0;
}

[hidden] {
  display: none !important;
}

:focus-visible {
  outline: 3px solid var(--digital);
  outline-offset: 3px;
}

::selection {
  background: var(--glacier);
  color: var(--midnight);
}

.page-shell {
  width: min(100%, var(--content));
  margin: 0 auto;
  padding-right: 1.25rem;
  padding-left: 1.25rem;
}

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 50;
  border-bottom: 1px solid transparent;
  background: transparent;
  color: var(--white);
  transition: background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease, color 180ms ease;
}

.site-header.is-scrolled,
body.menu-open .site-header {
  border-bottom-color: var(--line);
  background: var(--white);
  color: var(--midnight);
  box-shadow: 0 8px 24px rgba(18, 24, 39, 0.08);
}

.site-header-inner {
  display: flex;
  width: min(100%, var(--content));
  min-height: 4.5rem;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin: 0 auto;
  padding: 0.75rem 1.25rem;
}

.brand,
.mini-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
}

.brand {
  min-height: 2.75rem;
  flex: 0 0 auto;
  color: var(--white);
  font-size: 1rem;
  font-weight: 800;
}

.brand-symbol {
  width: 2rem;
  height: 2rem;
  flex: 0 0 auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.site-header.is-scrolled .brand,
body.menu-open .site-header .brand {
  color: var(--midnight);
}

.site-header.is-scrolled .brand-symbol,
body.menu-open .site-header .brand-symbol {
  filter: none;
}

.desktop-nav {
  display: none;
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.5rem;
}

.header-signin,
.header-cta,
.button,
.text-link {
  font-weight: 700;
}

.header-signin {
  display: none;
  min-height: 2.75rem;
  align-items: center;
  justify-content: center;
  padding: 0 0.8rem;
  font-size: 0.875rem;
}

.header-cta {
  display: none;
  min-height: 2.75rem;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--white);
  border-radius: 0.375rem;
  background: var(--white);
  color: var(--midnight);
  padding: 0 1rem;
  font-size: 0.8125rem;
  white-space: nowrap;
}

.site-header.is-scrolled .header-cta,
body.menu-open .site-header .header-cta {
  border-color: var(--midnight);
  background: var(--midnight);
  color: var(--white);
}

.icon-button {
  display: inline-grid;
  width: 2.75rem;
  height: 2.75rem;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 0.375rem;
  background: transparent;
  color: inherit;
  font-size: 1.25rem;
}

.menu-button {
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(18, 24, 39, 0.38);
  color: var(--white);
  backdrop-filter: blur(0.75rem);
}

.site-header.is-scrolled .menu-button,
body.menu-open .site-header .menu-button {
  border-color: var(--line);
  background: transparent;
  color: var(--midnight);
  backdrop-filter: none;
}

.mobile-nav {
  height: calc(100dvh - 4.5rem);
  padding: 1rem 1.25rem 2rem;
  overflow-y: auto;
  border-top: 1px solid var(--line);
  background: var(--white);
}

.mobile-nav a {
  display: flex;
  min-height: 3.5rem;
  align-items: center;
  border-bottom: 1px solid var(--line);
  font-size: 1.1rem;
  font-weight: 700;
}

.mobile-nav a:last-child {
  margin-top: 1rem;
  justify-content: center;
  border: 1px solid var(--midnight);
  border-radius: 0.375rem;
  background: var(--midnight);
  color: var(--white);
}

.hero-section {
  position: relative;
  display: flex;
  min-height: 0;
  flex-direction: column;
  overflow: hidden;
  background: var(--midnight);
  color: var(--white);
}

.hero-media {
  position: relative;
  width: 100%;
  height: 19rem;
  flex: 0 0 auto;
  overflow: hidden;
  background: var(--midnight);
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 68% center;
}

.motion-ready .hero-media img {
  transform: translate3d(0, var(--hero-image-y, 0px), 0) scale(var(--hero-image-scale, 1.04));
  transform-origin: center center;
  will-change: transform;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 2.3rem;
  padding-bottom: 2.1rem;
}

.motion-ready .hero-content {
  transform: translate3d(0, var(--hero-content-y, 0px), 0);
  will-change: transform;
}

.eyebrow,
.section-kicker {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow {
  color: var(--glacier);
}

.section-kicker {
  color: var(--teal);
}

.section-kicker--light {
  color: var(--glacier);
}

.hero-content h1,
.people-copy h2,
.accounts-copy h2,
.section-heading h2,
.cards-copy h2,
.security-copy h2,
.access-layout h2,
.transfer-intro h2,
.dialog-header h2 {
  margin: 0;
  font-family: var(--font-sans);
  font-weight: 800;
  letter-spacing: 0;
}

.hero-content h1 {
  max-width: 8ch;
  margin-top: 0.9rem;
  font-size: 3.35rem;
  line-height: 0.98;
}

.hero-lede {
  max-width: 32rem;
  margin: 1.1rem 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.05rem;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  width: 100%;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.hero-actions .button--ghost-light {
  display: none;
}

.button {
  display: inline-flex;
  min-height: 3.25rem;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  border: 1px solid transparent;
  border-radius: 0.375rem;
  padding: 0.7rem 1.25rem;
  text-align: center;
  transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.button i {
  font-size: 1.05rem;
}

.button--light {
  background: var(--white);
  color: var(--midnight);
}

.button--ghost-light {
  border-color: rgba(255, 255, 255, 0.38);
  background: transparent;
  color: var(--white);
}

.button--teal {
  background: var(--teal);
  color: var(--white);
}

.button--midnight {
  background: var(--midnight);
  color: var(--white);
}

.hero-rail {
  position: relative;
  z-index: 2;
  display: none;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: auto;
  border-top: 1px solid var(--line-light);
  padding-bottom: 1rem;
}

.hero-rail span {
  display: flex;
  min-height: 3.7rem;
  align-items: center;
  border-bottom: 1px solid var(--line-light);
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.72rem;
  font-weight: 700;
}

.hero-rail span:nth-child(odd) {
  padding-right: 0.75rem;
}

.hero-rail span:nth-child(even) {
  border-left: 1px solid var(--line-light);
  padding-left: 0.75rem;
}

.transfer-dock {
  border-top: 1px solid var(--line-light);
  background: var(--midnight);
  color: var(--white);
}

.transfer-dock-inner {
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
}

.transfer-intro h2 {
  max-width: 18ch;
  margin-top: 0.65rem;
  font-size: 1.9rem;
  line-height: 1.15;
}

.transfer-form {
  display: grid;
  margin-top: 2.5rem;
  border-top: 1px solid var(--line-light);
}

.transfer-field {
  display: grid;
  min-width: 0;
  gap: 0.65rem;
  border-bottom: 1px solid var(--line-light);
  padding: 1.2rem 0;
}

.transfer-field > span:first-child {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
}

.transfer-control {
  display: grid;
  min-width: 0;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 0.7rem;
}

.transfer-control i {
  color: var(--glacier);
  font-size: 1.2rem;
}

.transfer-control select,
.transfer-control input {
  width: 100%;
  min-width: 0;
  min-height: 2.75rem;
  margin: -0.5rem 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--white);
  font-size: 1rem;
  font-weight: 700;
}

.transfer-control option {
  color: var(--midnight);
}

.transfer-control input {
  font-family: var(--font-mono);
  font-size: 1.15rem;
}

.transfer-control b,
.currency-code {
  display: inline-grid;
  min-width: 2.15rem;
  min-height: 2.15rem;
  place-items: center;
  border: 1px solid var(--line-light);
  border-radius: 50%;
  color: var(--glacier);
  font-family: var(--font-mono);
  font-size: 0.62rem;
  font-weight: 600;
}

.transfer-submit {
  width: 100%;
  margin-top: 1.25rem;
}

.people-section,
.cards-section {
  padding: 5.5rem 0;
  background: var(--white);
}

.people-grid,
.cards-layout,
.accounts-layout,
.security-layout,
.access-layout {
  display: grid;
  gap: 3rem;
}

.people-copy h2,
.accounts-copy h2,
.section-heading h2,
.cards-copy h2,
.security-copy h2,
.access-layout h2 {
  margin-top: 0.75rem;
  font-size: 2.75rem;
  line-height: 1.04;
}

.people-copy > p:last-of-type,
.accounts-copy > p:last-of-type,
.cards-copy > p,
.security-copy > p:last-of-type,
.access-layout > div > p:last-child,
.section-heading > p {
  max-width: 35rem;
  margin: 1.4rem 0 0;
  color: var(--ink-muted);
  line-height: 1.75;
}

.text-link {
  display: inline-flex;
  min-height: 2.75rem;
  align-items: center;
  gap: 0.55rem;
  margin-top: 1.6rem;
  border-bottom: 1px solid currentColor;
  color: var(--teal);
}

.text-link--light {
  color: var(--white);
}

.people-photo,
.cards-photo {
  margin: 0;
  overflow: hidden;
  background: var(--midnight);
}

.people-photo img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center 44%;
}

.motion-ready .people-photo img {
  transform: translate3d(0, var(--people-image-y, 0px), 0) scale(1.07);
  transform-origin: center center;
  will-change: transform;
}

.people-photo figcaption {
  display: flex;
  min-height: 3.75rem;
  align-items: center;
  justify-content: space-between;
  gap: 0.65rem;
  padding: 0.8rem 1rem;
  background: var(--midnight);
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.62rem;
  font-weight: 700;
}

.workspace-band {
  margin-top: 4rem;
  overflow: hidden;
  padding-right: 0;
  padding-left: 0;
  border: 1px solid rgba(18, 24, 39, 0.12);
  border-radius: 0.5rem;
  background: #080b12;
  color: var(--white);
  box-shadow: 0 2rem 5rem rgba(18, 24, 39, 0.16);
}

.motion-ready .workspace-band {
  transform: translate3d(0, var(--workspace-y, 0px), 0) scale(var(--workspace-scale, 1));
  transform-origin: center top;
  will-change: transform;
}

.workspace-header {
  display: grid;
  min-height: 4.75rem;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.75rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  padding: 0.75rem;
  background: #111724;
}

.mini-brand img {
  width: 1.45rem;
  height: 1.45rem;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.mini-brand b {
  display: none;
  font-size: 0.78rem;
}

.workspace-search {
  display: flex;
  width: 100%;
  min-width: 0;
  min-height: 2.75rem;
  align-items: center;
  gap: 0.55rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  padding: 0 0.85rem;
  background: #1a202d;
  color: rgba(255, 255, 255, 0.66);
  text-align: left;
}

.workspace-search i {
  flex: 0 0 auto;
  font-size: 1rem;
}

.workspace-search span {
  overflow: hidden;
  font-size: 0.72rem;
  font-weight: 600;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.workspace-tools {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.workspace-tool {
  border-color: rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  background: #242b3a;
  color: var(--white);
}

.workspace-tool--secondary {
  display: none;
}

.workspace-avatar {
  position: relative;
  display: grid;
  width: 2.75rem;
  height: 2.75rem;
  flex: 0 0 auto;
  place-items: center;
  border: 2px solid #c9d7ff;
  border-radius: 50%;
  background: #0a0d14;
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 800;
}

.workspace-avatar b {
  position: absolute;
  top: -0.15rem;
  right: 0;
  width: 0.48rem;
  height: 0.48rem;
  border: 2px solid #111724;
  border-radius: 50%;
  background: #ff5d7d;
}

.workspace-body {
  display: grid;
  background: #080b12;
}

.workspace-nav {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  padding: 0.5rem;
  background: #151a26;
}

.workspace-nav button {
  display: grid;
  min-width: 0;
  min-height: 3.8rem;
  place-items: center;
  gap: 0.15rem;
  border-radius: 0.5rem;
  background: transparent;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.58rem;
  font-weight: 700;
}

.workspace-nav button i {
  font-size: 1.1rem;
}

.workspace-nav button.is-active {
  background: #2a3140;
  color: var(--white);
}

.balance-panel,
.activity-panel {
  min-width: 0;
  padding: 1.5rem 1rem;
}

.balance-panel {
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  text-align: center;
}

.balance-meta {
  display: flex;
  min-height: 2.75rem;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
}

.workspace-account,
.balance-privacy {
  display: inline-flex;
  min-height: 2.75rem;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: rgba(255, 255, 255, 0.78);
}

.workspace-account {
  gap: 0.35rem;
  padding: 0 0.45rem;
  font-size: 0.84rem;
  font-weight: 600;
}

.balance-privacy {
  width: 2.75rem;
  border-radius: 50%;
  font-size: 0.95rem;
}

.balance-panel > strong {
  display: block;
  margin-top: 0.25rem;
  font-size: 2.9rem;
  font-weight: 800;
  line-height: 1.06;
  transition: filter 160ms ease, opacity 160ms ease;
}

.balance-panel.is-private > strong {
  opacity: 0.72;
  filter: blur(0.7rem);
  user-select: none;
}

.balance-panel > strong small {
  margin-right: 0.1em;
  color: inherit;
  font-size: 0.72em;
  font-weight: inherit;
}

.accounts-pill {
  min-height: 2.5rem;
  margin-top: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 999px;
  padding: 0 1.35rem;
  background: #343b49;
  color: var(--white);
  font-size: 0.73rem;
  font-weight: 800;
}

.account-dots {
  display: flex;
  min-height: 2.75rem;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
}

.account-dots > * {
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.32);
}

.account-dots b {
  background: var(--white);
}

.quick-actions {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.35rem;
  margin-top: 0.25rem;
}

.quick-actions button {
  display: grid;
  min-width: 0;
  min-height: 5.25rem;
  grid-template-rows: 3rem auto;
  place-items: center;
  align-content: start;
  gap: 0.45rem;
  background: transparent;
  color: var(--white);
  font-size: 0.57rem;
  font-weight: 700;
  line-height: 1.2;
}

.quick-actions button i {
  display: grid;
  width: 3rem;
  height: 3rem;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 50%;
  background: #282f3c;
  color: var(--white);
  font-size: 1.12rem;
}

.currency-glance {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.currency-glance > span {
  display: grid;
  min-width: 0;
  gap: 0.12rem;
  border-right: 1px solid rgba(255, 255, 255, 0.09);
  padding: 0.85rem 0.25rem 0;
}

.currency-glance > span:last-child {
  border-right: 0;
}

.currency-glance b {
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.55rem;
}

.currency-glance small {
  overflow: hidden;
  color: rgba(255, 255, 255, 0.86);
  font-family: var(--font-mono);
  font-size: 0.58rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.activity-panel {
  background: #0d111a;
}

.reward-banner {
  display: grid;
  min-width: 0;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 0.5rem;
  padding: 1rem;
  background: #1b2130;
}

.reward-banner > span,
.reward-banner small {
  display: block;
  min-width: 0;
}

.reward-banner strong {
  display: block;
  font-size: 0.78rem;
  line-height: 1.25;
}

.reward-banner small {
  margin-top: 0.25rem;
  color: rgba(255, 255, 255, 0.54);
  font-size: 0.58rem;
  line-height: 1.4;
}

.reward-mark {
  display: grid;
  width: 3rem;
  height: 3rem;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 0.5rem;
  background: #c9d7ff;
  transform: rotate(5deg);
}

.reward-mark img {
  width: 1.65rem;
  height: 1.65rem;
  object-fit: contain;
}

.activity-heading {
  display: flex;
  min-height: 3.5rem;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 0.55rem;
  font-size: 0.82rem;
}

.activity-heading button {
  min-height: 2.75rem;
  background: transparent;
  color: #b8c7ff;
  font-size: 0.67rem;
  font-weight: 700;
}

.activity-row {
  display: grid;
  min-width: 0;
  grid-template-columns: 2.5rem minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.75rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  padding: 0.85rem 0;
  font-size: 0.72rem;
}

.activity-row > i {
  display: grid;
  width: 2.5rem;
  height: 2.5rem;
  place-items: center;
  border-radius: 50%;
  background: #2446c8;
  color: var(--white);
  font-size: 1rem;
}

.activity-row > i.activity-icon--lilac {
  background: #7557d8;
}

.activity-row > i.activity-icon--coral {
  background: #c54f78;
}

.activity-row span,
.activity-row small {
  display: block;
  min-width: 0;
}

.activity-row small {
  margin-top: 0.1rem;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.6rem;
}

.activity-row b {
  font-family: var(--font-mono);
  font-size: 0.64rem;
  font-weight: 600;
  white-space: nowrap;
}

.accounts-section {
  overflow: hidden;
  padding: 5.5rem 0;
  background: var(--account-blue);
  color: var(--white);
}

.accounts-copy > p:last-of-type {
  color: rgba(255, 255, 255, 0.7);
}

.account-list {
  border-top: 1px solid var(--line-light);
}

.account-row {
  display: grid;
  width: 100%;
  min-width: 0;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 1rem;
  border-bottom: 1px solid var(--line-light);
  padding: 1.2rem 0;
  background: transparent;
  color: var(--white);
  text-align: left;
}

.motion-ready .account-row {
  opacity: var(--account-opacity, 1);
  transform: translate3d(0, var(--account-y, 0px), 0);
  will-change: transform, opacity;
}

.account-row > span {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 0.8rem;
}

.currency-code--light {
  flex: 0 0 auto;
  color: var(--white);
}

.account-row > span > span,
.account-row small {
  display: block;
  min-width: 0;
}

.account-row small {
  margin-top: 0.1rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.68rem;
  font-weight: 500;
}

.account-row strong {
  font-family: var(--font-mono);
  font-size: 0.76rem;
  font-weight: 500;
  white-space: nowrap;
}

.account-row > i {
  display: none;
}

.account-row.is-active {
  background: rgba(255, 255, 255, 0.1);
  box-shadow: -1rem 0 0 rgba(255, 255, 255, 0.1), 1rem 0 0 rgba(255, 255, 255, 0.1);
}

.rate-row {
  display: flex;
  min-height: 4rem;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.68rem;
}

.rate-row strong {
  color: var(--white);
  font-family: var(--font-mono);
  font-weight: 500;
  text-align: right;
}

.review-section {
  overflow: hidden;
  padding: 5.5rem 0;
  background: var(--review-blue);
  color: var(--midnight);
}

.review-section .section-kicker,
.review-steps li > span,
.review-summary > i {
  color: var(--account-blue);
}

.section-heading {
  display: grid;
  gap: 1.5rem;
}

.section-heading > p {
  color: rgba(18, 24, 39, 0.7);
}

.review-steps {
  display: grid;
  margin: 3rem 0 0;
  padding: 0;
  border-top: 1px solid var(--line-strong);
  list-style: none;
}

.review-steps li {
  display: grid;
  grid-template-columns: 2.25rem minmax(0, 1fr);
  column-gap: 1rem;
  border-bottom: 1px solid var(--line-strong);
  padding: 1.25rem 0;
}

.review-steps li > span {
  grid-row: 1 / span 2;
  color: var(--teal);
  font-family: var(--font-mono);
  font-size: 0.68rem;
}

.review-steps strong {
  font-size: 1rem;
}

.review-steps p {
  margin: 0.35rem 0 0;
  color: rgba(18, 24, 39, 0.66);
  font-size: 0.82rem;
}

.review-summary {
  display: grid;
  gap: 1.25rem;
  margin-top: 3rem;
  border: 1px solid var(--line-strong);
  padding: 1.25rem;
  background: var(--white);
}

.motion-ready .review-summary {
  transform: perspective(70rem) translate3d(0, var(--review-y, 0px), 0)
    rotateX(var(--review-tilt, 0deg)) scale(var(--review-scale, 1));
  transform-origin: center top;
  will-change: transform;
}

.review-summary > div span,
.review-summary > div strong {
  display: block;
}

.review-summary > div span {
  color: var(--ink-muted);
  font-size: 0.68rem;
  font-weight: 700;
}

.review-summary > div strong {
  margin-top: 0.25rem;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  font-weight: 500;
}

.review-summary > i {
  color: var(--teal);
  transform: rotate(90deg);
}

.review-meta {
  border-top: 1px solid var(--line);
  padding-top: 1rem;
}

.cards-photo img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
}

.motion-ready .cards-layout {
  perspective: 90rem;
}

.motion-ready .cards-photo {
  box-shadow: 0 var(--cards-shadow-y, 1.5rem) var(--cards-shadow-blur, 4rem) rgba(18, 24, 39, 0.2);
  transform: translate3d(var(--cards-x, 0px), var(--cards-y, 0px), 0)
    rotateX(var(--cards-rx, 0deg)) rotateY(var(--cards-ry, 0deg)) scale(var(--cards-scale, 1));
  transform-origin: center center;
  transform-style: preserve-3d;
  will-change: transform;
}

.motion-ready .cards-copy {
  opacity: var(--cards-copy-opacity, 1);
  transform: translate3d(0, var(--cards-copy-y, 0px), 0);
  will-change: transform, opacity;
}

.card-controls {
  margin-top: 2.5rem;
  border-top: 1px solid var(--line);
}

.card-control {
  display: grid;
  width: 100%;
  min-width: 0;
  min-height: 4.75rem;
  grid-template-columns: 2.5rem minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.75rem;
  border-bottom: 1px solid var(--line);
  background: transparent;
  color: var(--midnight);
  text-align: left;
}

.motion-ready .card-control {
  opacity: var(--control-opacity, 1);
  transform: translate3d(0, var(--control-y, 0px), 0);
  will-change: transform, opacity;
}

.card-control > i {
  display: grid;
  width: 2.5rem;
  height: 2.5rem;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--teal);
  font-size: 1.05rem;
}

.card-control span,
.card-control strong,
.card-control small {
  display: block;
}

.card-control strong {
  font-size: 0.86rem;
}

.card-control small {
  margin-top: 0.1rem;
  color: var(--ink-muted);
  font-size: 0.68rem;
}

.card-control > b {
  display: inline-flex;
  min-width: 3.4rem;
  min-height: 1.8rem;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 1rem;
  color: var(--ink-muted);
  font-size: 0.63rem;
}

.card-control.is-on > b {
  border-color: var(--teal);
  background: var(--teal);
  color: var(--white);
}

.card-control.card-control--freeze.is-on > i,
.card-control.card-control--freeze.is-on > b {
  border-color: var(--digital);
  background: var(--digital);
  color: var(--white);
}

.security-section {
  position: relative;
  overflow: hidden;
  padding: 5.5rem 0;
  background: var(--midnight);
  color: var(--white);
}

.security-mark {
  position: absolute;
  top: 3rem;
  right: -7rem;
  width: 22rem;
  height: 22rem;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.045;
}

.motion-ready .security-mark {
  transform: translate3d(var(--security-x, 0px), var(--security-y, 0px), 0)
    rotate(var(--security-rotate, 0deg)) scale(var(--security-scale, 1));
  transform-origin: center center;
  will-change: transform;
}

.security-layout {
  position: relative;
  z-index: 1;
}

.security-copy > p:last-of-type {
  color: rgba(255, 255, 255, 0.66);
}

.security-list {
  border-top: 1px solid var(--line-light);
}

.security-list article {
  display: grid;
  min-width: 0;
  grid-template-columns: 2.75rem minmax(0, 1fr) auto;
  align-items: start;
  gap: 0.85rem;
  border-bottom: 1px solid var(--line-light);
  padding: 1.25rem 0;
}

.security-list article > i {
  display: grid;
  width: 2.75rem;
  height: 2.75rem;
  place-items: center;
  border: 1px solid var(--line-light);
  border-radius: 50%;
  color: var(--glacier);
  font-size: 1.1rem;
}

.security-list h3,
.security-list p {
  margin: 0;
}

.security-list h3 {
  font-size: 0.92rem;
}

.security-list p {
  margin-top: 0.35rem;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.75rem;
}

.security-list article > span {
  color: rgba(255, 255, 255, 0.4);
  font-family: var(--font-mono);
  font-size: 0.65rem;
}

.access-section {
  position: relative;
  overflow: hidden;
  padding: 5rem 0;
  background: var(--digital);
  color: var(--white);
}

.access-layout {
  position: relative;
  z-index: 1;
}

.access-layout > div > p:last-child {
  color: rgba(255, 255, 255, 0.72);
}

.access-mark {
  position: absolute;
  right: -6rem;
  bottom: -7rem;
  z-index: -1;
  width: 20rem;
  height: 20rem;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.08;
}

.motion-ready .access-mark {
  transform: translate3d(var(--access-x, 0px), var(--access-y, 0px), 0)
    rotate(var(--access-rotate, 0deg)) scale(var(--access-scale, 1));
  transform-origin: center center;
  will-change: transform;
}

.access-actions {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.75rem;
}

.access-actions .text-link {
  justify-content: center;
  margin-top: 0;
  border-bottom: 0;
}

.site-footer {
  background: var(--midnight);
  color: var(--white);
}

.footer-main {
  display: grid;
  gap: 3rem;
  padding-top: 4.5rem;
  padding-bottom: 4rem;
}

.brand--footer {
  color: var(--white);
}

.brand-symbol--reverse {
  filter: brightness(0) invert(1);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2.25rem 1rem;
}

.footer-links div,
.footer-links a,
.footer-links strong {
  display: block;
}

.footer-links strong {
  margin-bottom: 0.65rem;
  color: var(--glacier);
  font-size: 0.67rem;
  text-transform: uppercase;
}

.footer-links a {
  min-height: 2.35rem;
  padding: 0.4rem 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.78rem;
}

.footer-legal {
  display: grid;
  gap: 0.5rem;
  border-top: 1px solid var(--line-light);
  padding-top: 1.25rem;
  padding-bottom: 1.5rem;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.67rem;
}

.footer-legal p {
  margin: 0;
}

.transfer-dialog {
  width: min(calc(100% - 2rem), 34rem);
  max-height: calc(100dvh - 2rem);
  margin: auto;
  overflow-y: auto;
  border: 0;
  border-radius: 0.5rem;
  padding: 1.5rem;
  background: var(--white);
  color: var(--midnight);
  box-shadow: 0 24px 80px rgba(18, 24, 39, 0.36);
}

.transfer-dialog::backdrop {
  background: rgba(18, 24, 39, 0.72);
}

.dialog-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.dialog-header h2 {
  margin-top: 0.6rem;
  font-size: 1.8rem;
  line-height: 1.1;
}

.dialog-details {
  margin: 2rem 0;
  border-top: 1px solid var(--line);
}

.dialog-details > div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  border-bottom: 1px solid var(--line);
  padding: 0.9rem 0;
}

.dialog-details dt {
  color: var(--ink-muted);
  font-size: 0.75rem;
}

.dialog-details dd {
  margin: 0;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  text-align: right;
}

.dialog-confirm {
  width: 100%;
}

.dialog-note {
  margin: 0.75rem 0 0;
  color: var(--ink-muted);
  font-size: 0.68rem;
  text-align: center;
}

.landing-toast {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 80;
  max-width: calc(100% - 2rem);
  border: 1px solid var(--line-light);
  border-radius: 0.375rem;
  padding: 0.85rem 1rem;
  background: var(--midnight);
  color: var(--white);
  font-size: 0.78rem;
  opacity: 0;
  pointer-events: none;
  transform: translateY(0.75rem);
  transition: opacity 180ms ease, transform 180ms ease;
}

.landing-toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal {
  opacity: 1;
  transform: none;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 31.25rem) {
  .header-cta {
    display: inline-flex;
  }

  .hero-actions,
  .access-actions {
    width: auto;
    flex-direction: row;
    align-items: center;
  }

  .hero-actions .button,
  .access-actions .button {
    width: auto;
  }

  .hero-actions .button--ghost-light {
    display: inline-flex;
  }

  .mini-brand b {
    display: inline;
  }
}

@media (min-width: 48rem) {
  section[id] {
    scroll-margin-top: 5rem;
  }

  .page-shell,
  .site-header-inner {
    padding-right: 2rem;
    padding-left: 2rem;
  }

  .site-header-inner {
    min-height: 5rem;
  }

  .header-signin {
    display: inline-flex;
  }

  .mobile-nav {
    height: calc(100dvh - 5rem);
    padding-right: 2rem;
    padding-left: 2rem;
  }

  .hero-section {
    min-height: 0;
  }

  .hero-media {
    height: 27rem;
  }

  .hero-content h1 {
    font-size: 4.8rem;
  }

  .hero-actions {
    flex-direction: row;
  }

  .hero-actions .button {
    width: auto;
  }

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

  .hero-rail span,
  .hero-rail span:nth-child(even),
  .hero-rail span:nth-child(odd) {
    border-right: 1px solid var(--line-light);
    border-bottom: 0;
    border-left: 0;
    padding: 0 1rem;
  }

  .hero-rail span:first-child {
    padding-left: 0;
  }

  .hero-rail span:last-child {
    border-right: 0;
  }

  .people-section,
  .accounts-section,
  .review-section,
  .cards-section,
  .security-section {
    padding-top: 7rem;
    padding-bottom: 7rem;
  }

  .people-grid,
  .cards-layout {
    grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
    align-items: center;
    gap: 4rem;
  }

  .people-copy h2,
  .accounts-copy h2,
  .section-heading h2,
  .cards-copy h2,
  .security-copy h2,
  .access-layout h2 {
    font-size: 3.65rem;
  }

  .workspace-band {
    margin-top: 5rem;
  }

  .workspace-header {
    min-height: 5.25rem;
    grid-template-columns: auto minmax(14rem, 27rem) auto;
    justify-content: space-between;
    padding-right: 1.5rem;
    padding-left: 1.5rem;
  }

  .workspace-tool--secondary {
    display: inline-grid;
  }

  .workspace-body {
    min-height: 31rem;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  }

  .workspace-nav {
    grid-template-columns: repeat(4, minmax(0, 8rem));
    justify-content: center;
    padding-right: 1.25rem;
    padding-left: 1.25rem;
  }

  .workspace-nav button {
    min-height: 4.2rem;
  }

  .balance-panel,
  .activity-panel {
    min-width: 0;
    padding: 2.25rem;
  }

  .balance-panel {
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-right: 1px solid rgba(255, 255, 255, 0.09);
    border-bottom: 0;
  }

  .balance-panel > strong {
    font-size: 4.25rem;
  }

  .quick-actions {
    width: min(100%, 29rem);
    margin-right: auto;
    margin-left: auto;
  }

  .currency-glance {
    width: min(100%, 27rem);
    margin-right: auto;
    margin-left: auto;
  }

  .reward-banner {
    padding: 1.25rem;
  }

  .reward-banner strong {
    font-size: 0.94rem;
  }

  .reward-banner small {
    font-size: 0.66rem;
  }

  .reward-mark {
    width: 4rem;
    height: 4rem;
  }

  .reward-mark img {
    width: 2.2rem;
    height: 2.2rem;
  }

  .activity-row {
    grid-template-columns: 3rem minmax(0, 1fr) auto;
    padding: 1rem 0;
    font-size: 0.82rem;
  }

  .activity-row > i {
    width: 3rem;
    height: 3rem;
  }

  .activity-row small {
    font-size: 0.64rem;
  }

  .activity-row b {
    font-size: 0.72rem;
  }

  .accounts-layout,
  .security-layout {
    grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
    gap: 5rem;
  }

  .account-row {
    grid-template-columns: minmax(0, 1fr) auto 1.5rem;
    padding: 1.45rem 0;
  }

  .account-row > i {
    display: block;
  }

  .section-heading {
    grid-template-columns: minmax(0, 1fr) 22rem;
    align-items: end;
  }

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

  .review-steps li {
    min-height: 11rem;
    grid-template-columns: auto;
    grid-template-rows: auto auto minmax(0, 1fr);
    border-right: 1px solid var(--line-strong);
    padding: 1.25rem 1.5rem;
  }

  .review-steps li:first-child {
    padding-left: 0;
  }

  .review-steps li:last-child {
    border-right: 0;
    padding-right: 0;
  }

  .review-steps li > span {
    grid-row: auto;
    margin-bottom: 1.5rem;
  }

  .review-summary {
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr) minmax(7rem, auto) auto;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
  }

  .review-summary > i {
    transform: none;
  }

  .review-meta {
    border-top: 0;
    border-left: 1px solid var(--line);
    padding-top: 0;
    padding-left: 1.5rem;
  }

  .cards-layout {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  }

  .security-mark {
    right: -4rem;
    width: 34rem;
    height: 34rem;
  }

  .access-section {
    padding: 6rem 0;
  }

  .access-layout {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
  }

  .access-mark {
    right: 28%;
    bottom: -12rem;
    width: 28rem;
    height: 28rem;
  }

  .footer-main {
    grid-template-columns: minmax(12rem, 0.7fr) minmax(0, 1.3fr);
    gap: 5rem;
  }

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

  .footer-legal {
    grid-template-columns: auto minmax(0, 1fr);
    justify-content: space-between;
  }

  .footer-legal p:last-child {
    text-align: right;
  }
}

@media (min-width: 64rem) {
  .motion-ready .workspace-band {
    transform: perspective(90rem) translate3d(0, var(--workspace-y, 0px), 0)
      rotateX(var(--workspace-tilt, 0deg)) scale(var(--workspace-scale, 1));
  }

  .site-header {
    position: sticky;
    right: auto;
    left: auto;
    border-bottom-color: var(--line);
    background: var(--white);
    color: var(--midnight);
  }

  .site-header .brand {
    color: var(--midnight);
  }

  .site-header .brand-symbol {
    filter: none;
  }

  .site-header .header-cta {
    border-color: var(--midnight);
    background: var(--midnight);
    color: var(--white);
  }

  .site-header-inner {
    gap: 2rem;
  }

  .desktop-nav {
    display: flex;
    min-height: 2.75rem;
    align-items: center;
    justify-content: center;
    gap: 1.9rem;
    margin-left: auto;
  }

  .desktop-nav a {
    display: inline-flex;
    min-height: 2.75rem;
    align-items: center;
    color: var(--ink-muted);
    font-size: 0.78rem;
    font-weight: 700;
  }

  .menu-button,
  .mobile-nav {
    display: none !important;
  }

  .hero-section {
    min-height: calc(100svh - 10rem);
    justify-content: space-between;
  }

  .hero-media {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
  }

  .hero-media::after {
    position: absolute;
    inset: 0;
    background: rgba(18, 24, 39, 0.14);
    content: "";
  }

  .hero-media img {
    object-position: center;
  }

  .hero-content {
    display: flex;
    min-height: calc(100svh - 16rem);
    flex-direction: column;
    justify-content: center;
    padding-top: 5rem;
    padding-bottom: 5rem;
  }

  .hero-content h1 {
    max-width: 8ch;
    font-size: 6rem;
  }

  .hero-lede {
    font-size: 1.1rem;
  }

  .hero-actions {
    width: auto;
  }

  .hero-rail {
    display: grid;
    width: min(calc(100% - 4rem), calc(var(--content) - 4rem));
    margin-bottom: 1.5rem;
    padding-right: 0;
    padding-bottom: 0;
    padding-left: 0;
  }

  .transfer-dock-inner {
    display: grid;
    grid-template-columns: 16rem minmax(0, 1fr);
    align-items: end;
    gap: 3.5rem;
    padding-top: 2.75rem;
    padding-bottom: 2.75rem;
  }

  .transfer-intro h2 {
    font-size: 1.65rem;
  }

  .transfer-form {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr) minmax(0, 0.72fr) auto;
    align-items: end;
    margin-top: 0;
    border: 1px solid var(--line-light);
  }

  .transfer-field {
    min-height: 5.3rem;
    border-right: 1px solid var(--line-light);
    border-bottom: 0;
    padding: 0.8rem 1rem;
  }

  .transfer-submit {
    min-height: 5.3rem;
    margin: 0;
    border-radius: 0;
    padding-right: 1.35rem;
    padding-left: 1.35rem;
  }

  .people-grid {
    grid-template-columns: minmax(0, 0.76fr) minmax(0, 1.24fr);
    gap: 6rem;
  }

  .people-copy h2,
  .accounts-copy h2,
  .section-heading h2,
  .cards-copy h2,
  .security-copy h2,
  .access-layout h2 {
    font-size: 4.35rem;
  }

  .people-photo img {
    aspect-ratio: 3 / 2;
  }

  .workspace-body {
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  }

  .balance-panel,
  .activity-panel {
    padding: 2.25rem;
  }

  .balance-panel > strong {
    font-size: 4.65rem;
  }

  .accounts-layout,
  .security-layout {
    gap: 7rem;
  }

  .account-row strong {
    font-size: 0.88rem;
  }

  .cards-layout {
    gap: 6rem;
  }

  .motion-ready .cards-section {
    min-height: 165svh;
    padding-top: 0;
    padding-bottom: 0;
  }

  .motion-ready .cards-layout {
    position: sticky;
    top: 5rem;
    min-height: calc(100svh - 5rem);
    align-content: center;
    padding-top: clamp(2.5rem, 6svh, 5rem);
    padding-bottom: clamp(2.5rem, 6svh, 5rem);
  }

  .cards-copy {
    padding-right: 1rem;
  }

  .access-layout {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 4rem;
  }
}

@media (hover: hover) {
  .brand:hover,
  .desktop-nav a:hover,
  .header-signin:hover,
  .footer-links a:hover {
    color: var(--teal);
  }

  .header-cta:hover,
  .button--midnight:hover {
    background: var(--teal);
    border-color: var(--teal);
  }

  .button--light:hover {
    background: var(--glacier);
  }

  .button--ghost-light:hover {
    border-color: var(--white);
    background: var(--white);
    color: var(--midnight);
  }

  .button--teal:hover {
    background: var(--teal-deep);
  }

  .button:hover,
  .header-cta:hover {
    transform: translateY(-1px);
  }

  .account-row:hover {
    background: rgba(255, 255, 255, 0.08);
  }

  .workspace-nav button:hover {
    background: rgba(169, 216, 232, 0.12);
  }

  .quick-actions button:hover i,
  .workspace-tool:hover,
  .balance-privacy:hover,
  .accounts-pill:hover {
    background: #35405a;
  }

  .card-control:hover {
    background: rgba(169, 216, 232, 0.22);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .hero-media img,
  .hero-content,
  .people-photo img,
  .workspace-band,
  .account-row,
  .review-summary,
  .cards-photo,
  .cards-copy,
  .card-control,
  .security-mark,
  .access-mark {
    opacity: 1 !important;
    transform: none !important;
  }
}
