:root{
  color-scheme:light dark;
  --paper:#ffffff;
  --ground:#f6f6f5;
  --ink:#000000;
  --ink-2:#3d3d3d;
  --ink-3:#767674;
  --rule:#dcdcda;
  --rule-2:#000000;
  --nav:rgba(255,255,255,.86);
  --serif:Charter,"Iowan Old Style","Palatino Linotype",Palatino,Georgia,"Times New Roman","Songti SC","Noto Serif CJK SC","Noto Serif SC",serif;
  --sans:-apple-system,BlinkMacSystemFont,"Segoe UI","Helvetica Neue",Helvetica,"PingFang SC","Hiragino Sans GB",Arial,sans-serif;
  --mono:ui-monospace,"SF Mono",Menlo,Consolas,"Liberation Mono","DejaVu Sans Mono",monospace;
}
@media (prefers-color-scheme:dark){
  :root:not([data-theme="light"]){
    --paper:#000000;--ground:#0d0d0d;--ink:#ffffff;--ink-2:#c4c4c4;--ink-3:#8c8c8a;
    --rule:#292928;--rule-2:#ffffff;--nav:rgba(0,0,0,.84);
  }
}
:root[data-theme="dark"]{
  --paper:#000000;--ground:#0d0d0d;--ink:#ffffff;--ink-2:#c4c4c4;--ink-3:#8c8c8a;
  --rule:#292928;--rule-2:#ffffff;--nav:rgba(0,0,0,.84);
}

*,*::before,*::after{box-sizing:border-box}
html{scroll-behavior:smooth;scroll-padding-top:76px}
@media (prefers-reduced-motion:reduce){html{scroll-behavior:auto}}
body{
  margin:0;
  background:var(--paper);
  color:var(--ink);
  font-family:var(--sans);
  font-size:16px;
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
  -webkit-text-size-adjust:100%;
}
@media (min-width:900px){body{font-size:16.5px}}
h1,h2,h3,h4{font-weight:300;letter-spacing:-.028em}
a{color:inherit}
.wrapper{max-width:1200px;margin:0 auto;padding:0 22px}
@media (min-width:900px){.wrapper{padding:0 40px}}

.k{font-family:var(--mono);font-size:11px;letter-spacing:.11em;text-transform:uppercase;color:var(--ink-3)}

/* ---------- Header ---------- */
.top{
  position:sticky;
  top:0;
  z-index:50;
  background:var(--nav);
  backdrop-filter:saturate(180%) blur(14px);
  -webkit-backdrop-filter:saturate(180%) blur(14px);
  border-bottom:1px solid var(--rule);
}
.top .wrapper{position:relative;display:flex;align-items:center;gap:12px 30px;height:64px}
.brand{display:flex;align-items:center;gap:10px;text-decoration:none;flex:0 0 auto;margin-right:auto}
.brand .mark{
  display:block;
  width:28px;
  height:28px;
  color:var(--ink);
  flex:0 0 auto;
  /* The line box centres on the em, not on the caps; 4.5% of the mark is the difference. */
  transform:translateY(4.5%);
}
.brand b{
  font-weight:500;
  font-size:19px;
  letter-spacing:-.021em;
  line-height:1;
}
.brand b i{
  font-family:var(--serif);
  font-style:normal;
  font-weight:400;
  /* Charter's x-height runs 7% over the sans at one size; match the eye, not the em. */
  font-size:.935em;
  letter-spacing:.002em;
  color:var(--ink-2);
}
.foot .brand .mark{width:34px;height:34px}
.foot .brand b{font-size:22px}
/* One nav. A checkbox toggles it on a phone; it is a plain row on a desktop. */
.mbtn{
  order:3;
  display:flex;
  flex-direction:column;
  justify-content:center;
  gap:5px;
  width:34px;
  height:34px;
  padding:0 6px;
  cursor:pointer;
}
.mbtn span{display:block;height:1px;background:var(--ink);transition:transform .2s linear}
.mtoggle:checked ~ .mbtn span:first-child{transform:translateY(3px) rotate(45deg)}
.mtoggle:checked ~ .mbtn span:last-child{transform:translateY(-3px) rotate(-45deg)}
.menu{order:4;display:none}
.mtoggle:checked ~ .menu{display:block}
.menu nav{
  position:absolute;
  left:0;
  right:0;
  top:64px;
  display:flex;
  flex-direction:column;
  padding:8px 22px 18px;
  background:var(--paper);
  border-bottom:1px solid var(--rule);
  font-size:16px;
}
.menu nav a{color:var(--ink-2);text-decoration:none;padding:11px 0;border-bottom:1px solid var(--rule)}
.menu nav a:last-child{border-bottom:none}
.menu nav a:hover{color:var(--ink)}
@media (min-width:940px){
  .mbtn{display:none}
  .brand{margin-right:0}
  .menu,.mtoggle:checked ~ .menu{order:0;display:block;margin-right:auto}
  .menu nav{
    position:static;
    flex-direction:row;
    gap:28px;
    padding:0;
    border:none;
    background:none;
    font-size:14px;
  }
  .menu nav a{padding:0;border:none}
}
.top .end{display:flex;align-items:center;gap:8px;font-family:var(--sans);font-size:14px}
.top .end a.plain{text-decoration:none;color:var(--ink-2);padding:8px 4px}
.top .end a.plain:hover{color:var(--ink)}
.btn{
  display:inline-block;
  font-family:var(--sans);
  font-size:14px;
  text-decoration:none;
  padding:9px 17px;
  border:1px solid var(--ink);
  background:var(--ink);
  color:var(--paper);
  white-space:nowrap;
  transition:opacity .15s linear;
}
.btn:hover{opacity:.82}
.btn.line{background:none;color:var(--ink);border-color:var(--rule)}
.btn.line:hover{border-color:var(--ink);opacity:1}
.btn.big{font-size:15px;padding:13px 24px}
@media (max-width:600px){.top .end a.plain{display:none}}

