@font-face {
  font-family: Inter;
  src: url('/assets/fonts/inter-bold.ttf') format('truetype');
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: Roboto;
  src: url('/assets/fonts/roboto-regular.ttf') format('truetype');
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: Roboto;
  src: url('/assets/fonts/roboto-bold.ttf') format('truetype');
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

:root {
  --color-white: #fff;
  --color-surface: #f7f7f7;
  --color-surface-strong: #eeeeec;
  --color-heading: #111;
  --color-body: #303030;
  --color-muted: #5d5d5d;
  --color-orange: #f16422;
  --color-orange-hover: #f87639;
  --color-line: #e3e3e3;
  --color-line-strong: #cfcfcd;
  --color-border: #858585;
  --font-heading: Inter, Arial, sans-serif;
  --font-body: Roboto, Arial, sans-serif;
  --space-1: 8px;
  --space-2: 12px;
  --space-3: 16px;
  --space-4: 24px;
  --space-5: 32px;
  --space-6: 48px;
  --space-7: 64px;
  --space-8: 96px;
  --gutter: 20px;
  --container-wide: 1440px;
  --radius-control: 9px;
  --radius-field: 10px;
  --border-width: 1px;
  --header-height: 80px;
  --header-height-scrolled: 66px;
  --control-height: 50px;
  --hero-height: 680px;
  --hero-copy-width: 740px;
  --body-width: 600px;
  --h1-size: clamp(48px, 5vw, 80px);
  --h2-size: clamp(34px, 3.1vw, 48px);
  --network-icon-size: 32px;
  --duration-fast: 190ms;
  --duration-interactive: 260ms;
  --duration-reveal: 720ms;
  --ease-main: cubic-bezier(.22, .8, .2, 1);
}

* { box-sizing: border-box; }
html { min-width: 320px; scroll-behavior: smooth; scroll-padding-top: calc(var(--header-height-scrolled) + var(--space-3)); }
body { min-width: 320px; margin: 0; color: var(--color-body); background: var(--color-white); font-family: var(--font-body); }
button, a { -webkit-tap-highlight-color: transparent; touch-action: manipulation; }
button { font: inherit; }
a { color: inherit; }
img, svg { max-width: 100%; }
:focus-visible { outline: 3px solid var(--color-heading); outline-offset: 4px; }
[hidden] { display: none !important; }
h1, h2, p { margin: 0; }
h1, h2 { color: var(--color-heading); font-family: var(--font-heading); font-weight: 700; }
.container { width: min(100%, var(--container-wide)); min-width: 0; margin-inline: auto; padding-inline: var(--gutter); }
.skip-link { position: fixed; z-index: 100; left: var(--gutter); top: var(--space-2); padding: var(--space-3); background: var(--color-white); transform: translateY(-160%); }
.skip-link:focus { transform: translateY(0); }

.site-header { position: sticky; z-index: 30; top: 0; border-bottom: var(--border-width) solid var(--color-line); background: var(--color-white); transition: border-color var(--duration-fast) var(--ease-main); }
.site-header.is-scrolled { border-bottom-color: var(--color-line-strong); }
.header-inner { min-width: 0; min-height: var(--header-height); display: flex; align-items: center; justify-content: space-between; gap: var(--space-5); transition: min-height var(--duration-interactive) var(--ease-main); }
.site-header.is-scrolled .header-inner { min-height: var(--header-height-scrolled); }
.brand { min-width: 0; display: inline-flex; flex-shrink: 1; gap: .18em; align-items: baseline; white-space: nowrap; text-decoration: none; color: var(--color-heading); font-family: var(--font-heading); font-size: 28px; font-weight: 700; letter-spacing: -.058em; line-height: 1; }
.brand-wordmark { display: block; width: auto; height: 25px; }
.brand-name { color: var(--color-orange); }
.site-nav { min-width: 0; display: flex; align-items: center; gap: var(--space-6); }
.nav-links { min-width: 0; display: flex; align-items: center; gap: var(--space-5); margin: 0; padding: 0; list-style: none; }
.nav-links li { min-width: 0; }
.nav-links a, .nav-links button { position: relative; display: flex; align-items: center; min-height: 44px; border: 0; padding: 0; background: transparent; color: inherit; text-decoration: none; font: inherit; font-size: 16px; cursor: pointer; }
.nav-links a::after, .nav-links button::after { content: ''; position: absolute; right: 0; bottom: 7px; left: 0; height: 2px; background: var(--color-orange); transform: scaleX(0); transform-origin: center; transition: transform var(--duration-fast) var(--ease-main); }
.nav-links a:hover::after, .nav-links a:focus-visible::after, .nav-links button:hover::after, .nav-links button:focus-visible::after { transform: scaleX(1); }
.nav-links a:active, .nav-links button:active { color: var(--color-orange); }

.button { min-width: 0; min-height: var(--control-height); display: inline-flex; align-items: stretch; justify-content: center; overflow: visible; padding: 0; border: var(--border-width) solid transparent; border-radius: var(--radius-control); font-size: 16px; font-weight: 700; line-height: 1.25; text-align: center; text-decoration: none; transition: color var(--duration-fast) var(--ease-main), background-color var(--duration-fast) var(--ease-main), border-color var(--duration-fast) var(--ease-main), transform var(--duration-fast) var(--ease-main); }
.button-label { min-width: 0; display: flex; align-items: center; justify-content: center; padding: 12px 20px; transition: transform var(--duration-fast) var(--ease-main); }
.button-icon { width: 50px; flex: 0 0 50px; display: grid; place-items: center; border-radius: 0 calc(var(--radius-control) - 1px) calc(var(--radius-control) - 1px) 0; transition: flex-basis var(--duration-fast) var(--ease-main), width var(--duration-fast) var(--ease-main), background-color var(--duration-fast) var(--ease-main); }
.button-icon svg { overflow: visible; }
.button-icon path { stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; transition: transform var(--duration-fast) var(--ease-main); }
.button-primary { background: var(--color-orange); color: var(--color-heading); }
.button-primary .button-icon { background: var(--color-heading); color: var(--color-white); }
.button-primary:hover { background: var(--color-orange-hover); }
.button-primary:active { transform: translateY(1px); background: #df5719; }
.button-secondary { border-color: var(--color-border); background: rgba(255,255,255,.42); color: var(--color-heading); }
.button-secondary .button-icon { border-left: var(--border-width) solid var(--color-border); background: rgba(238,238,236,.92); }
.button-secondary:hover { border-color: var(--color-heading); background: var(--color-white); }
.button-secondary:active { transform: translateY(1px); background: var(--color-surface-strong); }
.button-compact { min-height: 44px; font-size: 15px; }
.button-compact .button-label { padding: 9px 14px; }
.button-compact .button-icon { width: 42px; flex-basis: 42px; }
.header-download .button-label { padding-inline: 20px; }
@media (hover: hover) and (pointer: fine) {
  .button:hover .button-label { transform: translateX(2px); }
  .button:hover .button-icon { width: 56px; flex-basis: 56px; }
  .button-primary:hover .button-icon path { transform: translateY(2.5px); }
  .button-secondary:hover .button-icon path { transform: translateX(3px); }
  .button-compact:hover .button-icon { width: 47px; flex-basis: 47px; }
}

.menu-toggle { display: none; flex: 0 0 auto; align-items: center; justify-content: center; gap: var(--space-1); min-height: 44px; border: var(--border-width) solid var(--color-line-strong); border-radius: var(--radius-control); background: var(--color-white); padding: 9px 11px; color: var(--color-heading); cursor: pointer; }
.menu-toggle:hover { background: var(--color-surface); }
.menu-toggle:active { border-color: var(--color-heading); }
.menu-icon { width: 16px; display: grid; gap: 4px; }
.menu-icon span { height: 2px; width: 100%; background: currentColor; transition: transform var(--duration-fast) var(--ease-main), opacity var(--duration-fast) var(--ease-main); }
.menu-toggle[aria-expanded='true'] .menu-icon span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.menu-toggle[aria-expanded='true'] .menu-icon span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded='true'] .menu-icon span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.hero { --hero-parallax: 0px; isolation: isolate; position: relative; min-width: 0; min-height: var(--hero-height); overflow: hidden; background-color: var(--color-surface); }
.hero::before { content: ''; position: absolute; z-index: -1; inset: -18px 0; background-image: url('/assets/images/hero-mountains-monochrome.webp'); background-repeat: no-repeat; background-size: cover; background-position: center top; transform: translate3d(0, var(--hero-parallax), 0); will-change: transform; }
.hero-inner { position: relative; z-index: 1; min-width: 0; padding-block: var(--space-8); }
.hero-copy { min-width: 0; max-width: min(var(--hero-copy-width), 100%); }
.hero h1 { min-width: 0; font-size: var(--h1-size); line-height: 1.04; letter-spacing: -.052em; text-wrap: balance; overflow-wrap: break-word; }
.hero-line { display: block; min-width: 0; overflow: hidden; padding-bottom: .055em; margin-bottom: -.055em; }
.hero-line-inner { display: block; min-width: 0; }
.hero-body { max-width: min(var(--body-width), 100%); margin-top: var(--space-5); font-size: 20px; line-height: 1.5; overflow-wrap: break-word; }
.hero-actions { min-width: 0; display: flex; flex-wrap: wrap; gap: var(--space-3); margin-top: var(--space-5); }
.hero-actions .button-primary { border-color: var(--color-heading); }
.hero-actions .button-primary .button-icon { border-left: var(--border-width) solid rgba(10,10,10,.28); background: rgba(255,255,255,.16); color: var(--color-heading); }
.platform-note { margin-top: var(--space-3); color: var(--color-muted); font-size: 14px; line-height: 1.6; }
.assets { position: relative; isolation: isolate; min-width: 0; padding-block: 104px 48px; background: var(--color-white); }
.topography { position: absolute; z-index: 0; top: -86px; right: 0; left: 0; height: 180px; overflow: hidden; pointer-events: none; }
.topography svg { display: block; width: 100%; height: 100%; }
.topography-line { fill: none; vector-effect: non-scaling-stroke; stroke-linecap: round; stroke-linejoin: round; }
.topography-line { stroke: #d7d7d3; stroke-width: 1.1; }
.topography-line-soft { stroke: #e5e5e2; }
.has-js .topography-line { stroke-dasharray: 1; stroke-dashoffset: 1; }
.has-js .topography.is-drawn .topography-line { stroke-dashoffset: 0; transition: stroke-dashoffset var(--duration-reveal) var(--ease-main); }
.has-js .topography.is-drawn .topography-line:nth-child(2) { transition-delay: 60ms; }
.has-js .topography.is-drawn .topography-line:nth-child(3) { transition-delay: 90ms; }
.assets-layout { position: relative; z-index: 1; min-width: 0; display: grid; grid-template-columns: minmax(0, .78fr) minmax(0, 1.22fr); column-gap: clamp(36px, 4vw, 56px); row-gap: 0; align-items: start; }
.assets-intro { min-width: 0; padding-top: var(--space-3); }
.assets h2 { min-width: 0; max-width: 540px; font-size: var(--h2-size); line-height: 1.08; letter-spacing: -.042em; text-wrap: balance; overflow-wrap: break-word; }
.assets-body { min-width: 0; max-width: 470px; margin-top: var(--space-4); font-size: 20px; line-height: 1.5; overflow-wrap: break-word; }
.network-field { min-width: 0; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 2px var(--space-3); margin: 0; padding: 0; list-style: none; }
.network-item { position: relative; min-width: 0; min-height: 76px; display: grid; grid-template-columns: var(--network-icon-size) minmax(0, 1fr); align-items: center; gap: var(--space-3); padding: 14px 18px; color: var(--color-heading); font-size: 18px; line-height: 1.25; transition: opacity var(--duration-interactive) var(--ease-main); }
.network-item::before { content: ''; position: absolute; z-index: -1; inset: 4px; border-radius: 7px; background: var(--color-white); opacity: 0; transition: opacity var(--duration-interactive) var(--ease-main); }
.network-item::after { content: ''; position: absolute; right: 18px; bottom: 9px; left: 66px; height: 2px; background: var(--color-orange); transform: scaleX(0); transform-origin: left; transition: transform var(--duration-interactive) var(--ease-main); }
.network-mark { width: var(--network-icon-size); height: var(--network-icon-size); display: grid; place-items: center; }
.network-icon { display: block; width: var(--network-icon-size); height: var(--network-icon-size); object-fit: contain; filter: grayscale(.55) saturate(.58); opacity: .78; transform: translateY(0) scale(1); transition: filter var(--duration-interactive) var(--ease-main), opacity var(--duration-interactive) var(--ease-main), transform var(--duration-interactive) var(--ease-main); }
.network-label { min-width: 0; overflow-wrap: break-word; transition: transform var(--duration-interactive) var(--ease-main); }
.assets-partners { grid-column: 1 / -1; min-width: 0; margin-top: 16px; }
.partners-heading { color: var(--color-muted); font-family: var(--font-heading); font-size: 15px; font-weight: 700; line-height: 1.25; letter-spacing: .09em; text-transform: uppercase; }
.partners-grid { min-width: 0; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 10px; margin: 12px 0 0; padding: 0; list-style: none; }
.partner-card { position: relative; min-width: 0; height: 104px; overflow: hidden; border: var(--border-width) solid var(--color-line); border-radius: 4px; background: #f8f7f3; }
.partner-card img { position: absolute; inset: 0; display: block; width: 100%; height: 100%; object-fit: contain; filter: invert(1) grayscale(1) contrast(1.08); opacity: .74; }
@media (hover: hover) and (pointer: fine) {
  .network-item:hover::before { opacity: 1; }
  .network-item:hover::after { transform: scaleX(.2); }
  .network-item:hover .network-icon { filter: none; opacity: 1; transform: translateY(-3px) scale(1.06); }
  .network-item:hover .network-label { transform: translateX(6px); }
  @supports selector(.network-field:has(.network-item:hover)) {
    .network-field:has(.network-item:hover) .network-item:not(:hover) { opacity: .52; }
  }
}

.transfer-review { position: relative; isolation: isolate; min-width: 0; min-height: calc(100vh - var(--header-height-scrolled) - var(--space-3)); overflow: hidden; padding-block: 128px 64px; background: var(--color-white); }
.transfer-topography { position: absolute; z-index: 0; inset: 0; overflow: hidden; pointer-events: none; }
.transfer-topography svg { display: block; width: 100%; height: 100%; }
.transfer-topography path { fill: none; stroke: #e5e5e2; stroke-width: 1.05; vector-effect: non-scaling-stroke; }
.transfer-topography-mobile { display: none !important; }
.transfer-review-inner { position: relative; z-index: 1; min-width: 0; }
.transfer-review-header { min-width: 0; display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(310px, .75fr); gap: clamp(64px, 9vw, 132px); align-items: start; }
.transfer-review h2 { min-width: 0; max-width: 720px; font-size: var(--h2-size); line-height: 1.08; letter-spacing: -.045em; text-wrap: balance; overflow-wrap: break-word; }
.transfer-review-body { min-width: 0; max-width: 430px; justify-self: end; font-size: 20px; line-height: 1.42; overflow-wrap: break-word; }
.relationship-loop { position: relative; width: min(760px, calc(100% - 230px)); height: 290px; margin: 24px auto 0; }
.relationship-loop-lines { position: absolute; inset: 0; display: block; width: 100%; height: 100%; overflow: visible; }
.relationship-loop-lines-mobile { display: none; }
.relationship-line, .relationship-line-accent { fill: none; vector-effect: non-scaling-stroke; stroke-linecap: round; stroke-linejoin: round; }
.relationship-line { stroke: var(--color-heading); stroke-width: 2.2; }
.relationship-line-accent { stroke: var(--color-orange); stroke-width: 2.6; }
.relationship-nodes { position: absolute; inset: 0; margin: 0; padding: 0; list-style: none; }
.relationship-node { position: absolute; width: 0; height: 0; color: var(--color-heading); }
.relationship-node::before { content: ''; position: absolute; z-index: 1; width: 18px; height: 18px; border-radius: 50%; background: var(--color-heading); box-shadow: 0 0 0 4px var(--color-white); transform: translate(-50%, -50%); }
.relationship-label { position: absolute; font-family: var(--font-heading); font-size: 16px; font-weight: 700; line-height: 1.08; letter-spacing: .012em; text-transform: uppercase; white-space: nowrap; }
.relationship-node-network { left: 50%; top: 13.1%; }
.relationship-node-network .relationship-label { bottom: 15px; left: 0; transform: translateX(-50%); }
.relationship-node-recipient { left: 92.6%; top: 43.8%; }
.relationship-node-recipient .relationship-label { top: 0; left: 18px; transform: translateY(-50%); }
.relationship-node-amount { left: 73.8%; top: 89.7%; }
.relationship-node-amount .relationship-label { top: 13px; left: 12px; }
.relationship-node-fee { left: 12.6%; top: 81.4%; }
.relationship-node-fee .relationship-label { top: 13px; right: 12px; }
.relationship-node-asset { left: 8%; top: 39%; }
.relationship-node-asset .relationship-label { top: 0; right: 18px; transform: translateY(-50%); }
.transfer-support { min-width: 0; display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: var(--space-7); align-items: end; margin-top: 18px; }
.transfer-support-item { min-width: 0; max-width: 430px; }
.transfer-support-item-last { justify-self: end; }
.transfer-support h3 { margin: 0; color: var(--color-heading); font-family: var(--font-heading); font-size: 24px; font-weight: 700; line-height: 1.15; letter-spacing: -.032em; overflow-wrap: break-word; }
.transfer-support p { max-width: 390px; margin: var(--space-1) 0 0; font-size: 18px; line-height: 1.42; overflow-wrap: break-word; }
.transfer-support-divider { display: none; }

.self-custody { position: relative; isolation: isolate; min-width: 0; height: clamp(700px, 56.25vw, 820px); overflow: hidden; background: #08090a; color: #d6d4cf; }
.self-custody-media { position: absolute; z-index: 0; inset: 0; display: block; overflow: hidden; }
.self-custody-media img { display: block; width: 100%; height: 100%; object-fit: cover; object-position: center center; transform: none; }
.self-custody-inner { position: relative; z-index: 1; height: 100%; min-width: 0; padding-block: clamp(104px, 8.5vw, 124px) 60px; }
.self-custody-copy { min-width: 0; width: min(540px, 42%); }
.self-custody h2 { max-width: 540px; color: #f3f0e9; font-size: clamp(44px, 4vw, 58px); line-height: 1.04; letter-spacing: -.05em; text-wrap: balance; overflow-wrap: break-word; }
.self-custody-body { max-width: 420px; margin-top: var(--space-4); color: #d0cec9; font-size: 20px; line-height: 1.48; overflow-wrap: break-word; }
.self-custody-support { max-width: 350px; margin-top: clamp(64px, 8vw, 116px); }
.self-custody-rule { width: 64px; height: 3px; display: block; background: var(--color-orange); }
.self-custody-support p { margin-top: var(--space-4); color: #b9b7b2; font-size: 17px; line-height: 1.5; overflow-wrap: break-word; }

.download-section { position: relative; isolation: isolate; min-width: 0; overflow: hidden; padding-block: clamp(112px, 9vw, 144px) 72px; background: #faf9f5; }
.download-topography { position: absolute; z-index: 0; inset: 0; overflow: hidden; pointer-events: none; }
.download-topography svg { display: block; width: 100%; height: 100%; }
.download-topography path { fill: none; stroke: #e5e3dd; stroke-width: 1; vector-effect: non-scaling-stroke; }
.download-inner { position: relative; z-index: 1; min-width: 0; }
.download-header { max-width: 820px; }
.download-section h2 { max-width: 800px; font-size: clamp(48px, 5.1vw, 72px); line-height: 1.02; letter-spacing: -.052em; text-wrap: balance; overflow-wrap: break-word; }
.download-body { max-width: 650px; margin-top: var(--space-3); font-size: 21px; line-height: 1.45; overflow-wrap: break-word; }
.download-platforms { min-width: 0; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); margin-top: clamp(58px, 5.6vw, 80px); }
.download-option { min-width: 0; display: flex; flex-direction: column; align-items: center; padding: 8px clamp(28px, 3.7vw, 54px) 20px; text-align: center; }
.download-option + .download-option { border-left: var(--border-width) solid var(--color-line-strong); }
.download-platform-mark { width: 100%; height: 132px; display: flex; align-items: flex-end; justify-content: center; }
.download-platform-icon { display: block; object-fit: contain; }
.download-platform-icon-windows { width: calc(108px * .85); height: calc(108px * .85); }
.download-platform-icon-apple { width: calc(101px * .85); height: calc(112px * .85); }
.download-platform-icon-linux { width: calc(112px * .85); height: calc(112px * .85); }
.download-option h3 { margin: 18px 0 0; color: var(--color-heading); font-family: var(--font-heading); font-size: 28px; font-weight: 700; line-height: 1.1; letter-spacing: -.035em; }
.download-requirements { width: 100%; min-height: 50px; display: flex; align-items: flex-start; justify-content: center; margin-top: 10px; color: var(--color-body); font-size: 17px; line-height: 1.42; overflow-wrap: break-word; }
.download-platform { width: 88%; min-height: 60px; margin-top: 24px; border-color: var(--color-orange); background: var(--color-orange); color: var(--color-heading); cursor: pointer; }
.download-platform .button-label { flex: 1 1 auto; padding: 14px 16px; white-space: nowrap; }
.download-platform:hover { border-color: var(--color-orange-hover); background: var(--color-orange-hover); }
.download-platform:active { transform: translateY(1px); border-color: #df5719; background: #df5719; }
.download-meta { min-width: 0; display: flex; justify-content: space-between; gap: var(--space-5); margin-top: 54px; padding-top: var(--space-4); border-top: var(--border-width) solid var(--color-line-strong); font-size: 17px; line-height: 1.45; }
.download-release { flex: 0 0 auto; color: var(--color-heading); font-weight: 700; }
@media (hover: hover) and (pointer: fine) {
  .download-platform:hover .button-label { transform: none; }
}

.faq-section { position: relative; isolation: isolate; min-width: 0; overflow: hidden; padding-block: clamp(112px, 9vw, 144px) clamp(112px, 9vw, 144px); background: #fbfaf7; }
.faq-topography { position: absolute; z-index: 0; inset: 0; overflow: hidden; pointer-events: none; }
.faq-topography svg { display: block; width: 100%; height: 100%; }
.faq-topography path { fill: none; stroke: #e4e2dc; stroke-width: 1; vector-effect: non-scaling-stroke; }
.faq-inner { position: relative; z-index: 1; min-width: 0; }
.faq-intro, .faq-disclosures { width: min(100%, 1240px); min-width: 0; margin-inline: auto; }
.faq-section h2 { max-width: none; font-size: clamp(50px, 4.55vw, 68px); line-height: 1.03; letter-spacing: -.055em; text-wrap: balance; overflow-wrap: break-word; }
.faq-disclosures { margin-top: clamp(60px, 6vw, 84px); }
.faq-item { min-width: 0; scroll-margin-top: calc(var(--header-height-scrolled) + var(--space-4)); border-top: var(--border-width) solid var(--color-line-strong); }
.faq-item:last-child { border-bottom: var(--border-width) solid var(--color-line-strong); }
.faq-item summary { min-width: 0; min-height: 102px; display: grid; grid-template-columns: 62px minmax(0, 1fr) 46px; gap: 24px; align-items: center; padding: 23px clamp(24px, 3vw, 40px); color: var(--color-heading); cursor: pointer; list-style: none; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::marker { content: ''; }
.faq-row-number { align-self: start; padding-top: 5px; font-size: 19px; line-height: 1.25; font-variant-numeric: tabular-nums; transition: color var(--duration-fast) var(--ease-main); }
.faq-question { min-width: 0; font-family: var(--font-heading); font-size: clamp(22px, 1.8vw, 26px); font-weight: 700; line-height: 1.18; letter-spacing: -.032em; overflow-wrap: break-word; }
.faq-toggle { position: relative; width: 40px; height: 40px; display: block; align-self: start; justify-self: end; border: 2px solid currentColor; border-radius: 50%; color: var(--color-heading); transition: color var(--duration-fast) var(--ease-main), transform var(--duration-fast) var(--ease-main); }
.faq-toggle::before, .faq-toggle::after { content: ''; position: absolute; top: 50%; left: 50%; width: 15px; height: 2px; background: currentColor; transform: translate(-50%, -50%); }
.faq-toggle::after { transform: translate(-50%, -50%) rotate(90deg); transition: transform var(--duration-fast) var(--ease-main), opacity var(--duration-fast) var(--ease-main); }
.faq-item[open] .faq-row-number, .faq-item[open] .faq-toggle { color: var(--color-orange); }
.faq-item[open] .faq-toggle::after { opacity: 0; transform: translate(-50%, -50%) rotate(0); }
.faq-item summary:hover .faq-toggle { color: var(--color-orange); transform: scale(1.04); }
.faq-item summary:focus-visible { outline-color: var(--color-orange); outline-offset: 5px; }
.faq-answer { padding: 0 clamp(94px, 8vw, 118px) 36px clamp(110px, 9vw, 126px); }
.faq-answer p { max-width: 980px; font-size: 20px; line-height: 1.52; overflow-wrap: break-word; }
.faq-answer a, .faq-inline-action { color: var(--color-heading); text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 3px; }
.faq-answer a:hover, .faq-answer a:focus-visible, .faq-inline-action:hover, .faq-inline-action:focus-visible { color: var(--color-orange); }
.faq-inline-action { display: inline; margin: 0; padding: 0; border: 0; background: transparent; cursor: pointer; }

.help-dialog { width: min(920px, calc(100% - 40px)); max-height: min(760px, calc(100vh - 40px)); margin: auto; overflow: hidden; padding: 0; border: var(--border-width) solid var(--color-line-strong); border-radius: 14px; background: var(--color-white); color: var(--color-body); box-shadow: 0 24px 80px rgba(0,0,0,.24); }
.help-dialog::backdrop { background: rgba(8,9,10,.72); }
.help-dialog-shell { min-width: 0; max-height: inherit; display: flex; flex-direction: column; }
.help-dialog-header { min-width: 0; display: flex; justify-content: space-between; gap: var(--space-5); padding: 34px 36px 30px; border-bottom: var(--border-width) solid var(--color-line); }
.help-dialog-kicker { margin-bottom: 8px; color: var(--color-orange); font-size: 14px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }
.help-dialog h2 { color: var(--color-heading); font-size: clamp(30px, 3.4vw, 42px); line-height: 1.06; letter-spacing: -.045em; }
.help-dialog-header > div > p:last-child { max-width: 540px; margin-top: var(--space-2); font-size: 17px; line-height: 1.45; }
.help-dialog-close { position: relative; width: 44px; height: 44px; flex: 0 0 44px; border: var(--border-width) solid var(--color-line-strong); border-radius: 50%; background: var(--color-white); color: var(--color-heading); cursor: pointer; }
.help-dialog-close span::before, .help-dialog-close span::after { content: ''; position: absolute; top: 50%; left: 50%; width: 17px; height: 2px; background: currentColor; transform: translate(-50%, -50%) rotate(45deg); }
.help-dialog-close span::after { transform: translate(-50%, -50%) rotate(-45deg); }
.help-dialog-close:hover { border-color: var(--color-orange); color: var(--color-orange); }
.help-dialog-layout { min-width: 0; min-height: 0; flex: 1 1 auto; display: grid; grid-template-columns: 210px minmax(0, 1fr); }
.help-topics { display: flex; flex-direction: column; align-items: stretch; padding: 28px 22px; border-right: var(--border-width) solid var(--color-line); }
.help-topics button { min-height: 44px; padding: 10px 12px; border: 0; border-left: 3px solid transparent; background: transparent; color: var(--color-muted); text-align: left; cursor: pointer; }
.help-topics button[aria-selected='true'] { border-left-color: var(--color-orange); color: var(--color-heading); font-weight: 700; }
.help-panels { min-width: 0; min-height: 0; padding: 32px 36px 38px; overflow: auto; }
.help-panel h3 { margin: 0; color: var(--color-heading); font-family: var(--font-heading); font-size: 26px; line-height: 1.12; letter-spacing: -.03em; }
.help-panel > p { margin-top: var(--space-3); font-size: 17px; line-height: 1.52; }
.help-requirements { display: grid; gap: 0; margin: var(--space-5) 0; padding: 0; border-block: var(--border-width) solid var(--color-line); list-style: none; }
.help-requirements li { display: grid; grid-template-columns: 110px minmax(0, 1fr); gap: var(--space-3); padding-block: 14px; }
.help-requirements li + li { border-top: var(--border-width) solid var(--color-line); }
.help-requirements span { overflow-wrap: break-word; }
.help-text-link { color: var(--color-heading); font-weight: 700; text-underline-offset: 4px; }
.help-os-tabs { display: flex; flex-wrap: wrap; gap: var(--space-2); margin-top: var(--space-5); }
.help-os-tabs button { min-height: 42px; padding: 9px 16px; border: var(--border-width) solid var(--color-line-strong); border-radius: var(--radius-control); background: var(--color-white); color: var(--color-heading); cursor: pointer; }
.help-os-tabs button[aria-selected='true'] { border-color: var(--color-orange); background: var(--color-orange); font-weight: 700; }
.help-install-copy { margin-top: var(--space-4) !important; }
.help-note { padding-top: var(--space-4); border-top: var(--border-width) solid var(--color-line); color: var(--color-muted); }

.visually-hidden { position: absolute !important; width: 1px !important; height: 1px !important; margin: -1px !important; padding: 0 !important; overflow: hidden !important; clip: rect(0 0 0 0) !important; white-space: nowrap !important; border: 0 !important; }
.support-widget { --support-consent-clearance: 0px; --support-consent-alignment: 0px; position: fixed; z-index: 120; right: 24px; bottom: calc(24px + env(safe-area-inset-bottom)); width: 58px; height: 58px; }
.support-launcher { position: relative; width: 58px; height: 58px; display: inline-flex; align-items: center; justify-content: center; padding: 0; border: 1px solid #111; border-radius: 50%; background: var(--color-orange); color: #111; box-shadow: 0 14px 34px rgba(0,0,0,.22); cursor: pointer; transition: background-color var(--duration-fast) var(--ease-main), color var(--duration-fast) var(--ease-main), transform var(--duration-fast) var(--ease-main), box-shadow var(--duration-fast) var(--ease-main), opacity var(--duration-fast) var(--ease-main), visibility var(--duration-fast) var(--ease-main); }
.support-launcher:hover { background: var(--color-orange-hover); box-shadow: 0 17px 40px rgba(0,0,0,.27); transform: translateY(-2px); }
.support-launcher:active { transform: translateY(1px); }
.support-launcher:focus-visible { outline-color: #111; outline-offset: 4px; }
.support-launcher-icon { position: absolute; width: 26px; height: 26px; transition: opacity var(--duration-fast) var(--ease-main), transform var(--duration-fast) var(--ease-main); }
.support-launcher-icon-question { display: grid; place-items: center; font-family: var(--font-heading); font-size: 25px; font-weight: 700; line-height: 1; }
.support-launcher-icon-close { opacity: 0; transform: rotate(-90deg) scale(.72); }
.support-launcher-icon-close path, .support-send path, .support-panel-mark path { stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.support-launcher.is-open .support-launcher-icon-question { opacity: 0; transform: rotate(90deg) scale(.72); }
.support-launcher.is-open .support-launcher-icon-close { opacity: 1; transform: rotate(0) scale(1); }
.support-widget[data-consent-visible='true'] .support-launcher { transform: translateY(calc(-1 * var(--support-consent-alignment))); }
.support-panel { position: absolute; right: 0; bottom: calc(72px + var(--support-consent-clearance)); width: 360px; height: min(480px, calc(100dvh - var(--support-consent-clearance) - 124px)); min-height: 310px; display: flex; flex-direction: column; overflow: hidden; border: 1px solid #292b2c; border-radius: 10px; background: #faf9f5; color: var(--color-body); box-shadow: 0 22px 60px rgba(0,0,0,.27); transform-origin: bottom right; }
.support-panel[hidden] { display: none; }
.support-panel.is-open { animation: support-panel-in var(--duration-fast) var(--ease-main) both; }
.support-panel-header { min-height: 76px; display: flex; align-items: center; gap: 13px; padding: 15px 17px; border-bottom: 1px solid #2e3031; background: #0b0c0d; color: #f2efe8; }
.support-panel-mark { width: 42px; height: 42px; flex: 0 0 42px; display: grid; place-items: center; border-radius: var(--radius-control); background: var(--color-orange); color: #111; }
.support-panel-mark svg { width: 25px; height: 25px; }
.support-panel-title { min-width: 0; display: grid; gap: 3px; }
.support-panel-title strong { color: #f2efe8; font-family: var(--font-heading); font-size: 15px; font-weight: 700; line-height: 1.22; letter-spacing: -.015em; }
.support-panel-title span { color: #aaa9a5; font-size: 13px; line-height: 1.25; }
.support-messages { min-height: 0; flex: 1 1 auto; display: flex; flex-direction: column; gap: 10px; padding: 18px; overflow-y: auto; overscroll-behavior: contain; scrollbar-width: thin; scrollbar-color: #9a9a96 transparent; }
.support-message { max-width: 84%; padding: 11px 14px; border-radius: 10px; font-size: 15px; line-height: 1.44; overflow-wrap: anywhere; }
.support-message-assistant { align-self: flex-start; border: 1px solid #dededb; border-bottom-left-radius: 3px; background: #eeeeec; color: #171717; }
.support-message-user { align-self: flex-end; border-bottom-right-radius: 3px; background: var(--color-orange); color: #111; }
.support-typing { min-width: 60px; display: inline-flex; align-items: center; gap: 5px; }
.support-typing span { width: 7px; height: 7px; border-radius: 50%; background: var(--color-orange); animation: support-typing-dot 1.1s ease-in-out infinite; }
.support-typing span:nth-child(2) { animation-delay: 150ms; }
.support-typing span:nth-child(3) { animation-delay: 300ms; }
.support-composer { flex: 0 0 auto; display: grid; grid-template-columns: minmax(0, 1fr) 44px; align-items: center; gap: 9px; padding: 12px; border-top: 1px solid var(--color-line-strong); background: var(--color-white); }
.support-input { width: 100%; min-width: 0; height: 44px; padding: 0 14px; border: 1px solid var(--color-line-strong); border-radius: var(--radius-control); background: var(--color-surface); color: var(--color-heading); font: inherit; font-size: 15px; line-height: 1; transition: border-color var(--duration-fast) var(--ease-main), background-color var(--duration-fast) var(--ease-main); }
.support-input::placeholder { color: #727272; }
.support-input:hover { border-color: #979795; }
.support-input:focus-visible { border-color: var(--color-orange); outline-color: var(--color-orange); outline-offset: 1px; }
.support-input:disabled { background: #eeeeec; color: #717171; cursor: not-allowed; }
.support-send { width: 44px; height: 44px; display: inline-flex; align-items: center; justify-content: center; padding: 0; border: 1px solid #111; border-radius: var(--radius-control); background: var(--color-orange); color: #111; cursor: pointer; transition: background-color var(--duration-fast) var(--ease-main), transform var(--duration-fast) var(--ease-main); }
.support-send:hover:not(:disabled) { background: var(--color-orange-hover); transform: translateY(-1px); }
.support-send:active:not(:disabled) { transform: translateY(1px); }
.support-send:focus-visible { outline-color: #111; outline-offset: 2px; }
.support-send:disabled { border-color: #c4c4c1; background: #ddddda; color: #777; cursor: not-allowed; }
.support-send svg { width: 20px; height: 20px; }

@keyframes support-panel-in {
  from { opacity: 0; transform: translateY(10px) scale(.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes support-typing-dot {
  0%, 80%, 100% { opacity: .35; transform: translateY(0); }
  40% { opacity: 1; transform: translateY(-3px); }
}

.site-footer { position: relative; isolation: isolate; min-width: 0; overflow: hidden; border-top: 3px solid var(--color-orange); background: #08090a; color: #f2efe8; }
.footer-topography { position: absolute; z-index: 0; inset: 0; overflow: hidden; pointer-events: none; }
.footer-topography svg { display: block; width: 100%; height: 100%; }
.footer-topography path { fill: none; stroke: #292b2c; stroke-width: 1.1; vector-effect: non-scaling-stroke; }
.footer-topography .footer-topography-accent { stroke: var(--color-orange); stroke-width: 1.6; }
.footer-main { position: relative; z-index: 1; min-width: 0; display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(520px, .92fr); gap: clamp(48px, 6vw, 88px); align-items: start; padding-top: 80px; padding-bottom: 68px; }
.footer-brand { min-width: 0; display: inline-flex; width: fit-content; align-items: baseline; gap: .17em; color: #f2efe8; font-family: var(--font-heading); font-size: clamp(58px, 6.25vw, 90px); font-weight: 700; letter-spacing: -.064em; line-height: .95; text-decoration: none; white-space: nowrap; }
.footer-brand:has(.footer-wordmark) { width: min(100%, 560px); }
.footer-wordmark { display: block; width: 100%; height: auto; }
.footer-brand-name { color: var(--color-orange); }
.footer-groups { min-width: 0; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(28px, 3vw, 48px); }
.footer-group { min-width: 0; }
.footer-group-title { color: #8f9190; font-size: 13px; font-weight: 700; letter-spacing: .17em; line-height: 1.2; }
.footer-group ul { display: grid; gap: 17px; margin: 24px 0 0; padding: 0; list-style: none; }
.footer-group li { min-width: 0; }
.footer-link { position: relative; min-width: 0; width: fit-content; display: inline-flex; align-items: center; gap: 11px; margin: 0; padding: 0; border: 0; background: transparent; color: #f2efe8; font: inherit; font-size: 17px; line-height: 1.35; text-align: left; text-decoration: none; cursor: pointer; transition: color var(--duration-fast) var(--ease-main), transform var(--duration-fast) var(--ease-main); }
.footer-link-label { position: relative; min-width: 0; }
.footer-link-label::after { content: ''; position: absolute; right: 0; bottom: -4px; left: 0; height: 1px; background: currentColor; transform: scaleX(0); transform-origin: left; transition: transform var(--duration-fast) var(--ease-main); }
.footer-link:hover, .footer-link:focus-visible { color: var(--color-orange); }
.footer-link:hover .footer-link-label::after, .footer-link:focus-visible .footer-link-label::after { transform: scaleX(1); }
.footer-link:active { color: var(--color-orange-hover); transform: translateY(1px); }
.site-footer :focus-visible { outline-color: var(--color-orange); outline-offset: 5px; }
.footer-social-icon { width: 19px; height: 19px; flex: 0 0 19px; display: block; background: currentColor; mask-position: center; mask-repeat: no-repeat; mask-size: contain; -webkit-mask-position: center; -webkit-mask-repeat: no-repeat; -webkit-mask-size: contain; }
.footer-social-icon-twitter { mask-image: url('/assets/social/twitter.svg'); -webkit-mask-image: url('/assets/social/twitter.svg'); }
.footer-social-icon-discord { mask-image: url('/assets/social/discord.svg'); -webkit-mask-image: url('/assets/social/discord.svg'); }
.footer-social-icon-telegram { mask-image: url('/assets/social/telegram.svg'); -webkit-mask-image: url('/assets/social/telegram.svg'); }
.footer-bottom { position: relative; z-index: 1; min-width: 0; padding-top: 30px; padding-bottom: 36px; border-top: 1px solid #343637; }
.footer-bottom p { color: #b6b6b2; font-size: 16px; line-height: 1.45; }

@media (min-width: 1024px) { :root { --gutter: 40px; } }
@media (min-width: 1200px) { :root { --gutter: 60px; } }

@media (max-width: 1100px) {
  .site-nav { gap: var(--space-4); }
  .nav-links { gap: var(--space-4); }
  .brand { font-size: 25px; }
  .assets-layout { grid-template-columns: minmax(0, .72fr) minmax(0, 1.28fr); column-gap: var(--space-5); row-gap: 0; }
  .transfer-review-header { gap: var(--space-7); }
  .self-custody-inner { padding-block: 68px 44px; }
  .self-custody-copy { width: 280px; max-width: 280px; }
  .self-custody h2 { font-size: 34px; }
  .self-custody-body { max-width: 260px; font-size: 17px; }
  .self-custody-support { max-width: 240px; margin-top: 16px; }
  .self-custody-support p { font-size: 16px; }
  .download-option { padding-inline: 18px; }
  .download-platform { font-size: 15px; }
  .faq-section h2 { font-size: clamp(44px, 6vw, 60px); }
  .footer-main { grid-template-columns: minmax(0, 1fr) minmax(500px, 1fr); gap: 42px; }
  .footer-brand { font-size: clamp(50px, 5.7vw, 66px); }
  .footer-groups { gap: 28px; }
}

@media (max-width: 900px) {
  :root { --header-height: 72px; --header-height-scrolled: 62px; }
  html:not(.has-js) .header-inner { flex-wrap: wrap; padding-block: var(--space-2); }
  html:not(.has-js) .site-nav { width: 100%; flex-wrap: wrap; justify-content: space-between; gap: var(--space-2); }
  html:not(.has-js) .nav-links { flex-wrap: wrap; gap: var(--space-2) var(--space-4); }
  .has-js .menu-toggle { display: inline-flex; }
  .has-js .site-nav { position: absolute; inset: 100% 0 auto; min-width: 0; border-bottom: var(--border-width) solid var(--color-line-strong); background: var(--color-white); padding: var(--space-4) var(--gutter); flex-direction: column; align-items: stretch; gap: var(--space-4); }
  .has-js .nav-links { min-width: 0; flex-direction: column; align-items: stretch; gap: var(--space-1); }
  .has-js .nav-links a, .has-js .nav-links button { justify-content: space-between; width: 100%; }
  .has-js .site-nav .button { width: 100%; }
  .hero-copy { max-width: 650px; }
  .assets-layout { grid-template-columns: minmax(0, 1fr); gap: 0; }
  .assets-intro { padding-top: 0; }
  .assets h2, .assets-body { max-width: 700px; }
  .network-field { margin-top: var(--space-5); }
  .assets-partners { margin-top: 16px; }
  .partners-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .transfer-review { padding-block: 96px 76px; }
  .transfer-topography-desktop { display: none !important; }
  .transfer-topography-mobile { display: block !important; }
  .transfer-review-header { grid-template-columns: minmax(0, 1fr); gap: var(--space-4); }
  .transfer-review h2 { max-width: 760px; font-size: clamp(38px, 6.6vw, 48px); }
  .transfer-review-body { max-width: 720px; justify-self: start; }
  .relationship-loop { width: min(100%, 560px); height: 560px; margin-top: var(--space-6); }
  .relationship-loop-lines-desktop { display: none; }
  .relationship-loop-lines-mobile { display: block; }
  .relationship-node::after { content: ''; position: absolute; top: 0; left: 8px; width: 46px; height: 2px; background: var(--color-heading); transform: translateY(-50%); }
  .relationship-label { top: 0 !important; right: auto !important; bottom: auto !important; left: 68px !important; max-width: 230px; font-size: 17px; line-height: 1.12; white-space: normal; transform: translateY(-50%) !important; }
  .relationship-node-network { left: 37.5%; top: 8.9%; }
  .relationship-node-recipient { left: 43.75%; top: 28.6%; }
  .relationship-node-amount { left: 45.55%; top: 50%; }
  .relationship-node-fee { left: 43.75%; top: 72.3%; }
  .relationship-node-asset { left: 37.5%; top: 90.2%; }
  .transfer-support { grid-template-columns: minmax(0, 1fr); gap: var(--space-5); margin-top: var(--space-4); }
  .transfer-support-item, .transfer-support-item-last { width: 100%; max-width: 720px; justify-self: start; }
  .transfer-support-divider { width: 62px; height: 3px; display: block; margin-block: 2px; background: var(--color-orange); }
  .self-custody { height: max(1000px, 177.68vw); }
  .self-custody-media img { position: absolute; right: 0; bottom: 0; left: 0; width: 100%; height: auto; object-fit: contain; object-position: center bottom; transform: none; }
  .self-custody-inner { padding-block: 96px 56px; }
  .self-custody-copy { width: min(100%, 560px); max-width: 560px; }
  .self-custody h2 { max-width: 540px; font-size: clamp(40px, 6vw, 48px); }
  .self-custody-body { max-width: 500px; font-size: 20px; }
  .self-custody-support { max-width: 390px; margin-top: 48px; }
  .download-section { padding-block: 104px 64px; }
  .download-section h2 { max-width: 700px; font-size: clamp(42px, 7.4vw, 56px); }
  .download-platforms { grid-template-columns: minmax(0, 1fr); margin-top: var(--space-6); }
  .download-option { width: 100%; padding: 38px 0 42px; }
  .download-option:first-child { padding-top: 0; }
  .download-option + .download-option { border-top: var(--border-width) solid var(--color-line-strong); border-left: 0; }
  .download-platform-mark { height: 102px; }
  .download-platform-icon-windows { width: calc(88px * .85); height: calc(88px * .85); }
  .download-platform-icon-apple { width: calc(82px * .85); height: calc(91px * .85); }
  .download-platform-icon-linux { width: calc(92px * .85); height: calc(92px * .85); }
  .download-option h3 { margin-top: var(--space-3); }
  .download-requirements { min-height: 0; }
  .download-platform { width: min(88%, 405px); margin-top: var(--space-4); }
  .download-meta { flex-direction: column; gap: 10px; margin-top: var(--space-4); }
  .download-release { flex-basis: auto; }
  .faq-section { padding-block: 104px 96px; }
  .faq-section h2 { font-size: clamp(44px, 7.3vw, 62px); }
  .faq-item summary { grid-template-columns: 46px minmax(0, 1fr) 42px; padding-inline: 28px; }
  .faq-answer { padding-right: 94px; padding-left: 98px; }
  .footer-main { display: block; padding-top: 60px; padding-bottom: 52px; }
  .footer-brand { font-size: clamp(50px, 8.4vw, 64px); }
  .footer-groups { margin-top: 46px; }
  .footer-bottom { padding-top: 28px; padding-bottom: 30px; }
}

@media (max-width: 620px) {
  :root { --h1-size: clamp(34px, 10vw, 39px); --h2-size: 32px; --hero-height: 860px; --network-icon-size: 30px; }
  .header-inner { gap: var(--space-2); }
  .brand { font-size: 22px; }
  .brand-wordmark { height: 19px; }
  .menu-toggle { max-width: 104px; }
  .hero::before { inset: -12px 0; background-size: auto 370px; background-position: 68% 100%; }
  .hero-inner { padding-block: var(--space-6) 338px; }
  .hero h1 { line-height: 1.06; letter-spacing: -.045em; text-wrap: wrap; }
  .hero-body { margin-top: var(--space-4); font-size: 18px; line-height: 1.5; }
  .hero-actions { flex-direction: column; align-items: stretch; margin-top: var(--space-4); gap: var(--space-2); }
  .hero-actions .button { width: 100%; }
  .hero-actions .button-label { flex: 1 1 auto; padding-inline: 14px; }
  .platform-note { font-size: 14px; }
  .assets { padding-block: 84px 40px; }
  .topography { top: -64px; height: 140px; }
  .assets-body { font-size: 18px; }
  .network-field { grid-template-columns: minmax(0, 1fr); grid-template-rows: none; grid-auto-flow: row; gap: 0; margin-top: var(--space-5); }
  .network-item { min-height: 72px; padding-inline: 14px; font-size: 17px; }
  .network-item::after { right: 14px; left: 60px; }
  .assets-partners { margin-top: 16px; }
  .partners-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; margin-top: 12px; }
  .partner-card { height: 86px; }
  .transfer-review { padding-block: 84px 68px; }
  .transfer-review h2 { font-size: clamp(36px, 10.7vw, 44px); line-height: 1.06; letter-spacing: -.047em; text-wrap: wrap; }
  .transfer-review-body { font-size: 19px; line-height: 1.45; }
  .relationship-loop { height: 540px; margin-top: 38px; }
  .relationship-label { left: 58px !important; max-width: 165px; font-size: 16px; }
  .relationship-node::after { width: 38px; }
  .transfer-support { margin-top: var(--space-3); }
  .transfer-support h3 { font-size: 25px; }
  .transfer-support p { font-size: 18px; }
  .self-custody { height: max(960px, 177.68vw); }
  .self-custody-inner { padding-block: 88px 48px; }
  .self-custody h2 { max-width: 100%; font-size: clamp(36px, 10.7vw, 42px); line-height: 1.05; text-wrap: wrap; }
  .self-custody-body { max-width: 100%; margin-top: var(--space-4); font-size: 18px; line-height: 1.5; }
  .self-custody-support { max-width: 330px; margin-top: 40px; }
  .self-custody-support p { margin-top: var(--space-3); font-size: 16px; }
  .download-section { padding-block: 88px 56px; }
  .download-section h2 { font-size: clamp(36px, 10.7vw, 44px); line-height: 1.05; text-wrap: wrap; }
  .download-body { margin-top: var(--space-4); font-size: 18px; }
  .download-platforms { margin-top: 42px; }
  .download-option { padding-block: 34px 38px; }
  .download-platform-mark { height: 88px; }
  .download-platform-icon-windows { width: calc(76px * .85); height: calc(76px * .85); }
  .download-platform-icon-apple { width: calc(72px * .85); height: calc(80px * .85); }
  .download-platform-icon-linux { width: calc(82px * .85); height: calc(82px * .85); }
  .download-option h3 { font-size: 26px; }
  .download-requirements { font-size: 16px; }
  .download-platform { min-height: 56px; font-size: 16px; }
  .download-platform .button-label { padding-inline: 14px; }
  .download-meta { margin-top: var(--space-3); padding-top: var(--space-4); font-size: 16px; }
  .faq-section { padding-block: 88px 80px; }
  .faq-section h2 { font-size: clamp(38px, 11vw, 46px); line-height: 1.04; text-wrap: wrap; }
  .faq-disclosures { margin-top: 48px; }
  .faq-item summary { min-height: 78px; grid-template-columns: 34px minmax(0, 1fr) 36px; gap: 10px; padding: 17px 14px; }
  .faq-row-number { padding-top: 4px; font-size: 16px; }
  .faq-question { font-size: 18px; line-height: 1.24; letter-spacing: -.02em; }
  .faq-toggle { width: 34px; height: 34px; }
  .faq-toggle::before, .faq-toggle::after { width: 13px; }
  .faq-answer { padding: 0 14px 24px 58px; }
  .faq-answer p { font-size: 17px; line-height: 1.52; }
  .help-dialog { width: calc(100% - 24px); max-height: calc(100vh - 24px); border-radius: 11px; }
  .help-dialog-header { padding: 24px 20px 22px; }
  .help-dialog h2 { font-size: 30px; }
  .help-dialog-header > div > p:last-child { font-size: 16px; }
  .help-dialog-layout { grid-template-columns: minmax(0, 1fr); }
  .help-topics { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 2px 8px; overflow: visible; padding: 14px 16px; border-right: 0; border-bottom: var(--border-width) solid var(--color-line); }
  .help-topics button { min-width: 0; border-left: 0; border-bottom: 3px solid transparent; white-space: normal; }
  .help-topics button[aria-selected='true'] { border-left-color: transparent; border-bottom-color: var(--color-orange); }
  .help-panels { padding: 26px 20px 30px; }
  .help-panel h3 { font-size: 24px; }
  .help-requirements li { grid-template-columns: minmax(0, 1fr); gap: 5px; }
  .footer-main { padding-top: 58px; padding-bottom: 46px; }
  .footer-brand { max-width: 100%; font-size: clamp(37px, 11.7vw, 52px); }
  .footer-groups { grid-template-columns: minmax(0, 1fr); gap: 36px; margin-top: 46px; }
  .footer-group ul { gap: 15px; margin-top: 20px; }
  .footer-link { font-size: 17px; }
  .footer-bottom { padding-top: 26px; padding-bottom: 30px; }
}

@media (max-width: 380px) {
  html, body { min-width: 0; }
  :root { --h1-size: 34px; }
  .brand { font-size: 20px; }
  .brand-wordmark { height: 16px; }
  .menu-toggle { padding-inline: 9px; }
  .hero-inner { padding-top: 40px; }
  .button-label { padding-inline: 12px; }
  .transfer-review { padding-top: 78px; }
  .transfer-review h2 { font-size: 36px; }
  .transfer-review-body { font-size: 18px; }
  .relationship-loop { height: 510px; }
  .relationship-label { left: 51px !important; max-width: 140px; font-size: 15px; }
  .relationship-node::after { width: 32px; }
  .transfer-support h3 { font-size: 23px; }
  .self-custody-inner { padding-top: 80px; }
  .self-custody h2 { font-size: 36px; }
  .faq-section h2 { font-size: 38px; }
  .faq-question { font-size: 17px; }
  .faq-answer { padding-right: 12px; padding-left: 56px; }
  .footer-brand { font-size: 36px; }
}

.assets h2,
.transfer-review h2,
.self-custody h2,
.download-section h2,
.faq-section h2 {
  font-size: var(--h2-size);
  line-height: 1.08;
  letter-spacing: -.042em;
}

.hero-body,
.assets-body,
.transfer-review-body,
.self-custody-body,
.download-body {
  font-size: 20px;
  line-height: 1.5;
}

@media (max-width: 620px) {
  .hero-body,
  .assets-body,
  .transfer-review-body,
  .self-custody-body,
  .download-body {
    font-size: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; transition-delay: 0ms !important; }
  .has-js .hero::before { transform: none !important; }
  .has-js .topography-line { stroke-dashoffset: 0 !important; }
  .button:hover .button-label,
  .button:hover .button-icon path,
  .network-item:hover .network-icon,
  .network-item:hover .network-label { transform: none !important; }
}

.legal-page { background: var(--color-white); }
.legal-hero { position: relative; isolation: isolate; min-width: 0; overflow: hidden; background: #faf9f5; }
.legal-hero-topography { position: absolute; z-index: 0; inset: 0; overflow: hidden; pointer-events: none; }
.legal-hero-topography svg { display: block; width: 100%; height: 100%; }
.legal-hero-topography path { fill: none; stroke: #dededb; stroke-width: 1; vector-effect: non-scaling-stroke; }
.legal-hero-inner { position: relative; z-index: 1; min-width: 0; padding-block: 70px 64px; }
.legal-eyebrow { color: var(--color-orange); font-size: 14px; font-weight: 700; letter-spacing: .2em; line-height: 1.2; }
.legal-hero h1 { max-width: none; margin-top: 18px; color: var(--color-heading); font-family: var(--font-heading); font-size: clamp(50px, 5.2vw, 74px); font-weight: 700; line-height: 1.02; letter-spacing: -.055em; text-wrap: nowrap; white-space: nowrap; }
.legal-date { margin-top: 28px; color: #6e7380; font-size: 17px; line-height: 1.45; }
.legal-intro { max-width: 920px; margin-top: 18px; color: #252a35; font-size: 21px; line-height: 1.5; overflow-wrap: break-word; }
.legal-layout { min-width: 0; display: grid; grid-template-columns: 250px minmax(0, 72ch); gap: clamp(64px, 8vw, 118px); align-items: start; padding-block: 72px 128px; }
.legal-contents { position: sticky; top: calc(var(--header-height-scrolled) + 30px); min-width: 0; align-self: start; }
.legal-contents-title { color: #6f7480; font-size: 13px; font-weight: 700; letter-spacing: .16em; line-height: 1.2; }
.legal-contents ol { display: grid; gap: 18px; margin: 24px 0 0; padding: 0; list-style: none; }
.legal-contents a { min-width: 0; display: grid; grid-template-columns: 38px 3px minmax(0, 1fr); gap: 18px; align-items: center; min-height: 44px; color: #717684; font-size: 17px; line-height: 1.3; text-decoration: none; transition: color var(--duration-fast) var(--ease-main); }
.legal-contents-number { font-variant-numeric: tabular-nums; }
.legal-contents-rule { width: 3px; height: 100%; min-height: 36px; background: #c9ccd2; transition: background-color var(--duration-fast) var(--ease-main); }
.legal-contents a[aria-current='true'] { color: var(--color-heading); font-weight: 700; }
.legal-contents a[aria-current='true'] .legal-contents-number { color: var(--color-orange); font-weight: 400; }
.legal-contents a[aria-current='true'] .legal-contents-rule { background: var(--color-orange); }
.legal-contents a:hover, .legal-contents a:focus-visible { color: var(--color-orange); }
.legal-article { min-width: 0; max-width: 72ch; }
.legal-section { min-width: 0; scroll-margin-top: calc(var(--header-height-scrolled) + 28px); }
.legal-section:focus { outline: none; }
.legal-section + .legal-section { margin-top: 86px; padding-top: 72px; border-top: var(--border-width) solid var(--color-line-strong); }
.legal-section h2 { margin: 0; color: var(--color-heading); font-family: var(--font-heading); font-size: clamp(42px, 4vw, 54px); font-weight: 700; line-height: 1.05; letter-spacing: -.048em; overflow-wrap: break-word; }
.legal-subsection { min-width: 0; margin-top: 34px; }
.legal-subsection + .legal-subsection { margin-top: 38px; padding-top: 34px; border-top: var(--border-width) solid var(--color-line-strong); }
.legal-subsection h3 { margin: 0; color: var(--color-heading); font-family: var(--font-heading); font-size: clamp(25px, 2.25vw, 30px); font-weight: 700; line-height: 1.15; letter-spacing: -.035em; overflow-wrap: break-word; }
.legal-subsection p { margin: 16px 0 0; color: #30343e; font-size: 19px; line-height: 1.58; overflow-wrap: break-word; }
.legal-subsection h2 + p, .legal-subsection > p:first-child { margin-top: 0; }
.footer-group-title-link { display: inline-block; text-decoration: none; transition: color var(--duration-fast) var(--ease-main); }
.footer-group-title-link:hover, .footer-group-title-link:focus-visible { color: var(--color-orange); }
.consent-banner { position: fixed; z-index: 80; right: 50%; bottom: 24px; width: min(900px, calc(100% - 40px)); min-width: 0; display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 18px 18px 18px 22px; border: var(--border-width) solid #333536; border-radius: var(--radius-control); background: #0b0c0d; color: #f2efe8; transform: translateX(50%); }
.consent-accepted .consent-banner, .consent-banner[hidden] { display: none; }
.consent-banner p { min-width: 0; font-size: 16px; line-height: 1.45; white-space: nowrap; }
.consent-banner p a { color: inherit; text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 3px; }
.consent-banner p a:hover, .consent-banner p a:focus-visible { color: var(--color-orange); }
.consent-accept { flex: 0 0 auto; min-width: 112px; cursor: pointer; }
.consent-banner :focus-visible { outline-color: var(--color-orange); }

@media (max-width: 1100px) {
  .legal-hero h1 { max-width: 920px; text-wrap: balance; white-space: normal; overflow-wrap: break-word; }
  .legal-layout { grid-template-columns: 230px minmax(0, 72ch); gap: 56px; }
}

@media (max-width: 900px) {
  .legal-hero-inner { padding-block: 64px 60px; }
  .legal-hero h1 { max-width: 760px; font-size: clamp(44px, 7.8vw, 62px); }
  .legal-intro { max-width: 760px; }
  .legal-layout { grid-template-columns: minmax(0, 1fr); gap: 66px; padding-block: 64px 104px; }
  .legal-contents { position: static; top: auto; }
  .legal-contents ol { max-width: 720px; }
  .legal-article { max-width: 72ch; }
  .consent-banner p { white-space: normal; }
}

@media (max-width: 620px) {
  .legal-hero-inner { padding-block: 58px 54px; }
  .legal-eyebrow { font-size: 13px; }
  .legal-hero h1 { margin-top: 20px; font-size: clamp(38px, 11vw, 46px); line-height: 1.03; text-wrap: wrap; }
  .legal-date { margin-top: 24px; font-size: 17px; }
  .legal-intro { margin-top: 22px; font-size: 19px; line-height: 1.5; }
  .legal-layout { gap: 58px; padding-block: 52px 88px; }
  .legal-contents ol { gap: 14px; margin-top: 22px; }
  .legal-contents a { grid-template-columns: 34px 3px minmax(0, 1fr); gap: 16px; font-size: 18px; }
  .legal-section + .legal-section { margin-top: 68px; padding-top: 58px; }
  .legal-section h2 { font-size: 38px; }
  .legal-subsection { margin-top: 30px; }
  .legal-subsection + .legal-subsection { margin-top: 32px; padding-top: 28px; }
  .legal-subsection h3 { font-size: 25px; }
  .legal-subsection p { margin-top: 14px; font-size: 18px; line-height: 1.58; }
  .consent-banner { bottom: 20px; width: calc(100% - 40px); display: grid; gap: 16px; padding: 18px; }
  .consent-accept { width: 100%; }
}

@media (max-width: 620px) {
  .support-widget { right: 20px; bottom: calc(20px + env(safe-area-inset-bottom)); width: 54px; height: 54px; }
  .support-launcher { width: 54px; height: 54px; }
  .support-widget[data-consent-visible='true'] .support-launcher:not(.is-open) { visibility: hidden; opacity: 0; pointer-events: none; }
  .support-panel { position: fixed; right: 20px; bottom: calc(86px + var(--support-consent-clearance) + env(safe-area-inset-bottom)); left: 20px; width: auto; height: min(470px, calc(100dvh - var(--support-consent-clearance) - 106px)); min-height: 286px; }
  .support-panel-header { min-height: 72px; padding: 14px 15px; }
  .support-messages { padding: 15px; }
  .support-message { font-size: 14px; }
  .support-composer { grid-template-columns: minmax(0, 1fr) 44px; padding: 10px; }
}