/* ---------- Hero ---------- */
.hero{position:relative;border-bottom:1px solid var(--rule);overflow:hidden}
.hero::before{
  content:"";
  position:absolute;
  inset:0;
  background:radial-gradient(125% 90% at 12% -10%,var(--ground) 0%,transparent 58%);
  pointer-events:none;
}
.hero .bg{
  position:absolute;
  right:-6%;
  top:0;
  width:78%;
  height:100%;
  color:var(--ink);
  opacity:.055;
  pointer-events:none;
}
.hero .wrapper{position:relative}
.hero .wrapper{
  display:grid;
  grid-template-columns:minmax(0,1fr);
  gap:44px 56px;
  padding-top:64px;
  padding-bottom:64px;
  align-items:center;
}
@media (min-width:960px){.hero .wrapper{grid-template-columns:minmax(0,1.06fr) minmax(0,.94fr);padding-top:92px;padding-bottom:92px}}
.hero h1{
  font-size:clamp(40px,5.4vw,60px);
  font-weight:300;
  line-height:1.08;
  letter-spacing:-.032em;
  margin:0;
  max-width:17ch;
}
.hero h1 em{font-style:normal;color:var(--ink-3)}
.hero .sub{font-size:19px;line-height:1.5;color:var(--ink-2);max-width:50ch;margin:24px 0 0}
.hero .cta{display:flex;flex-wrap:wrap;gap:12px;margin:32px 0 0}
.hero .note{margin:20px 0 0;font-family:var(--sans);font-size:13px;color:var(--ink-3)}

/* The product, drawn in the page. */
.card{
  border:1px solid var(--rule);
  border-radius:10px;
  background:var(--paper);
  box-shadow:0 1px 2px rgba(0,0,0,.04),0 30px 60px -38px rgba(0,0,0,.55);
  min-width:0;
  overflow:hidden;
}
.card .hd{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  padding:14px 20px;
  border-bottom:1px solid var(--rule);
  font-size:13px;
  color:var(--ink-3);
}
.card .hd .id{font-family:var(--mono);font-size:11.5px;letter-spacing:.01em;overflow-wrap:anywhere}
.card .bd{padding:22px 20px 20px}
.amtline{display:flex;align-items:center;flex-wrap:wrap;gap:8px 14px}
.card .amt{
  font-size:42px;
  font-weight:300;
  line-height:1;
  letter-spacing:-.035em;
  font-variant-numeric:tabular-nums;
}
.card .amt s{text-decoration:none;font-size:.38em;color:var(--ink-3);padding-left:.45em;letter-spacing:0}
.badge{
  display:inline-flex;
  align-items:center;
  gap:7px;
  font-size:12.5px;
  color:var(--ink-2);
  padding:5px 12px 5px 10px;
  border:1px solid var(--rule);
  border-radius:999px;
}
.badge i{width:5px;height:5px;border-radius:50%;background:var(--ink);display:block}

.card dl{display:grid;grid-template-columns:max-content minmax(0,1fr);gap:11px 24px;margin:24px 0 0;font-size:13.5px}
.card dt{color:var(--ink-3)}
.card dd{margin:0;text-align:right;font-variant-numeric:tabular-nums}
.card dd.id{font-family:var(--mono);font-size:12px;overflow-wrap:anywhere}
.card dd.rate{font-family:var(--mono);font-size:12.5px}

/* The three movements, as the payment actually walks them. */
.track{list-style:none;margin:24px 0 0;padding:18px 0 0;border-top:1px solid var(--rule)}
.track li{position:relative;display:flex;align-items:baseline;gap:12px;padding:0 0 16px 22px;font-size:13.5px}
.track li:last-child{padding-bottom:0}
.track li::before{
  content:"";
  position:absolute;
  left:0;
  top:5px;
  width:9px;
  height:9px;
  border-radius:50%;
  border:1px solid var(--ink);
  background:var(--ink);
}
.track li::after{
  content:"";
  position:absolute;
  left:4px;
  top:15px;
  bottom:1px;
  width:1px;
  background:var(--rule);
}
.track li:last-child::before{background:var(--paper)}
.track li:last-child::after{display:none}
.track b{font-weight:400}
.track span{color:var(--ink-3);margin-left:auto;padding-left:14px;white-space:nowrap;font-variant-numeric:tabular-nums}
.track em{font-style:normal;color:var(--ink-2)}


/* ---------- Bands ---------- */
.band{border-bottom:1px solid var(--rule)}
.band.fill{background:var(--ground)}
.band.dark{
  --paper:#000000;--ground:#111111;--ink:#ffffff;--ink-2:#b9b9b7;--ink-3:#84847f;--rule:#2b2b2a;--rule-2:#ffffff;
  background:#000;
  color:#fff;
  border-top:1px solid #2b2b2a;
  border-bottom:1px solid #2b2b2a;
}
/* On a dark page a black slab reads as nothing, so it lifts instead. */
@media (prefers-color-scheme:dark){
  :root:not([data-theme="light"]) .band.dark{--paper:#0f0f0e;background:#0f0f0e}
}
:root[data-theme="dark"] .band.dark{--paper:#0f0f0e;background:#0f0f0e}
.band.dark .btn{background:#fff;color:#000;border-color:#fff}
.band.dark .btn.line{background:none;color:#fff;border-color:#3a3a38}
.band.dark .btn.line:hover{border-color:#fff}
#company h2{font-family:var(--serif);font-weight:400;letter-spacing:-.015em}
.band .wrapper{padding-top:74px;padding-bottom:74px}
@media (min-width:900px){.band .wrapper{padding-top:96px;padding-bottom:96px}}
.head{max-width:62ch;margin:0 0 40px}
.head h2{
  font-size:clamp(28px,3.6vw,42px);
  font-weight:300;
  line-height:1.12;
  letter-spacing:-.03em;
  margin:16px 0 0;
  max-width:20ch;
}
.head h2 em{font-style:normal;color:var(--ink-3)}
.head p{font-size:18px;line-height:1.5;color:var(--ink-2);margin:16px 0 0;max-width:56ch}

/* The marquee: one endless course of the rails we run on. */
#networks{padding-top:8px}
.marquee{
  overflow:hidden;
  padding:44px 0 46px;
  /* Items enter and leave through a fade rather than a hard edge. */
  -webkit-mask-image:linear-gradient(90deg,transparent,#000 7%,#000 93%,transparent);
  mask-image:linear-gradient(90deg,transparent,#000 7%,#000 93%,transparent);
}
.mtrack{display:flex;width:max-content;animation:marquee 64s linear infinite}
.marquee:hover .mtrack{animation-play-state:paused}
@keyframes marquee{from{transform:translateX(0)}to{transform:translateX(-50%)}}
.run{
  list-style:none;
  margin:0;
  padding:0;
  display:flex;
  align-items:center;
  gap:0 62px;
  padding-right:62px;
}
.run li{display:flex;align-items:center;flex:0 0 auto;white-space:nowrap}
.run img{
  display:block;
  width:auto;
  height:28px;
  /* Grayscale keeps the knockouts a flat fill would destroy. */
  filter:grayscale(1);
  opacity:.72;
}
.run img[alt="Visa"]{height:21px}
.run img[alt="UnionPay"]{height:26px}
.run img[alt="Mastercard"],.run img[alt="JCB"]{height:30px}
.run img[alt="American Express"]{height:35px}
.run img[alt="Thai QR Payment"]{height:26px}
.run img[alt="GCash"]{height:21px}
.run img[alt="QR Ph"]{height:21px}
.run img[alt="QRIS"]{height:25px}
.run img[alt="VietQR"]{height:23px}
.run img[alt="USDC"]{height:21px}
.run .tag{
  font-family:var(--mono);
  font-size:9.5px;
  letter-spacing:.09em;
  text-transform:uppercase;
  color:var(--ink-3);
  border:1px solid var(--rule);
  border-radius:999px;
  padding:2px 7px;
  margin-left:10px;
}
.run .wd{
  font-size:19px;
  letter-spacing:-.02em;
  color:var(--ink-2);
  gap:10px;
}
.run .wd span{
  font-family:var(--mono);
  font-size:10.5px;
  letter-spacing:.09em;
  text-transform:uppercase;
  color:var(--ink-3);
}
@media (prefers-color-scheme:dark){
  :root:not([data-theme="light"]) .run img{filter:grayscale(1) invert(1);opacity:.82}
}
:root[data-theme="dark"] .run img{filter:grayscale(1) invert(1);opacity:.82}

/* Product cards */
.prods{display:grid;grid-template-columns:minmax(0,1fr)}
@media (min-width:700px){.prods{grid-template-columns:repeat(2,minmax(0,1fr))}}
@media (min-width:1020px){.prods{grid-template-columns:repeat(3,minmax(0,1fr))}}
.prods > a{
  display:block;
  text-decoration:none;
  padding:26px 26px 30px;
  border-top:1px solid var(--rule);
  border-right:1px solid var(--rule);
  transition:background .18s linear;
}
.prods > a:hover{background:var(--ground)}
@media (min-width:700px){.prods > a:nth-child(2n){border-right:none}}
@media (min-width:1020px){
  .prods > a:nth-child(2n){border-right:1px solid var(--rule)}
  .prods > a:nth-child(3n){border-right:none}
}
.prods h3{font-size:20px;font-weight:400;letter-spacing:-.02em;margin:14px 0 8px}
.prods p{font-family:var(--sans);font-size:14.5px;line-height:1.55;color:var(--ink-2);margin:0;max-width:34ch}
.prods .go{font-family:var(--mono);font-size:11px;letter-spacing:.09em;text-transform:uppercase;color:var(--ink-3);display:block;margin:16px 0 0}
.prods > a:hover .go{color:var(--ink)}


/* Solutions */
.sol{display:grid;grid-template-columns:minmax(0,1fr);gap:0}
.sol > div{
  display:grid;
  grid-template-columns:minmax(0,1fr);
  gap:20px 56px;
  padding:34px 0;
  border-top:1px solid var(--rule);
}
@media (min-width:860px){.sol > div{grid-template-columns:minmax(0,.9fr) minmax(0,1.1fr);padding:40px 0}}
.sol h3{font-size:24px;font-weight:300;letter-spacing:-.028em;margin:12px 0 0;max-width:18ch}
.sol ul{list-style:none;margin:0;padding:0;display:grid;gap:12px}
.sol li{display:grid;grid-template-columns:max-content minmax(0,1fr);gap:14px;font-size:15px;color:var(--ink-2);align-items:start}
.sol li span{font-family:var(--mono);font-size:10.5px;letter-spacing:.09em;text-transform:uppercase;color:var(--ink-3);padding-top:4px;white-space:nowrap}

/* Worked example */
.flow{display:grid;grid-template-columns:minmax(0,1fr);border-top:1px solid var(--ink);border-bottom:1px solid var(--ink)}
@media (min-width:780px){.flow{grid-template-columns:repeat(4,minmax(0,1fr))}}
.flow > div{padding:24px 0 26px;border-bottom:1px solid var(--rule)}
.flow > div:last-child{border-bottom:none}
@media (min-width:780px){
  .flow > div{padding:26px 24px 30px;border-bottom:none;border-left:1px solid var(--rule)}
  .flow > div:first-child{padding-left:0;border-left:none}
  .flow > div:last-child{padding-right:0}
}
.flow .amt{font-family:var(--mono);font-size:clamp(23px,2.8vw,30px);line-height:1.1;letter-spacing:-.024em;font-variant-numeric:tabular-nums;display:block;margin:12px 0 10px}
.flow .amt s{text-decoration:none;color:var(--ink-3);font-size:.55em;letter-spacing:.06em;padding-left:.35em}
.flow p{font-family:var(--sans);font-size:13.5px;line-height:1.5;color:var(--ink-2);margin:0;max-width:30ch}
.flow > div:last-child .amt{border-bottom:3px double var(--ink);padding-bottom:10px;display:inline-block}
.src{font-family:var(--mono);font-size:11.5px;letter-spacing:.02em;color:var(--ink-3);margin:20px 0 0}

/* Trust list */
.trust{display:grid;grid-template-columns:minmax(0,1fr)}
@media (min-width:700px){.trust{grid-template-columns:repeat(2,minmax(0,1fr));column-gap:56px}}
@media (min-width:1020px){.trust{grid-template-columns:repeat(3,minmax(0,1fr))}}
.trust > div{padding:20px 0 22px;border-top:1px solid var(--rule)}
.trust h3{font-size:17px;font-weight:400;letter-spacing:-.018em;margin:10px 0 7px}
.trust p{font-family:var(--sans);font-size:14px;line-height:1.55;color:var(--ink-2);margin:0;max-width:36ch}

/* Heritage */
.origin{display:grid;grid-template-columns:minmax(0,1fr);gap:32px 60px;align-items:center}
@media (min-width:900px){.origin{grid-template-columns:minmax(0,1fr) minmax(0,1fr)}}
.origin p{font-family:var(--serif);font-size:17.5px;line-height:1.6;margin:0 0 15px;max-width:52ch;color:var(--ink-2)}
.origin div p:last-child{margin-bottom:0}
.origin .pull{font-family:var(--serif);font-size:27px;line-height:1.3;font-style:italic;color:var(--ink);border-left:1px solid var(--ink);padding-left:24px;max-width:26ch}
.origin .pull span{display:block;font-style:normal;font-family:var(--mono);font-size:11.5px;letter-spacing:.05em;text-transform:uppercase;color:var(--ink-3);padding-top:14px;line-height:1.5}

/* State table */
.state{width:100%;border-collapse:collapse;font-family:var(--sans);font-size:15px}
.state td{padding:14px 18px 14px 0;border-bottom:1px solid var(--rule);vertical-align:top}
.state tr:first-child td{border-top:1px solid var(--ink)}
.state td:first-child{width:32%;font-family:var(--mono);font-size:11.5px;letter-spacing:.08em;text-transform:uppercase;color:var(--ink-3);padding-top:17px;white-space:nowrap}
.state td:last-child{padding-right:0;color:var(--ink-2)}

/* Closing call */
.close .wrapper{text-align:center;padding-top:92px;padding-bottom:92px}
.close h2{font-size:clamp(32px,4.6vw,54px);font-weight:300;line-height:1.1;letter-spacing:-.022em;margin:0 auto;max-width:16ch}
.close h2 em{font-style:normal;color:var(--ink-3)}
.close .cta{display:flex;flex-wrap:wrap;gap:12px;justify-content:center;margin:34px 0 0}
.close p{font-family:var(--sans);font-size:13.5px;color:var(--ink-3);margin:22px auto 0;max-width:52ch}

/* ---------- Footer ---------- */
.foot{border-top:1px solid var(--rule-2);background:var(--ground)}
.foot .wrapper{padding-top:56px;padding-bottom:44px}
.cols{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:34px 40px}
@media (min-width:760px){.cols{grid-template-columns:1.5fr repeat(4,minmax(0,1fr))}}
.cols h4{font-family:var(--mono);font-size:11px;letter-spacing:.11em;text-transform:uppercase;color:var(--ink-3);font-weight:400;margin:0 0 14px}
.cols ul{list-style:none;margin:0;padding:0;font-family:var(--sans);font-size:14px}
.cols li{margin:0 0 9px}
.cols a{color:var(--ink-2);text-decoration:none}
.cols a:hover{color:var(--ink);text-decoration:underline;text-underline-offset:3px}
.cols .about{grid-column:1 / -1}
@media (min-width:760px){.cols .about{grid-column:auto;padding-right:30px}}
.cols .about p{font-family:var(--sans);font-size:13.5px;line-height:1.6;color:var(--ink-3);margin:12px 0 0;max-width:34ch}
.legal{
  display:flex;
  flex-wrap:wrap;
  gap:8px 26px;
  margin-top:44px;
  padding-top:20px;
  border-top:1px solid var(--rule);
  font-family:var(--sans);
  font-size:12.5px;
  color:var(--ink-3);
}
.legal p{margin:0}
.legal .right{margin-left:auto}

/* ---------- Motion. CSS only: the page loads no script. ---------- */
@keyframes draw{from{stroke-dashoffset:120}to{stroke-dashoffset:0}}
@keyframes rise{from{opacity:0;transform:translateY(16px)}to{opacity:1;transform:none}}
@keyframes fade{from{opacity:0}to{opacity:1}}
@keyframes lift{from{opacity:0;transform:translateY(26px) scale(.985)}to{opacity:1;transform:none}}

.top .brand .mark path{stroke-dasharray:60;animation:draw60 1.1s cubic-bezier(.16,.72,.24,1) both}
.top .brand .mark path:nth-child(1),.top .brand .mark path:nth-child(9){animation-delay:0s}
.top .brand .mark path:nth-child(2),.top .brand .mark path:nth-child(8){animation-delay:.05s}
.top .brand .mark path:nth-child(3),.top .brand .mark path:nth-child(7){animation-delay:.1s}
.top .brand .mark path:nth-child(4),.top .brand .mark path:nth-child(6){animation-delay:.15s}
.top .brand .mark path:nth-child(5){animation-delay:.2s}
@keyframes draw60{from{stroke-dashoffset:60}to{stroke-dashoffset:0}}
.hero h1{animation:rise .9s cubic-bezier(.2,.7,.2,1) .06s both}
.hero .sub{animation:rise .9s cubic-bezier(.2,.7,.2,1) .16s both}
.hero .cta{animation:rise .9s cubic-bezier(.2,.7,.2,1) .26s both}
.hero .note{animation:fade 1s linear .5s both}
.hero .card{animation:lift 1.1s cubic-bezier(.2,.7,.2,1) .2s both}
.card .amtline,.card dl,.track{animation:fade .9s linear .75s both}

@supports (animation-timeline:view()){
  .head,.prods > a,.flow > div,.trust > div,.origin > *,.state,.close h2,.close .cta,.close p,.cols > div{
    animation:rise .01s linear both;
    animation-timeline:view();
    animation-range:entry 2% cover 22%;
  }
  .prods > a:nth-child(2),.flow > div:nth-child(2),.trust > div:nth-child(2),.cols > div:nth-child(2){animation-range:entry 2% cover 26%}
  .prods > a:nth-child(3),.flow > div:nth-child(3),.trust > div:nth-child(3),.cols > div:nth-child(3){animation-range:entry 2% cover 30%}
  .prods > a:nth-child(4),.flow > div:nth-child(4),.trust > div:nth-child(4),.cols > div:nth-child(4){animation-range:entry 2% cover 34%}
  .prods > a:nth-child(5),.trust > div:nth-child(5),.cols > div:nth-child(5){animation-range:entry 2% cover 38%}
  .prods > a:nth-child(6),.trust > div:nth-child(6){animation-range:entry 2% cover 42%}
}


/* ---------- Motion in the name: nine currents, one sea. ---------- */
@keyframes current{from{stroke-dashoffset:0}to{stroke-dashoffset:-360}}
@keyframes tide{0%,100%{opacity:.04}50%{opacity:.085}}
@keyframes fall{from{transform:scaleY(0)}to{transform:scaleY(1)}}

/* Each course runs at its own rate, so the nine never beat together. */
.hero .bg path{
  stroke-dasharray:46 314;
  animation:current linear infinite;
}
.hero .bg path:nth-child(1){animation-duration:31s}
.hero .bg path:nth-child(2){animation-duration:24s}
.hero .bg path:nth-child(3){animation-duration:35s}
.hero .bg path:nth-child(4){animation-duration:27s}
.hero .bg path:nth-child(5){animation-duration:21s}
.hero .bg path:nth-child(6){animation-duration:33s}
.hero .bg path:nth-child(7){animation-duration:26s}
.hero .bg path:nth-child(8){animation-duration:37s}
.hero .bg path:nth-child(9){animation-duration:29s}
.hero .bg{animation:tide 14s ease-in-out infinite}

/* The seal runs its courses again when a reader points at it. */
.brand:hover .mark path{animation:draw60 .9s cubic-bezier(.16,.72,.24,1) both}
.brand:hover .mark path:nth-child(2),.brand:hover .mark path:nth-child(8){animation-delay:.04s}
.brand:hover .mark path:nth-child(3),.brand:hover .mark path:nth-child(7){animation-delay:.08s}
.brand:hover .mark path:nth-child(4),.brand:hover .mark path:nth-child(6){animation-delay:.12s}
.brand:hover .mark path:nth-child(5){animation-delay:.16s}

@supports (animation-timeline:view()){
  /* The payment falls through its stages as the reader reaches it. */
  .track li::after{
    transform-origin:top center;
    animation:fall .01s linear both;
    animation-timeline:view();
    animation-range:entry 10% cover 34%;
  }
}


/* ---------- Motion across the page. Transform and opacity only. ---------- */
.progress{
  position:fixed;
  top:0;
  left:0;
  right:0;
  height:2px;
  background:var(--ink);
  transform:scaleX(0);
  transform-origin:left center;
  z-index:60;
}
@supports (animation-timeline:scroll()){
  .progress{
    animation:fill-rule linear both;
    animation-timeline:scroll(root block);
  }
  /* The masthead settles onto the page once the reader leaves the top. */
  .top{
    animation:settle linear both;
    animation-timeline:scroll(root block);
    animation-range:0 90px;
  }
}
@keyframes fill-rule{from{transform:scaleX(0)}to{transform:scaleX(1)}}
@keyframes settle{
  from{box-shadow:0 0 0 rgba(0,0,0,0)}
  to{box-shadow:0 1px 24px -12px rgba(0,0,0,.55)}
}

/* Each band's opening rule draws across as the band arrives. */
.band{position:relative}
.band::before{
  content:"";
  position:absolute;
  top:-1px;
  left:0;
  right:0;
  height:1px;
  background:var(--ink);
  transform:scaleX(0);
  transform-origin:left center;
}
@supports (animation-timeline:view()){
  .band::before{
    animation:fill-rule .01s linear both;
    animation-timeline:view();
    animation-range:entry 0% cover 18%;
  }
  /* Ledger rows arrive in the order they were posted. */
  .ptable tbody tr,.jrnl tbody tr{
    animation:rise .01s linear both;
    animation-timeline:view();
    animation-range:entry 4% cover 26%;
  }
  .ptable tbody tr:nth-child(2),.jrnl tbody tr:nth-child(2){animation-range:entry 4% cover 30%}
  .ptable tbody tr:nth-child(3),.jrnl tbody tr:nth-child(3){animation-range:entry 4% cover 34%}
  .ptable tbody tr:nth-child(4),.jrnl tbody tr:nth-child(4){animation-range:entry 4% cover 38%}
  .ptable tbody tr:nth-child(5){animation-range:entry 4% cover 42%}
  .news > a{
    animation:rise .01s linear both;
    animation-timeline:view();
    animation-range:entry 2% cover 24%;
  }
  .news > a:nth-child(2){animation-range:entry 2% cover 28%}
  .news > a:nth-child(3){animation-range:entry 2% cover 32%}
  .news > a:nth-child(4){animation-range:entry 2% cover 36%}
  .plans > div,.faq > div,.sol > div{
    animation:rise .01s linear both;
    animation-timeline:view();
    animation-range:entry 2% cover 24%;
  }
  .plans > div:nth-child(2),.faq > div:nth-child(2),.sol > div:nth-child(2){animation-range:entry 2% cover 30%}
  .faq > div:nth-child(3),.sol > div:nth-child(3){animation-range:entry 2% cover 36%}
  .fees tbody tr{
    animation:fade .01s linear both;
    animation-timeline:view();
    animation-range:entry 2% cover 22%;
  }
}

/* Ink fills a button from the left, the way the courses run. */
.btn{position:relative;overflow:hidden;z-index:0}
.btn.line::after{
  content:"";
  position:absolute;
  inset:0;
  background:var(--ink);
  transform:scaleX(0);
  transform-origin:left center;
  transition:transform .3s cubic-bezier(.2,.7,.2,1);
  z-index:-1;
}
.btn.line:hover::after{transform:scaleX(1)}
.btn.line{transition:color .2s linear .05s}
.btn.line:hover{color:var(--paper);opacity:1}
.band.dark .btn.line::after{background:#fff}
.band.dark .btn.line:hover{color:#000}

/* A card answers the pointer. */
.prods > a,.news > a{transition:background .2s linear}
.prods .go{transition:transform .22s cubic-bezier(.2,.7,.2,1),color .2s linear}
.prods > a:hover .go{transform:translateX(5px)}
.panel{transition:box-shadow .3s cubic-bezier(.2,.7,.2,1),transform .3s cubic-bezier(.2,.7,.2,1)}
.panel:hover{transform:translateY(-2px);box-shadow:0 1px 2px rgba(0,0,0,.05),0 40px 70px -40px rgba(0,0,0,.6)}
.track li::before{transition:transform .2s linear}
.card:hover .track li::before{transform:scale(1.25)}

@media (prefers-reduced-motion:reduce){
  .progress{display:none}
  *,*::before,*::after{animation:none !important;transition:none !important}
  .top .brand .mark path{stroke-dasharray:none}
}

/* ---------- Product panels: the console, drawn rather than photographed. ---------- */
.shots{display:grid;grid-template-columns:minmax(0,1fr);gap:26px}
@media (min-width:1000px){.shots{grid-template-columns:minmax(0,1.35fr) minmax(0,1fr);align-items:start}}
.panel{
  border:1px solid var(--rule);
  border-radius:10px;
  overflow:hidden;
  background:var(--paper);
  box-shadow:0 1px 2px rgba(0,0,0,.04),0 30px 60px -40px rgba(0,0,0,.5);
}
.panel .chrome{
  display:flex;
  align-items:center;
  gap:8px;
  padding:11px 14px;
  border-bottom:1px solid var(--rule);
  background:var(--ground);
}
.panel .chrome i{width:9px;height:9px;border-radius:50%;border:1px solid var(--rule);display:block}
.panel .chrome span{margin-left:8px;font-size:12px;color:var(--ink-3)}
.panel .tabs{display:flex;gap:22px;padding:14px 18px 0;font-size:13px;color:var(--ink-3)}
.panel .tabs b{font-weight:400;color:var(--ink);padding-bottom:10px;border-bottom:1px solid var(--ink)}
.panel .tabs span{padding-bottom:10px}
.panel .scroll{overflow-x:auto;-webkit-overflow-scrolling:touch}
.ptable{width:100%;min-width:520px;border-collapse:collapse;font-size:13px}
.ptable th{
  text-align:left;
  font-weight:400;
  font-size:11px;
  letter-spacing:.09em;
  text-transform:uppercase;
  color:var(--ink-3);
  padding:12px 16px;
  border-bottom:1px solid var(--rule);
  border-top:1px solid var(--rule);
  white-space:nowrap;
}
.ptable td{padding:12px 16px;border-bottom:1px solid var(--rule);white-space:nowrap;vertical-align:middle}
.ptable tr:last-child td{border-bottom:none}
.ptable .num{text-align:right;font-variant-numeric:tabular-nums}
.ptable .id{font-family:var(--mono);font-size:11.5px;color:var(--ink-3)}
.ptable .t{color:var(--ink-3);font-size:12.5px}
.tag{
  display:inline-flex;
  align-items:center;
  gap:6px;
  font-size:11.5px;
  padding:3px 9px 3px 8px;
  border:1px solid var(--rule);
  border-radius:999px;
  color:var(--ink-2);
}
.tag i{width:4px;height:4px;border-radius:50%;background:var(--ink);display:block}
.tag.wait i{background:none;border:1px solid var(--ink-3)}
.jrnl{padding:18px}
.jrnl h4{font-size:13px;font-weight:400;color:var(--ink-3);margin:0 0 14px}
.jrnl h4 b{font-weight:400;color:var(--ink);font-family:var(--mono);font-size:12px}
.jrnl table{width:100%;border-collapse:collapse;font-family:var(--mono);font-size:12px}
.jrnl td{padding:7px 0;border-bottom:1px solid var(--rule);white-space:nowrap}
.jrnl td.n{text-align:right;font-variant-numeric:tabular-nums;padding-left:14px}
.jrnl td.c{color:var(--ink-3)}
.jrnl tr.sum td{border-top:1px solid var(--ink);border-bottom:3px double var(--ink);padding-top:8px}
.jrnl .foot{margin:14px 0 0;font-size:12px;color:var(--ink-3);font-family:var(--sans)}

/* ---------- News ---------- */
.news{display:grid;grid-template-columns:minmax(0,1fr)}
@media (min-width:760px){.news{grid-template-columns:repeat(2,minmax(0,1fr));column-gap:56px}}
.news > a{
  display:block;
  text-decoration:none;
  padding:22px 0 24px;
  border-top:1px solid var(--rule);
}
.news time{font-family:var(--mono);font-size:11px;letter-spacing:.09em;text-transform:uppercase;color:var(--ink-3)}
.news h3{font-size:19px;font-weight:400;letter-spacing:-.022em;margin:12px 0 8px;max-width:26ch}
.news p{font-size:14.5px;color:var(--ink-2);margin:0;max-width:44ch}
.news > a:hover h3{text-decoration:underline;text-underline-offset:4px}

/* ---------- Pricing page ---------- */
.plans{display:grid;grid-template-columns:minmax(0,1fr);gap:0;margin:8px 0 0}
@media (min-width:900px){.plans{grid-template-columns:repeat(3,minmax(0,1fr))}}
@media (min-width:900px){.plans.two{grid-template-columns:repeat(2,minmax(0,1fr))}}
.plans li b{font-weight:400;color:var(--ink);font-variant-numeric:tabular-nums}
.plans > div{padding:28px 26px 32px;border-top:1px solid var(--ink);border-right:1px solid var(--rule)}
.plans > div:last-child{border-right:none}
.plans h3{font-size:20px;font-weight:400;letter-spacing:-.02em;margin:12px 0 0}
.plans .rate{font-size:40px;font-weight:300;letter-spacing:-.034em;line-height:1;margin:22px 0 0;font-variant-numeric:tabular-nums}
.plans .rate small{font-size:15px;color:var(--ink-3);letter-spacing:0;padding-left:6px}
.plans .per{font-size:13.5px;color:var(--ink-3);margin:10px 0 0}
.plans ul{list-style:none;margin:24px 0 0;padding:0;font-size:14.5px}
.plans li{padding:10px 0 10px 20px;border-top:1px solid var(--rule);color:var(--ink-2);position:relative}
.plans li::before{content:"";position:absolute;left:0;top:18px;width:7px;height:1px;background:var(--ink-3)}
.plans .btn{margin-top:26px}
.feeswrap{overflow-x:auto}
.fees{width:100%;min-width:520px;border-collapse:collapse;font-size:14.5px}
.fees th{
  text-align:left;font-weight:400;font-size:11px;letter-spacing:.09em;text-transform:uppercase;
  color:var(--ink-3);padding:0 16px 12px 0;border-bottom:1px solid var(--ink);white-space:nowrap;
}
.fees td{padding:14px 16px 14px 0;border-bottom:1px solid var(--rule);vertical-align:top}
.fees td:last-child,.fees th:last-child{padding-right:0;text-align:right;font-variant-numeric:tabular-nums;white-space:nowrap}
.fees .m{color:var(--ink-3);font-size:13px}
.faq{display:grid;grid-template-columns:minmax(0,1fr)}
@media (min-width:820px){.faq{grid-template-columns:repeat(2,minmax(0,1fr));column-gap:56px}}
.faq > div{padding:20px 0 22px;border-top:1px solid var(--rule)}
.faq h3{font-size:16.5px;font-weight:400;letter-spacing:-.018em;margin:0 0 8px}
.faq p{font-size:14.5px;color:var(--ink-2);margin:0;max-width:42ch}
