/* Base */
:root{
  --teal:#01B69B;
  --aqua:#27E1C1;
  --cyan:#43C7FF;
  --action:#007C6D;
  --deep:#005D52;
  --ink:#071615;
  --ink-soft:#0B2421;
  --graphite:#34413E;
  --muted:#667873;
  --line:#D6E8E3;
  --ice:#ECFBF7;
  --paper:#F6FBFA;
  --white:#FFFFFF;
  --container:1280px;
  --ease:cubic-bezier(.22,1,.36,1);
  --ease-out:cubic-bezier(.16,1,.3,1);
  --shadow-soft:0 28px 70px -46px rgba(4,30,26,.40);
  --shadow-dark:0 38px 100px -58px rgba(0,0,0,.74);
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  background:var(--paper);
  color:var(--ink);
  font-family:Manrope,"Noto Sans SC","Noto Sans TC","Noto Sans JP",Arial,sans-serif;
  line-height:1.58;
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
  overflow-x:hidden;
}
body.menu-open{overflow:hidden}
a{color:inherit;text-decoration:none}
button{font:inherit}
button,a{-webkit-tap-highlight-color:transparent}
img{display:block;max-width:100%}
.wrap{width:min(var(--container),calc(100% - 72px));margin:0 auto}
.mono{font-family:"Geist Mono",monospace}
.eyebrow{
  display:flex;align-items:center;gap:10px;
  margin:0 0 22px;
  color:var(--action);
  font:700 12px/1.2 "Geist Mono",monospace;
  letter-spacing:.13em;
  text-transform:uppercase;
}
.eyebrow::before{
  content:"";
  width:6px;height:6px;border-radius:50%;
  background:currentColor;
  box-shadow:0 0 14px rgba(39,225,193,.18);
}
.dark .eyebrow,.hero .eyebrow,.final-cta .eyebrow{color:var(--aqua)}
h1,h2,h3,p{margin-top:0}
h2{
  margin-bottom:20px;
  font:800 clamp(42px,4.8vw,70px)/.96 Manrope,sans-serif;
  letter-spacing:-.052em;
}
h3{
  font:700 26px/1.08 Manrope,sans-serif;
  letter-spacing:-.034em;
}
.grad{
  background:linear-gradient(93deg,#fff 0%,#C5FFF5 50%,#82DEFF 100%);
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}
.reveal{
  opacity:0;
  transform:translateY(24px);
  transition:opacity .72s var(--ease),transform .72s var(--ease);
}
.reveal.in{opacity:1;transform:none}
.delay-1{transition-delay:.08s}
.delay-2{transition-delay:.16s}
.delay-3{transition-delay:.24s}

.site-header{
  position:sticky;
  top:0;
  z-index:100;
  background:rgba(246,251,250,.93);
  border-bottom:1px solid rgba(7,22,21,.08);
  backdrop-filter:blur(18px) saturate(130%);
  box-shadow:0 1px 0 rgba(255,255,255,.7) inset;
}
.header-progress-track{
  position:absolute;
  z-index:3;
  left:0;
  right:0;
  top:0;
  height:2px;
  overflow:hidden;
  pointer-events:none;
}
.header-progress{
  width:100%;
  height:100%;
  transform:scaleX(0);
  transform-origin:left center;
  background:linear-gradient(90deg,var(--teal) 0%,var(--aqua) 58%,var(--cyan) 100%);
  box-shadow:0 0 9px rgba(39,225,193,.46);
  will-change:transform;
}
.header-inner{
  height:88px;
  display:grid;
  grid-template-columns:auto 1fr auto;
  align-items:center;
  gap:42px;
}
.brand{
  display:inline-flex;
  align-items:center;
  gap:12px;
  font-size:20.5px;
  font-weight:800;
  letter-spacing:-.042em;
  white-space:nowrap;
}
.brand img{height:40px;width:auto}
.desktop-nav{
  justify-self:center;
  display:flex;
  align-items:center;
  gap:7px;
  padding:4px;
}
.desktop-nav a{
  position:relative;
  display:flex;
  align-items:center;
  height:42px;
  padding:0 12px;
  border-radius:9px;
  color:#50605C;
  font-size:13.5px;
  font-weight:650;
  letter-spacing:-.012em;
  transition:color .18s ease,background .18s ease,transform .18s var(--ease);
}
.desktop-nav a::after{
  content:"";
  position:absolute;
  left:12px;right:12px;bottom:3px;
  height:1.5px;
  border-radius:999px;
  background:linear-gradient(90deg,var(--teal),var(--aqua) 55%,var(--cyan));
  opacity:0;
  transform:scaleX(.25);
  transition:opacity .18s ease,transform .22s var(--ease);
}
.desktop-nav a:hover,.desktop-nav a.active{
  color:var(--ink);
  background:rgba(236,251,247,.78);
}
.desktop-nav a:hover::after,.desktop-nav a.active::after{opacity:1;transform:scaleX(1)}
.header-actions{display:flex;align-items:center;gap:10px}
.language{position:relative}
.language-button{
  height:42px;
  min-width:84px;
  padding:0 13px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:9px;
  border:1px solid rgba(7,22,21,.10);
  border-radius:10px;
  background:rgba(255,255,255,.60);
  color:#53625E;
  font:700 11px "Geist Mono",monospace;
  letter-spacing:.07em;
  cursor:pointer;
  transition:border-color .18s ease,background .18s ease,color .18s ease,transform .18s var(--ease);
}
.language-button:hover{
  color:var(--action);
  border-color:rgba(1,182,155,.28);
  background:#fff;
  transform:translateY(-1px);
}
.language-icon{
  width:15px;
  height:15px;
  flex:0 0 auto;
  stroke:currentColor;
  stroke-width:1.55;
  fill:none;
  opacity:.82;
}
.chevron{
  width:7px;height:7px;
  border-right:1.5px solid currentColor;
  border-bottom:1.5px solid currentColor;
  transform:rotate(45deg) translateY(-2px);
  transform-origin:center;
  transition:transform .18s ease;
  opacity:.70;
}
.language.open .chevron{transform:rotate(225deg) translate(-1px,-1px)}
.language-menu{
  position:absolute;
  right:0;top:50px;
  width:174px;
  padding:7px;
  border:1px solid var(--line);
  border-radius:12px;
  background:rgba(255,255,255,.985);
  box-shadow:0 24px 64px -40px rgba(7,22,21,.48);
  opacity:0;visibility:hidden;
  transform:translateY(-5px);
  transition:.18s ease;
}
.language.open .language-menu{opacity:1;visibility:visible;transform:none}
.language-menu button{
  width:100%;
  border:0;
  border-radius:8px;
  background:transparent;
  padding:10px 11px;
  color:#53625E;
  text-align:left;
  font-size:12.5px;
  cursor:pointer;
}
.language-menu button:hover{background:var(--ice);color:var(--action)}
.header-cta,.btn-primary{
  min-height:44px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:0 20px;
  border:0;
  border-radius:9px;
  background:var(--action);
  color:#fff;
  font-size:13.5px;
  font-weight:800;
  cursor:pointer;
  box-shadow:inset 0 0 0 1px rgba(255,255,255,.07),0 14px 26px -22px rgba(0,124,109,.80);
  transition:background .18s ease,transform .18s var(--ease),box-shadow .18s ease;
}
.header-cta:hover,.btn-primary:hover{
  background:#008A78;
  transform:translateY(-2px);
  box-shadow:inset 0 0 0 1px rgba(255,255,255,.08),0 20px 34px -23px rgba(0,124,109,.92);
}
.menu-button{
  display:none;
  width:42px;height:42px;
  border:1px solid rgba(7,22,21,.10);
  border-radius:10px;
  background:rgba(255,255,255,.66);
  cursor:pointer;
  place-items:center;
}
.menu-lines{width:18px;height:14px;position:relative}
.menu-lines::before,.menu-lines::after,.menu-lines span{
  content:"";
  position:absolute;
  left:0;right:0;
  height:1.5px;
  border-radius:999px;
  background:var(--ink);
  transition:.22s var(--ease);
}
.menu-lines::before{top:0}
.menu-lines span{top:6px}
.menu-lines::after{top:12px}
.menu-button.open .menu-lines::before{transform:translateY(6px) rotate(45deg)}
.menu-button.open .menu-lines span{opacity:0}
.menu-button.open .menu-lines::after{transform:translateY(-6px) rotate(-45deg)}
.mobile-menu{
  position:fixed;
  z-index:95;
  inset:88px 0 0;
  background:rgba(246,251,250,.985);
  backdrop-filter:blur(22px);
  opacity:0;
  pointer-events:none;
  transform:translateY(-8px);
  transition:opacity .22s ease,transform .28s var(--ease);
}
.mobile-menu.open{opacity:1;pointer-events:auto;transform:none}
.mobile-menu-inner{
  min-height:100%;
  padding:34px 26px 30px;
  display:flex;
  flex-direction:column;
}
.mobile-links{display:flex;flex-direction:column}
.mobile-links a{
  position:relative;
  display:flex;
  align-items:center;
  min-height:66px;
  border-bottom:1px solid var(--line);
  color:var(--ink);
  font-size:23px;
  font-weight:750;
  letter-spacing:-.035em;
}
.mobile-links a::after{
  content:"";
  position:absolute;
  right:1px;
  width:7px;height:7px;
  border-right:1.5px solid rgba(7,22,21,.42);
  border-bottom:1.5px solid rgba(7,22,21,.42);
  transform:rotate(-45deg);
}
.mobile-bottom{
  margin-top:auto;
  padding-top:30px;
  display:grid;
  grid-template-columns:110px 1fr;
  gap:12px;
}
.mobile-language{
  height:48px;
  display:flex;align-items:center;justify-content:center;gap:10px;
  border:1px solid var(--line);
  border-radius:10px;
  background:#fff;
  color:#53625E;
  font:700 11px "Geist Mono",monospace;
}
.mobile-bottom .header-cta{height:48px;font-size:14px}

.hero{
  position:relative;
  overflow:hidden;
  color:#fff;
  background:
    radial-gradient(880px 650px at 79% 37%,rgba(39,225,193,.20),transparent 62%),
    radial-gradient(600px 450px at 94% 7%,rgba(67,199,255,.12),transparent 62%),
    linear-gradient(180deg,#071615 0%,#0A211E 100%);
}
.hero::before{
  content:"";
  position:absolute;inset:0;
  background-image:
    linear-gradient(rgba(255,255,255,.040) 1px,transparent 1px),
    linear-gradient(90deg,rgba(255,255,255,.040) 1px,transparent 1px);
  background-size:58px 58px;
  mask-image:linear-gradient(#000 0%,rgba(0,0,0,.88) 58%,transparent 94%);
}
.hero-inner{
  position:relative;
  z-index:2;
  display:grid;
  grid-template-columns:7fr 5fr;
  gap:56px;
  align-items:stretch;
  padding:116px 0 92px;
}
.hero-copy{
  max-width:720px;
  align-self:stretch;
  display:flex;
  flex-direction:column;
}
.hero h1{
  margin:0 0 34px;
  font:800 clamp(50px,4.75vw,66px)/.91 Manrope,sans-serif;
  letter-spacing:-.060em;
}
.hero h1 span{display:block}
.hero-lead{
  max-width:690px;
  margin:0;
  color:rgba(255,255,255,.75);
  font-size:18px;
  line-height:1.74;
}

.hero-lower{
  margin-top:40px;
  padding-top:0;
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  gap:0;
}
.hero-actions{
  display:flex;
  align-items:center;
  gap:22px;
  margin-top:0;
}
.hero-link{
  position:relative;
  padding:10px 1px;
  color:rgba(255,255,255,.78);
  font-size:13px;
  font-weight:700;
}
.hero-link::after{
  content:"";
  position:absolute;
  left:1px;right:1px;bottom:6px;
  height:1px;
  background:linear-gradient(90deg,var(--aqua),var(--cyan));
  transform:scaleX(.36);
  transform-origin:left;
  opacity:.55;
  transition:transform .22s var(--ease),opacity .18s ease;
}
.hero-link:hover::after{transform:scaleX(1);opacity:1}
.hero-visual{
  position:relative;
  align-self:start;
  aspect-ratio:1;
  border-radius:32px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.105);
  background:
    radial-gradient(circle at 50% 50%,rgba(39,225,193,.12),transparent 34%),
    linear-gradient(145deg,rgba(255,255,255,.050),rgba(255,255,255,.010));
  box-shadow:0 45px 110px -75px rgba(39,225,193,.62);
}
.hero-visual::before{
  content:"";
  position:absolute;inset:-22%;
  background:conic-gradient(from 25deg,transparent 0 17%,rgba(39,225,193,.13) 23%,transparent 34% 56%,rgba(67,199,255,.09) 62%,transparent 72% 100%);
  animation:fieldSpin 20s linear infinite;
}
.hero-visual::after{
  content:"";
  position:absolute;inset:0;
  background-image:radial-gradient(circle at center,rgba(255,255,255,.040) 1px,transparent 1.5px);
  background-size:30px 30px;
  opacity:.24;
  mask-image:radial-gradient(circle,#000 0%,transparent 73%);
}
@keyframes fieldSpin{to{transform:rotate(360deg)}}
.field-ring{
  position:absolute;
  z-index:2;
  border:1px solid rgba(39,225,193,.14);
  border-radius:50%;
}
.fr1{inset:16%}
.fr2{inset:27%;border-color:rgba(67,199,255,.11)}
.fr3{inset:38%;border-color:rgba(255,255,255,.075)}
.field-mark{
  position:absolute;
  z-index:7;
  left:50%;top:50%;
  width:35%;
  aspect-ratio:1/1;
  transform:translate(-50%,-50%);
  background:#FFFFFF;
  -webkit-mask:url("../brand/hashnut-mark.png") center/contain no-repeat;
  mask:url("../brand/hashnut-mark.png") center/contain no-repeat;
  filter:drop-shadow(0 0 30px rgba(255,255,255,.14)) drop-shadow(0 0 26px rgba(39,225,193,.18));
  opacity:.98;
}
.route-map{
  position:absolute;
  z-index:4;
  inset:0;
  width:100%;
  height:100%;
  overflow:visible;
  pointer-events:none;
}
.route-map .route-line{
  fill:none;
  stroke:url(#routeGradient);
  stroke-width:1.2;
  vector-effect:non-scaling-stroke;
  opacity:.56;
}
.route-map .route-line.bottom{opacity:.34}
.route-map .route-node{
  fill:#DFFFFA;
  stroke:rgba(39,225,193,.55);
  stroke-width:1.2;
  vector-effect:non-scaling-stroke;
  filter:drop-shadow(0 0 5px rgba(39,225,193,.70));
}
.route-map .route-node.center{
  fill:rgba(39,225,193,.15);
  stroke:rgba(39,225,193,.62);
}
.route-map .crypto-token .token-shell{
  fill:#F8FFFD;
  stroke:rgba(39,225,193,.70);
  stroke-width:1.4;
  vector-effect:non-scaling-stroke;
  filter:drop-shadow(0 0 8px rgba(39,225,193,.72));
}
.route-map .crypto-token .token-core{
  fill:#0F8F7B;
}
.route-map .crypto-token .token-glyph{
  fill:none;
  stroke:#FFFFFF;
  stroke-width:1.25;
  vector-effect:non-scaling-stroke;
  stroke-linejoin:round;
}
.route-map .crypto-token .token-halo{
  fill:none;
  stroke:rgba(39,225,193,.46);
  stroke-width:1;
  vector-effect:non-scaling-stroke;
  transform-box:fill-box;
  transform-origin:center;
  animation:tokenHalo 2.5s var(--ease-out) infinite;
}
@keyframes tokenHalo{
  0%,60%,100%{transform:scale(.76);opacity:0}
  72%{transform:scale(1.05);opacity:.74}
  86%{transform:scale(1.55);opacity:0}
}

.telemetry{
  position:absolute;
  z-index:9;
  width:208px;
  min-width:0;
  max-width:none;
  display:grid;
  grid-template-columns:28px 1fr;
  gap:10px;
  align-items:center;
  padding:12px 13px;
  border:1px solid rgba(255,255,255,.12);
  border-radius:10px;
  background:rgba(7,22,21,.74);
  backdrop-filter:blur(10px);
  box-shadow:0 14px 32px -26px rgba(0,0,0,.74);
}
.telemetry-icon{
  width:28px;
  height:28px;
  display:grid;
  place-items:center;
  border-radius:8px;
  background:rgba(39,225,193,.07);
  border:1px solid rgba(39,225,193,.12);
  color:#BFFFF4;
}
.telemetry-icon svg{
  width:15px;
  height:15px;
  fill:none;
  stroke:currentColor;
  stroke-width:1.55;
  stroke-linecap:round;
  stroke-linejoin:round;
}
.telemetry-copy{
  min-width:0;
}
.telemetry small{
  display:block;
  margin:0 0 4px;
  color:rgba(255,255,255,.60);
  font:700 10.5px/1.15 "Geist Mono",monospace;
  letter-spacing:.075em;
}
.telemetry b{
  display:block;
  color:#E4FFFA;
  font:700 12.5px/1.28 "Geist Mono",monospace;
  letter-spacing:.025em;
}
.tm1{left:5.5%;top:9.5%}
.tm2{right:5.5%;top:9.5%}
.tm3{left:5.5%;bottom:8.5%}
.tm4{right:5.5%;bottom:8.5%}
  10%{opacity:1}
  44%{left:49%;top:49%}
  75%{left:77%;top:25%}
  100%{left:83%;top:23%;opacity:0}
}
.scroll-cue{
  position:absolute;
  left:50%;bottom:17px;
  transform:translateX(-50%);
  z-index:5;
  display:flex;flex-direction:column;align-items:center;gap:7px;
  color:rgba(255,255,255,.34);
  font:600 8px "Geist Mono",monospace;
  letter-spacing:.12em;
}
.scroll-cue i{
  width:1px;height:28px;
  background:linear-gradient(var(--aqua),transparent);
  animation:scrollPulse 2.4s var(--ease) infinite;
}
@keyframes scrollPulse{
  0%{transform:scaleY(.15);transform-origin:top;opacity:.4}
  55%{transform:scaleY(1);opacity:1}
  100%{transform:scaleY(.15);transform-origin:bottom;opacity:.35}
}

@media(min-width:821px){
  .hero h1 span{white-space:nowrap}
}

@media(min-width:1121px){
  .hero-copy,
  .hero-visual{
    min-height:0;
  }
}

.section{position:relative;overflow:hidden;padding:116px 0}
.section.paper{background:var(--paper)}
.section.white{background:#fff}
.section.ice{background:var(--ice)}
.section.dark{background:var(--ink);color:#fff}
.section-head{
  display:block;
  margin-bottom:68px;
}
.section-head > div:first-child{
  max-width:1080px;
  min-width:0;
}
.section-head h2{
  max-width:1060px;
  margin-bottom:0;
}
.section-copy{
  width:min(100%,840px);
  margin-top:22px;
  padding-top:0;
}
.section-copy p{
  max-width:none;
  margin:0;
  color:var(--muted);
  font-size:17px;
  line-height:1.72;
}
.dark .section-copy p{color:rgba(255,255,255,.68)}
.dark h2{color:#fff}

.product-layout{
  display:grid;
  grid-template-columns:4fr 8fr;
  gap:34px;
  align-items:stretch;
}
.product-nav{
  display:flex;
  flex-direction:column;
  gap:8px;
}
.product-step{
  position:relative;
  min-height:154px;
  padding:23px 24px;
  border:1px solid var(--line);
  border-radius:16px;
  background:rgba(255,255,255,.68);
  color:var(--ink);
  text-align:left;
  cursor:pointer;
  overflow:hidden;
  transition:transform .22s var(--ease),border-color .18s ease,background .18s ease,box-shadow .22s var(--ease);
}
.product-step:hover{
  transform:translateX(3px);
  border-color:rgba(1,182,155,.24);
}
.product-step.active{
  background:#fff;
  border-color:rgba(1,182,155,.30);
  box-shadow:var(--shadow-soft);
}
.product-step::after{
  content:"";
  position:absolute;
  left:0;bottom:0;
  width:100%;height:2px;
  background:linear-gradient(90deg,var(--teal),var(--aqua),var(--cyan));
  transform:scaleX(0);
  transform-origin:left;
}
.product-step.active::after{animation:stepProgress 5.4s linear forwards}
@keyframes stepProgress{from{transform:scaleX(0)}to{transform:scaleX(1)}}
.product-step .index{
  color:var(--action);
  font:700 9.5px "Geist Mono",monospace;
  letter-spacing:.11em;
}
.product-step h3{
  margin:28px 0 8px;
  font-size:21px;
}
.product-step p{
  margin:0;
  color:var(--muted);
  font-size:13px;
  line-height:1.60;
}
.product-stage{
  position:relative;
  min-height:570px;
  border:1px solid rgba(7,22,21,.07);
  border-radius:24px;
  overflow:hidden;
  background:
    radial-gradient(520px 360px at 71% 39%,rgba(39,225,193,.11),transparent 64%),
    linear-gradient(145deg,#0A2521,#071815);
  box-shadow:var(--shadow-dark);
}
.product-stage::before{
  content:"";
  position:absolute;inset:0;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px,transparent 1px),
    linear-gradient(90deg,rgba(255,255,255,.025) 1px,transparent 1px);
  background-size:48px 48px;
}
.browser{
  position:absolute;
  z-index:4;
  left:5%;top:9%;
  width:69%;
  padding:10px;
  border:1px solid rgba(255,255,255,.09);
  border-radius:18px;
  background:#101C1A;
  box-shadow:0 38px 80px -54px rgba(0,0,0,.88);
  transition:transform .55s var(--ease),opacity .30s ease,filter .30s ease;
}
.browser-top{
  height:28px;
  display:flex;align-items:center;gap:6px;
  padding:0 8px;
}
.browser-top i{width:6px;height:6px;border-radius:50%;background:rgba(255,255,255,.24)}
.browser img{width:100%;border-radius:10px;background:#fff}
.pay-window{
  position:absolute;
  z-index:6;
  right:5%;bottom:7%;
  width:30%;
  padding:7px;
  border:1px solid rgba(255,255,255,.12);
  border-radius:27px;
  background:#0B1514;
  box-shadow:0 34px 74px -44px rgba(0,0,0,.98);
  transition:transform .55s var(--ease),opacity .30s ease,filter .30s ease;
}
.pay-window img{width:100%;border-radius:20px}
.product-stage[data-step="0"] .browser{transform:translateY(-5px) scale(1.01);opacity:1}
.product-stage[data-step="0"] .pay-window{transform:translateY(8px) scale(.96);opacity:.46;filter:saturate(.75)}
.product-stage[data-step="1"] .browser{transform:translateX(-11px) scale(.98);opacity:.62;filter:saturate(.78)}
.product-stage[data-step="1"] .pay-window{transform:translateY(-5px) scale(1.035);opacity:1}
.product-stage[data-step="2"] .browser{transform:translateY(2px) scale(.99);opacity:.72}
.product-stage[data-step="2"] .pay-window{transform:translateY(0) scale(.99);opacity:.72}
.success-card{
  position:absolute;
  z-index:9;
  left:50%;top:50%;
  transform:translate(-50%,-50%) scale(.90);
  display:flex;align-items:center;gap:12px;
  padding:14px 17px;
  border:1px solid rgba(39,225,193,.26);
  border-radius:12px;
  background:rgba(7,22,21,.90);
  color:#DFFFF8;
  opacity:0;
  box-shadow:0 25px 66px -38px rgba(39,225,193,.70);
  transition:opacity .30s ease,transform .42s var(--ease);
}
.success-card i{
  width:30px;height:30px;
  border-radius:50%;
  display:grid;place-items:center;
  background:rgba(39,225,193,.10);
  color:var(--aqua);
  font-style:normal;
  font-weight:800;
}
.success-card strong{font-size:13px}
.success-card small{
  display:block;
  margin-top:2px;
  color:rgba(255,255,255,.46);
  font:500 9px "Geist Mono",monospace;
}
.product-stage[data-step="2"] .success-card{opacity:1;transform:translate(-50%,-50%) scale(1)}
.product-caption{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:24px;
  margin-top:22px;
  color:var(--muted);
  font-size:12px;
}
.inline-link{
  position:relative;
  color:var(--action);
  font-size:12px;
  font-weight:750;
}
.inline-link::after{
  content:"";
  position:absolute;
  left:0;right:0;bottom:-3px;
  height:1px;
  background:currentColor;
  transform:scaleX(.28);
  transform-origin:left;
  opacity:.45;
  transition:transform .2s var(--ease),opacity .18s ease;
}
.inline-link:hover::after{transform:scaleX(1);opacity:1}

.product-layout{display:block}
.product-nav{display:none!important}
.product-stage{
  position:relative;width:100%;min-height:0;aspect-ratio:16/9;overflow:hidden;
  border:1px solid rgba(7,22,21,.07);border-radius:24px;
  background:radial-gradient(520px 360px at 72% 38%,rgba(39,225,193,.10),transparent 64%),linear-gradient(145deg,#0A2521,#071815);
  box-shadow:var(--shadow-dark);
}
.product-stage::before{
  content:"";position:absolute;inset:0;z-index:1;pointer-events:none;
  background-image:linear-gradient(rgba(255,255,255,.022) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.022) 1px,transparent 1px);
  background-size:48px 48px;
}
.product-video-shell{
  position:absolute;z-index:3;inset:18px;overflow:hidden;border-radius:16px;
  border:1px solid rgba(255,255,255,.08);background:#050D0C;
  box-shadow:0 30px 70px -48px rgba(0,0,0,.88);
}
.product-video{width:100%;height:100%;display:block;object-fit:contain;background:#050D0C}
.product-video-label{
  position:absolute;z-index:5;top:30px;left:31px;display:inline-flex;align-items:center;gap:8px;
  padding:8px 10px;border:1px solid rgba(255,255,255,.10);border-radius:8px;
  background:rgba(7,22,21,.72);backdrop-filter:blur(8px);color:rgba(255,255,255,.76);
  font:600 9px "Geist Mono",monospace;letter-spacing:.075em;
}
.product-video-label::before{content:"";width:6px;height:6px;border-radius:50%;background:var(--aqua);box-shadow:0 0 9px rgba(39,225,193,.62)}
.product-video-progress{position:absolute;z-index:5;left:31px;right:31px;bottom:29px;height:2px;overflow:hidden;border-radius:999px;background:rgba(255,255,255,.10)}
.product-video-progress span{display:block;width:100%;height:100%;transform:scaleX(0);transform-origin:left;background:linear-gradient(90deg,var(--teal),var(--aqua),var(--cyan));box-shadow:0 0 8px rgba(39,225,193,.36);will-change:transform}
.browser,.pay-window,.success-card{display:none!important}

.product-layout{
  display:block!important;
  width:min(100%,920px)!important;
  margin:0 auto!important;
}
.product-nav{display:none!important}
.product-stage{
  position:relative!important;
  width:100%!important;
  min-height:0!important;
  aspect-ratio:16/9!important;
  overflow:hidden!important;
  border:1px solid rgba(7,22,21,.07)!important;
  border-radius:22px!important;
  background:
    radial-gradient(520px 360px at 72% 38%,rgba(39,225,193,.10),transparent 64%),
    linear-gradient(145deg,#0A2521,#071815)!important;
  box-shadow:0 34px 84px -58px rgba(4,30,26,.62)!important;
}
.product-stage::before{
  content:""!important;
  position:absolute!important;
  inset:0!important;
  z-index:1!important;
  pointer-events:none!important;
  background-image:
    linear-gradient(rgba(255,255,255,.020) 1px,transparent 1px),
    linear-gradient(90deg,rgba(255,255,255,.020) 1px,transparent 1px)!important;
  background-size:48px 48px!important;
}
.product-video-shell{
  position:absolute!important;
  z-index:3!important;
  inset:14px!important;
  overflow:hidden!important;
  border-radius:14px!important;
  border:1px solid rgba(255,255,255,.08)!important;
  background:#050D0C!important;
  box-shadow:0 28px 64px -48px rgba(0,0,0,.88)!important;
}
.product-video{
  width:100%!important;
  height:100%!important;
  display:block!important;
  object-fit:contain!important;
  background:#050D0C!important;
}
.product-video-label{
  position:absolute!important;
  z-index:7!important;
  top:26px!important;
  left:27px!important;
  display:inline-flex!important;
  align-items:center!important;
  gap:8px!important;
  padding:8px 10px!important;
  border:1px solid rgba(255,255,255,.10)!important;
  border-radius:8px!important;
  background:rgba(7,22,21,.72)!important;
  backdrop-filter:blur(8px)!important;
  color:rgba(255,255,255,.76)!important;
  font:600 9px "Geist Mono",monospace!important;
  letter-spacing:.075em!important;
}
.product-video-label::before{
  content:""!important;
  width:6px!important;
  height:6px!important;
  border-radius:50%!important;
  background:var(--aqua)!important;
  box-shadow:0 0 9px rgba(39,225,193,.62)!important;
}
.product-video-controls{
  position:absolute;
  z-index:8;
  left:27px;
  right:27px;
  bottom:30px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  pointer-events:none;
}
.product-video-buttons{
  display:flex;
  align-items:center;
  gap:8px;
  pointer-events:auto;
}
.video-control{
  width:38px;
  height:38px;
  display:grid;
  place-items:center;
  border:1px solid rgba(255,255,255,.12);
  border-radius:9px;
  background:rgba(7,22,21,.78);
  color:#E7FFFA;
  backdrop-filter:blur(9px);
  cursor:pointer;
  transition:
    background .18s ease,
    border-color .18s ease,
    color .18s ease,
    transform .18s var(--ease);
}
.video-control:hover{
  transform:translateY(-1px);
  background:rgba(8,32,28,.92);
  border-color:rgba(39,225,193,.28);
  color:var(--aqua);
}
.video-control svg{
  width:16px;
  height:16px;
  stroke:currentColor;
  stroke-width:1.7;
  stroke-linecap:round;
  stroke-linejoin:round;
  fill:none;
}
.video-control .fill{
  fill:currentColor;
  stroke:none;
}
.video-status{
  padding:8px 10px;
  border:1px solid rgba(255,255,255,.10);
  border-radius:8px;
  background:rgba(7,22,21,.70);
  backdrop-filter:blur(8px);
  color:rgba(255,255,255,.67);
  font:600 8.5px "Geist Mono",monospace;
  letter-spacing:.07em;
  pointer-events:none;
}
.product-video-progress{
  position:absolute!important;
  z-index:8!important;
  left:27px!important;
  right:27px!important;
  bottom:20px!important;
  height:2px!important;
  overflow:hidden!important;
  border-radius:999px!important;
  background:rgba(255,255,255,.10)!important;
}
.product-video-progress span{
  display:block!important;
  width:100%!important;
  height:100%!important;
  transform:scaleX(0);
  transform-origin:left;
  background:linear-gradient(90deg,var(--teal),var(--aqua),var(--cyan))!important;
  box-shadow:0 0 8px rgba(39,225,193,.36)!important;
  will-change:transform;
}
.product-caption{display:none!important}

@media(max-width:640px){
  .product-layout{width:100%!important}
  .product-stage{
    aspect-ratio:16/9!important;
    border-radius:18px!important;
  }
  .product-video-shell{
    inset:8px!important;
    border-radius:12px!important;
  }
  .product-video-label{
    top:17px!important;
    left:18px!important;
    font-size:7.8px!important;
  }
  .product-video-controls{
    left:18px;
    right:18px;
    bottom:25px;
  }
  .video-control{
    width:34px;
    height:34px;
  }
  .video-status{display:none}
  .product-video-progress{
    left:18px!important;
    right:18px!important;
    bottom:14px!important;
  }
}

.product-section .section-head{
  display:block;
  margin-bottom:46px;
}
.product-section .section-head > div:first-child{
  max-width:1080px;
}
.product-section .section-head h2{
  max-width:1080px;
}
.product-section .section-copy{
  width:min(100%,840px);
  max-width:none;
  margin:22px 0 0;
  padding:0;
}
.product-section .section-copy p{
  max-width:none;
}
.product-section .product-layout{
  width:min(100%,940px)!important;
  margin:0!important;
}
.product-section .product-stage{
  aspect-ratio:16/9!important;
  border:1px solid rgba(7,22,21,.12)!important;
  border-radius:18px!important;
  background:#071615!important;
  box-shadow:0 26px 62px -48px rgba(4,30,26,.60)!important;
}
.product-section .product-stage::before{
  display:none!important;
}
.product-section .product-stage::after{
  content:"";
  position:absolute;
  z-index:5;
  left:1px;
  right:1px;
  bottom:1px;
  height:96px;
  border-radius:0 0 17px 17px;
  background:linear-gradient(to top,rgba(5,13,12,.48),rgba(5,13,12,0));
  pointer-events:none;
}
.product-section .product-video-shell{
  inset:1px!important;
  border:0!important;
  border-radius:17px!important;
  box-shadow:none!important;
}
.product-section .product-video{
  object-fit:cover!important;
}
.product-section .product-video-label{
  top:16px!important;
  left:16px!important;
  padding:7px 9px!important;
  font-size:8.5px!important;
}
.product-poster-play{
  position:absolute;
  z-index:9;
  left:50%;
  top:50%;
  transform:translate(-50%,-50%);
  display:flex;
  align-items:center;
  gap:11px;
  padding:9px 16px 9px 9px;
  border:1px solid rgba(255,255,255,.18);
  border-radius:999px;
  background:rgba(7,22,21,.78);
  color:#F4FFFC;
  backdrop-filter:blur(10px);
  box-shadow:0 14px 40px rgba(0,0,0,.18);
  font:700 13px Manrope,sans-serif;
  cursor:pointer;
  transition:transform .22s var(--ease),background .22s ease,border-color .22s ease;
}
.product-poster-play:hover{
  transform:translate(-50%,-50%) scale(1.025);
  background:rgba(7,31,27,.92);
  border-color:rgba(39,225,193,.35);
}
.product-poster-play-icon{
  width:38px;
  height:38px;
  display:grid;
  place-items:center;
  border-radius:50%;
  background:var(--teal);
  color:white;
  box-shadow:0 0 22px rgba(1,182,155,.28);
}
.product-poster-play-icon svg{
  width:17px;
  height:17px;
  fill:currentColor;
}
.product-poster-play.is-hidden{
  opacity:0;
  visibility:hidden;
  pointer-events:none;
}
.product-section .product-video-controls{
  left:16px;
  right:16px;
  bottom:23px;
}
.product-section .product-video-progress{
  left:16px!important;
  right:16px!important;
  bottom:11px!important;
}
.product-section .video-control{
  width:36px;
  height:36px;
  border-radius:8px;
}
.product-section .video-status{
  padding:7px 9px;
  font-size:8px;
}
@media(max-width:900px){
  .product-section .section-head{
    margin-bottom:38px;
  }
  .product-section .section-copy{
    max-width:760px;
    margin-top:18px;
  }
  .product-section .product-layout{
    width:100%!important;
  }
}
@media(max-width:640px){
  .product-section .section-head{
    margin-bottom:30px;
  }
  .product-section .section-copy{
    margin-top:16px;
  }
  .product-section .product-stage{
    border-radius:15px!important;
  }
  .product-section .product-video-shell{
    border-radius:14px!important;
  }
  .product-section .product-video-label{
    top:12px!important;
    left:12px!important;
  }
  .product-section .product-video-controls{
    left:12px;
    right:12px;
    bottom:20px;
  }
  .product-section .product-video-progress{
    left:12px!important;
    right:12px!important;
    bottom:9px!important;
  }
  .product-poster-play{
    padding:7px 13px 7px 7px;
    gap:9px;
    font-size:12px;
  }
  .product-poster-play-icon{
    width:34px;
    height:34px;
  }
}

.product-section .section-head{
  display:block!important;
  margin-bottom:52px!important;
}
.product-section .section-head > div:first-child{
  max-width:1080px!important;
}
.product-section .section-head h2{
  max-width:1060px!important;
}
.product-section .section-copy{
  width:min(100%,840px)!important;
  max-width:none!important;
  margin:22px 0 0!important;
  padding:0!important;
}
.product-section .section-copy p{
  max-width:none!important;
  font-size:17px!important;
  line-height:1.72!important;
}
.product-section .product-layout.product-video-elegant{
  width:min(100%,920px)!important;
  margin:0 auto!important;
}
.product-video-native{
  display:block;
  width:100%;
  height:auto;
  aspect-ratio:16/9;
  object-fit:cover;
  border:0;
  border-radius:16px;
  background:#000;
  box-shadow:
    0 24px 58px -38px rgba(5,30,26,.30),
    0 8px 22px -18px rgba(5,30,26,.18);
}
.product-video-native:focus{
  outline:none;
}
.product-video-native{
  transition:opacity 2s cubic-bezier(.20,.62,.18,1);
}
@media(max-width:900px){
  .product-section .section-head{
    margin-bottom:40px!important;
  }
  .product-section .section-copy{
    width:min(100%,760px)!important;
    max-width:none!important;
  }
  .product-section .product-layout.product-video-elegant{
    width:min(100%,860px)!important;
  }
}
@media(max-width:640px){
  .product-section .section-head{
    margin-bottom:30px!important;
  }
  .product-section .section-copy{
    width:100%!important;
    max-width:none!important;
    margin-top:16px!important;
  }
  .product-section .section-copy p{
    font-size:15.5px!important;
  }
  .product-video-native{
    border-radius:12px;
  }
}

.product-video-native-wrap{
  position:relative;
  overflow:hidden;
  border-radius:16px;
}
.product-video-poster-overlay{
  position:absolute;
  z-index:2;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  border-radius:inherit;
  opacity:1;
  visibility:visible;
  pointer-events:none;
  transition:
    opacity 2s cubic-bezier(.20,.62,.18,1),
    visibility 0s linear 2s;
  will-change:opacity;
}
.product-video-native-wrap.has-started .product-video-poster-overlay{
  opacity:0;
  visibility:hidden;
}
.product-video-native-wrap.return-to-poster .product-video-poster-overlay{
  opacity:1;
  visibility:visible;
  transition:
    opacity .9s cubic-bezier(.20,.62,.18,1),
    visibility 0s;
}

.product-video-intertitle{
  position:absolute;
  z-index:3;
  inset:0;
  display:grid;
  place-items:center;
  overflow:hidden;
  border-radius:inherit;
  opacity:0;
  visibility:hidden;
  pointer-events:none;
}
.product-video-intertitle-bg{
  position:absolute;
  inset:0;
  background:
    radial-gradient(520px 260px at 54% 47%,rgba(39,225,193,.07),transparent 68%),
    linear-gradient(180deg,rgba(246,251,250,.985),rgba(236,251,247,.985));
}
.product-video-intertitle-bg::after{
  content:"";
  position:absolute;
  inset:0;
  opacity:.045;
  background-image:
    linear-gradient(rgba(1,182,155,.22) 1px,transparent 1px),
    linear-gradient(90deg,rgba(1,182,155,.22) 1px,transparent 1px);
  background-size:44px 44px;
  mask-image:linear-gradient(to bottom,transparent 2%,#000 28%,#000 72%,transparent 98%);
}
.product-video-intertitle p{
  position:relative;
  z-index:2;
  width:min(82%,760px);
  margin:0;
  color:#132421;
  text-align:center;
  font:600 clamp(25px,3vw,42px)/1.18 Manrope,sans-serif;
  letter-spacing:-.028em;
  text-wrap:balance;
  opacity:0;
  transform:translateY(10px);
}
.product-video-native-wrap.intro-active .product-video-corner-label{
  opacity:0;
  visibility:hidden;
  transition:opacity .36s ease,visibility 0s linear .36s;
}
.product-video-native-wrap.intro-active .product-video-center-play{
  opacity:0;
  visibility:hidden;
  pointer-events:none;
}
.product-video-native-wrap.intro-stage-1 .product-video-poster-overlay{
  opacity:1;
  visibility:visible;
}
.product-video-native-wrap.intro-stage-2 .product-video-poster-overlay{
  opacity:0;
  visibility:visible;
  transition:opacity 1.15s cubic-bezier(.20,.62,.18,1);
}
.product-video-native-wrap.intro-stage-2 .product-video-intertitle{
  opacity:1;
  visibility:visible;
  transition:opacity .92s cubic-bezier(.20,.62,.18,1);
}
.product-video-native-wrap.intro-stage-2 .product-video-intertitle p{
  opacity:1;
  transform:translateY(0);
  transition:
    opacity .95s cubic-bezier(.20,.62,.18,1) .28s,
    transform 1.05s cubic-bezier(.20,.62,.18,1) .28s;
}
.product-video-native-wrap.intro-stage-3 .product-video-poster-overlay{
  opacity:0;
  visibility:hidden;
}
.product-video-native-wrap.intro-stage-3 .product-video-intertitle{
  opacity:1;
  visibility:visible;
}
.product-video-native-wrap.intro-stage-3 .product-video-intertitle p{
  opacity:1;
  transform:translateY(0);
}
.product-video-native-wrap.intro-stage-4 .product-video-intertitle{
  opacity:0;
  visibility:visible;
  transition:opacity 1.35s cubic-bezier(.20,.62,.18,1);
}
.product-video-native-wrap.intro-stage-4 .product-video-intertitle p{
  opacity:0;
  transform:translateY(-7px);
  transition:
    opacity 1.05s cubic-bezier(.20,.62,.18,1),
    transform 1.15s cubic-bezier(.20,.62,.18,1);
}
.product-video-native-wrap.intro-stage-4 .product-video-native{
  opacity:1;
}
.product-video-native-wrap.intro-complete .product-video-intertitle,
.product-video-native-wrap.intro-complete .product-video-poster-overlay{
  opacity:0;
  visibility:hidden;
}
.product-video-native-wrap.intro-complete .product-video-corner-label{
  opacity:1;
  visibility:visible;
  transition:opacity .42s ease .20s;
}
@media(max-width:640px){
  .product-video-intertitle p{
    width:84%;
    font-size:clamp(22px,7vw,30px);
  }
}

.product-video-corner-label{
  position:absolute;
  z-index:4;
  top:12px;
  left:12px;
  display:inline-flex;
  align-items:center;
  gap:7px;
  padding:7px 9px;
  border:1px solid rgba(255,255,255,.10);
  border-radius:6px;
  background:rgba(7,22,21,.68);
  color:rgba(255,255,255,.82);
  backdrop-filter:blur(9px);
  -webkit-backdrop-filter:blur(9px);
  box-shadow:0 8px 20px rgba(0,0,0,.10);
  font:600 8px "Geist Mono",monospace;
  letter-spacing:.075em;
  line-height:1;
  pointer-events:none;
}
.product-video-corner-dot{
  width:6px;
  height:6px;
  flex:0 0 6px;
  border-radius:50%;
  background:var(--aqua);
  box-shadow:0 0 9px rgba(39,225,193,.62);
}
.product-video-center-play{
  position:absolute;
  left:50%;
  top:50%;
  transform:translate(-50%,-50%);
  z-index:3;
  width:88px;
  height:88px;
  display:grid;
  place-items:center;
  border:1px solid rgba(255,255,255,.22);
  border-radius:50%;
  background:rgba(7,22,21,.58);
  backdrop-filter:blur(10px);
  box-shadow:0 16px 44px rgba(0,0,0,.22);
  cursor:pointer;
  transition:
    transform .22s var(--ease),
    background .22s ease,
    border-color .22s ease,
    opacity .18s ease,
    visibility .18s ease;
}
.product-video-center-play:hover{
  transform:translate(-50%,-50%) scale(1.04);
  background:rgba(7,31,27,.74);
  border-color:rgba(39,225,193,.34);
}
.product-video-center-play.is-hidden{
  opacity:0;
  visibility:hidden;
  pointer-events:none;
}
.product-video-center-play-icon{
  width:54px;
  height:54px;
  display:grid;
  place-items:center;
  border-radius:50%;
  background:rgba(1,182,155,.92);
  color:#fff;
  box-shadow:0 0 24px rgba(1,182,155,.24);
}
.product-video-center-play-icon svg{
  width:22px;
  height:22px;
  fill:currentColor;
  margin-left:2px;
}
@media(max-width:640px){
  .product-video-corner-label{
    top:8px;
    left:8px;
    padding:6px 8px;
    font-size:7px;
  }
  .product-video-center-play{
    width:72px;
    height:72px;
  }
  .product-video-center-play-icon{
    width:44px;
    height:44px;
  }
  .product-video-center-play-icon svg{
    width:18px;
    height:18px;
  }
}

.product-video-native-wrap.intro-active .product-video-native{
  pointer-events:none;
}

.product-video-native-wrap{
  background:var(--paper);
}

.product-video-native-wrap.strict-intro .product-video-native{
  opacity:0!important;
  pointer-events:none!important;
}

.product-video-native-wrap.strict-intro .product-video-poster-overlay{
  opacity:1!important;
  visibility:visible!important;
  transition:none!important;
}

.product-video-native-wrap.strict-text-in .product-video-intertitle{
  opacity:1!important;
  visibility:visible!important;
  transition:opacity 1.05s cubic-bezier(.20,.62,.18,1)!important;
}
.product-video-native-wrap.strict-text-in .product-video-intertitle p{
  opacity:1!important;
  transform:translateY(0)!important;
  transition:
    opacity .85s cubic-bezier(.20,.62,.18,1) .28s,
    transform .95s cubic-bezier(.20,.62,.18,1) .28s!important;
}

.product-video-native-wrap.strict-text-hold .product-video-intertitle{
  opacity:1!important;
  visibility:visible!important;
}
.product-video-native-wrap.strict-text-hold .product-video-intertitle p{
  opacity:1!important;
  transform:translateY(0)!important;
}
.product-video-native-wrap.strict-text-hold .product-video-poster-overlay{
  opacity:0!important;
  visibility:hidden!important;
  transition:none!important;
}

.product-video-native-wrap.strict-video-under .product-video-native{
  opacity:1!important;
  pointer-events:none!important;
  transition:none!important;
}
.product-video-native-wrap.strict-video-under .product-video-intertitle{
  opacity:1!important;
  visibility:visible!important;
}
.product-video-native-wrap.strict-video-under .product-video-poster-overlay{
  opacity:0!important;
  visibility:hidden!important;
}

.product-video-native-wrap.strict-reveal-video .product-video-native{
  opacity:1!important;
  pointer-events:none!important;
}
.product-video-native-wrap.strict-reveal-video .product-video-intertitle{
  opacity:0!important;
  visibility:visible!important;
  transition:opacity 1.3s cubic-bezier(.20,.62,.18,1)!important;
}
.product-video-native-wrap.strict-reveal-video .product-video-intertitle p{
  opacity:0!important;
  transform:translateY(-6px)!important;
  transition:
    opacity 1.05s cubic-bezier(.20,.62,.18,1),
    transform 1.15s cubic-bezier(.20,.62,.18,1)!important;
}

.product-video-native-wrap.strict-complete .product-video-native{
  opacity:1!important;
  pointer-events:auto!important;
}
.product-video-native-wrap.strict-complete .product-video-intertitle,
.product-video-native-wrap.strict-complete .product-video-poster-overlay{
  opacity:0!important;
  visibility:hidden!important;
}
.product-video-native-wrap.strict-complete .product-video-corner-label{
  opacity:1!important;
  visibility:visible!important;
}

.product-video-native-wrap.strict-intro .product-video-corner-label,
.product-video-native-wrap.strict-intro .product-video-center-play,
.product-video-native-wrap.strict-text-in .product-video-corner-label,
.product-video-native-wrap.strict-text-in .product-video-center-play,
.product-video-native-wrap.strict-text-hold .product-video-corner-label,
.product-video-native-wrap.strict-text-hold .product-video-center-play,
.product-video-native-wrap.strict-video-under .product-video-corner-label,
.product-video-native-wrap.strict-video-under .product-video-center-play,
.product-video-native-wrap.strict-reveal-video .product-video-corner-label,
.product-video-native-wrap.strict-reveal-video .product-video-center-play{
  opacity:0!important;
  visibility:hidden!important;
  pointer-events:none!important;
}

.use-grid{
  display:grid;
  grid-template-columns:minmax(350px,4.1fr) minmax(0,7.9fr);
  gap:58px;
  align-items:start;
}
.use-tabs{
  position:sticky;
  top:112px;
  display:flex;
  flex-direction:column;
  padding-top:2px;
  border-top:1px solid rgba(7,22,21,.10);
}
.use-tab{
  position:relative;
  padding:22px 14px 23px 20px;
  border:0;
  border-bottom:1px solid rgba(7,22,21,.10);
  border-radius:0;
  background:transparent;
  color:#7A8985;
  text-align:left;
  cursor:pointer;
  overflow:hidden;
  transition:
    color .20s ease,
    background .22s ease,
    padding-left .24s var(--ease);
}
.use-tab::before{
  content:"";
  position:absolute;
  left:0;
  top:17px;
  bottom:17px;
  width:3px;
  border-radius:999px;
  background:linear-gradient(var(--teal),var(--cyan));
  transform:scaleY(0);
  transform-origin:center;
  transition:transform .25s var(--ease);
}
.use-tab::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:0;
  height:2px;
  background:linear-gradient(90deg,var(--teal),var(--aqua),var(--cyan));
  transform:scaleX(0);
  transform-origin:left;
  opacity:0;
}
.use-tab:hover{
  color:#53635F;
  background:rgba(255,255,255,.26);
}
.use-tab.active{
  color:var(--ink);
  padding-left:24px;
  background:linear-gradient(90deg,rgba(255,255,255,.64),rgba(255,255,255,.04));
}
.use-tab.active::before{transform:scaleY(1)}
.use-tab.active.is-progressing::after{
  opacity:1;
  animation:useTabProgress 9.2s linear forwards;
}
.use-grid.is-paused .use-tab.active.is-progressing::after{
  animation-play-state:paused;
}
@keyframes useTabProgress{
  from{transform:scaleX(0)}
  to{transform:scaleX(1)}
}

.use-tab > span{
  display:block;
  margin-bottom:10px;
  color:var(--action);
  font:700 9px "Geist Mono",monospace;
  letter-spacing:.11em;
}
.use-tab-head{
  display:flex;
  align-items:center;
  gap:11px;
  margin-bottom:9px;
}
.use-tab-icon{
  display:grid;
  place-items:center;
  flex:0 0 34px;
  width:34px;
  height:34px;
  margin:0;
  border:1px solid rgba(1,182,155,.15);
  border-radius:10px;
  background:rgba(255,255,255,.48);
  color:rgba(0,124,109,.70);
}
.use-tab.active .use-tab-icon{
  color:var(--action);
  border-color:rgba(1,182,155,.24);
  background:rgba(255,255,255,.94);
}
.use-tab-icon svg{
  width:17px;
  height:17px;
  stroke:currentColor;
  stroke-width:1.8;
  fill:none;
  stroke-linecap:round;
  stroke-linejoin:round;
}
.use-tab strong{
  display:block;
  font-size:19px;
  line-height:1.22;
  letter-spacing:-.01em;
  color:inherit;
}
.use-tab small{
  display:block;
  max-width:332px;
  margin:0 0 0 45px;
  color:#8A9894;
  font-size:13.5px;
  line-height:1.57;
}
.use-tab.active small,
.use-tab:hover small{
  color:#63736F;
}

.use-content{
  min-width:0;
  padding-top:0;
}
.use-panel{
  display:none;
  opacity:0;
  transform:translateY(8px);
}
.use-panel.active{
  display:block;
  opacity:1;
  transform:none;
  animation:usePanelIn .38s var(--ease) both;
}
@keyframes usePanelIn{
  from{opacity:0;transform:translateY(8px)}
  to{opacity:1;transform:none}
}

.use-example-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:14px;
}
.use-example{
  min-height:184px;
  padding:24px 24px 22px;
  border:1px solid rgba(7,22,21,.075);
  border-radius:18px;
  background:rgba(255,255,255,.68);
  transition:
    transform .22s var(--ease),
    border-color .22s ease,
    background .22s ease,
    box-shadow .22s ease;
}

.use-example{
  position:relative;
  overflow:hidden;
  padding-right:112px;
}
.use-example-ghost{
  position:absolute;
  top:15px;
  right:16px;
  width:82px;
  height:82px;
  pointer-events:none;
  opacity:.90;
}
.use-example-ghost svg{
  width:100%;
  height:100%;
  display:block;
  overflow:visible;
}
.use-example-ghost .art-bg{fill:rgba(1,182,155,.070)}
.use-example-ghost .art-a{fill:rgba(1,182,155,.24)}
.use-example-ghost .art-b{fill:rgba(67,199,255,.20)}
.use-example-ghost .art-c{fill:rgba(7,22,21,.10)}
.use-example h4,
.use-example p,
.use-example .use-example-index{
  position:relative;
  z-index:1;
}
.use-example:hover{
  transform:translateY(-2px);
  border-color:rgba(1,182,155,.18);
  background:rgba(255,255,255,.90);
  box-shadow:0 18px 42px -34px rgba(5,35,30,.30);
}
.use-example .use-example-index{
  display:block;
  margin-bottom:22px;
  color:var(--action);
  font:700 9px "Geist Mono",monospace;
  letter-spacing:.11em;
}
.use-example h4{
  margin:0 0 9px;
  font-size:22px;
  line-height:1.14;
  letter-spacing:-.015em;
}
.use-example p{
  margin:0;
  color:#6B7A76;
  font-size:14.5px;
  line-height:1.58;
}

.technology{
  position:relative;
  overflow:hidden;
  background:
    radial-gradient(880px 620px at 76% 44%,rgba(39,225,193,.10),transparent 66%),
    radial-gradient(640px 480px at 18% 78%,rgba(67,199,255,.055),transparent 68%),
    var(--ink);
}
.technology::before{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  background:
    linear-gradient(180deg,rgba(255,255,255,.025),transparent 18%,transparent 82%,rgba(255,255,255,.018)),
    radial-gradient(circle at 50% 50%,rgba(255,255,255,.018) 0 1px,transparent 1.5px);
  background-size:auto,28px 28px;
  mask-image:linear-gradient(90deg,transparent,#000 18%,#000 82%,transparent);
  opacity:.46;
}
.technology .wrap{position:relative;z-index:1}
.tech-system{
  position:relative;
  min-height:670px;
  margin-top:4px;
  overflow:hidden;
  isolation:isolate;
}
.tech-system::before,
.tech-system::after{
  content:"";
  position:absolute;
  pointer-events:none;
  background:rgba(255,255,255,.065);
}
.tech-system::before{
  left:50%;
  top:7%;
  bottom:15%;
  width:1px;
}
.tech-system::after{
  left:3%;
  right:3%;
  top:49%;
  height:1px;
}
.tech-grid-glow{
  position:absolute;
  inset:4% 2% 14%;
  pointer-events:none;
  background:
    radial-gradient(circle at 50% 50%,rgba(39,225,193,.085),transparent 22%),
    radial-gradient(circle at 50% 50%,rgba(67,199,255,.035),transparent 45%);
}
.tech-connectors{
  position:absolute;
  z-index:1;
  inset:0;
  width:100%;
  height:86%;
  overflow:visible;
  pointer-events:none;
}
.tech-connectors path{
  fill:none;
  stroke:url(#techLineGradient);
  stroke-width:1.25;
  vector-effect:non-scaling-stroke;
  opacity:.50;
  stroke-dasharray:1;
  stroke-dashoffset:1;
}
.tech-system.in .tech-connectors .p1{animation:techDraw .85s .18s var(--ease) forwards}
.tech-system.in .tech-connectors .p2{animation:techDraw .85s .30s var(--ease) forwards}
.tech-system.in .tech-connectors .p3{animation:techDraw .85s .42s var(--ease) forwards}
.tech-system.in .tech-connectors .p4{animation:techDraw .85s .54s var(--ease) forwards}
@keyframes techDraw{to{stroke-dashoffset:0}}

.tech-core{
  position:absolute;
  z-index:4;
  left:50%;
  top:49%;
  width:170px;
  height:170px;
  transform:translate(-50%,-50%) scale(.90);
  display:grid;
  place-items:center;
  border-radius:50%;
  opacity:0;
}
.tech-system.in .tech-core{
  animation:techCoreIn .70s .12s var(--ease) forwards;
}
@keyframes techCoreIn{
  to{opacity:1;transform:translate(-50%,-50%) scale(1)}
}
.tech-core::before,
.tech-core::after{
  content:"";
  position:absolute;
  border-radius:50%;
}
.tech-core::before{
  inset:0;
  border:1px solid rgba(39,225,193,.34);
  background:radial-gradient(circle,rgba(39,225,193,.075),rgba(7,22,21,.02) 62%,transparent 72%);
  box-shadow:
    0 0 0 30px rgba(39,225,193,.022),
    0 0 82px rgba(39,225,193,.14);
}
.tech-core::after{
  inset:25px;
  border:1px solid rgba(67,199,255,.22);
  background:
    radial-gradient(circle at 38% 32%,rgba(67,199,255,.24),transparent 50%),
    rgba(255,255,255,.025);
}
.tech-core-mark{
  position:relative;
  z-index:2;
  display:grid;
  place-items:center;
  width:52px;
  height:52px;
}
.tech-core-mark img{
  width:46px;
  height:46px;
  display:block;
  object-fit:contain;
  filter:
    brightness(1.04)
    saturate(1.02)
    drop-shadow(0 0 18px rgba(39,225,193,.22));
}
.tech-core-label{
  position:absolute;
  top:calc(100% + 15px);
  left:50%;
  width:190px;
  transform:translateX(-50%);
  color:rgba(255,255,255,.52);
  text-align:center;
  font:700 9px "Geist Mono",monospace;
  letter-spacing:.12em;
}
.tech-core-label b{
  display:block;
  margin-bottom:4px;
  color:#F1FFFC;
  font-size:10px;
  letter-spacing:.10em;
}

.tech-pillar{
  position:absolute;
  z-index:3;
  width:39%;
  max-width:460px;
  opacity:0;
  transform:translateY(18px);
}
.tech-system.in .tech-pillar{
  animation:techPillarIn .62s var(--ease) forwards;
}
.tech-system.in .tp1{animation-delay:.22s}
.tech-system.in .tp2{animation-delay:.34s}
.tech-system.in .tp3{animation-delay:.46s}
.tech-system.in .tp4{animation-delay:.58s}
@keyframes techPillarIn{
  to{opacity:1;transform:none}
}
.tp1{left:3%;top:7%}
.tp2{right:3%;top:7%}
.tp3{left:3%;top:57%}
.tp4{right:3%;top:57%}

.tech-pillar-top{
  display:flex;
  align-items:center;
  gap:13px;
  margin-bottom:15px;
}
.tech-glyph{
  position:relative;
  display:grid;
  place-items:center;
  flex:0 0 43px;
  width:43px;
  height:43px;
  border:1px solid rgba(39,225,193,.18);
  border-radius:14px;
  background:
    radial-gradient(circle at 32% 26%,rgba(67,199,255,.14),transparent 55%),
    rgba(255,255,255,.018);
}
.tech-glyph svg{
  width:24px;
  height:24px;
}
.tech-glyph .fill-a{fill:rgba(39,225,193,.72)}
.tech-glyph .fill-b{fill:rgba(67,199,255,.48)}
.tech-glyph .stroke-a{
  fill:none;
  stroke:rgba(197,255,245,.76);
  stroke-width:1.5;
  stroke-linecap:round;
  stroke-linejoin:round;
}
.tech-meta{
  color:var(--aqua);
  font:700 9.5px "Geist Mono",monospace;
  letter-spacing:.115em;
}
.tech-pillar h3{
  max-width:390px;
  margin:0 0 11px;
  color:#fff;
  font-size:clamp(24px,2.2vw,32px);
  line-height:1.04;
  letter-spacing:-.035em;
}
.tech-pillar p{
  max-width:420px;
  margin:0;
  color:rgba(255,255,255,.57);
  font-size:14.5px;
  line-height:1.66;
}
.tech-pillar::after{
  content:"";
  display:block;
  width:66px;
  height:1px;
  margin-top:18px;
  background:linear-gradient(90deg,var(--aqua),transparent);
  opacity:.46;
}
.tp3::after,
.tp4::after{
  display:none;
}

.tech-outcomes{
  position:absolute;
  z-index:5;
  left:3%;
  right:3%;
  bottom:0;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  border-top:1px solid rgba(255,255,255,.075);
  border-bottom:1px solid rgba(255,255,255,.055);
  opacity:0;
  transform:translateY(12px);
}
.tech-system.in .tech-outcomes{
  animation:techOutcomeIn .55s .78s var(--ease) forwards;
}
@keyframes techOutcomeIn{to{opacity:1;transform:none}}
.tech-outcome{
  position:relative;
  min-height:78px;
  padding:18px 20px 17px;
}
.tech-outcome + .tech-outcome{
  border-left:1px solid rgba(255,255,255,.06);
}
.tech-outcome-head{
  display:flex;
  align-items:center;
  gap:12px;
  margin-bottom:10px;
}
.tech-outcome-icon{
  display:grid;
  place-items:center;
  flex:0 0 30px;
  width:30px;
  height:30px;
  border:1px solid rgba(39,225,193,.16);
  border-radius:9px;
  background:
    radial-gradient(circle at 34% 28%,rgba(67,199,255,.16),transparent 58%),
    rgba(255,255,255,.03);
}
.tech-outcome-icon svg{
  width:17px;
  height:17px;
}
.tech-outcome-icon .fill-a{fill:rgba(39,225,193,.82)}
.tech-outcome-icon .fill-b{fill:rgba(67,199,255,.64)}
.tech-outcome-icon .stroke-a{
  fill:none;
  stroke:rgba(229,255,249,.90);
  stroke-width:1.7;
  stroke-linecap:round;
  stroke-linejoin:round;
}
.tech-outcome span{
  display:block;
  margin-bottom:0;
  color:rgba(255,255,255,.50);
  font:700 9.5px "Geist Mono",monospace;
  letter-spacing:.11em;
}
.tech-outcome strong{
  color:rgba(229,255,249,.92);
  font-size:13px;
  line-height:1.30;
}

@media(max-width:1120px){
  .tech-system{
    min-height:auto;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:0;
    padding-top:4px;
  }
  .tech-system::before,
  .tech-system::after,
  .tech-grid-glow,
  .tech-connectors,
  .tech-core{display:none}
  .tech-pillar{
    position:relative;
    inset:auto!important;
    width:auto;
    max-width:none;
    min-height:260px;
    padding:30px 30px 32px;
    border-top:1px solid rgba(255,255,255,.075);
  }
  .tech-pillar:nth-of-type(even){border-left:1px solid rgba(255,255,255,.06)}
  .tech-pillar p{max-width:470px}
  .tech-outcomes{
    position:relative;
    left:auto;
    right:auto;
    bottom:auto;
    grid-column:1/-1;
    margin-top:8px;
  }
}
@media(max-width:700px){
  .tech-system{display:block}
  .tech-pillar{
    min-height:0;
    padding:25px 4px 28px 16px;
    border-left:0!important;
  }
  .tech-pillar::before{
    content:"";
    position:absolute;
    left:0;
    top:29px;
    width:2px;
    height:38px;
    border-radius:999px;
    background:linear-gradient(var(--aqua),var(--cyan));
    opacity:.52;
  }
  .tech-pillar h3{font-size:25px}
  .tech-pillar p{font-size:14px;line-height:1.62}
  .tech-outcomes{
    grid-template-columns:1fr 1fr;
    margin-top:10px;
  }
  .tech-outcome{
    min-height:72px;
    padding:15px 12px 14px;
  }
  .tech-outcome:nth-child(odd){border-left:0}
  .tech-outcome:nth-child(n+3){border-top:1px solid rgba(255,255,255,.055)}
  .tech-outcome-head{gap:9px;margin-bottom:8px}
  .tech-outcome-icon{width:26px;height:26px;flex-basis:26px}
  .tech-outcome-icon svg{width:15px;height:15px}
  .tech-outcome span{font-size:9px}
  .tech-outcome strong{font-size:12px}
}
@media(prefers-reduced-motion:reduce){
  .tech-connectors path,
  .tech-core,
  .tech-pillar,
  .tech-outcomes{
    animation:none!important;
    opacity:1!important;
    transform:none!important;
    stroke-dashoffset:0!important;
  }
}

.proof-layout{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:24px;
  align-items:stretch;
}
.metrics{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12px;
}
.metric{
  min-height:194px;
  padding:25px;
  border:1px solid var(--line);
  border-radius:17px;
  background:#fff;
  transition:transform .22s var(--ease),border-color .18s ease,box-shadow .22s var(--ease);
}
.metric:hover{
  transform:translateY(-4px);
  border-color:rgba(1,182,155,.24);
  box-shadow:0 28px 48px -38px rgba(0,80,68,.42);
}
.metric .value{
  color:var(--ink);
  font:800 clamp(40px,4.4vw,62px)/.90 Manrope,sans-serif;
  letter-spacing:-.055em;
}
.metric .value small{font-size:.43em;letter-spacing:-.02em}
.metric p{
  margin:18px 0 0;
  color:var(--muted);
  font-size:12.5px;
  line-height:1.58;
}
.metric.wide{
  grid-column:1/-1;
  min-height:176px;
  display:grid;
  grid-template-columns:auto 1fr;
  align-items:end;
  gap:25px;
}
.metric.wide .value{color:var(--action)}
.evidence{
  position:relative;
  min-height:582px;
  overflow:hidden;
  border-radius:22px;
  border:1px solid rgba(7,22,21,.08);
  background:var(--ink);
}
.evidence::before{
  content:"";
  position:absolute;inset:0;
  background:radial-gradient(520px 360px at 75% 30%,rgba(39,225,193,.12),transparent 66%);
}
.evidence-tabs{
  position:absolute;
  z-index:8;
  top:21px;left:21px;
  display:flex;gap:6px;
}
.evidence-tab{
  padding:8px 10px;
  border:1px solid rgba(255,255,255,.105);
  border-radius:7px;
  background:rgba(7,22,21,.68);
  color:rgba(255,255,255,.52);
  backdrop-filter:blur(8px);
  font:600 8.8px "Geist Mono",monospace;
  letter-spacing:.05em;
  cursor:pointer;
  transition:.18s ease;
}
.evidence-tab:hover,.evidence-tab.active{
  color:#DFFFFA;
  border-color:rgba(39,225,193,.27);
  background:rgba(7,22,21,.84);
}
.evidence-slide{
  position:absolute;inset:0;
  opacity:0;
  transition:opacity .42s ease;
}
.evidence-slide.active{opacity:1}
.evidence-slide img{width:100%;height:100%;object-fit:cover;opacity:.72}
.evidence-slide.contain img{
  object-fit:contain;
  background:#fff;
  padding:44px;
  opacity:1;
}
.evidence-slide::after{
  content:"";
  position:absolute;inset:0;
  background:linear-gradient(180deg,rgba(7,22,21,.03),rgba(7,22,21,.86) 80%);
}
.evidence-copy{
  position:absolute;
  z-index:4;
  left:26px;right:26px;bottom:24px;
  color:#fff;
}
.evidence-copy .cap{
  color:var(--aqua);
  font:700 8.8px "Geist Mono",monospace;
  letter-spacing:.10em;
}
.evidence-copy h3{margin:9px 0 7px;font-size:25px}
.evidence-copy p{
  max-width:520px;
  margin:0;
  color:rgba(255,255,255,.69);
  font-size:13px;
  line-height:1.58;
}
.proof-note{
  margin-top:20px;
  color:var(--muted);
  font-size:11.5px;
}

.final-cta{
  position:relative;
  overflow:hidden;
  padding:124px 0 118px;
  color:#fff;
  background:
    radial-gradient(760px 450px at 78% 48%,rgba(39,225,193,.17),transparent 64%),
    radial-gradient(470px 360px at 94% 30%,rgba(67,199,255,.08),transparent 62%),
    linear-gradient(160deg,#071615,#0B2421);
}
.final-cta::before{
  content:"";
  position:absolute;inset:0;
  background-image:
    linear-gradient(rgba(255,255,255,.029) 1px,transparent 1px),
    linear-gradient(90deg,rgba(255,255,255,.029) 1px,transparent 1px);
  background-size:58px 58px;
  mask-image:linear-gradient(90deg,#000,transparent 88%);
}
.final-cta::after{
  content:"";
  position:absolute;
  right:-130px;bottom:-255px;
  width:560px;height:650px;
  background:url("../brand/hashnut-mark.png") center/contain no-repeat;
  filter:brightness(0) invert(1);
  opacity:.050;
}
.cta-layout{
  position:relative;
  z-index:2;
  display:grid;
  grid-template-columns:8fr 4fr;
  gap:66px;
  align-items:end;
}
.final-cta h2{
  max-width:900px;
  margin:0;
  color:#fff;
  font-size:clamp(50px,5.6vw,82px);
}
.cta-side p{
  margin:0 0 22px;
  color:rgba(255,255,255,.68);
  font-size:14.5px;
  line-height:1.65;
}
.cta-actions{display:flex;align-items:center;gap:18px}
.cta-text{
  position:relative;
  color:rgba(255,255,255,.74);
  font-size:12px;
  font-weight:700;
}
.cta-text::after{
  content:"";
  position:absolute;
  left:0;right:0;bottom:-4px;
  height:1px;
  background:linear-gradient(90deg,var(--aqua),var(--cyan));
  transform:scaleX(.30);
  transform-origin:left;
  opacity:.5;
  transition:transform .2s var(--ease),opacity .18s ease;
}
.cta-text:hover::after{transform:scaleX(1);opacity:1}

.footer{
  padding:62px 0 30px;
  background:#061210;
  color:#fff;
  border-top:1px solid rgba(255,255,255,.055);
}
.footer-main{
  display:grid;
  grid-template-columns:5fr 7fr;
  gap:90px;
  padding-bottom:52px;
}
.footer-brand .brand{color:#fff;font-size:18px}
.footer-brand .brand img{filter:brightness(0) invert(1)}
.footer-brand p{
  max-width:390px;
  margin:20px 0 0;
  color:rgba(255,255,255,.54);
  font-size:13px;
  line-height:1.68;
}
.footer-nav{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:36px;
}
.footer-col h4{
  margin:0 0 16px;
  color:rgba(255,255,255,.34);
  font:700 9px "Geist Mono",monospace;
  letter-spacing:.12em;
  text-transform:uppercase;
}
.footer-col a{
  display:block;
  width:max-content;
  max-width:100%;
  margin:10px 0;
  color:rgba(255,255,255,.74);
  font-size:13px;
  transition:color .18s ease;
}
.footer-col a:hover{color:var(--aqua)}
.footer-bottom{
  display:flex;
  justify-content:space-between;
  gap:24px;
  padding-top:24px;
  border-top:1px solid rgba(255,255,255,.07);
  color:rgba(255,255,255,.34);
  font-size:11px;
}
.footer-legal{display:flex;gap:18px;flex-wrap:wrap}

@media(max-width:1120px){
  .wrap{width:min(var(--container),calc(100% - 52px))}
  .desktop-nav{display:none}
  .menu-button{display:grid}
  .header-inner{grid-template-columns:1fr auto}
  .header-actions{justify-self:end}
  .hero-inner{grid-template-columns:1fr;gap:42px;padding-top:78px;padding-bottom:84px}
  .hero-copy{max-width:820px}
  .hero-visual{max-width:690px;width:100%;margin:0 auto}
  .section-head{
    display:block;
    margin-bottom:52px;
  }
  .section-head > div:first-child{
    max-width:900px;
  }
  .section-head h2{
    max-width:900px;
  }
  .section-copy{
    width:min(100%,760px);
    max-width:none;
    margin:20px 0 0;
    padding-top:0;
  }
  .product-layout,.proof-layout,.cta-layout{grid-template-columns:1fr}
  .use-grid{grid-template-columns:1fr;gap:34px}
  .product-nav{display:grid;grid-template-columns:repeat(3,1fr)}
  .use-tabs{
    position:static;
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:0;
    border-top:1px solid rgba(7,22,21,.10);
  }
  .use-tab{
    padding:17px 14px 18px;
    border-right:1px solid rgba(7,22,21,.10);
    border-bottom:1px solid rgba(7,22,21,.10);
    border-radius:0;
    background:transparent;
  }
  .use-tab:last-child{border-right:0}
  .use-tab::before{display:none}
  .use-tab.active{padding-left:14px;background:rgba(255,255,255,.44)}
  .use-tab strong{font-size:16px}
  .use-tab-head{gap:9px;align-items:center;margin-bottom:8px}
  .use-tab-icon{width:30px;height:30px;flex-basis:30px}
  .use-tab-icon svg{width:15px;height:15px}
  .use-tab small{display:block;max-width:none;margin-left:39px;font-size:12.2px;line-height:1.46}
    .use-example-grid{grid-template-columns:1fr;gap:12px}
  .use-tab small{font-size:13px;line-height:1.5}
  .use-example{min-height:0;padding:19px 88px 18px 18px}
  .use-example-ghost{width:66px;height:66px;top:13px;right:13px}
  .use-example .use-example-index{margin-bottom:16px}
  .use-example h4{font-size:18px}
  .use-example p{font-size:14px}
  .use-capability-row{margin-top:18px}
  .metrics{grid-template-columns:1fr}
  .metric.wide{grid-column:auto;grid-template-columns:1fr}
  .evidence{min-height:520px;border-radius:19px}
  .evidence-slide.contain img{padding:28px}
  .final-cta{padding:90px 0}
  .final-cta h2{font-size:clamp(42px,11vw,62px)}
  .cta-actions{flex-direction:column;align-items:flex-start;gap:15px}
  .footer-nav{grid-template-columns:1fr 1fr}
  .footer-bottom{flex-direction:column;gap:12px}
}
@media(max-width:440px){
  .wrap{width:calc(100% - 28px)}
  .hero-visual{aspect-ratio:.96/1}
  .tm3,.tm4{bottom:7%}
  .footer-nav{grid-template-columns:1fr}
  .evidence-tabs{right:18px;overflow:auto}
}

.scroll-cue{
  position:absolute !important;
  left:50% !important;
  bottom:18px !important;
  transform:translateX(-50%) !important;
  z-index:12 !important;
  display:flex !important;
  flex-direction:column !important;
  align-items:center !important;
  justify-content:center !important;
  gap:7px !important;
  color:rgba(255,255,255,.36) !important;
  font:600 8px "Geist Mono",monospace !important;
  letter-spacing:.12em !important;
  white-space:nowrap !important;
}
.scroll-cue i{
  display:block !important;
  width:1px !important;
  height:28px !important;
  background:linear-gradient(var(--aqua),transparent) !important;
  animation:scrollPulse 2.4s var(--ease) infinite !important;
}

@media(prefers-reduced-motion:reduce){
  *,*::before,*::after{
    animation-duration:.01ms!important;
    animation-iteration-count:1!important;
    scroll-behavior:auto!important;
    transition-duration:.01ms!important;
  }
  .reveal{opacity:1;transform:none}
}

.trust-proof-section .section-head{
  margin-bottom:54px;
}
.trust-proof-layout{
  display:grid;
  grid-template-columns:minmax(0,1.03fr) minmax(0,.97fr);
  gap:28px;
  align-items:start;
}
.trust-proof-core{
  position:relative;
  overflow:hidden;
  padding:30px 30px 28px;
  border:1px solid rgba(7,22,21,.08);
  border-radius:24px;
  background:
    radial-gradient(700px 260px at 78% 4%,rgba(39,225,193,.08),transparent 58%),
    linear-gradient(180deg,#ffffff,#f8fcfb);
  box-shadow:
    0 30px 60px -42px rgba(0,80,68,.24),
    0 10px 24px -18px rgba(0,80,68,.10);
}
.trust-proof-core::before{
  content:"";
  position:absolute;
  inset:auto 28px 0 auto;
  width:220px;
  height:220px;
  border-radius:50%;
  border:1px solid rgba(1,182,155,.08);
  transform:translate(26%,-8%);
  pointer-events:none;
}
.trust-proof-core-top{
  position:relative;
  z-index:1;
  margin-bottom:24px;
}
.trust-proof-kicker{
  display:inline-flex;
  align-items:center;
  gap:10px;
  margin-bottom:14px;
  color:var(--teal-deep);
  font:700 11px/1 "Geist Mono",monospace;
  letter-spacing:.12em;
}
.trust-proof-kicker::before{
  content:"";
  width:8px;
  height:8px;
  border-radius:999px;
  background:var(--teal);
  box-shadow:0 0 0 6px rgba(1,182,155,.08);
}
.trust-proof-core h3{
  margin:0 0 10px;
  max-width:13ch;
  color:var(--ink);
  font:700 clamp(28px,2.9vw,40px)/1.02 Manrope,sans-serif;
  letter-spacing:-.045em;
  text-wrap:balance;
}
.trust-proof-core-top p{
  max-width:64ch;
  margin:0;
  color:var(--muted);
  font-size:15.5px;
  line-height:1.72;
}
.trust-proof-stats{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:14px;
}
.trust-proof-stat{
  position:relative;
  min-height:184px;
  padding:22px 22px 20px;
  border:1px solid rgba(7,22,21,.07);
  border-radius:18px;
  background:rgba(255,255,255,.82);
  transition:transform .22s var(--ease),border-color .18s ease,box-shadow .22s var(--ease);
}
.trust-proof-stat:hover{
  transform:translateY(-3px);
  border-color:rgba(1,182,155,.22);
  box-shadow:0 22px 42px -34px rgba(0,80,68,.24);
}
.trust-proof-stat-label{
  display:block;
  margin-bottom:18px;
  color:rgba(7,22,21,.46);
  font:700 10px/1 "Geist Mono",monospace;
  letter-spacing:.12em;
}
.trust-proof-stat strong{
  display:block;
  color:var(--ink);
  font:800 clamp(44px,4.8vw,70px)/.88 Manrope,sans-serif;
  letter-spacing:-.06em;
}
.trust-proof-stat strong small{
  font-size:.34em;
  letter-spacing:-.02em;
  vertical-align:top;
  margin-right:4px;
}
.trust-proof-stat p{
  margin:16px 0 0;
  color:var(--muted);
  font-size:13.5px;
  line-height:1.58;
}
.trust-proof-stat-wide{
  grid-column:1/-1;
  min-height:156px;
  display:grid;
  grid-template-columns:auto 1fr;
  align-items:end;
  gap:22px;
}
.trust-proof-stat-wide p{
  margin:0 0 3px;
}
.trust-proof-tags{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:18px;
}
.trust-proof-tags span{
  padding:8px 12px;
  border:1px solid rgba(1,182,155,.12);
  border-radius:999px;
  background:rgba(255,255,255,.66);
  color:var(--teal-deep);
  font:600 12.5px/1.1 Manrope,sans-serif;
}
.trust-proof-evidence{
  display:grid;
  gap:14px;
}
.trust-proof-card-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:14px;
}
.trust-proof-card{
  overflow:hidden;
  border:1px solid rgba(7,22,21,.08);
  border-radius:20px;
  background:#fff;
  box-shadow:0 24px 48px -40px rgba(0,80,68,.18);
}
.trust-proof-card-feature .trust-proof-media{
  aspect-ratio:16/9;
}
.trust-proof-card-grid .trust-proof-card{
  min-height:100%;
}
.trust-proof-card-wide{
  grid-column:1/-1;
}
.trust-proof-card-wide .trust-proof-media{
  aspect-ratio:16/8.3;
}
.trust-proof-media{
  position:relative;
  overflow:hidden;
  aspect-ratio:16/10.5;
  background:
    linear-gradient(180deg,rgba(248,252,251,.95),rgba(239,248,246,.95));
}
.trust-proof-media::after{
  content:"";
  position:absolute;
  inset:auto 0 0;
  height:38%;
  background:linear-gradient(to top,rgba(7,22,21,.08),rgba(7,22,21,0));
  pointer-events:none;
}
.trust-proof-media img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}
.trust-proof-card-contain .trust-proof-media img{
  object-fit:contain;
  padding:22px;
}
.trust-proof-card-copy{
  padding:18px 18px 18px;
}
.trust-proof-card-cap{
  display:inline-block;
  margin-bottom:8px;
  color:var(--teal-deep);
  font:700 10px/1 "Geist Mono",monospace;
  letter-spacing:.12em;
}
.trust-proof-card-copy h3{
  margin:0 0 6px;
  color:var(--ink);
  font:700 21px/1.08 Manrope,sans-serif;
  letter-spacing:-.03em;
}
.trust-proof-card-copy p{
  margin:0;
  color:var(--muted);
  font-size:14px;
  line-height:1.6;
}
.trust-proof-note{
  margin-top:20px;
  color:rgba(7,22,21,.50);
  font-size:12px;
  line-height:1.55;
}
@media(max-width:1100px){
  .trust-proof-layout{
    grid-template-columns:1fr;
  }
  .trust-proof-core h3{
    max-width:15ch;
  }
}
@media(max-width:900px){
  .trust-proof-section .section-head{
    margin-bottom:38px;
  }
  .trust-proof-core{
    padding:24px 22px 22px;
    border-radius:20px;
  }
  .trust-proof-core h3{
    font-size:32px;
  }
  .trust-proof-stats{
    grid-template-columns:1fr;
  }
  .trust-proof-stat,
  .trust-proof-stat-wide{
    min-height:auto;
    grid-column:auto;
    grid-template-columns:1fr;
    align-items:start;
    gap:12px;
  }
  .trust-proof-card-grid{
    grid-template-columns:1fr;
  }
  .trust-proof-card-wide{
    grid-column:auto;
  }
}
@media(max-width:640px){
  .trust-proof-section .section-head{
    margin-bottom:30px;
  }
  .trust-proof-core{
    padding:22px 18px 18px;
    border-radius:18px;
  }
  .trust-proof-core-top{
    margin-bottom:18px;
  }
  .trust-proof-core h3{
    font-size:28px;
  }
  .trust-proof-core-top p{
    font-size:14.5px;
    line-height:1.68;
  }
  .trust-proof-stat{
    padding:18px 16px 16px;
    border-radius:16px;
  }
  .trust-proof-stat-label,
  .trust-proof-card-cap{
    font-size:9px;
  }
  .trust-proof-stat strong{
    font-size:46px;
  }
  .trust-proof-stat p,
  .trust-proof-card-copy p{
    font-size:13px;
  }
  .trust-proof-card,
  .trust-proof-card-copy{
    border-radius:16px;
  }
  .trust-proof-card-copy{
    padding:16px;
  }
  .trust-proof-card-copy h3{
    font-size:18px;
  }
}

@media(max-width:640px){
  .trust-proof-flat-section .section-head{margin-bottom:30px}
  .trust-proof-flat-stat{
    min-height:0;
    padding:19px 17px 17px;
    border-radius:16px;
  }
  .trust-proof-flat-stat strong{font-size:48px}
  .trust-proof-flat-card{border-radius:16px}
  .trust-proof-flat-copy{padding:16px}
  .trust-proof-flat-copy h3{font-size:18px}
  .trust-proof-flat-copy p,
  .trust-proof-flat-stat p{font-size:13px}
}

.trust-proof-flat-section .section-head{
  margin-bottom:56px;
}
.trust-proof-premium{
  display:grid;
  grid-template-columns:minmax(0,.92fr) minmax(0,1.08fr);
  gap:28px;
  align-items:start;
}
.trust-proof-premium-metrics{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:14px;
}
.trust-proof-premium-stat{
  position:relative;
  overflow:hidden;
  min-height:196px;
  padding:22px 22px 20px;
  border:1px solid rgba(7,22,21,.08);
  border-radius:20px;
  background:
    linear-gradient(180deg,rgba(255,255,255,.94),rgba(247,251,250,.94)),
    radial-gradient(240px 140px at 100% 0%,rgba(39,225,193,.10),transparent 64%);
  box-shadow:0 24px 44px -40px rgba(0,80,68,.20);
  transition:transform .22s var(--ease),box-shadow .22s var(--ease),border-color .2s ease;
}
.trust-proof-premium-stat::after{
  content:"";
  position:absolute;
  inset:auto 0 0 0;
  height:2px;
  background:linear-gradient(90deg,rgba(39,225,193,.75),rgba(39,225,193,0));
  opacity:.8;
}
.trust-proof-premium-stat:hover{
  transform:translateY(-3px);
  border-color:rgba(1,182,155,.22);
  box-shadow:0 28px 52px -40px rgba(0,80,68,.24);
}
.trust-proof-premium-top{
  display:flex;
  align-items:center;
  gap:11px;
  margin-bottom:20px;
}
.trust-proof-premium-icon{
  width:34px;
  height:34px;
  border-radius:11px;
  display:grid;
  place-items:center;
  background:rgba(39,225,193,.10);
  color:var(--teal-deep);
  border:1px solid rgba(1,182,155,.14);
  flex:none;
}
.trust-proof-premium-icon svg{
  width:18px;
  height:18px;
}
.trust-proof-premium-label{
  color:rgba(7,22,21,.58);
  font:700 12px/1 "Geist Mono",monospace;
  letter-spacing:.14em;
}
.trust-proof-premium-number{
  display:block;
  color:var(--ink);
  font:800 clamp(52px,6vw,82px)/.88 Manrope,sans-serif;
  letter-spacing:-.065em;
}
.trust-proof-premium-stat p{
  margin:18px 0 0;
  color:var(--muted);
  font-size:14px;
  line-height:1.62;
  max-width:28ch;
}
.trust-proof-premium-stat.wide{
  grid-column:1/-1;
  min-height:168px;
}
.trust-proof-premium-value-row{
  display:grid;
  grid-template-columns:auto 1fr;
  align-items:end;
  gap:18px;
}
.trust-proof-premium-number.money{
  white-space:nowrap;
}
.trust-proof-premium-number.money .prefix{
  font-size:.34em;
  vertical-align:top;
  margin-right:5px;
  letter-spacing:-.02em;
}
.trust-proof-premium-number.money .suffix{
  font-size:.60em;
  margin-left:2px;
}

.trust-proof-premium-evidence{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:14px;
}
.trust-proof-premium-card{
  position:relative;
  overflow:hidden;
  border:1px solid rgba(7,22,21,.08);
  border-radius:22px;
  background:linear-gradient(180deg,#ffffff,#fbfdfd);
  box-shadow:0 24px 48px -40px rgba(0,80,68,.18);
}
.trust-proof-premium-card::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(220px 160px at 100% 0%,rgba(39,225,193,.10),transparent 68%),
    linear-gradient(180deg,rgba(39,225,193,0),rgba(39,225,193,.02));
  pointer-events:none;
  z-index:1;
}
.trust-proof-premium-media{
  position:relative;
  overflow:hidden;
  aspect-ratio:4/3;
  background:#eef6f4;
}
.trust-proof-premium-media img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  filter:saturate(.92) contrast(1.02) brightness(.98);
  transform:scale(1.01);
}
.trust-proof-premium-media::after{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(180deg,rgba(6,18,18,.08),rgba(6,18,18,0) 34%),
    linear-gradient(0deg,rgba(6,18,18,.16),rgba(6,18,18,0) 28%),
    linear-gradient(90deg,rgba(39,225,193,.12),rgba(39,225,193,0) 55%);
  z-index:1;
}
.trust-proof-premium-overlay-icon{
  position:absolute;
  top:16px;
  right:16px;
  width:72px;
  height:72px;
  color:rgba(39,225,193,.24);
  z-index:2;
}
.trust-proof-premium-overlay-icon svg{
  width:100%;
  height:100%;
}
.trust-proof-premium-copy{
  position:relative;
  z-index:2;
  padding:18px 18px 20px;
}
.trust-proof-premium-copy > span{
  display:inline-block;
  margin-bottom:9px;
  color:var(--teal-deep);
  font:700 11px/1 "Geist Mono",monospace;
  letter-spacing:.13em;
}
.trust-proof-premium-copy h3{
  margin:0 0 8px;
  color:var(--ink);
  font:700 19px/1.10 Manrope,sans-serif;
  letter-spacing:-.03em;
}
.trust-proof-premium-copy p{
  margin:0;
  color:var(--muted);
  font-size:14px;
  line-height:1.62;
}

@media(max-width:1050px){
  .trust-proof-premium{
    grid-template-columns:1fr;
  }
}
@media(max-width:780px){
  .trust-proof-flat-section .section-head{
    margin-bottom:38px;
  }
  .trust-proof-premium-metrics{
    grid-template-columns:1fr;
  }
  .trust-proof-premium-stat.wide{
    grid-column:auto;
    min-height:0;
  }
  .trust-proof-premium-value-row{
    grid-template-columns:1fr;
    align-items:start;
    gap:12px;
  }
  .trust-proof-premium-evidence{
    grid-template-columns:1fr;
  }
}
@media(max-width:640px){
  .trust-proof-premium-stat{
    min-height:0;
    padding:18px 16px 16px;
    border-radius:16px;
  }
  .trust-proof-premium-label{
    font-size:11px;
  }
  .trust-proof-premium-number{
    font-size:48px;
  }
  .trust-proof-premium-card{
    border-radius:16px;
  }
  .trust-proof-premium-copy{
    padding:16px;
  }
  .trust-proof-premium-copy h3{
    font-size:18px;
  }
}

.trust-proof-premium-evidence{
  gap:16px;
  align-items:stretch;
}
.trust-proof-premium-card{
  isolation:isolate;
  background:
    linear-gradient(180deg,rgba(255,255,255,.98),rgba(249,252,251,.98));
  border-color:rgba(7,22,21,.075);
  transition:
    transform .28s var(--ease),
    border-color .22s ease,
    box-shadow .28s var(--ease);
}
.trust-proof-premium-card:hover{
  transform:translateY(-4px);
  border-color:rgba(1,182,155,.18);
  box-shadow:
    0 34px 68px -48px rgba(0,80,68,.34),
    0 10px 24px -18px rgba(0,80,68,.14);
}
.trust-proof-premium-card::after{
  content:"";
  position:absolute;
  inset:0;
  border-radius:inherit;
  pointer-events:none;
  box-shadow:inset 0 1px 0 rgba(255,255,255,.85);
  z-index:4;
}
.trust-proof-premium-media{
  margin:10px 10px 0;
  border-radius:16px;
  aspect-ratio:4/3;
  background:
    radial-gradient(circle at 70% 20%,rgba(39,225,193,.08),transparent 55%),
    #edf6f4;
}
.trust-proof-premium-card.award .trust-proof-premium-media{
  background:
    radial-gradient(circle at 80% 20%,rgba(67,199,255,.08),transparent 52%),
    linear-gradient(180deg,#edf5f4,#e7f1ef);
}
.trust-proof-premium-card.live .trust-proof-premium-media{
  background:
    radial-gradient(circle at 15% 18%,rgba(39,225,193,.10),transparent 55%),
    linear-gradient(180deg,#eef8f6,#e9f2f0);
}
.trust-proof-premium-media img{
  transition:
    transform .75s cubic-bezier(.20,.62,.18,1),
    filter .35s ease;
}
.trust-proof-premium-card:hover .trust-proof-premium-media img{
  transform:scale(1.035);
  filter:saturate(.98) contrast(1.03) brightness(.99);
}
.trust-proof-premium-card.award .trust-proof-premium-media img{
  object-position:center 42%;
}
.trust-proof-premium-card.live .trust-proof-premium-media img{
  object-position:center 50%;
}
.trust-proof-premium-media::before{
  content:"";
  position:absolute;
  inset:0;
  z-index:1;
  background:
    linear-gradient(180deg,rgba(7,22,21,.08),transparent 26%),
    linear-gradient(0deg,rgba(7,22,21,.18),transparent 32%);
  pointer-events:none;
}
.trust-proof-premium-media::after{
  z-index:2;
  background:
    linear-gradient(90deg,rgba(39,225,193,.12),transparent 48%),
    radial-gradient(circle at 100% 0%,rgba(67,199,255,.08),transparent 34%);
}
.trust-proof-premium-overlay-icon{
  top:auto;
  right:18px;
  bottom:18px;
  width:74px;
  height:74px;
  color:rgba(222,255,247,.30);
  filter:drop-shadow(0 8px 22px rgba(0,0,0,.10));
}
.trust-proof-premium-overlay-icon::before{
  content:"";
  position:absolute;
  inset:-8px;
  border:1px solid rgba(255,255,255,.12);
  border-radius:22px;
  background:rgba(7,22,21,.12);
  backdrop-filter:blur(6px);
  -webkit-backdrop-filter:blur(6px);
}
.trust-proof-premium-overlay-icon svg{
  position:relative;
  z-index:1;
}
.trust-proof-premium-copy{
  padding:20px 20px 22px;
}
.trust-proof-premium-copy > span{
  font-size:11.5px;
  color:var(--action);
}
.trust-proof-premium-copy h3{
  font-size:21px;
}
.trust-proof-premium-copy p{
  max-width:38ch;
}
.trust-proof-premium-card.award::before{
  background:
    radial-gradient(240px 180px at 0% 100%,rgba(39,225,193,.08),transparent 64%);
}
.trust-proof-premium-card.live::before{
  background:
    radial-gradient(240px 180px at 100% 100%,rgba(67,199,255,.08),transparent 64%);
}
@media(max-width:640px){
    .trust-proof-premium-media{
    margin:8px 8px 0;
    border-radius:13px;
  }
  .trust-proof-premium-overlay-icon{
    width:60px;
    height:60px;
    right:14px;
    bottom:14px;
  }
}

#use-cases .use-panel.active{animation:none}

#use-cases .section-head{
  margin-bottom:52px;
}
#use-cases .use-grid{
  gap:64px;
}
#use-cases .use-tab > span{
  font-size:10px;
  letter-spacing:.12em;
}
#use-cases .use-tab small{
  color:#778783;
}
#use-cases .use-example-grid{
  gap:16px;
}
#use-cases .use-example{
  min-height:198px;
  padding:28px 124px 25px 25px;
  border-color:rgba(7,22,21,.07);
  border-radius:19px;
  background:
    radial-gradient(220px 150px at 100% 0%,rgba(39,225,193,.055),transparent 67%),
    rgba(255,255,255,.72);
  box-shadow:0 22px 42px -42px rgba(5,35,30,.20);
}
#use-cases .use-example::before{
  content:"";
  position:absolute;
  left:24px;
  right:24px;
  top:0;
  height:1px;
  background:linear-gradient(90deg,rgba(1,182,155,.68),rgba(67,199,255,.28),transparent 78%);
  transform:scaleX(.12);
  transform-origin:left;
  opacity:.44;
  transition:transform .32s var(--ease),opacity .25s ease;
}
#use-cases .use-example:hover::before{
  transform:scaleX(1);
  opacity:.9;
}
#use-cases .use-example:hover{
  transform:translateY(-3px);
  border-color:rgba(1,182,155,.18);
  background:
    radial-gradient(260px 170px at 100% 0%,rgba(39,225,193,.085),transparent 67%),
    rgba(255,255,255,.94);
  box-shadow:0 26px 48px -38px rgba(5,35,30,.28);
}
#use-cases .use-example-ghost{
  top:-3px;
  right:-2px;
  width:124px;
  height:124px;
  opacity:.92;
  transform:rotate(-4deg);
  transition:transform .55s cubic-bezier(.20,.62,.18,1),opacity .3s ease;
}
#use-cases .use-example:hover .use-example-ghost{
  transform:rotate(0deg) translate(-4px,4px) scale(1.035);
  opacity:1;
}
#use-cases .use-example-ghost .art-bg{fill:rgba(1,182,155,.055)}
#use-cases .use-example-ghost .art-a{fill:rgba(1,182,155,.22)}
#use-cases .use-example-ghost .art-b{fill:rgba(67,199,255,.18)}
#use-cases .use-example-ghost .art-c{fill:rgba(7,22,21,.085)}
#use-cases .use-example h4{
  margin:27px 0 10px;
  font-size:22px;
}
#use-cases .use-example p{
  color:#647570;
  font-size:14.5px;
  line-height:1.62;
}
#use-cases .use-panel.active .use-example{
  animation:useCaseResolve .46s var(--ease) both;
}
#use-cases .use-panel.active .use-example:nth-child(2){animation-delay:.055s}
#use-cases .use-panel.active .use-example:nth-child(3){animation-delay:.11s}
#use-cases .use-panel.active .use-example:nth-child(4){animation-delay:.165s}
@keyframes useCaseResolve{
  from{opacity:0;transform:translateY(10px)}
  to{opacity:1;transform:none}
}

:where(a,button,[tabindex]):focus-visible{
  outline:2px solid var(--aqua);
  outline-offset:3px;
}

@media(max-width:640px){
  .site-header .header-actions > .header-cta{
    display:none;
  }
  .header-inner{
    gap:14px;
  }

  #use-cases .use-tabs{
    grid-template-columns:1fr;
    border-top:1px solid rgba(7,22,21,.10);
  }
  #use-cases .use-tab{
    display:grid;
    grid-template-columns:auto 1fr;
    grid-template-areas:
      "meta meta"
      "head head";
    padding:14px 12px 15px;
    border-right:0;
    border-bottom:1px solid rgba(7,22,21,.10);
  }
  #use-cases .use-tab > span{
    grid-area:meta;
    margin-bottom:7px;
    font-size:9.5px;
  }
  #use-cases .use-tab-head{
    grid-area:head;
    margin-bottom:0;
  }
  #use-cases .use-tab strong{
    font-size:16px;
    line-height:1.25;
  }
  #use-cases .use-tab small{
    display:none;
  }
  #use-cases .use-tab.active{
    padding-left:12px;
    background:linear-gradient(90deg,rgba(255,255,255,.62),rgba(255,255,255,.10));
  }
  #use-cases .use-tab.active::before{
    display:block;
    top:10px;
    bottom:10px;
  }
  #use-cases .use-grid{
    gap:28px;
  }

  .footer-main{
    grid-template-columns:1fr;
    gap:38px;
    padding-bottom:42px;
  }
  .footer-brand p{
    max-width:320px;
  }
  .footer-nav{
    grid-template-columns:1fr 1fr;
    gap:30px 28px;
  }
  .footer-col:last-child{
    grid-column:1/-1;
  }
}

@media(max-width:360px){
  .brand{
    gap:9px;
    font-size:18px;
  }
  .brand img{
    height:36px;
  }
  .language-button{
    min-width:76px;
    padding:0 10px;
  }
  .header-actions{
    gap:7px;
  }
}

@media(min-width: 961px){
  #use-cases .use-grid{
    align-items:stretch;
  }
  #use-cases .use-tabs{
    display:flex;
    flex-direction:column;
    justify-content:space-between;
    align-self:stretch;
    min-height:100%;
  }
  #use-cases .use-tab{
    flex:1 1 0;
    display:flex;
    flex-direction:column;
    justify-content:flex-start;
  }
  #use-cases .use-tab:last-child{
    border-bottom:1px solid rgba(7,22,21,.10);
  }

  #use-cases .use-panels{
    display:flex;
    align-self:stretch;
  }
  #use-cases .use-panel{
    width:100%;
    min-height:100%;
  }
  #use-cases .use-example-grid{
    height:100%;
    align-content:stretch;
  }
  #use-cases .use-example{
    min-height:auto;
    height:100%;
  }
}

@media(min-width:641px){
  #use-cases .use-tab{
    justify-content:center;
    padding-top:22px;
    padding-bottom:22px;
  }
  #use-cases .use-tab-head{
    margin-bottom:10px;
  }
  #use-cases .use-tab strong{
    line-height:1.20;
  }
  #use-cases .use-tab small{
    margin-left:44px;
    max-width:310px;
    line-height:1.58;
  }
}

@media(max-width:640px){
  #use-cases .use-tab{
    display:block;
    padding:15px 12px 16px;
  }
  #use-cases .use-tab-head{
    margin-bottom:0;
  }
  #use-cases .use-tab.active{
    padding-left:12px;
  }
}

@media(min-width:641px){
  #use-cases .use-tabs{
    contain:layout style;
  }
  #use-cases .use-tab{
    will-change:transform;
  }
  #use-cases .use-tab.active{
    z-index:2;
  }
  #use-cases .use-tabs.is-reordering .use-tab{
    pointer-events:none;
  }
}

@media(min-width:1121px){
  .tech-system{
    --tech-focus-opacity:.50;
  }

  .tech-connectors path:not(.tech-signal){
    transition:
      opacity .26s ease,
      stroke-width .26s ease,
      filter .26s ease;
  }

  .tech-connectors .tech-signal{
    fill:none;
    stroke:var(--aqua);
    stroke-width:2.2;
    vector-effect:non-scaling-stroke;
      stroke-dasharray:.075 .925;
    stroke-dashoffset:1;
    opacity:0;
    filter:drop-shadow(0 0 7px rgba(39,225,193,.55));
  }
  .tech-system.in .tech-signal.s1{
    animation:techSignalTravel 1.02s .34s var(--ease) both;
  }
  .tech-system.in .tech-signal.s2{
    animation:techSignalTravel 1.02s .46s var(--ease) both;
  }
  .tech-system.in .tech-signal.s3{
    animation:techSignalTravel 1.02s .58s var(--ease) both;
  }
  .tech-system.in .tech-signal.s4{
    animation:techSignalTravel 1.02s .70s var(--ease) both;
  }
  @keyframes techSignalTravel{
    0%{
      opacity:0;
      stroke-dashoffset:1;
    }
    14%{opacity:1}
    78%{opacity:.95}
    100%{
      opacity:0;
      stroke-dashoffset:0;
    }
  }

  .tech-system.in .tech-core::before{
    animation:techCoreOuterResolve .95s .10s var(--ease) both;
  }
  .tech-system.in .tech-core::after{
    animation:techCoreInnerResolve .78s .20s var(--ease) both;
  }
  @keyframes techCoreOuterResolve{
    0%{
      opacity:0;
      transform:scale(.68);
      box-shadow:
        0 0 0 0 rgba(39,225,193,0),
        0 0 0 rgba(39,225,193,0);
    }
    58%{
      opacity:1;
      transform:scale(1.07);
      box-shadow:
        0 0 0 42px rgba(39,225,193,.028),
        0 0 110px rgba(39,225,193,.22);
    }
    100%{
      opacity:1;
      transform:scale(1);
    }
  }
  @keyframes techCoreInnerResolve{
    0%{
      opacity:0;
      transform:scale(.76) rotate(-8deg);
    }
    70%{
      opacity:1;
      transform:scale(1.04) rotate(1deg);
    }
    100%{
      opacity:1;
      transform:scale(1) rotate(0);
    }
  }

  .tech-core-mark{
    transform:scale(.82);
    opacity:0;
    transition:transform .28s var(--ease);
  }
  .tech-system.in .tech-core-mark{
    animation:techMarkResolve .52s .30s var(--ease) forwards;
  }
  @keyframes techMarkResolve{
    0%{opacity:0;transform:scale(.82)}
    72%{opacity:1;transform:scale(1.07)}
    100%{opacity:1;transform:scale(1)}
  }

  .tech-glyph{
    transform:scale(.86);
    opacity:.35;
    transition:
      transform .28s var(--ease),
      border-color .24s ease,
      background .24s ease,
      box-shadow .24s ease,
      opacity .24s ease;
  }
  .tech-system.in .tp1 .tech-glyph{animation:techGlyphResolve .48s .38s var(--ease) forwards}
  .tech-system.in .tp2 .tech-glyph{animation:techGlyphResolve .48s .50s var(--ease) forwards}
  .tech-system.in .tp3 .tech-glyph{animation:techGlyphResolve .48s .62s var(--ease) forwards}
  .tech-system.in .tp4 .tech-glyph{animation:techGlyphResolve .48s .74s var(--ease) forwards}
  @keyframes techGlyphResolve{
    0%{opacity:.25;transform:scale(.84)}
    72%{
      opacity:1;
      transform:scale(1.08);
      box-shadow:0 0 28px rgba(39,225,193,.10);
    }
    100%{
      opacity:1;
      transform:scale(1);
      box-shadow:none;
    }
  }

  .tech-outcomes{
    opacity:1;
    transform:none;
    overflow:hidden;
    clip-path:inset(0 100% 0 0);
  }
  .tech-system.in .tech-outcomes{
    animation:techOutcomeRail .72s .82s var(--ease) forwards;
  }
  @keyframes techOutcomeRail{
    to{clip-path:inset(0 0 0 0)}
  }
  .tech-outcome{
    opacity:0;
    transform:translateY(8px);
  }
  .tech-system.in .tech-outcome:nth-child(1){animation:techFactResolve .42s 1.00s var(--ease) forwards}
  .tech-system.in .tech-outcome:nth-child(2){animation:techFactResolve .42s 1.08s var(--ease) forwards}
  .tech-system.in .tech-outcome:nth-child(3){animation:techFactResolve .42s 1.16s var(--ease) forwards}
  .tech-system.in .tech-outcome:nth-child(4){animation:techFactResolve .42s 1.24s var(--ease) forwards}
  @keyframes techFactResolve{
    to{opacity:1;transform:none}
  }

  .tech-pillar{
    transition:opacity .24s ease;
  }
  .tech-pillar:hover .tech-glyph{
    transform:translateY(-2px) scale(1.035);
    border-color:rgba(39,225,193,.34);
    background:
      radial-gradient(circle at 32% 26%,rgba(67,199,255,.20),transparent 55%),
      rgba(39,225,193,.045);
    box-shadow:
      0 14px 34px -24px rgba(39,225,193,.58),
      inset 0 0 0 1px rgba(39,225,193,.035);
  }

  .tech-system[data-tech-focus="1"] .tech-connectors .p1,
  .tech-system[data-tech-focus="2"] .tech-connectors .p2,
  .tech-system[data-tech-focus="3"] .tech-connectors .p3,
  .tech-system[data-tech-focus="4"] .tech-connectors .p4{
    opacity:.95;
    stroke-width:2;
    filter:drop-shadow(0 0 7px rgba(39,225,193,.30));
  }
  .tech-system[data-tech-focus="1"] .tech-connectors path:not(.p1):not(.tech-signal),
  .tech-system[data-tech-focus="2"] .tech-connectors path:not(.p2):not(.tech-signal),
  .tech-system[data-tech-focus="3"] .tech-connectors path:not(.p3):not(.tech-signal),
  .tech-system[data-tech-focus="4"] .tech-connectors path:not(.p4):not(.tech-signal){
    opacity:.15;
  }
  .tech-system[data-tech-focus] .tech-core-mark{
    transform:scale(1.045);
  }

  .tech-outcome-icon{
    transition:
      transform .24s var(--ease),
      border-color .22s ease,
      background .22s ease;
  }
  .tech-outcome:hover .tech-outcome-icon{
    transform:translateY(-2px);
    border-color:rgba(39,225,193,.30);
    background:
      radial-gradient(circle at 34% 28%,rgba(67,199,255,.23),transparent 58%),
      rgba(39,225,193,.045);
  }
}

@media(max-width:1120px){
  .tech-system.in .tech-pillar{
    animation-duration:.58s;
  }
  .tech-system.in .tp1{animation-delay:.08s}
  .tech-system.in .tp2{animation-delay:.18s}
  .tech-system.in .tp3{animation-delay:.28s}
  .tech-system.in .tp4{animation-delay:.38s}

  .tech-outcomes{
    opacity:0;
    transform:translateY(10px);
  }
  .tech-system.in .tech-outcomes{
    animation:techOutcomeIn .50s .48s var(--ease) forwards;
  }
}

@media(prefers-reduced-motion:reduce){
  .tech-connectors .tech-signal{
    display:none!important;
  }
  .tech-core::before,
  .tech-core::after,
  .tech-core-mark,
  .tech-glyph,
  .tech-outcome{
    animation:none!important;
    opacity:1!important;
    transform:none!important;
  }
  .tech-outcomes{
    clip-path:none!important;
  }
}

.trust-proof-premium-card.proof-image-card::before{
  display:none;
}
.trust-proof-premium-card.proof-image-card .trust-proof-premium-media::after{
  background:
    linear-gradient(180deg,rgba(6,18,18,.05),rgba(6,18,18,0) 26%),
    linear-gradient(0deg,rgba(6,18,18,.10),rgba(6,18,18,0) 22%);
}
.trust-proof-premium-card.proof-image-card .trust-proof-premium-copy h3{
  max-width:26ch;
  font-size:18px;
  line-height:1.18;
  margin-bottom:6px;
}
.trust-proof-premium-card.proof-image-card .trust-proof-premium-copy p{
  max-width:40ch;
  font-size:13.5px;
  line-height:1.52;
}
.trust-proof-premium-card.news-card .trust-proof-premium-media img{
  object-position:center top;
  transform:scale(1.0);
}
@media(min-width:781px){
  .trust-proof-premium-card.news-card .trust-proof-premium-media{
    aspect-ratio:4 / 3.15;
  }
}
@media(max-width:640px){
  .trust-proof-premium-card.proof-image-card .trust-proof-premium-copy h3{
    font-size:17px;
  }
}

.trust-proof-premium-card.proof-image-card .trust-proof-premium-copy h3{
  max-width:24ch;
}
.trust-proof-premium-card.news-card .trust-proof-premium-media{
  aspect-ratio:4 / 3;
  background:
    linear-gradient(180deg,rgba(255,255,255,.86),rgba(246,251,250,.96));
}
.trust-proof-premium-card.news-card .trust-proof-premium-media img{
  object-position:center top;
  object-fit:cover;
  transform:scale(1.025);
  filter:saturate(.96) contrast(1.045) brightness(1.01);
}
.trust-proof-premium-card.news-card .trust-proof-premium-media::before{
  content:"";
  position:absolute;
  inset:0;
  border-radius:inherit;
  background:
    linear-gradient(180deg,rgba(255,255,255,.14),rgba(255,255,255,0) 18%),
    radial-gradient(120% 90% at 50% 0%,rgba(255,255,255,.09),transparent 52%),
    linear-gradient(135deg,rgba(39,225,193,.06),rgba(39,225,193,0) 45%);
  z-index:1;
  pointer-events:none;
}
.trust-proof-premium-card.news-card .trust-proof-premium-media::after{
  background:
    linear-gradient(180deg,rgba(7,22,21,.03),rgba(7,22,21,0) 30%),
    linear-gradient(0deg,rgba(7,22,21,.06),rgba(7,22,21,0) 22%);
}
.trust-proof-premium-card.news-card .trust-proof-premium-copy h3{
  max-width:22ch;
  letter-spacing:-.034em;
}
.trust-proof-premium-card.news-card .trust-proof-premium-copy p{
  max-width:38ch;
}
@media(max-width:640px){
  .trust-proof-premium-card.news-card .trust-proof-premium-media img{
    transform:scale(1.015);
  }
}

#productPage .product-section{
  position:relative;
  padding:118px 0;
}
#productPage .product-section.dark{
  background:#071615;
  color:#f2fbf8;
}
#productPage .product-section-tag{
  display:flex;
  align-items:center;
  gap:10px;
  margin:0 0 22px;
  color:var(--action);
  font:700 11px/1.2 "Geist Mono",monospace;
  letter-spacing:.13em;
  text-transform:uppercase;
}
#productPage .product-section-tag::before{
  content:"";
  width:6px;
  height:6px;
  border-radius:50%;
  background:currentColor;
  box-shadow:0 0 14px rgba(1,182,155,.18);
}
#productPage .product-section.dark .product-section-tag{color:var(--aqua)}
#productPage .product-section-head{
  display:grid;
  grid-template-columns:minmax(0,1.05fr) minmax(320px,.72fr);
  gap:64px;
  align-items:end;
  margin-bottom:56px;
}
#productPage .product-section-head h2,#productPage .product-section-copy h2{
  margin:0;
  max-width:760px;
  color:var(--ink);
  font:800 clamp(38px,4.1vw,64px)/.98 Manrope,sans-serif;
  letter-spacing:-.052em;
}
#productPage .product-section.dark .product-section-head h2,#productPage .product-section.dark .product-section-copy h2{color:#f2fbf8}
#productPage .product-section-head p,#productPage .product-section-copy>p{
  margin:0;
  color:#667873;
  font-size:16px;
  line-height:1.72;
}
#productPage .product-section.dark .product-section-head p,#productPage .product-section.dark .product-section-copy>p{color:rgba(236,249,245,.64)}

#productPage .engine-overview{background:linear-gradient(180deg,#f7fbfa 0%,#eef8f5 100%)}
#productPage .engine-stage{
  position:relative;
  overflow:hidden;
  min-height:540px;
  padding:42px;
  border:1px solid rgba(7,22,21,.08);
  border-radius:30px;
  background:
    radial-gradient(circle at 50% 48%,rgba(39,225,193,.12),transparent 29%),
    linear-gradient(145deg,#0b1d1b,#061311 74%);
  box-shadow:0 34px 80px -56px rgba(7,22,21,.44);
}
#productPage .engine-stage::before{
  content:"";
  position:absolute;
  inset:0;
  background-image:
    linear-gradient(rgba(255,255,255,.028) 1px,transparent 1px),
    linear-gradient(90deg,rgba(255,255,255,.028) 1px,transparent 1px);
  background-size:48px 48px;
  mask-image:linear-gradient(to bottom,rgba(0,0,0,.75),transparent 92%);
}
#productPage .engine-flow{
  position:relative;
  z-index:2;
  min-height:456px;
  display:grid;
  grid-template-columns:minmax(160px,.8fr) minmax(230px,1fr) minmax(180px,.9fr);
  gap:42px;
  align-items:center;
}
#productPage .engine-side{display:grid;gap:18px}
#productPage .engine-node{
  position:relative;
  min-height:82px;
  padding:17px 18px;
  border:1px solid rgba(255,255,255,.10);
  border-radius:16px;
  background:rgba(255,255,255,.045);
  backdrop-filter:blur(10px);
}
#productPage .engine-node small{
  display:block;
  margin-bottom:8px;
  color:rgba(235,249,245,.46);
  font:700 9px/1 "Geist Mono",monospace;
  letter-spacing:.12em;
}
#productPage .engine-node strong{
  display:flex;
  align-items:center;
  gap:10px;
  color:#f4fcfa;
  font-size:15px;
  line-height:1.25;
  font-weight:700;
}
#productPage .engine-node-icon{
  width:22px;
  height:22px;
  border-radius:7px;
  display:grid;
  place-items:center;
  flex:0 0 22px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.06);
  color:var(--aqua);
  box-shadow:inset 0 1px 0 rgba(255,255,255,.04);
}
#productPage .engine-node-icon svg{
  width:12px;
  height:12px;
  stroke:currentColor;
  fill:none;
  stroke-width:1.9;
  stroke-linecap:round;
  stroke-linejoin:round;
}
#productPage .engine-node.wallet .engine-node-icon{
  border-color:rgba(39,225,193,.22);
  background:rgba(39,225,193,.08);
}
#productPage .engine-node.data-node .engine-node-icon{
  color:#9fe7ff;
}
#productPage .engine-node.wallet{border-color:rgba(39,225,193,.19);background:rgba(39,225,193,.055)}
#productPage .engine-core{
  position:relative;
  min-height:286px;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-align:center;
}
#productPage .engine-core::before,#productPage .engine-core::after{
  content:"";
  position:absolute;
  border-radius:50%;
  border:1px solid rgba(39,225,193,.12);
}
#productPage .engine-core::before{width:270px;height:270px}
#productPage .engine-core::after{width:214px;height:214px;border-color:rgba(67,199,255,.11)}
#productPage .engine-acorn{
  position:relative;
  z-index:3;
  width:82px;
  height:94px;
  margin-bottom:20px;
}
#productPage .engine-acorn .cap{
  position:absolute;
  left:16px;
  top:0;
  width:55px;
  height:29px;
  border-radius:28px 28px 10px 10px;
  background:linear-gradient(135deg,var(--aqua),var(--teal));
}
#productPage .engine-acorn .body{
  position:absolute;
  left:9px;
  top:27px;
  width:67px;
  height:66px;
  border-radius:22px 22px 32px 32px;
  background:linear-gradient(145deg,#04b79c,#008e7b);
}
#productPage .engine-acorn .stem{
  position:absolute;
  left:43px;
  top:-9px;
  width:8px;
  height:17px;
  border-radius:8px;
  background:#8fead9;
  transform:rotate(18deg);
}
#productPage .engine-core span{
  position:relative;
  z-index:3;
  color:var(--aqua);
  font:700 10px/1.2 "Geist Mono",monospace;
  letter-spacing:.12em;
}
#productPage .engine-core strong{
  position:relative;
  z-index:3;
  display:block;
  margin-top:9px;
  color:#fff;
  font:760 22px/1.12 Manrope,sans-serif;
  letter-spacing:-.03em;
}
#productPage .engine-core p{
  position:relative;
  z-index:3;
  max-width:220px;
  margin:11px 0 0;
  color:rgba(234,249,245,.56);
  font-size:12px;
  line-height:1.55;
}
#productPage .engine-connector{
  position:absolute;
  top:50%;
  width:17%;
  height:1px;
  background:linear-gradient(90deg,transparent,rgba(39,225,193,.42),transparent);
}
#productPage .engine-connector.left{left:22%}
#productPage .engine-connector.right{right:22%}
#productPage .engine-connector::after{
  content:"";
  position:absolute;
  top:-3px;
  width:7px;
  height:7px;
  border-radius:50%;
  background:var(--aqua);
  box-shadow:0 0 16px rgba(39,225,193,.45);
  animation:enginePulse 2.8s linear infinite;
}
#productPage .engine-connector.left::after{left:0}
#productPage .engine-connector.right::after{right:0;animation-delay:1.4s}
@keyframes enginePulse{0%{opacity:0;transform:scale(.6)}35%{opacity:1}100%{opacity:0;transform:translateX(42px) scale(1)}}
#productPage .engine-stage-footer{
  position:absolute;
  left:42px;
  right:42px;
  bottom:28px;
  z-index:3;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:12px;
}
#productPage .engine-stage-footer span{
  min-height:32px;
  display:flex;
  align-items:flex-start;
  justify-content:center;
  padding-top:12px;
  border-top:1px solid rgba(255,255,255,.12);
  color:#ffffff;
  font:700 12px/1.25 "Geist Mono",monospace;
  letter-spacing:.095em;
  text-align:center;
}

#productPage .workflow-section{overflow:hidden}
#productPage .workflow-grid{
  display:grid;
  grid-template-columns:minmax(0,.78fr) minmax(540px,1.22fr);
  gap:76px;
  align-items:center;
}
#productPage .workflow-copy-list{
  display:grid;
  gap:0;
  margin-top:38px;
  border-top:1px solid rgba(255,255,255,.10);
}
#productPage .workflow-copy-list div{
  display:grid;
  grid-template-columns:130px 1fr;
  gap:24px;
  padding:18px 0;
  border-bottom:1px solid rgba(255,255,255,.10);
}
#productPage .workflow-copy-list strong{
  color:var(--aqua);
  font:700 10px/1.35 "Geist Mono",monospace;
  letter-spacing:.09em;
}
#productPage .workflow-copy-list span{
  color:rgba(237,250,246,.68);
  font-size:14px;
  line-height:1.52;
}
#productPage .workflow-console{
  position:relative;
  min-height:530px;
  padding:34px;
  border:1px solid rgba(255,255,255,.11);
  border-radius:28px;
  background:
    radial-gradient(circle at 72% 14%,rgba(67,199,255,.10),transparent 31%),
    rgba(255,255,255,.035);
  box-shadow:0 34px 80px -60px #000;
}
#productPage .workflow-console-top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding-bottom:22px;
  border-bottom:1px solid rgba(255,255,255,.10);
}
#productPage .workflow-console-top small{
  color:rgba(237,250,246,.42);
  font:700 9px/1 "Geist Mono",monospace;
  letter-spacing:.12em;
}
#productPage .workflow-status{
  display:flex;
  align-items:center;
  gap:7px;
  color:var(--aqua);
  font:700 9px/1 "Geist Mono",monospace;
  letter-spacing:.10em;
}
#productPage .workflow-status i{width:7px;height:7px;border-radius:50%;background:var(--aqua);box-shadow:0 0 14px rgba(39,225,193,.45)}
#productPage .workflow-record{
  display:grid;
  grid-template-columns:1fr auto;
  gap:16px;
  padding:28px 0 26px;
}
#productPage .workflow-record span{
  display:block;
  margin-bottom:6px;
  color:rgba(237,250,246,.45);
  font:700 9px/1 "Geist Mono",monospace;
  letter-spacing:.11em;
}
#productPage .workflow-record strong{color:#fff;font:780 26px/1 Manrope,sans-serif;letter-spacing:-.04em}
#productPage .workflow-record b{align-self:center;color:#fff;font:760 19px/1 Manrope,sans-serif}
#productPage .workflow-links{display:grid;gap:10px}
#productPage .workflow-link{
  display:grid;
  grid-template-columns:34px 1fr auto;
  gap:12px;
  align-items:center;
  min-height:67px;
  padding:0 15px;
  border:1px solid rgba(255,255,255,.08);
  border-radius:14px;
  background:rgba(255,255,255,.035);
}
#productPage .workflow-link i{
  width:30px;height:30px;border-radius:9px;display:grid;place-items:center;
  border:1px solid rgba(39,225,193,.14);background:rgba(39,225,193,.06);
  color:var(--aqua);font:700 9px/1 "Geist Mono",monospace;font-style:normal;
}
#productPage .workflow-link strong{display:block;color:#f5fcfa;font-size:13px}
#productPage .workflow-link small{display:block;margin-top:3px;color:rgba(237,250,246,.40);font-size:10px}
#productPage .workflow-link em{color:rgba(237,250,246,.46);font:700 8px/1 "Geist Mono",monospace;font-style:normal;letter-spacing:.08em}
#productPage .workflow-foot{
  margin-top:18px;
  padding-top:18px;
  border-top:1px solid rgba(255,255,255,.09);
  color:rgba(237,250,246,.46);
  font-size:11px;
  line-height:1.5;
}

#productPage .funds-section{
  overflow:hidden;
  background:
    radial-gradient(circle at 82% 12%,rgba(39,225,193,.075),transparent 28%),
    linear-gradient(180deg,#f8fcfb 0%,#eef8f5 100%);
}
#productPage .settlement-board{
  position:relative;
  display:grid;
  grid-template-columns:minmax(0,1.62fr) minmax(320px,.78fr);
  margin-top:58px;
  border:1px solid rgba(7,22,21,.08);
  border-radius:30px;
  background:rgba(255,255,255,.90);
  box-shadow:0 34px 86px -64px rgba(7,22,21,.38),inset 0 1px 0 rgba(255,255,255,.90);
  overflow:hidden;
}
#productPage .settlement-board::before{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  background-image:
    linear-gradient(rgba(7,22,21,.014) 1px,transparent 1px),
    linear-gradient(90deg,rgba(7,22,21,.014) 1px,transparent 1px);
  background-size:42px 42px;
  mask-image:linear-gradient(to right,#000 0%,rgba(0,0,0,.78) 62%,transparent 76%);
}
#productPage .settlement-flow{
  position:relative;
  z-index:2;
  min-width:0;
  padding:36px 40px 40px;
}
#productPage .settlement-flow-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
}
#productPage .settlement-flow-kicker{
  display:flex;
  align-items:center;
  gap:9px;
  color:#627770;
  font:700 10px/1.2 "Geist Mono",monospace;
  letter-spacing:.12em;
}
#productPage .settlement-flow-kicker::before{
  content:"";
  width:6px;
  height:6px;
  border-radius:50%;
  background:var(--teal);
  box-shadow:0 0 12px rgba(1,182,155,.24);
}
#productPage .settlement-flow-meta{
  color:#93a39e;
  font:700 9px/1 "Geist Mono",monospace;
  letter-spacing:.11em;
}
#productPage .settlement-path{
  position:relative;
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:30px;
  margin-top:40px;
}
#productPage .settlement-path::before{
  content:"";
  position:absolute;
  z-index:0;
  left:23px;
  right:23px;
  top:23px;
  height:1px;
  background:linear-gradient(90deg,rgba(1,182,155,.16),rgba(1,182,155,.48) 48%,rgba(67,199,255,.35));
}
#productPage .settlement-path::after{
  content:"";
  position:absolute;
  z-index:1;
  top:19px;
  left:23px;
  width:9px;
  height:9px;
  border-radius:50%;
  background:var(--aqua);
  box-shadow:0 0 0 5px rgba(39,225,193,.08),0 0 16px rgba(39,225,193,.34);
  animation:settlementSignal 4.6s cubic-bezier(.45,0,.2,1) infinite;
}
@keyframes settlementSignal{
  0%{left:23px;opacity:0;transform:scale(.75)}
  8%{opacity:1}
  88%{opacity:1}
  100%{left:calc(100% - 32px);opacity:0;transform:scale(1)}
}
#productPage .settlement-step{
  position:relative;
  z-index:2;
  min-width:0;
}
#productPage .settlement-step-icon{
  position:relative;
  width:46px;
  height:46px;
  display:grid;
  place-items:center;
  border-radius:14px;
  border:1px solid rgba(0,124,109,.12);
  background:linear-gradient(145deg,#ffffff,#edf9f6);
  color:#007c6d;
  box-shadow:0 12px 28px -22px rgba(0,124,109,.38),inset 0 1px 0 #fff;
}
#productPage .settlement-step-icon svg{
  width:19px;
  height:19px;
  fill:none;
  stroke:currentColor;
  stroke-width:1.65;
  stroke-linecap:round;
  stroke-linejoin:round;
}
#productPage .settlement-step small{
  display:block;
  margin-top:30px;
  color:#82948e;
  font:700 10px/1 "Geist Mono",monospace;
  letter-spacing:.10em;
}
#productPage .settlement-step h3{
  margin:10px 0 0;
  color:#10201d;
  font:760 20px/1.15 Manrope,sans-serif;
  letter-spacing:-.027em;
}
#productPage .settlement-step p{
  margin:10px 0 0;
  max-width:25ch;
  color:#657873;
  font-size:13.5px;
  line-height:1.58;
}
#productPage .merchant-control{
  position:relative;
  z-index:3;
  min-width:0;
  padding:38px 34px 34px;
  overflow:hidden;
  color:#f3fbf9;
  background:
    radial-gradient(circle at 76% 18%,rgba(67,199,255,.13),transparent 34%),
    radial-gradient(circle at 10% 92%,rgba(39,225,193,.10),transparent 34%),
    linear-gradient(150deg,#0b2622 0%,#071615 100%);
}
#productPage .merchant-control::after{
  content:"";
  position:absolute;
  right:-88px;
  bottom:-112px;
  width:240px;
  height:240px;
  border:1px solid rgba(39,225,193,.09);
  border-radius:50%;
  box-shadow:0 0 0 36px rgba(39,225,193,.018),0 0 0 72px rgba(67,199,255,.012);
  pointer-events:none;
}
#productPage .merchant-control-icon{
  position:relative;
  z-index:2;
  width:48px;
  height:48px;
  display:grid;
  place-items:center;
  border-radius:15px;
  border:1px solid rgba(39,225,193,.18);
  background:linear-gradient(145deg,rgba(39,225,193,.10),rgba(67,199,255,.055));
  color:var(--aqua);
  box-shadow:inset 0 1px 0 rgba(255,255,255,.08),0 18px 34px -26px rgba(39,225,193,.34);
}
#productPage .merchant-control-icon svg{
  width:22px;
  height:22px;
  fill:none;
  stroke:currentColor;
  stroke-width:1.6;
  stroke-linecap:round;
  stroke-linejoin:round;
}
#productPage .merchant-control-kicker{
  position:relative;
  z-index:2;
  display:block;
  margin-top:28px;
  color:var(--aqua);
  font:700 10px/1 "Geist Mono",monospace;
  letter-spacing:.12em;
}
#productPage .merchant-control h3{
  position:relative;
  z-index:2;
  margin:12px 0 0;
  max-width:10ch;
  color:#fff;
  font:780 30px/1.03 Manrope,sans-serif;
  letter-spacing:-.045em;
}
#productPage .merchant-control>p{
  position:relative;
  z-index:2;
  margin:15px 0 0;
  max-width:31ch;
  color:rgba(238,250,247,.62);
  font-size:13.5px;
  line-height:1.62;
}
#productPage .control-facts{
  position:relative;
  z-index:2;
  display:grid;
  margin-top:34px;
  border-top:1px solid rgba(255,255,255,.10);
}
#productPage .control-fact{
  display:grid;
  grid-template-columns:minmax(0,1fr) auto;
  gap:16px;
  align-items:center;
  min-height:62px;
  border-bottom:1px solid rgba(255,255,255,.09);
}
#productPage .control-fact span{
  color:rgba(237,250,246,.46);
  font:700 10px/1.3 "Geist Mono",monospace;
  letter-spacing:.09em;
}
#productPage .control-fact strong{
  color:#fff;
  font:740 15px/1.2 Manrope,sans-serif;
  text-align:right;
}
#productPage .control-fact:first-child strong{color:var(--aqua)}

@media (max-width:1100px){
  #productPage .settlement-board{grid-template-columns:1fr}
  #productPage .merchant-control{border-top:1px solid rgba(255,255,255,.05);padding:34px 38px}
  #productPage .merchant-control h3{max-width:none}
  #productPage .merchant-control>p{max-width:58ch}
  #productPage .control-facts{grid-template-columns:repeat(3,1fr);border-bottom:1px solid rgba(255,255,255,.08)}
  #productPage .control-fact{display:block;min-height:84px;padding:18px 16px;border-right:1px solid rgba(255,255,255,.08);border-bottom:0}
  #productPage .control-fact:first-child{padding-left:0}
  #productPage .control-fact:last-child{border-right:0;padding-right:0}
  #productPage .control-fact strong{display:block;margin-top:8px;text-align:left}
}
@media (max-width:760px){
  #productPage .settlement-board{margin-top:42px;border-radius:22px}
  #productPage .settlement-flow{padding:26px 22px 30px}
  #productPage .settlement-flow-meta{display:none}
  #productPage .settlement-path{display:grid;grid-template-columns:1fr;gap:25px;margin-top:28px;padding-left:0}
  #productPage .settlement-path::before{left:22px;right:auto;top:23px;bottom:23px;width:1px;height:auto;background:linear-gradient(180deg,rgba(1,182,155,.16),rgba(1,182,155,.48) 48%,rgba(67,199,255,.35))}
  #productPage .settlement-path::after{left:18px;top:23px;animation:settlementSignalMobile 4.6s cubic-bezier(.45,0,.2,1) infinite}
  @keyframes settlementSignalMobile{
    0%{top:23px;left:18px;opacity:0;transform:scale(.75)}
    8%{opacity:1}
    88%{opacity:1}
    100%{top:calc(100% - 31px);left:18px;opacity:0;transform:scale(1)}
  }
  #productPage .settlement-step{display:grid;grid-template-columns:46px minmax(0,1fr);column-gap:15px;align-items:start}
  #productPage .settlement-step-icon{grid-column:1;grid-row:1 / span 3}
  #productPage .settlement-step small{grid-column:2;margin-top:1px}
  #productPage .settlement-step h3{grid-column:2;margin-top:8px;font-size:18px}
  #productPage .settlement-step p{grid-column:2;margin-top:8px;max-width:none;font-size:13px}
  #productPage .merchant-control{padding:30px 24px 28px}
  #productPage .merchant-control-kicker{margin-top:24px}
  #productPage .merchant-control h3{font-size:28px}
  #productPage .control-facts{grid-template-columns:1fr;margin-top:28px;border-bottom:0}
  #productPage .control-fact,#productPage .control-fact:first-child,#productPage .control-fact:last-child{min-height:auto;padding:15px 0;border-right:0;border-bottom:1px solid rgba(255,255,255,.09)}
  #productPage .control-fact:last-child{border-bottom:0}
}

#productPage .coverage-board{
  display:grid;
  grid-template-columns:1.1fr .9fr .9fr;
  margin-top:58px;
  border:1px solid rgba(255,255,255,.10);
  border-radius:28px;
  overflow:hidden;
  background:rgba(255,255,255,.025);
}
#productPage .coverage-zone{
  min-height:390px;
  padding:34px;
  border-right:1px solid rgba(255,255,255,.09);
}
#productPage .coverage-zone:last-child{border-right:0}
#productPage .coverage-section .product-section-head{grid-template-columns:1fr;gap:0;max-width:760px}
#productPage .coverage-accent-number{
  display:inline-block;
  background:linear-gradient(90deg,#ffffff 0%,#d9f3ff 52%,var(--cyan) 100%);
  -webkit-background-clip:text;
  background-clip:text;
  -webkit-text-fill-color:transparent;
  color:transparent;
  font:inherit;
  letter-spacing:inherit;
  line-height:inherit;
  text-shadow:0 0 18px rgba(39,225,193,.12);
}
#productPage .coverage-inline-number{
  display:inline-block;
  background:linear-gradient(90deg,#ffffff 0%,#d9f3ff 52%,var(--cyan) 100%);
  -webkit-background-clip:text;
  background-clip:text;
  -webkit-text-fill-color:transparent;
  color:transparent;
  font:inherit;
  letter-spacing:inherit;
  line-height:inherit;
}
#productPage .coverage-zone>span{display:block;color:var(--aqua);font:700 11px/1 "Geist Mono",monospace;letter-spacing:.12em}
#productPage .coverage-zone h3{margin:12px 0 0;color:#fff;font:760 23px/1.15 Manrope,sans-serif;letter-spacing:-.03em}
#productPage .coverage-zone p{margin:14px 0 0;color:rgba(237,250,246,.60);font-size:15px;line-height:1.65}
#productPage .coverage-chips{display:flex;flex-wrap:wrap;gap:9px;margin-top:28px}
#productPage .coverage-chips span{
  padding:9px 11px;border:1px solid rgba(255,255,255,.10);border-radius:999px;background:rgba(255,255,255,.035);
  color:rgba(245,253,250,.74);font:700 9px/1 "Geist Mono",monospace;letter-spacing:.06em;
}
#productPage .coverage-metric{margin-top:36px;padding-top:24px;border-top:1px solid rgba(255,255,255,.09)}
#productPage .coverage-metric strong{display:block;color:#fff;font:800 clamp(34px,4vw,54px)/.95 Manrope,sans-serif;letter-spacing:-.05em}
#productPage .coverage-metric>span{display:block;margin-top:8px;color:rgba(237,250,246,.56);font:700 10.5px/1.3 "Geist Mono",monospace;letter-spacing:.10em}
#productPage .coverage-stack{display:grid;gap:12px;margin-top:28px}
#productPage .coverage-stack div{padding:16px 0;border-top:1px solid rgba(255,255,255,.08)}
#productPage .coverage-stack strong{display:block;color:#f5fcfa;font-size:15px}
#productPage .coverage-stack div>span{display:block;margin-top:6px;color:rgba(237,250,246,.60);font-size:13px;line-height:1.55}

#productPage .product-final-cta .wrap{position:relative;z-index:2}
#productPage .product-final-cta h2{max-width:820px;margin-bottom:25px}
#productPage .product-final-cta .cta-copy{max-width:650px;margin:0 0 34px;color:rgba(255,255,255,.68);font-size:16px;line-height:1.72}
#productPage .product-final-cta .cta-actions{display:flex;align-items:center;gap:24px}
#productPage .product-final-cta .cta-doc-link{position:relative;color:#fff;font-weight:700;font-size:14px}
#productPage .product-final-cta .cta-doc-link::after{content:"";position:absolute;left:0;right:0;bottom:-5px;height:1px;background:rgba(255,255,255,.40);transform-origin:left;transition:transform .3s var(--ease),background .3s ease}
#productPage .product-final-cta .cta-doc-link:hover::after{transform:scaleX(.55);background:var(--aqua)}

#productPage .highlights-section{
  overflow:hidden;
  background:
    radial-gradient(circle at 82% 6%,rgba(39,225,193,.075),transparent 28%),
    linear-gradient(180deg,#ffffff 0%,#f7fbfa 100%);
}
#productPage .stack-section-label{margin:0 0 12px}
#productPage .stack-section-title{margin:0 0 30px;color:#071714;font:800 clamp(42px,5vw,64px)/.98 Manrope,sans-serif;letter-spacing:-.055em;max-width:720px}
#productPage .highlights-board{
  position:relative;
  width:fit-content;
  max-width:100%;
  margin:0 auto;
  padding:34px 62px 38px;
  border:1px solid rgba(7,22,21,.10);
  border-radius:26px;
  background:linear-gradient(180deg,rgba(255,255,255,.96),rgba(246,252,250,.92));
  box-shadow:0 34px 78px -58px rgba(7,22,21,.32),0 10px 32px -28px rgba(0,124,109,.18),inset 0 1px 0 rgba(255,255,255,.96);
  overflow:hidden;
}
#productPage .highlights-board::before{
  content:"";
  position:absolute;
  inset:0;
  background-image:
    linear-gradient(rgba(7,22,21,.017) 1px,transparent 1px),
    linear-gradient(90deg,rgba(7,22,21,.017) 1px,transparent 1px);
  background-size:42px 42px;
  mask-image:linear-gradient(to bottom,rgba(0,0,0,.5),transparent 92%);
  pointer-events:none;
}
#productPage .highlights-board::after{
  content:"";
  position:absolute;
  right:-110px;
  top:-86px;
  width:360px;
  height:240px;
  background:radial-gradient(circle,rgba(39,225,193,.10),transparent 68%);
  pointer-events:none;
}
#productPage .highlights-grid{
  --node-w:228px;
  --node-h:74px;
  --col-gap:108px;
  --row-one:142px;
  --row-gap:30px;
  position:relative;
  z-index:2;
  display:grid;
  grid-template-columns:repeat(3,var(--node-w));
  grid-template-rows:var(--row-one) auto;
  grid-template-areas:"sdk auto personal" ". defi pay";
  justify-content:center;
  column-gap:var(--col-gap);
  row-gap:var(--row-gap);
  width:calc(var(--node-w) * 3 + var(--col-gap) * 2);
  max-width:100%;
  margin:0 auto;
}
#productPage .highlight-product.sdk{grid-area:sdk}
#productPage .highlight-product.auto{grid-area:auto}
#productPage .highlight-product.personal{grid-area:personal}
#productPage .highlight-product.defi{grid-area:defi}
#productPage .highlight-product.pay{grid-area:pay}
#productPage .highlight-product{position:relative;min-width:0;z-index:2}
#productPage .highlight-tile{
  position:relative;
  z-index:3;
  height:var(--node-h);
  display:flex;
  align-items:center;
  gap:11px;
  padding:12px 14px;
  border:1px solid rgba(0,124,109,.16);
  border-radius:15px;
  background:linear-gradient(135deg,#f2fcf9 0%,#e4f8f2 100%);
  box-shadow:0 16px 30px -25px rgba(0,124,109,.32),inset 0 1px 0 rgba(255,255,255,.94);
  transition:transform .32s var(--ease),border-color .32s ease,box-shadow .32s ease;
}
#productPage .highlight-product:hover .highlight-tile{
  transform:translateY(-2px);
  border-color:rgba(0,156,137,.20);
  box-shadow:0 18px 32px -28px rgba(0,124,109,.40),inset 0 1px 0 rgba(255,255,255,.84);
}
#productPage .highlight-icon{
  width:32px;height:32px;flex:0 0 32px;
  display:grid;place-items:center;
  border-radius:10px;
  border:1px solid rgba(0,124,109,.09);
  background:rgba(255,255,255,.68);
  color:#007c6d;
  box-shadow:inset 0 1px 0 rgba(255,255,255,.78);
}
#productPage .highlight-icon svg{width:16px;height:16px;display:block}
#productPage .highlight-tile strong{
  color:#10201d;
  font:755 18px/1 Manrope,sans-serif;
  letter-spacing:-.028em;
}
#productPage .highlight-copy{padding:11px 4px 0}
#productPage .highlight-copy h3{margin:0;color:#13231f;font:730 14.5px/1.24 Manrope,sans-serif;letter-spacing:-.012em}
#productPage .highlight-copy p{margin:7px 0 0;max-width:228px;color:#536963;font-size:13px;line-height:1.62}
#productPage .deck-em{color:#007c6d;font-weight:750}

#productPage .stack-bus{
  position:absolute;
  z-index:1;
  pointer-events:none;
  border-radius:999px;
}
#productPage .stack-bus.h{
  height:1px;
  background:linear-gradient(90deg,rgba(0,144,126,.18),rgba(0,156,137,.46),rgba(0,144,126,.18));
}
#productPage .stack-bus.v{
  width:1px;
  background:linear-gradient(180deg,rgba(0,144,126,.18),rgba(0,156,137,.44),rgba(0,144,126,.20));
}
#productPage .stack-bus.sdk-auto,#productPage .stack-bus.auto-personal{
  top:calc(var(--node-h) / 2);
  width:var(--col-gap);
}
#productPage .stack-bus.sdk-auto{left:var(--node-w)}
#productPage .stack-bus.auto-personal{left:calc(var(--node-w) * 2 + var(--col-gap))}
#productPage .stack-bus.sdk-defi-spine{
  top:calc(var(--node-h) / 2);
  left:calc(var(--node-w) + var(--col-gap) / 2);
  height:calc(var(--row-one) + var(--row-gap));
}
#productPage .stack-bus.sdk-defi-branch{
  top:calc(var(--row-one) + var(--row-gap) + var(--node-h) / 2);
  left:calc(var(--node-w) + var(--col-gap) / 2);
  width:calc(var(--col-gap) / 2);
}
#productPage .stack-bus.personal-pay-spine{
  top:calc(var(--node-h) / 2);
  left:calc(var(--node-w) * 2 + var(--col-gap) * 1.5);
  height:calc(var(--row-one) + var(--row-gap));
}
#productPage .stack-bus.personal-pay-branch{
  top:calc(var(--row-one) + var(--row-gap) + var(--node-h) / 2);
  left:calc(var(--node-w) * 2 + var(--col-gap) * 1.5);
  width:calc(var(--col-gap) / 2);
}
#productPage .stack-bus.defi-personal-branch{
  top:calc(var(--row-one) + var(--row-gap) + var(--node-h) / 2);
  left:calc(var(--node-w) * 2 + var(--col-gap));
  width:calc(var(--col-gap) / 2);
}
#productPage .stack-bus.v::before,#productPage .stack-bus.v::after{
  content:"";
  position:absolute;
  left:50%;
  width:6px;
  height:6px;
  border-radius:50%;
  background:#23b7a2;
  transform:translate(-50%,-50%);
  box-shadow:0 0 0 4px rgba(35,183,162,.07);
}
#productPage .stack-bus.v::before{top:0}
#productPage .stack-bus.v::after{top:100%}

@media (max-width:1100px){
  #productPage .highlights-board{width:100%;padding:28px 42px 30px}
  #productPage .highlights-grid{
    width:100%;
    display:grid;
    grid-template-columns:1fr 1fr;
    grid-template-rows:auto;
    grid-template-areas:"sdk auto" "defi personal" "pay pay";
    column-gap:24px;
    row-gap:30px;
  }
  #productPage .stack-bus{display:none}
  #productPage .highlight-tile{height:72px}
  #productPage .highlight-copy p{max-width:340px}
}
@media (max-width:760px){
  #productPage .stack-section-label{margin-bottom:10px}
  #productPage .stack-section-title{margin-bottom:24px;font-size:40px;line-height:1}
  #productPage .highlights-board{width:100%;padding:22px 24px 26px;border-radius:22px}
  #productPage .highlights-grid{display:grid;grid-template-columns:1fr;grid-template-areas:"sdk" "auto" "defi" "personal" "pay";gap:24px}
  #productPage .highlight-tile{height:68px;padding:12px 13px;border-radius:14px}
  #productPage .highlight-icon{width:34px;height:34px;flex-basis:34px;border-radius:10px}
  #productPage .highlight-icon svg{width:18px;height:18px}
  #productPage .highlight-tile strong{font-size:20px}
  #productPage .highlight-copy{padding:10px 4px 0}
  #productPage .highlight-copy h3{font-size:13px}
  #productPage .highlight-copy p{font-size:13px;line-height:1.6}
}

#productPage .engine-acorn-logo{
  position:relative;
  z-index:3;
  width:82px;
  height:82px;
  margin-bottom:18px;
  object-fit:contain;
  filter:drop-shadow(0 16px 24px rgba(1,182,155,.18));
}
#productPage .engine-node.data-node{min-height:76px}
#productPage .engine-node.data-node strong{font-size:15px;color:#f4fcfa}

#productPage .coverage-board.coverage-v2{
  grid-template-columns:1.12fr .88fr .88fr;
  background:
    radial-gradient(circle at 12% 6%,rgba(39,225,193,.08),transparent 33%),
    rgba(255,255,255,.024);
}
#productPage .coverage-v2 .coverage-zone{position:relative;overflow:hidden}
#productPage .coverage-v2 .coverage-zone::after{
  content:"";
  position:absolute;
  width:190px;
  height:190px;
  right:-90px;
  bottom:-105px;
  border:1px solid rgba(39,225,193,.08);
  border-radius:50%;
}
#productPage .coverage-token-cloud{
  position:relative;
  min-height:168px;
  margin-top:26px;
  border:1px solid rgba(255,255,255,.08);
  border-radius:20px;
  background:rgba(255,255,255,.025);
  overflow:hidden;
}
#productPage .coverage-token-cloud::before,#productPage .coverage-token-cloud::after{
  content:"";
  position:absolute;
  border-radius:50%;
  border:1px solid rgba(39,225,193,.10);
}
#productPage .coverage-token-cloud::before{width:230px;height:230px;left:-28px;top:-45px}
#productPage .coverage-token-cloud::after{width:150px;height:150px;left:13px;top:-5px;border-color:rgba(67,199,255,.08)}
#productPage .token-icon{
  position:absolute;
  z-index:2;
  width:40px;
  height:40px;
  display:grid;
  place-items:center;
  border-radius:50%;
  box-shadow:0 16px 28px -18px rgba(0,0,0,.48);
  font:800 17px/1 Manrope,sans-serif;
}
#productPage .token-icon.btc{left:26px;top:35px;background:#f7931a;color:#fff}
#productPage .token-icon.eth{left:92px;top:20px;background:#eef0f4;color:#343434}
#productPage .token-icon.usdt{left:151px;top:49px;background:#26a17b;color:#fff;font-size:16px}
#productPage .token-icon.usdc{left:78px;top:94px;background:#2775ca;color:#fff}
#productPage .token-icon.trx{left:18px;top:103px;background:#ef3a43;color:#fff}
#productPage .token-icon.sol{left:144px;top:108px;background:#0b0e0f;color:#fff}
#productPage .token-icon svg{width:21px;height:21px;display:block}
#productPage .token-icon.eth svg{width:19px;height:25px}
#productPage .token-icon.trx svg{width:22px;height:22px}
#productPage .token-icon.sol svg{width:23px;height:16px}
#productPage .wallet-coverage-metric{
  position:absolute;
  right:19px;
  top:22px;
  width:124px;
  min-height:116px;
  z-index:3;
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
  padding:16px;
  border:1px solid rgba(39,225,193,.15);
  border-radius:17px;
  background:linear-gradient(145deg,rgba(39,225,193,.08),rgba(67,199,255,.04));
  backdrop-filter:blur(7px);
}
#productPage .wallet-coverage-metric strong{
  display:block;
  color:#fff;
  font:800 31px/1 Manrope,sans-serif;
  letter-spacing:-.05em;
}
#productPage .wallet-coverage-metric>span{
  display:block;
  margin-top:6px;
  color:var(--aqua);
  font:700 9.5px/1.3 "Geist Mono",monospace;
  letter-spacing:.11em;
}
#productPage .coverage-support-line{
  display:flex;
  flex-wrap:wrap;
  gap:7px;
  margin-top:13px;
}
#productPage .coverage-support-line span{
  padding:8px 10px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.08);
  color:rgba(244,252,249,.68);
  font:650 10.5px/1 "Geist Mono",monospace;
  letter-spacing:.06em;
}
#productPage .coverage-zone-icon{
  width:46px;
  height:46px;
  display:grid;
  place-items:center;
  margin:26px 0 18px;
  border-radius:15px;
  border:1px solid rgba(39,225,193,.14);
  background:rgba(39,225,193,.055);
  color:var(--aqua);
}
#productPage .coverage-zone-icon svg{width:24px;height:24px;display:block}
#productPage .coverage-v2 .coverage-metric{margin-top:22px}
#productPage .coverage-v2 .coverage-stack{margin-top:22px}

@media (max-width:1100px){
  #productPage .coverage-board.coverage-v2{grid-template-columns:1fr 1fr}
  #productPage .coverage-v2 .coverage-zone:first-child{grid-column:1/-1}
}
@media (max-width:760px){
  #productPage .engine-acorn-logo{width:72px;height:72px}
  #productPage .coverage-board.coverage-v2{grid-template-columns:1fr}
  #productPage .coverage-v2 .coverage-zone:first-child{grid-column:auto}
  #productPage .coverage-token-cloud{min-height:190px}
  #productPage .wallet-coverage-metric{right:14px;top:30px;width:116px}
}

@media (max-width:1100px){
  #productPage .product-section{padding:100px 0}
  #productPage .product-section-head{grid-template-columns:1fr;gap:22px}
  #productPage .engine-flow{grid-template-columns:1fr 1fr;gap:22px}
  #productPage .engine-core{grid-column:1/-1;grid-row:1;min-height:230px}
  #productPage .engine-side.left{grid-column:1;grid-row:2}#productPage .engine-side.right{grid-column:2;grid-row:2}
  #productPage .engine-connector{display:none}
  #productPage .engine-stage{min-height:700px}
  #productPage .workflow-grid{grid-template-columns:1fr;gap:48px}
  #productPage .workflow-console{max-width:760px}
  #productPage .coverage-board{grid-template-columns:1fr 1fr}
  #productPage .coverage-zone:first-child{grid-column:1/-1;border-right:0;border-bottom:1px solid rgba(255,255,255,.09);min-height:300px}
}
@media (max-width:760px){
  #productPage .product-section{padding:82px 0}
  #productPage .product-section-head h2,#productPage .product-section-copy h2{font-size:clamp(34px,10vw,46px)}
  #productPage .product-section-head p,#productPage .product-section-copy>p{font-size:14px}
  #productPage .engine-stage{padding:24px 18px 96px;border-radius:22px;min-height:auto}
  #productPage .engine-flow{display:block;min-height:auto}
  #productPage .engine-core{min-height:245px}
  #productPage .engine-side{gap:10px}#productPage .engine-side.right{margin-top:10px}
  #productPage .engine-node{min-height:68px;padding:13px 14px}
  #productPage .engine-stage-footer{left:18px;right:18px;bottom:22px;gap:6px}
  #productPage .engine-stage-footer span{font-size:11px;line-height:1.25}
  #productPage .workflow-copy-list div{grid-template-columns:1fr;gap:8px}
  #productPage .workflow-console{min-height:auto;padding:22px;border-radius:22px}
  #productPage .workflow-record strong{font-size:21px}
  #productPage .workflow-link{grid-template-columns:32px 1fr}#productPage .workflow-link em{display:none}
  #productPage .funds-rail{grid-template-columns:1fr;border-radius:22px}
  #productPage .funds-rail::before{display:none}
  #productPage .fund-node{min-height:auto;border-right:0;border-bottom:1px solid rgba(7,22,21,.07);padding:25px 22px}
  #productPage .fund-node:last-child{border-bottom:0}
  #productPage .fund-node .dot{margin:0 0 18px}
  #productPage .funds-facts{grid-template-columns:1fr}
  #productPage .funds-fact{border-right:0;border-bottom:1px solid rgba(7,22,21,.08)}
  #productPage .funds-fact:last-child{border-bottom:0}
  #productPage .coverage-board,#productPage .coverage-board.coverage-v2{grid-template-columns:1fr;border-radius:22px}
  #productPage .coverage-zone,#productPage .coverage-zone:first-child{grid-column:auto;min-height:auto;border-right:0;border-bottom:1px solid rgba(255,255,255,.09);padding:26px 22px}
  #productPage .coverage-zone:last-child{border-bottom:0}
}
@media (prefers-reduced-motion:reduce){
  #productPage .engine-connector::after{animation:none!important}
}

#productPage 

.home-sales-diff{
  position:relative;
  overflow:hidden;
  background:
    radial-gradient(circle at 88% 8%,rgba(67,199,255,.09),transparent 28%),
    radial-gradient(circle at 8% 88%,rgba(39,225,193,.08),transparent 30%),
    linear-gradient(180deg,#ffffff 0%,#f5faf9 100%);
}
.home-sales-diff .section-head{margin-bottom:52px}
.sales-architecture{
  position:relative;
  padding:28px;
  border:1px solid rgba(7,22,21,.08);
  border-radius:28px;
  background:rgba(255,255,255,.82);
  box-shadow:0 34px 90px -72px rgba(7,22,21,.38),inset 0 1px 0 rgba(255,255,255,.95);
  overflow:hidden;
}
.sales-architecture::before{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  background-image:linear-gradient(rgba(7,22,21,.018) 1px,transparent 1px),linear-gradient(90deg,rgba(7,22,21,.018) 1px,transparent 1px);
  background-size:38px 38px;
  mask-image:linear-gradient(to bottom,#000,transparent 88%);
}
.sales-architecture-topline{
  position:relative;
  z-index:2;
  display:flex;
  align-items:center;
  gap:12px;
  margin-bottom:22px;
  color:#7a8d87;
  font:700 9px/1 "Geist Mono",monospace;
  letter-spacing:.12em;
}
.sales-architecture-topline i{display:block;width:30px;height:1px;background:linear-gradient(90deg,rgba(1,182,155,.25),rgba(67,199,255,.55))}
.sales-models{position:relative;z-index:2;display:grid;grid-template-columns:.88fr 1.12fr;gap:18px}
.sales-model{
  min-width:0;
  padding:24px;
  border:1px solid rgba(7,22,21,.075);
  border-radius:22px;
  background:rgba(248,251,250,.86);
}
.sales-model.hashnut-model{
  border-color:rgba(1,182,155,.20);
  background:
    radial-gradient(circle at 84% 18%,rgba(67,199,255,.09),transparent 30%),
    linear-gradient(145deg,rgba(236,251,247,.95),rgba(248,253,252,.94));
  box-shadow:0 24px 52px -46px rgba(0,124,109,.42);
}
.sales-model-kicker{color:#7c8d88;font:700 9px/1.2 "Geist Mono",monospace;letter-spacing:.11em}
.hashnut-model .sales-model-kicker{color:#007c6d}.hashnut-model .sales-model-kicker span{color:#10201d}
.sales-flow{display:grid;grid-template-columns:minmax(0,1fr) auto minmax(0,1.18fr) auto minmax(0,1fr);gap:10px;align-items:stretch;margin-top:20px}
.sales-node{
  min-width:0;
  min-height:116px;
  padding:14px 12px;
  display:flex;
  flex-direction:column;
  justify-content:center;
  border:1px solid rgba(7,22,21,.075);
  border-radius:15px;
  background:rgba(255,255,255,.76);
}
.sales-node.platform{background:rgba(231,237,235,.82);border-color:rgba(7,22,21,.09)}
.sales-node.mpc{border-color:rgba(1,182,155,.18);background:rgba(39,225,193,.055)}
.sales-node.merchant-control{border-color:rgba(67,199,255,.18);background:linear-gradient(145deg,rgba(39,225,193,.07),rgba(67,199,255,.055))}
.sales-node-icon{width:30px;height:30px;display:grid;place-items:center;margin-bottom:12px;border-radius:9px;border:1px solid rgba(7,22,21,.08);background:#fff;color:#556761}
.hashnut-model .sales-node-icon{color:#007c6d;border-color:rgba(1,182,155,.14);background:rgba(255,255,255,.86)}
.sales-node-icon svg{width:17px;height:17px;fill:none;stroke:currentColor;stroke-width:1.6;stroke-linecap:round;stroke-linejoin:round}
.sales-node small{display:block;color:#899a95;font:700 8px/1.2 "Geist Mono",monospace;letter-spacing:.1em}
.sales-node strong{display:block;margin-top:7px;color:#182722;font:730 13px/1.25 Manrope,sans-serif;letter-spacing:-.015em}
.hashnut-model .sales-node strong{color:#0c211d}
.sales-arrow{align-self:center;color:#a6b3af;font:600 18px/1 Manrope,sans-serif}.sales-arrow.active{color:#01a98f}
.sales-model>p{margin:18px 0 0;color:#6b7e78;font-size:12.5px;line-height:1.55}.hashnut-model>p{color:#4e6861}
.sales-benefit-grid{
  position:relative;
  display:grid;
  grid-template-columns:repeat(6,minmax(0,1fr));
  gap:10px;
  margin-top:18px;
}
.sales-benefit-grid article{
  position:relative;
  min-width:0;
  min-height:132px;
  padding:18px 18px 17px;
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
  overflow:hidden;
  border:1px solid rgba(7,22,21,.075);
  border-radius:18px;
  background:
    linear-gradient(145deg,rgba(255,255,255,.94),rgba(247,252,250,.84));
  box-shadow:
    0 20px 42px -38px rgba(7,22,21,.38),
    inset 0 1px 0 rgba(255,255,255,.96);
  transition:
    transform .28s cubic-bezier(.22,1,.36,1),
    border-color .28s ease,
    box-shadow .28s ease;
}
.sales-benefit-grid article::before{
  content:"";
  position:absolute;
  left:18px;
  right:18px;
  top:0;
  height:1px;
  background:linear-gradient(90deg,rgba(1,182,155,.62),rgba(67,199,255,.22),transparent 88%);
  opacity:.58;
}
.sales-benefit-grid article::after{
  content:"";
  position:absolute;
  width:92px;
  height:92px;
  right:-34px;
  top:-42px;
  border-radius:50%;
  background:radial-gradient(circle,rgba(39,225,193,.11),transparent 68%);
  pointer-events:none;
}
.sales-benefit-grid article:hover{
  transform:translateY(-3px);
  border-color:rgba(1,182,155,.18);
  box-shadow:0 28px 56px -42px rgba(0,124,109,.42);
}
.sales-benefit-grid article>small{
  position:absolute;
  top:16px;
  left:18px;
  color:#879791;
  font:750 8px/1.1 "Geist Mono",monospace;
  letter-spacing:.14em;
}
.sales-benefit-grid strong{
  position:relative;
  z-index:1;
  color:#0d211d;
  font:800 clamp(25px,2.35vw,36px)/.92 Manrope,sans-serif;
  letter-spacing:-.06em;
  white-space:nowrap;
}
.sales-benefit-grid strong em{
  font:750 11px/1 Manrope,sans-serif;
  letter-spacing:.02em;
  color:#008f7c;
  font-style:normal;
}
.sales-benefit-grid span{
  position:relative;
  z-index:1;
  margin-top:11px;
  color:#647770;
  font:700 9.5px/1.3 "Geist Mono",monospace;
  letter-spacing:.065em;
  text-transform:uppercase;
}

.sales-benefit-grid .benefit-settlement,
.sales-benefit-grid .benefit-cycle{
  border-color:rgba(1,182,155,.12);
  background:
    radial-gradient(circle at 90% 12%,rgba(39,225,193,.09),transparent 38%),
    linear-gradient(145deg,rgba(255,255,255,.96),rgba(241,251,248,.86));
}

.sales-benefit-grid .benefit-integration strong,
.sales-benefit-grid .benefit-operation strong,
.sales-benefit-grid .benefit-settlement strong,
.sales-benefit-grid .benefit-cycle strong,
.sales-benefit-grid .benefit-fee strong,
.sales-benefit-grid .benefit-reach strong{
  background:linear-gradient(90deg,#0c211d 0%,#007c6d 54%,#43c7ff 118%);
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}
.sales-benefit-grid .benefit-fee{
  border-color:rgba(1,182,155,.13);
  background:
    radial-gradient(circle at 90% 12%,rgba(39,225,193,.11),transparent 38%),
    linear-gradient(145deg,rgba(255,255,255,.96),rgba(238,250,247,.86));
}
.sales-benefit-grid .benefit-reach{
  border-color:rgba(67,199,255,.12);
  background:
    radial-gradient(circle at 88% 10%,rgba(67,199,255,.11),transparent 40%),
    linear-gradient(145deg,rgba(255,255,255,.96),rgba(241,249,251,.88));
}

.sales-support-line{display:flex;align-items:center;justify-content:center;gap:14px;margin-top:22px;color:#70837d;font:700 9px/1.2 "Geist Mono",monospace;letter-spacing:.09em;text-align:center}
.sales-support-line i{width:3px;height:3px;border-radius:50%;background:#27e1c1;box-shadow:0 0 9px rgba(39,225,193,.42)}
@media(max-width:1100px){
  .sales-models{grid-template-columns:1fr}
  .sales-benefit-grid{grid-template-columns:repeat(3,minmax(0,1fr))}
}
@media(max-width:760px){
  .home-sales-diff .section-head{margin-bottom:34px}
  .sales-architecture{padding:18px;border-radius:22px}
  .sales-model{padding:18px;border-radius:18px}
  .sales-flow{grid-template-columns:1fr;gap:8px}
  .sales-arrow{transform:rotate(90deg);justify-self:center}
  .sales-node{min-height:auto;padding:14px}
  .sales-benefit-grid{grid-template-columns:1fr 1fr;gap:8px}
  .sales-benefit-grid article{min-height:108px;padding:15px 14px 14px;border-radius:15px}
  .sales-benefit-grid article>small{top:13px;left:14px}
  .sales-benefit-grid strong{font-size:27px}
  .sales-support-line{flex-wrap:wrap;gap:9px 12px;font-size:8px}
  .sales-support-line i{display:none}
}
@media(max-width:430px){
  .sales-benefit-grid{grid-template-columns:1fr}
}

.home-sales-diff .why-hashnut-head h2{
  max-width:1060px;
  margin-bottom:0;
  font:800 clamp(36px,4.1vw,60px)/.98 Manrope,sans-serif;
  letter-spacing:-.048em;
}
.home-sales-diff .why-hashnut-head h2 span{
  display:inline;
  color:#008f7c;
  font:inherit;
  letter-spacing:inherit;
}
.home-sales-diff .sales-core-line{max-width:520px}
@media(max-width:1120px){
  .home-sales-diff .why-hashnut-head h2{max-width:900px}
}

@media(min-width:1101px){
  .home-sales-diff .sales-models{
    grid-template-columns:.70fr 1.30fr;
    gap:22px;
    align-items:stretch;
  }
  .home-sales-diff .sales-model.conventional{
    align-self:center;
    padding:20px;
    border-radius:19px;
    background:rgba(246,249,248,.70);
    border-color:rgba(7,22,21,.060);
    box-shadow:none;
  }
  .home-sales-diff .sales-model.conventional .sales-node{
    min-height:104px;
    padding:12px 10px;
  }
  .home-sales-diff .sales-model.conventional .sales-node-icon{
    width:27px;
    height:27px;
    margin-bottom:10px;
  }
  .home-sales-diff .sales-model.conventional .sales-node strong{
    font-size:12px;
  }
  .home-sales-diff .sales-model.conventional > p{
    margin-top:15px;
    font-size:11.5px;
  }

  .home-sales-diff .sales-model.hashnut-model{
    padding:30px;
    border-radius:24px;
  }
}

.home-sales-diff .sales-model.hashnut-model{
  position:relative;
  overflow:hidden;
  border-color:rgba(39,225,193,.42);
  background:
    radial-gradient(circle at 86% 16%,rgba(67,199,255,.22),transparent 34%),
    radial-gradient(circle at 72% 72%,rgba(39,225,193,.18),transparent 38%),
    linear-gradient(135deg,#ffffff 0%,#f8fffd 28%,#e8fbf7 62%,#dff6fb 100%);
  box-shadow:
    0 30px 64px -46px rgba(0,124,109,.68),
    inset 0 1px 0 rgba(255,255,255,.98);
}
.home-sales-diff .sales-model.hashnut-model::before{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  border-radius:inherit;
  background:
    linear-gradient(120deg,rgba(39,225,193,.09),transparent 34%,rgba(67,199,255,.07) 78%,transparent),
    linear-gradient(rgba(1,182,155,.025) 1px,transparent 1px),
    linear-gradient(90deg,rgba(1,182,155,.025) 1px,transparent 1px);
  background-size:auto,32px 32px,32px 32px;
  mask-image:linear-gradient(to bottom,#000,rgba(0,0,0,.55) 72%,transparent 100%);
}
.home-sales-diff .sales-model.hashnut-model > *{
  position:relative;
  z-index:1;
}
.home-sales-diff .hashnut-model .sales-model-kicker{
  color:#006f62;
  font:800 12px/1.2 "Geist Mono",monospace;
  letter-spacing:.13em;
}
.home-sales-diff .hashnut-model .sales-model-kicker span{
  color:#071615;
  font-weight:850;
}
.home-sales-diff .sales-model.conventional .sales-model-kicker{
  color:#8b9995;
  font-size:8px;
}
.home-sales-diff .hashnut-model .sales-node{
  border-color:rgba(1,182,155,.16);
  background:rgba(255,255,255,.83);
}
.home-sales-diff .hashnut-model .sales-node.mpc{
  border-color:rgba(1,182,155,.34);
  background:rgba(39,225,193,.095);
}
.home-sales-diff .hashnut-model .sales-node.merchant-control{
  border-color:rgba(67,199,255,.34);
  background:linear-gradient(145deg,rgba(39,225,193,.12),rgba(67,199,255,.10));
  box-shadow:0 16px 34px -28px rgba(0,124,109,.55);
}
.home-sales-diff .hashnut-model .sales-arrow.active{
  color:#009d88;
  text-shadow:0 0 16px rgba(39,225,193,.24);
}
@media(max-width:1100px){
  .home-sales-diff .sales-model.hashnut-model{
    padding:24px;
  }
}

.home-sales-diff .sales-architecture-topline{
  font-size:11px; 
}

.home-sales-diff .hashnut-model .sales-model-kicker{
  font-size:14px;
}
.home-sales-diff .hashnut-model .sales-node small{
  font-size:12px;
}
.home-sales-diff .hashnut-model .sales-node strong{
  font-size:15px;
}
.home-sales-diff .hashnut-model > p{
  font-size:14.5px;
}
.home-sales-diff .hashnut-model .sales-arrow{
  font-size:20px;
}

.home-sales-diff .hashnut-model .sales-node-head{
  display:flex;
  align-items:center;
  gap:10px;
  min-width:0;
}
.home-sales-diff .hashnut-model .sales-node-head .sales-node-icon{
  flex:0 0 auto;
  width:36px;
  height:36px;
  margin-bottom:0;
  border-radius:10px;
}
.home-sales-diff .hashnut-model .sales-node-head .sales-node-icon svg{
  width:21px;
  height:21px;
}
.home-sales-diff .hashnut-model .sales-node-head small{
  display:block;
  min-width:0;
  line-height:1.25;
}
.home-sales-diff .hashnut-model .sales-node > strong{
  margin-top:12px;
}

.home-sales-diff .sales-benefit-grid article > small{
  font-size:10px;
}
.home-sales-diff .sales-benefit-grid article > span{
  font-size:11.5px;
}

@media(max-width:760px){
  .home-sales-diff .sales-architecture-topline{
    font-size:10px;
  }
  .home-sales-diff .hashnut-model .sales-model-kicker{
    font-size:12px;
  }
  .home-sales-diff .hashnut-model .sales-node small{
    font-size:11px;
  }
  .home-sales-diff .hashnut-model .sales-node strong{
    font-size:14px;
  }
  .home-sales-diff .hashnut-model .sales-node-head .sales-node-icon{
    width:34px;
    height:34px;
  }
  .home-sales-diff .hashnut-model .sales-node-head .sales-node-icon svg{
    width:19px;
    height:19px;
  }
  .home-sales-diff .hashnut-model > p{
    font-size:13.5px;
  }
  .home-sales-diff .sales-benefit-grid article > small{
    font-size:9px;
  }
  .home-sales-diff .sales-benefit-grid article > span{
    font-size:10.5px;
  }
}

.product-calibration-page{
  background:var(--paper);
}

#productPage .product-calibration-hero{
  position:relative;
  min-height:auto;
  overflow:hidden;
  color:#fff;
  background:
    radial-gradient(760px 560px at 82% 38%,rgba(39,225,193,.14),transparent 62%),
    radial-gradient(560px 400px at 96% 8%,rgba(67,199,255,.075),transparent 64%),
    linear-gradient(180deg,#071615 0%,#091e1c 100%);
}
#productPage .product-calibration-hero::before{
  content:"";
  position:absolute;
  inset:0;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px,transparent 1px),
    linear-gradient(90deg,rgba(255,255,255,.025) 1px,transparent 1px);
  background-size:58px 58px;
  mask-image:linear-gradient(90deg,transparent 0%,rgba(0,0,0,.30) 42%,#000 100%);
  pointer-events:none;
}

#productPage .product-calibration-bg{
  position:absolute;
  inset:0;
  pointer-events:none;
}
#productPage .product-calibration-bg::after{
  content:"";
  position:absolute;
  width:760px;
  height:760px;
  right:-260px;
  top:120px;
  border:1px solid rgba(39,225,193,.09);
  border-radius:50%;
}

#productPage .product-calibration-inner{
  position:relative;
  z-index:2;
  min-height:auto;
  display:grid;
  grid-template-columns:7fr 5fr;
  gap:56px;
  align-items:start;
  padding:112px 0 52px;
}

#productPage .product-calibration-copy{
  max-width:720px;
  padding-top:0;
  align-self:start;
  display:flex;
  flex-direction:column;
}
#productPage .product-calibration-eyebrow{
  display:flex;
  align-items:center;
  gap:10px;
  margin:0 0 22px;
  color:var(--aqua);
  font:700 12px/1.2 "Geist Mono",monospace;
  letter-spacing:.13em;
  text-transform:uppercase;
}
#productPage .product-calibration-eyebrow::before{
  content:"";
  width:6px;
  height:6px;
  border-radius:50%;
  background:currentColor;
  box-shadow:0 0 14px rgba(39,225,193,.18);
  flex:0 0 auto;
}

#productPage .product-calibration-copy h1{
  margin:0;
  max-width:640px;
  font:800 clamp(46px,3.9vw,58px)/.95 Manrope,sans-serif;
  letter-spacing:-.058em;
}
#productPage .product-calibration-copy h1 span{
  display:block;
}
#productPage .product-calibration-copy h1 span + span{
  margin-top:8px;
}
#productPage .product-calibration-copy h1 b{
  font:inherit;
}
#productPage .crypto-word{color:var(--cyan)}
#productPage .funds-word{color:var(--teal)}

#productPage .product-calibration-lede{
  width:min(100%,590px);
  margin:30px 0 0;
  color:rgba(237,249,246,.68);
  font-size:17px;
  line-height:1.68;
}

#productPage .product-calibration-actions{
  display:flex;
  align-items:center;
  gap:22px;
  margin-top:64px;
  padding-top:0;
}
#productPage .product-calibration-primary{
  min-height:48px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:0 22px;
  border-radius:9px;
  background:linear-gradient(90deg,var(--teal),var(--aqua));
  color:#041713;
  font-size:13px;
  font-weight:800;
  box-shadow:0 18px 32px -24px rgba(39,225,193,.60);
}
#productPage .product-calibration-link{
  display:inline-flex;
  align-items:center;
  gap:9px;
  color:rgba(240,252,249,.73);
  font-size:13px;
  font-weight:700;
}
#productPage .product-calibration-link span{color:var(--aqua)}

#productPage .product-calibration-visual{
  width:100%;
  max-width:520px;
  justify-self:end;
  align-self:start;
  padding-top:0;
}
#productPage .calibration-demo-shell{
  width:100%;
  min-height:520px;
  padding:17px;
  border:1px solid rgba(169,234,222,.12);
  border-radius:24px;
  background:
    radial-gradient(420px 280px at 60% 30%,rgba(39,225,193,.05),transparent 68%),
    rgba(5,21,19,.80);
  box-shadow:0 48px 90px -66px rgba(0,0,0,.92);
}
#productPage .calibration-demo-head{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:16px;
}
#productPage .calibration-demo-head span{
  display:block;
  margin-bottom:5px;
  color:rgba(217,239,233,.33);
  font:700 6.8px/1 "Geist Mono",monospace;
  letter-spacing:.13em;
}
#productPage .calibration-demo-head strong{
  display:block;
  color:rgba(247,255,253,.86);
  font-size:12.5px;
  line-height:1.2;
}
#productPage .calibration-demo-head small{
  display:flex;
  align-items:center;
  gap:6px;
  color:rgba(218,240,234,.38);
  font:700 6.5px/1 "Geist Mono",monospace;
  letter-spacing:.11em;
}
#productPage .calibration-demo-head small i{
  width:5px;
  height:5px;
  border-radius:50%;
  background:var(--aqua);
  box-shadow:0 0 9px rgba(39,225,193,.75);
}

#productPage .calibration-steps{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:10px;
  margin-top:2px;
}
#productPage .calibration-steps span{
  min-height:34px;
  display:flex;
  align-items:center;
  justify-content:center;
  border:1px solid rgba(255,255,255,.07);
  border-radius:9px;
  color:rgba(224,241,236,.40);
  font-size:8.5px;
  font-weight:650;
}
#productPage .calibration-steps span.active{
  border-color:rgba(39,225,193,.25);
  background:rgba(39,225,193,.085);
  color:#fff;
}

#productPage .calibration-phone-stage{
  height:412px;
  display:grid;
  grid-template-columns:280px 1fr;
  gap:18px;
  align-items:center;
  margin-top:10px;
}
#productPage .calibration-phone{
  position:relative;
  width:244px;
  height:438px;
  margin:0 auto;
  padding:8px;
  border-radius:34px;
  background:
    linear-gradient(155deg,rgba(255,255,255,.20),rgba(255,255,255,.035) 25%,transparent 55%),
    linear-gradient(180deg,#17312d,#091714);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.12),
    0 34px 62px -42px rgba(0,0,0,.96),
    0 0 0 1px rgba(192,239,231,.08);
}
#productPage .calibration-island{
  position:absolute;
  z-index:4;
  top:10px;
  left:50%;
  width:94px;
  height:23px;
  transform:translateX(-50%);
  border-radius:0 0 15px 15px;
  background:#081513;
}
#productPage .calibration-island::after{
  content:"";
  position:absolute;
  width:5px;
  height:5px;
  right:17px;
  top:8px;
  border-radius:50%;
  background:#27413c;
}

#productPage .calibration-phone-screen{
  position:relative;
  height:100%;
  overflow:hidden;
  padding:40px 15px 22px;
  border:1px solid rgba(214,231,226,.80);
  border-radius:27px;
  background:#f8fbfa;
  color:#0c1a17;
}
#productPage .calibration-status{
  position:absolute;
  top:12px;
  left:16px;
  right:16px;
  display:flex;
  justify-content:space-between;
  color:#667a74;
  font:800 10px/1 Manrope,sans-serif;
}
#productPage .calibration-store{
  display:flex;
  justify-content:space-between;
  color:#71847e;
  font:800 11px/1 Manrope,sans-serif;
  letter-spacing:.11em;
}
#productPage .calibration-store small{
  color:#91a09c;
  font:600 7px/1 Manrope,sans-serif;
  letter-spacing:0;
}

#productPage .calibration-product{
  display:grid;
  grid-template-columns:52px 1fr;
  gap:10px;
  margin-top:18px;
  padding:11px;
  border:1px solid var(--line);
  border-radius:13px;
  background:#fff;
}
#productPage .calibration-product-art{
  position:relative;
  width:52px;
  height:52px;
  border-radius:12px;
  background:linear-gradient(145deg,#152522,#071513);
}
#productPage .calibration-product-art i{
  position:absolute;
  left:14px;
  top:11px;
  width:24px;
  height:22px;
  border:3px solid #f4faf8;
  border-bottom:0;
  border-radius:15px 15px 0 0;
}
#productPage .calibration-product-art b,#productPage .calibration-product-art em{
  position:absolute;
  top:29px;
  width:8px;
  height:15px;
  border-radius:4px;
  background:#f4faf8;
}
#productPage .calibration-product-art b{left:11px}
#productPage .calibration-product-art em{right:11px}
#productPage .calibration-product > div:last-child span{
  display:block;
  margin-bottom:4px;
  color:#879791;
  font:700 5.5px/1 "Geist Mono",monospace;
  letter-spacing:.10em;
}
#productPage .calibration-product > div:last-child strong{
  display:block;
  color:#0c1917;
  font-size:11px;
  line-height:1.15;
}
#productPage .calibration-product > div:last-child small{
  display:block;
  margin-top:5px;
  color:#83948f;
  font-size:7px;
  line-height:1.35;
}
#productPage .calibration-total{
  display:flex;
  justify-content:space-between;
  margin-top:13px;
  color:#71837d;
  font-size:8px;
}
#productPage .calibration-total strong{
  color:#0b1917;
  font-size:10px;
}
#productPage .calibration-phone-screen button{
  width:100%;
  min-height:39px;
  margin-top:15px;
  border:0;
  border-radius:10px;
  background:linear-gradient(90deg,var(--action),var(--teal),var(--aqua));
  color:#fff;
  font-size:9px;
  font-weight:800;
}
#productPage .calibration-powered{
  margin-top:10px;
  text-align:center;
  color:#9ba9a5;
  font-size:6.5px;
}
#productPage .calibration-powered strong{color:#536c65}
#productPage .calibration-home-indicator{
  position:absolute;
  left:50%;
  bottom:7px;
  width:70px;
  height:3px;
  transform:translateX(-50%);
  border-radius:999px;
  background:#172824;
  opacity:.60;
}

#productPage .calibration-caption{
  align-self:center;
}
#productPage .calibration-caption span{
  display:block;
  color:rgba(216,239,233,.30);
  font:700 6px/1 "Geist Mono",monospace;
  letter-spacing:.12em;
}
#productPage .calibration-caption strong{
  display:block;
  margin-top:10px;
  color:#f6fffc;
  font-size:15px;
  line-height:1.18;
  letter-spacing:-.025em;
}
#productPage .calibration-caption p{
  margin:10px 0 0;
  color:rgba(219,240,234,.46);
  font-size:9.5px;
  line-height:1.55;
}

@media (min-width:981px) and (max-height:780px){
  #productPage .product-calibration-inner{
    padding-top:82px;
    padding-bottom:44px;
  }
  #productPage .product-calibration-copy{
    padding-top:0;
    align-self:start;
  }
  #productPage .product-calibration-copy h1{
    font-size:clamp(39px,3vw,45px);
  }
  #productPage .product-calibration-lede{
    margin-top:24px;
    font-size:15.5px;
  }
  #productPage .product-calibration-actions{
    margin-top:42px;
    padding-top:0;
  }
  #productPage .calibration-demo-shell{
    min-height:468px;
  }
  #productPage .calibration-phone-stage{
    height:366px;
    grid-template-columns:252px 1fr;
  }
  #productPage .calibration-phone{
    width:216px;
    height:382px;
  }
  #productPage .calibration-phone-screen{
    padding:36px 13px 20px;
  }
  #productPage .calibration-product{
    margin-top:24px;
  }
}

@media (max-width:1180px){
  #productPage .product-calibration-inner{
    grid-template-columns:minmax(0,1.08fr) minmax(450px,.92fr);
    gap:38px;
  }
  #productPage .product-calibration-copy h1{
    font-size:clamp(36px,3.25vw,42px);
  }
  #productPage .product-calibration-visual{
    max-width:500px;
  }
}

@media (max-width:980px){
  #productPage .product-calibration-hero{
    min-height:auto;
  }
  #productPage .product-calibration-inner{
    min-height:auto;
    grid-template-columns:1fr;
    gap:58px;
    padding:72px 0 96px;
  }
  #productPage .product-calibration-copy{
    max-width:800px;
    padding-top:0;
    display:block;
    align-self:auto;
  }
  #productPage .product-calibration-actions{
    margin-top:44px;
    padding-top:0;
  }
  #productPage .product-calibration-copy h1{
    max-width:760px;
    font-size:clamp(42px,6.2vw,56px);
  }
  #productPage .product-calibration-copy h1 span{
    white-space:normal;
  }
  #productPage .product-calibration-visual{
    justify-self:center;
    max-width:620px;
  }
  #productPage .product-calibration-next{
    bottom:24px;
  }
}

@media (max-width:640px){
  #productPage .product-calibration-inner{
    gap:46px;
    padding:56px 0 82px;
  }
  #productPage .product-calibration-eyebrow{
    margin-bottom:20px;
    font-size:9px;
  }
  #productPage .product-calibration-copy h1{
    font-size:clamp(34px,9.2vw,44px);
    line-height:.99;
  }
  #productPage .product-calibration-lede{
    margin-top:23px;
    font-size:15px;
  }
  #productPage .product-calibration-actions{
    gap:18px;
    margin-top:36px;
    padding-top:0;
  }
  #productPage .calibration-demo-shell{
    padding:13px;
    border-radius:19px;
  }
  #productPage .calibration-demo-head strong{
    font-size:11.5px;
  }
  #productPage .calibration-demo-head small{
    display:none;
  }
  #productPage .calibration-steps{
    gap:4px;
  }
  #productPage .calibration-steps span{
    min-height:31px;
    font-size:7.5px;
  }
  #productPage .calibration-phone-stage{
    height:auto;
    grid-template-columns:1fr;
    gap:18px;
    padding:15px 0 10px;
  }
  #productPage .calibration-phone{
    width:228px;
    height:408px;
  }
  #productPage .calibration-caption{
    max-width:330px;
    margin:0 auto;
    text-align:center;
  }
  #productPage .calibration-caption p{
    font-size:9px;
  }
}

@media (max-width:390px){
  #productPage .product-calibration-actions{
    align-items:flex-start;
    flex-direction:column;
  }
  #productPage .calibration-steps span{
    font-size:7px;
  }
}
#productPage 

.product-calibration-visual{
  width:100%;
  max-width:520px;
  justify-self:end;
}

#productPage .demo-premium-shell{
  position:relative;
  width:100%;
  min-height:520px;
  padding:17px 17px 14px;
  overflow:hidden;
  border:1px solid rgba(169,234,222,.12);
  border-radius:24px;
  background:
    radial-gradient(430px 290px at 60% 31%,rgba(39,225,193,.055),transparent 68%),
    rgba(5,21,19,.84);
  box-shadow:0 46px 88px -64px rgba(0,0,0,.94);
}
#productPage .demo-premium-shell::before{
  content:"";
  position:absolute;
  inset:0;
  background-image:
    linear-gradient(rgba(255,255,255,.018) 1px,transparent 1px),
    linear-gradient(90deg,rgba(255,255,255,.018) 1px,transparent 1px);
  background-size:42px 42px;
  mask-image:linear-gradient(180deg,rgba(0,0,0,.70),rgba(0,0,0,.18));
  pointer-events:none;
}

#productPage .demo-premium-head{
  position:relative;
  z-index:3;
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:14px;
}
#productPage .demo-premium-head span{
  display:block;
  margin-bottom:5px;
  color:rgba(217,239,233,.33);
  font:700 6.4px/1 "Geist Mono",monospace;
  letter-spacing:.13em;
}
#productPage .demo-premium-head strong{
  display:block;
  color:rgba(247,255,253,.88);
  font:700 12.5px/1.2 Manrope,sans-serif;
  letter-spacing:-.018em;
}
#productPage .demo-premium-head small{
  display:flex;
  align-items:center;
  gap:6px;
  color:rgba(218,240,234,.39);
  font:700 5.8px/1 "Geist Mono",monospace;
  letter-spacing:.11em;
}
#productPage .demo-premium-head small i{
  width:5px;
  height:5px;
  border-radius:50%;
  background:var(--aqua);
  box-shadow:0 0 9px rgba(39,225,193,.75);
}

#productPage .demo-premium-tabs{
  position:relative;
  z-index:3;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:6px;
  margin-top:15px;
}
#productPage .demo-premium-tab{
  position:relative;
  overflow:hidden;
  min-height:38px;
  padding:0 12px;
  border:1px solid rgba(255,255,255,.07);
  border-radius:10px;
  background:rgba(255,255,255,.022);
  color:rgba(224,241,236,.45);
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  transition:border-color .22s ease,background .22s ease,color .22s ease;
}
#productPage .demo-premium-tab b{display:none}
#productPage .demo-premium-tab span{
  font-size:11.2px;
  font-weight:560;
  letter-spacing:-.01em;
}
#productPage .demo-premium-tab i{
  position:absolute;
  left:0;
  right:0;
  bottom:0;
  height:2px;
  transform:scaleX(0);
  transform-origin:left center;
  background:linear-gradient(90deg,var(--teal),var(--aqua) 62%,var(--cyan));
  opacity:.96;
}
#productPage .demo-premium-tab:hover{
  color:#fff;
  border-color:rgba(39,225,193,.18);
}
#productPage .demo-premium-tab.active{
  color:#fff;
  border-color:rgba(39,225,193,.27);
  background:rgba(39,225,193,.085);
}
#productPage .demo-premium-tab.active i{transform:scaleX(0);}
#productPage .demo-premium-tab.active.progressing i{animation:premiumDemoProgress 8.8s linear forwards;}

#productPage .demo-premium-stage{
  position:relative;
  z-index:2;
  height:408px;
  display:grid;
  grid-template-columns:208px minmax(0,1fr);
  gap:22px;
  align-items:center;
  margin-top:26px;
}

#productPage .demo-phone{
  position:relative;
  width:196px;
  height:400px;
  margin:0 auto;
  padding:7px;
  border-radius:35px;
  background:
    linear-gradient(130deg,rgba(255,255,255,.26),rgba(255,255,255,.055) 20%,transparent 44%),
    linear-gradient(180deg,#354542 0%,#192724 46%,#0a1715 100%);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.22),
    inset 0 -1px 0 rgba(255,255,255,.04),
    inset 1px 0 0 rgba(255,255,255,.07),
    0 32px 64px -44px rgba(0,0,0,.98),
    0 0 0 1px rgba(2,11,10,.92),
    0 0 0 2px rgba(172,220,211,.065);
}
#productPage .demo-phone::before{
  content:"";
  position:absolute;
  inset:4px;
  border:1px solid rgba(255,255,255,.05);
  border-radius:32px;
  pointer-events:none;
}
#productPage .demo-phone-side-left,#productPage .demo-phone-side-right{
  position:absolute;
  z-index:8;
  pointer-events:none;
}
#productPage .demo-phone-side-left{left:-3px;top:76px;width:3px;height:106px}
#productPage .demo-phone-side-left i,#productPage .demo-phone-side-right i{
  position:absolute;
  display:block;
  width:3px;
  background:linear-gradient(180deg,#485754,#182522);
  box-shadow:inset 1px 0 0 rgba(255,255,255,.10);
}
#productPage .demo-phone-side-left i{border-radius:2px 0 0 2px}
#productPage .demo-phone-side-left .mute{top:0;height:19px}
#productPage .demo-phone-side-left .vol-up{top:31px;height:34px}
#productPage .demo-phone-side-left .vol-down{top:70px;height:34px}
#productPage .demo-phone-side-right{right:-3px;top:116px;width:3px;height:58px}
#productPage .demo-phone-side-right i{
  right:0;
  height:58px;
  border-radius:0 2px 2px 0;
}

#productPage .demo-phone-screen{
  position:relative;
  width:100%;
  height:100%;
  overflow:hidden;
  border-radius:29px;
  background:#f7fbfa;
  box-shadow:inset 0 0 0 1px rgba(255,255,255,.12);
}
#productPage .demo-phone-island{
  position:absolute;
  z-index:7;
  left:50%;
  top:0;
  width:78px;
  height:21px;
  transform:translateX(-50%);
  border-radius:0 0 14px 14px;
  background:
    radial-gradient(circle at 76% 46%,#263b37 0 2px,#0a1513 2.5px 4.5px,transparent 5px),
    linear-gradient(180deg,#050d0c,#0a1513);
}
#productPage .demo-phone-statusbar{
  position:absolute;
  z-index:6;
  top:8px;
  left:16px;
  right:16px;
  height:15px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  color:#34413e;
  font:700 6.3px/1 Manrope,sans-serif;
  pointer-events:none;
}
#productPage .demo-phone-statusbar>div{
  display:flex;
  align-items:center;
  gap:3px;
}
#productPage .demo-signal{
  width:8px;height:5px;
  background:linear-gradient(90deg,#34413e 0 18%,transparent 18% 27%,#34413e 27% 50%,transparent 50% 59%,#34413e 59% 82%,transparent 82%);
  clip-path:polygon(0 100%,0 72%,22% 72%,22% 48%,48% 48%,48% 24%,74% 24%,74% 0,100% 0,100% 100%);
}
#productPage .demo-wifi{
  width:7px;height:5px;
  border:1px solid #34413e;
  border-left-color:transparent;
  border-right-color:transparent;
  border-bottom-color:transparent;
  border-radius:50% 50% 0 0;
  transform:translateY(2px);
}
#productPage .demo-battery{
  position:relative;
  width:10px;height:5px;
  border:1px solid #34413e;
  border-radius:1.5px;
}
#productPage .demo-battery::before{
  content:"";
  position:absolute;
  inset:1px;
  border-radius:.5px;
  background:#34413e;
}
#productPage .demo-battery::after{
  content:"";
  position:absolute;
  right:-2.4px;
  top:1px;
  width:1.3px;
  height:2px;
  border-radius:0 1px 1px 0;
  background:#34413e;
}
#productPage .demo-home-indicator{
  position:absolute;
  z-index:6;
  left:50%;
  bottom:6px;
  width:70px;
  height:3px;
  transform:translateX(-50%);
  border-radius:999px;
  background:rgba(7,22,21,.66);
}

#productPage .demo-screen{
  position:absolute;
  inset:0;
  padding:34px 15px 20px;
  opacity:0;
  transform:translateY(8px) scale(.994);
  pointer-events:none;
  transition:opacity .45s var(--ease),transform .45s var(--ease);
}
#productPage .demo-screen.active{
  opacity:1;
  transform:none;
  pointer-events:auto;
}

#productPage .demo-storebar{
  display:flex;
  justify-content:space-between;
  color:#70837d;
  font:700 5.6px/1 "Geist Mono",monospace;
  letter-spacing:.11em;
}
#productPage .demo-storebar small{
  color:#8d9c98;
  font:600 6.7px/1 Manrope,sans-serif;
  letter-spacing:0;
}

#productPage .demo-product-card{
  display:grid;
  grid-template-columns:48px 1fr;
  gap:8px 10px;
  margin-top:14px;
  padding:10px;
  border:1px solid var(--line);
  border-radius:12px;
  background:#fff;
}
#productPage .demo-product-art{
  position:relative;
  grid-row:1 / span 2;
  width:48px;
  height:48px;
  border-radius:12px;
  background:linear-gradient(145deg,#152522,#071513);
}
#productPage .demo-product-art .hp-band{
  position:absolute;
  left:12px;top:9px;
  width:24px;height:21px;
  border:3px solid #f4faf8;
  border-bottom:0;
  border-radius:15px 15px 0 0;
}
#productPage .demo-product-art .hp-left,#productPage .demo-product-art .hp-right{
  position:absolute;
  top:26px;
  width:7px;
  height:14px;
  border-radius:4px;
  background:#f4faf8;
}
#productPage .demo-product-art .hp-left{left:9px}
#productPage .demo-product-art .hp-right{right:9px}
#productPage .demo-product-copy strong{
  display:block;
  color:#0c1917;
  font:760 9.8px/1.14 Manrope,sans-serif;
  letter-spacing:-.018em;
}
#productPage .demo-product-card>b{
  grid-column:2;
  margin-top:-2px;
  color:#0b1917;
  font:770 11.4px/1 Manrope,sans-serif;
}

#productPage .demo-methods{
  margin-top:12px;
}
#productPage .demo-methods-label{
  display:none;
}
#productPage .demo-method{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:8px;
  padding:8px 9px;
  border:1px solid rgba(12,25,23,.08);
  border-radius:10px;
  background:#fbfdfc;
}
#productPage .demo-method + .demo-method{
  margin-top:7px;
}
#productPage .demo-method-main{
  display:flex;
  align-items:center;
  gap:8px;
  min-width:0;
}
#productPage .demo-method-icon{
  display:grid;
  place-items:center;
  width:24px;
  height:24px;
  border-radius:8px;
  background:#edf4f2;
  color:#5a6f69;
  flex:0 0 auto;
}
#productPage .demo-method-icon.card{
  position:relative;
}
#productPage .demo-method-icon.card::before,#productPage .demo-method-icon.card::after{
  content:"";
  position:absolute;
  left:5px;
  right:5px;
  border-radius:999px;
}
#productPage .demo-method-icon.card::before{
  top:7px;
  height:4px;
  background:#7f938d;
}
#productPage .demo-method-icon.card::after{
  bottom:7px;
  height:2px;
  background:#b7c7c2;
}
#productPage .demo-method-icon.acorn svg{
  width:12px;
  height:15px;
  display:block;
}
#productPage .demo-method-copy strong{
  display:block;
  color:#10201d;
  font:750 7.6px/1.18 Manrope,sans-serif;
  letter-spacing:-.012em;
}
#productPage .demo-method-copy small{
  display:block;
  margin-top:2px;
  color:#7f928c;
  font-size:6px;
  line-height:1.24;
}
#productPage .demo-method-radio{
  width:12px;
  height:12px;
  border-radius:50%;
  border:1px solid rgba(12,25,23,.14);
  background:#fff;
  flex:0 0 auto;
}
#productPage .demo-method.selected{
  border-color:rgba(0,124,109,.22);
  background:linear-gradient(180deg,#f7fffc,#eefaf6);
  box-shadow:0 8px 18px -16px rgba(0,124,109,.32);
}
#productPage .demo-method.selected .demo-method-icon{
  background:linear-gradient(135deg,#ddfaf4,#c9f4ec);
}
#productPage .demo-method.selected .demo-method-copy strong{
  color:#006f61;
}
#productPage .demo-method.selected .demo-method-radio{
  position:relative;
  border-color:rgba(0,124,109,.36);
  background:#ecfaf6;
}
#productPage .demo-method.selected .demo-method-radio::after{
  content:"";
  position:absolute;
  inset:2px;
  border-radius:50%;
  background:var(--teal);
}

#productPage .demo-total{
  display:flex;
  justify-content:space-between;
  margin-top:10px;
  color:#71837d;
  font-size:7.1px;
}
#productPage .demo-total strong{
  color:#0b1917;
  font-size:9.8px;
}
#productPage .demo-action-primary,#productPage .demo-action-secondary{
  width:100%;
  min-height:36px;
  margin-top:13px;
  border:0;
  border-radius:9px;
  cursor:pointer;
  font-size:9.4px;
  font-weight:780;
  transition:transform .2s ease,box-shadow .2s ease;
}
#productPage .demo-action-primary{
  background:linear-gradient(90deg,var(--action),var(--teal),var(--aqua));
  color:#fff;
  box-shadow:0 16px 26px -20px rgba(0,124,109,.48);
}
#productPage .demo-action-secondary{
  min-height:34px;
  margin-top:11px;
  border:1px solid rgba(0,124,109,.16);
  background:#eaf8f4;
  color:#006f61;
}
#productPage .demo-action-primary:hover,#productPage .demo-action-secondary:hover{
  transform:translateY(-1px);
}

#productPage .demo-pay-head{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
}
#productPage .demo-pay-head span{
  display:none;
}
#productPage .demo-pay-head strong{
  display:block;
  color:#0b1917;
  font:780 22px/1 Manrope,sans-serif;
  letter-spacing:-.035em;
}
#productPage .demo-pay-head strong em{
  margin-left:6px;
  color:var(--action);
  font:800 10.5px/1 Manrope,sans-serif;
  font-style:normal;
  letter-spacing:-.01em;
  vertical-align:3px;
}
#productPage .demo-pay-head>small{
  display:none;
}
#productPage .demo-qr-meta{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:7px;
  margin-top:10px;
}
#productPage .demo-qr-meta > div{
  padding:7px 8px;
  border:1px solid var(--line);
  border-radius:9px;
  background:#fff;
}
#productPage .demo-qr-meta span{
  display:block;
  color:#83958f;
  font:700 4.6px/1 "Geist Mono",monospace;
  letter-spacing:.10em;
}
#productPage .demo-qr-meta strong{
  display:block;
  margin-top:4px;
  color:#13211e;
  font:740 7.3px/1.18 Manrope,sans-serif;
}
#productPage .demo-qr{
  position:relative;
  width:132px;
  height:132px;
  margin:16px auto 12px;
  border-radius:14px;
  background:#fff;
  box-shadow:inset 0 0 0 1px rgba(7,22,21,.06), 0 12px 24px -20px rgba(7,22,21,.18);
  overflow:hidden;
  display:flex;
  align-items:center;
  justify-content:center;
}
#productPage .demo-qr img{
  width:114px;
  height:114px;
  display:block;
}
#productPage .demo-address{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  padding:8px 9px;
  border:1px solid var(--line);
  border-radius:8px;
  background:#fff;
}
#productPage .demo-address div{min-width:0}
#productPage .demo-address span{
  display:block;
  color:#84948f;
  font:700 4.5px/1 "Geist Mono",monospace;
  letter-spacing:.10em;
}
#productPage .demo-address strong{
  display:block;
  margin-top:4px;
  color:#172722;
  font:700 7.3px/1 "Geist Mono",monospace;
}
#productPage .demo-address em{
  padding:5px 6px;
  border-radius:999px;
  background:#edf7f4;
  color:#007c6d;
  font:700 4.8px/1 "Geist Mono",monospace;
  font-style:normal;
  letter-spacing:.08em;
}
#productPage .demo-wallet-note{
  display:none;
}

#productPage .demo-state-panel{
  max-width:188px;
  margin:23px auto 0;
  text-align:center;
}
#productPage .demo-confirm-ring,#productPage .demo-complete-mark{
  position:relative;
  width:64px;
  height:64px;
  margin:0 auto 15px;
}
#productPage .demo-confirm-ring svg{
  position:relative;
  z-index:2;
  width:100%;
  height:100%;
  animation:demoRing 1.9s linear infinite;
}
#productPage .demo-confirm-ring circle{
  fill:none;
  stroke:#deebe7;
  stroke-width:4.5;
}
#productPage .demo-confirm-ring path{
  fill:none;
  stroke:var(--teal);
  stroke-width:4.5;
  stroke-linecap:round;
}
#productPage .demo-confirm-ring::before{
  content:"";
  position:absolute;
  z-index:1;
  inset:14px;
  border-radius:50%;
  background:linear-gradient(145deg,#effbf8,#e4f6f1);
  box-shadow:inset 0 0 0 1px rgba(1,182,155,.08);
}
#productPage .demo-confirm-ring::after{
  content:"";
  position:absolute;
  z-index:3;
  left:50%;
  top:50%;
  width:8px;
  height:8px;
  transform:translate(-50%,-50%);
  border-radius:50%;
  background:var(--teal);
  box-shadow:0 0 0 7px rgba(1,182,155,.10),0 0 18px rgba(1,182,155,.24);
  animation:demoPulse 1.8s ease-in-out infinite;
}
@keyframes demoRing{to{transform:rotate(360deg)}}
@keyframes demoPulse{50%{box-shadow:0 0 0 10px rgba(1,182,155,.05),0 0 21px rgba(1,182,155,.30)}}
#productPage .demo-state-title{
  display:block;
  margin:0;
  color:#0d1b18;
  font:770 16px/1.12 Manrope,sans-serif;
  letter-spacing:-.03em;
}
#productPage .demo-state-card,#productPage .demo-result-card{
  margin-top:17px;
  overflow:hidden;
  border:1px solid rgba(13,32,28,.08);
  border-radius:12px;
  background:#fff;
  box-shadow:0 14px 28px -26px rgba(7,22,21,.30);
}
#productPage .demo-state-row{
  min-height:43px;
  display:grid;
  grid-template-columns:18px minmax(0,1fr) auto;
  align-items:center;
  gap:8px;
  padding:8px 10px;
  text-align:left;
}
#productPage .demo-state-row + .demo-state-row{border-top:1px solid rgba(13,32,28,.065)}
#productPage .demo-state-row i{
  width:17px;
  height:17px;
  display:grid;
  place-items:center;
  border-radius:50%;
  font-style:normal;
  font-size:7px;
}
#productPage .demo-state-row span{
  color:#354b45;
  font:690 7.6px/1.3 Manrope,sans-serif;
}
#productPage .demo-state-row b{
  font:700 5.4px/1 "Geist Mono",monospace;
  letter-spacing:.07em;
  text-transform:uppercase;
}
#productPage .demo-state-row.done i{
  background:#e5f8f3;
  color:#007c6d;
  box-shadow:inset 0 0 0 1px rgba(1,182,155,.12);
}
#productPage .demo-state-row.done b{color:#78918a}
#productPage .demo-state-row.current{background:linear-gradient(90deg,#f7fffc,#effbf7)}
#productPage .demo-state-row.current i{
  position:relative;
  background:#e5f8f3;
  box-shadow:inset 0 0 0 1px rgba(1,182,155,.16);
}
#productPage .demo-state-row.current i::before{
  content:"";
  width:6px;
  height:6px;
  border-radius:50%;
  background:var(--teal);
  box-shadow:0 0 0 4px rgba(1,182,155,.10);
  animation:demoStatusPulse 1.7s ease-in-out infinite;
}
#productPage .demo-state-row.current b{color:#007c6d}
@keyframes demoStatusPulse{50%{box-shadow:0 0 0 7px rgba(1,182,155,.035)}}
#productPage .demo-complete-mark{
  display:grid;
  place-items:center;
  border-radius:50%;
  background:linear-gradient(145deg,#02a98f,var(--aqua));
  color:#fff;
  font-size:25px;
  font-weight:800;
  box-shadow:0 18px 34px -22px rgba(1,182,155,.48);
}
#productPage .demo-complete-mark::before,#productPage .demo-complete-mark::after{
  content:"";
  position:absolute;
  border-radius:50%;
  pointer-events:none;
}
#productPage .demo-complete-mark::before{inset:-6px;border:1px solid rgba(1,182,155,.18)}
#productPage .demo-complete-mark::after{inset:-12px;border:1px solid rgba(1,182,155,.07)}
#productPage .demo-result-card{padding:2px 0}
#productPage .demo-result-row{
  min-height:37px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding:8px 10px;
  text-align:left;
}
#productPage .demo-result-row + .demo-result-row{border-top:1px solid rgba(13,32,28,.06)}
#productPage .demo-result-row span{
  color:#83958f;
  font:700 5px/1 "Geist Mono",monospace;
  letter-spacing:.10em;
}
#productPage .demo-result-row strong{
  max-width:110px;
  color:#172722;
  text-align:right;
  font:760 7.8px/1.18 Manrope,sans-serif;
}
#productPage .demo-result-row.highlight{background:linear-gradient(90deg,#f4fcfa,#ebf9f5)}
#productPage .demo-result-row.highlight strong{color:#007c6d}

#productPage .demo-premium-caption{
  align-self:center;
}
#productPage .demo-callout{
  position:relative;
  max-width:232px;
  padding:15px 16px 16px;
  border:1px solid rgba(162,229,216,.12);
  border-radius:14px;
  background:
    linear-gradient(145deg,rgba(255,255,255,.035),rgba(255,255,255,.012)),
    rgba(7,25,23,.72);
  box-shadow:
    0 22px 38px -30px rgba(0,0,0,.92),
    inset 0 1px 0 rgba(255,255,255,.025);
  backdrop-filter:blur(10px);
}
#productPage .demo-callout::before{
  content:"";
  position:absolute;
  left:-7px;
  top:50%;
  width:13px;
  height:13px;
  transform:translateY(-50%) rotate(45deg);
  border-left:1px solid rgba(162,229,216,.12);
  border-bottom:1px solid rgba(162,229,216,.12);
  background:rgba(7,25,23,.88);
}
#productPage .demo-callout-connector{
  position:absolute;
  left:-34px;
  top:50%;
  width:27px;
  height:1px;
  transform:translateY(-50%);
  background:linear-gradient(90deg,rgba(39,225,193,.34),rgba(39,225,193,.08));
}
#productPage .demo-callout-connector::before{
  content:"";
  position:absolute;
  left:-3px;
  top:-2px;
  width:5px;
  height:5px;
  border-radius:50%;
  background:var(--aqua);
  box-shadow:0 0 10px rgba(39,225,193,.45);
}
#productPage .demo-caption-title,#productPage .demo-caption-note{
  position:relative;
  display:block;
  padding-left:14px;
  font:500 15px/1.32 Manrope,sans-serif;
  letter-spacing:-.025em;
}
#productPage .demo-caption-title{
  color:#f6fffc;
}
#productPage .demo-caption-note{
  margin:9px 0 0;
  color:#8ff0da;
  font-weight:500;
}
#productPage .demo-caption-title::before,#productPage .demo-caption-note::before{
  content:"";
  position:absolute;
  left:0;
  top:.42em;
  width:6px;
  height:6px;
  border-radius:50%;
}
#productPage .demo-caption-title::before{
  background:#f6fffc;
  opacity:.92;
}
#productPage .demo-caption-note::before{
  background:var(--aqua);
  box-shadow:0 0 10px rgba(39,225,193,.28);
}
@keyframes premiumDemoProgress{to{transform:scaleX(1)}}

@media (min-width:981px) and (max-height:780px){
  #productPage .demo-premium-shell{
    min-height:484px;
    padding:14px 15px 12px;
  }
  #productPage .demo-premium-tabs{margin-top:11px}
  #productPage .demo-premium-stage{
    height:377px;
    grid-template-columns:194px minmax(0,1fr);
    gap:19px;
    margin-top:9px;
  }
  #productPage .demo-phone{
    width:178px;
    height:364px;
  }
  #productPage .demo-screen{
    padding:31px 13px 18px;
  }
  #productPage .demo-product-card{
    grid-template-columns:44px 1fr;
    margin-top:12px;
    padding:9px;
  }
  #productPage .demo-product-art{
    width:44px;
    height:44px;
  }
  #productPage .demo-qr{
    width:124px;
    height:124px;
    margin:14px auto 10px;
  }
  #productPage .demo-confirm-ring{
    margin-top:31px;
  }
  #productPage .demo-complete-mark{
    margin-top:30px;
  }
}

@media (max-width:1180px){
  #productPage .product-calibration-visual{max-width:500px}
  #productPage .demo-premium-stage{
    grid-template-columns:198px minmax(0,1fr);
    gap:18px;
  }
  #productPage .demo-phone{
    width:184px;
    height:378px;
  }
}

@media (max-width:980px){
  #productPage .product-calibration-visual{
    max-width:600px;
    justify-self:center;
  }
  #productPage .demo-premium-shell{
    min-height:auto;
  }
  #productPage .demo-premium-stage{
    height:auto;
    grid-template-columns:208px 1fr;
    min-height:420px;
  }
}

@media (max-width:640px){
  #productPage .demo-premium-shell{
    padding:13px;
    border-radius:19px;
  }
  #productPage .demo-premium-tabs{gap:4px}
  #productPage .demo-premium-tab{
    min-height:32px;
    padding:0 8px;
  }
  #productPage .demo-premium-tab span{font-size:9.4px}
  #productPage .demo-premium-stage{
    grid-template-columns:1fr;
    gap:17px;
    min-height:0;
    padding-top:8px;
  }
  #productPage .demo-phone{
    width:196px;
    height:400px;
  }
  #productPage .demo-premium-caption{
    max-width:300px;
    margin:0 auto;
    text-align:left;
  }
  #productPage .demo-callout{
    padding:14px 15px;
  }
  #productPage .demo-callout::before,#productPage .demo-callout-connector{
    display:none;
  }
}

@media (prefers-reduced-motion:reduce){
  #productPage .demo-screen{transition:none!important}
  #productPage .demo-confirm-ring svg,#productPage .demo-confirm-ring::after,#productPage .demo-state-row.current i::before{animation:none!important}
  #productPage .demo-premium-tab i{
    animation:none!important;
    transform:scaleX(1)!important;
  }
}

.site-page[hidden]{display:none!important}
#productPage{min-height:100vh}
body[data-site-page="product"] .desktop-nav a[data-nav="product"]{color:#071615}
body[data-site-page="product"] .desktop-nav a[data-nav="product"]::after{opacity:1;transform:scaleX(1)}
body[data-site-page="product"] .mobile-links a[data-page-link="product"]{color:#071615}

#technologyPage,#companyPage,#useCasesPage{background:#fff;color:#071615}
#technologyPage *,#companyPage *,#useCasesPage *{box-sizing:border-box}

.inner-page-hero{
  position:relative;
  min-height:auto;
  overflow:hidden;
  color:#fff;
  padding:0;
  background:
    radial-gradient(760px 560px at 82% 38%,rgba(39,225,193,.14),transparent 62%),
    radial-gradient(560px 400px at 96% 8%,rgba(67,199,255,.075),transparent 64%),
    linear-gradient(180deg,#071615 0%,#091e1c 100%);
}
.inner-page-hero::before{
  content:"";
  position:absolute;
  inset:0;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px,transparent 1px),
    linear-gradient(90deg,rgba(255,255,255,.025) 1px,transparent 1px);
  background-size:58px 58px;
  mask-image:linear-gradient(90deg,transparent 0%,rgba(0,0,0,.30) 42%,#000 100%);
  pointer-events:none;
}
.inner-page-hero::after{
  content:"";
  position:absolute;
  width:760px;
  height:760px;
  right:-260px;
  top:120px;
  border:1px solid rgba(39,225,193,.09);
  border-radius:50%;
  pointer-events:none;
}
.inner-page-hero-grid{
  position:relative;
  z-index:2;
  min-height:auto;
  display:grid;
  grid-template-columns:7fr 5fr;
  gap:56px;
  align-items:start;
  padding:112px 0 52px;
}
.inner-page-hero-grid>div:first-child{
  max-width:720px;
  padding-top:0;
  align-self:start;
  display:flex;
  flex-direction:column;
}
.inner-page-eyebrow{
  display:flex;
  align-items:center;
  gap:10px;
  margin:0 0 22px;
  color:var(--aqua);
  font:700 12px/1.2 "Geist Mono",monospace;
  letter-spacing:.13em;
  text-transform:uppercase;
}
.inner-page-eyebrow::before{
  content:"";
  width:6px;
  height:6px;
  flex:0 0 auto;
  border-radius:50%;
  background:currentColor;
  box-shadow:0 0 14px rgba(39,225,193,.18);
}
.inner-page-hero h1{
  max-width:640px;
  margin:0;
  font:800 clamp(46px,3.9vw,58px)/.95 Manrope,sans-serif;
  letter-spacing:-.058em;
}
.inner-page-hero h1 .gradient-line{display:block;background:linear-gradient(90deg,#fff 0%,#d8f8f2 46%,#43c7ff 100%);-webkit-background-clip:text;background-clip:text;color:transparent}
.inner-page-hero-lead{
  width:min(100%,590px);
  max-width:none;
  margin:30px 0 0;
  color:rgba(237,249,246,.68);
  font-size:17px;
  line-height:1.68;
}
.inner-page-actions{
  display:flex;
  align-items:center;
  gap:22px;
  margin-top:64px;
}
.inner-page-secondary{
  position:relative;
  padding:10px 1px;
  color:rgba(255,255,255,.78);
  font-size:13px;
  font-weight:700;
}
.inner-page-secondary::after{
  content:"";
  position:absolute;
  left:1px;
  right:1px;
  bottom:6px;
  height:1px;
  background:linear-gradient(90deg,var(--aqua),var(--cyan));
  transform:scaleX(.36);
  transform-origin:left;
  opacity:.55;
  transition:transform .22s var(--ease),opacity .18s ease;
}
.inner-page-secondary:hover::after{transform:scaleX(1);opacity:1}
.inner-page-proofline{display:flex;flex-wrap:wrap;gap:26px;margin-top:48px;padding-top:23px;border-top:1px solid rgba(255,255,255,.08)}
.inner-page-proofline span{display:flex;align-items:center;gap:8px;color:rgba(237,250,246,.47);font:700 9px/1.4 "Geist Mono",monospace;letter-spacing:.095em}
.inner-page-proofline i{width:6px;height:6px;border-radius:50%;background:var(--aqua);box-shadow:0 0 12px rgba(39,225,193,.55)}

.inner-section{position:relative;padding:118px 0;overflow:hidden}
.inner-section.soft{background:linear-gradient(180deg,#fff 0%,#f4faf8 100%)}
.inner-section.ice{background:#ecfbf7}
.inner-section.dark{background:#071615;color:#f2fbf8}
.inner-section-head{
  display:grid;
  grid-template-columns:minmax(0,1.05fr) minmax(320px,.72fr);
  gap:64px;
  align-items:end;
  margin-bottom:56px;
}
.inner-section-tag{
  display:flex;
  align-items:center;
  gap:10px;
  margin:0 0 22px;
  color:var(--action);
  font:700 11px/1.2 "Geist Mono",monospace;
  letter-spacing:.13em;
  text-transform:uppercase;
}
.inner-section-tag::before{
  content:"";
  width:6px;
  height:6px;
  flex:0 0 auto;
  border-radius:50%;
  background:currentColor;
  box-shadow:0 0 14px rgba(1,182,155,.18);
}
.inner-section.dark .inner-section-tag{color:var(--aqua)}
.inner-section h2{
  max-width:760px;
  margin:0;
  color:var(--ink);
  font:800 clamp(38px,4.1vw,64px)/.98 Manrope,sans-serif;
  letter-spacing:-.052em;
}
.inner-section.dark h2{color:#f2fbf8}
.inner-section-head>p{
  margin:0;
  color:#667873;
  font-size:16px;
  line-height:1.72;
}
.inner-section.dark .inner-section-head>p{color:rgba(236,249,245,.64)}

.tech-hero-visual{position:relative;width:100%;max-width:520px;min-height:520px;justify-self:end;align-self:start;display:grid;place-items:center;padding-top:0}
.tech-orbit{position:relative;width:min(540px,100%);aspect-ratio:1/1;border-radius:50%;border:1px solid rgba(39,225,193,.13);background:radial-gradient(circle at 50% 50%,rgba(39,225,193,.085),rgba(7,22,21,.02) 44%,transparent 70%)}
.tech-orbit::before,.tech-orbit::after{content:"";position:absolute;border-radius:50%;border:1px solid rgba(67,199,255,.09)}
.tech-orbit::before{inset:58px}.tech-orbit::after{inset:118px;border-color:rgba(39,225,193,.13)}
.tech-core{position:absolute;left:50%;top:50%;width:150px;height:150px;transform:translate(-50%,-50%);display:grid;place-items:center;border-radius:50%;border:1px solid rgba(39,225,193,.22);background:radial-gradient(circle at 36% 30%,rgba(67,199,255,.16),rgba(1,182,155,.10) 54%,rgba(7,22,21,.86) 100%);box-shadow:0 0 75px rgba(39,225,193,.11),inset 0 1px 0 rgba(255,255,255,.05);z-index:3;text-align:center}
.tech-core strong{display:block;color:#fff;font:780 16px/1.15 Manrope,sans-serif;letter-spacing:-.025em}.tech-core span{display:block;margin-top:6px;color:var(--aqua);font:700 8px/1.2 "Geist Mono",monospace;letter-spacing:.12em}
.tech-orbit-node{position:absolute;z-index:4;width:152px;min-height:76px;padding:15px 16px;border:1px solid rgba(255,255,255,.09);border-radius:16px;background:rgba(255,255,255,.035);backdrop-filter:blur(10px);box-shadow:0 24px 60px -48px #000}
.tech-orbit-node small{display:block;color:rgba(237,250,246,.40);font:700 8px/1 "Geist Mono",monospace;letter-spacing:.11em}.tech-orbit-node strong{display:block;margin-top:7px;color:#f6fcfa;font-size:14px;line-height:1.25}
.tech-orbit-node.customer{left:-4px;top:94px}.tech-orbit-node.mpc{right:-6px;top:90px}.tech-orbit-node.contract{left:-4px;bottom:84px}.tech-orbit-node.merchant{right:-6px;bottom:82px;border-color:rgba(39,225,193,.16);background:rgba(39,225,193,.055)}
.tech-orbit-line{position:absolute;z-index:2;height:1px;transform-origin:left;background:linear-gradient(90deg,rgba(39,225,193,.05),rgba(39,225,193,.46),rgba(67,199,255,.10))}.tech-orbit-line::after{content:"";position:absolute;top:-3px;width:7px;height:7px;border-radius:50%;background:var(--aqua);box-shadow:0 0 14px rgba(39,225,193,.55);animation:techSignal 3s linear infinite}
.tech-orbit-line.l1{width:190px;left:110px;top:178px;transform:rotate(28deg)}.tech-orbit-line.l2{width:190px;left:282px;top:176px;transform:rotate(151deg)}.tech-orbit-line.l3{width:190px;left:109px;bottom:168px;transform:rotate(-28deg)}.tech-orbit-line.l4{width:190px;left:282px;bottom:167px;transform:rotate(-151deg)}
.tech-orbit-line.l2::after,.tech-orbit-line.l4::after{animation-delay:1.5s}@keyframes techSignal{0%{left:0;opacity:0}15%{opacity:1}85%{opacity:1}100%{left:calc(100% - 7px);opacity:0}}

.tech-control-board{position:relative;margin-top:62px;padding:44px;border:1px solid rgba(7,22,21,.075);border-radius:28px;background:rgba(255,255,255,.86);box-shadow:0 36px 88px -70px rgba(7,22,21,.35);overflow:hidden}
.tech-control-board::before{content:"";position:absolute;inset:0;background-image:linear-gradient(rgba(1,182,155,.025) 1px,transparent 1px),linear-gradient(90deg,rgba(1,182,155,.025) 1px,transparent 1px);background-size:44px 44px;mask-image:linear-gradient(to right,#000,transparent 92%);pointer-events:none}
.tech-fund-path{position:relative;z-index:2;display:grid;grid-template-columns:repeat(4,1fr);gap:28px;align-items:start}
.tech-fund-path::before{content:"";position:absolute;left:8%;right:8%;top:33px;height:1px;background:linear-gradient(90deg,rgba(1,182,155,.12),rgba(1,182,155,.62),rgba(67,199,255,.38),rgba(1,182,155,.16));z-index:-1}
.tech-fund-node{position:relative;padding-top:70px}.tech-fund-icon{position:absolute;top:0;left:0;width:66px;height:66px;display:grid;place-items:center;border-radius:20px;border:1px solid rgba(0,124,109,.11);background:linear-gradient(145deg,#f4fffc,#e3f8f3);color:#007c6d;box-shadow:0 14px 34px -28px rgba(0,124,109,.52)}.tech-fund-icon svg{width:25px;height:25px;fill:none;stroke:currentColor;stroke-width:1.6;stroke-linecap:round;stroke-linejoin:round}
.tech-fund-node small{display:block;margin-top:17px;color:#71817d;font:700 9px/1 "Geist Mono",monospace;letter-spacing:.11em}.tech-fund-node h3{margin:8px 0 0;color:#10201d;font:760 20px/1.18 Manrope,sans-serif;letter-spacing:-.025em}.tech-fund-node p{margin:9px 0 0;color:#667873;font-size:13px;line-height:1.6;max-width:250px}
.tech-control-facts{position:relative;z-index:2;display:grid;grid-template-columns:repeat(3,1fr);gap:12px;margin-top:38px;padding-top:30px;border-top:1px solid rgba(7,22,21,.075)}
.tech-control-fact{padding:20px 22px;border-radius:17px;background:#f1faf7;border:1px solid rgba(0,124,109,.07)}.tech-control-fact span{display:block;color:#008f7c;font:700 9px/1 "Geist Mono",monospace;letter-spacing:.10em}.tech-control-fact strong{display:block;margin-top:8px;color:#10201d;font:750 18px/1.25 Manrope,sans-serif;letter-spacing:-.02em}

.tech-security-grid{display:grid;grid-template-columns:minmax(0,.8fr) minmax(500px,1.2fr);gap:82px;align-items:center;margin-top:70px}
.tech-security-copy h3{margin:0;color:#fff;font:800 clamp(34px,4vw,52px)/1.02 Manrope,sans-serif;letter-spacing:-.05em}.tech-security-copy p{margin:20px 0 0;max-width:560px;color:rgba(237,250,246,.60);font-size:15px;line-height:1.75}
.tech-security-points{display:grid;gap:0;margin-top:34px;border-top:1px solid rgba(255,255,255,.09)}.tech-security-point{display:grid;grid-template-columns:36px 1fr;gap:17px;padding:20px 0;border-bottom:1px solid rgba(255,255,255,.09)}.tech-security-point i{width:31px;height:31px;border-radius:10px;display:grid;place-items:center;border:1px solid rgba(39,225,193,.14);background:rgba(39,225,193,.05);color:var(--aqua);font:700 10px/1 "Geist Mono",monospace;font-style:normal}.tech-security-point strong{display:block;color:#f6fcfa;font-size:14px}.tech-security-point span{display:block;margin-top:5px;color:rgba(237,250,246,.48);font-size:12px;line-height:1.55}
.tech-mpc-stage{position:relative;min-height:480px;border:1px solid rgba(255,255,255,.09);border-radius:28px;background:radial-gradient(circle at 50% 45%,rgba(39,225,193,.09),transparent 34%),rgba(255,255,255,.025);overflow:hidden;box-shadow:0 34px 90px -68px #000}
.tech-mpc-stage::before{content:"";position:absolute;inset:0;background-image:radial-gradient(circle at 50% 50%,rgba(255,255,255,.035) 0 1px,transparent 1.3px);background-size:21px 21px;mask-image:radial-gradient(circle,#000,transparent 72%)}
.mpc-key{position:absolute;top:74px;width:170px;padding:18px;border:1px solid rgba(255,255,255,.09);border-radius:17px;background:rgba(255,255,255,.035);z-index:2}.mpc-key.left{left:54px}.mpc-key.right{right:54px}.mpc-key small{display:block;color:rgba(237,250,246,.38);font:700 8px/1 "Geist Mono",monospace;letter-spacing:.11em}.mpc-key strong{display:block;margin-top:8px;color:#fff;font-size:15px}.mpc-key em{display:block;margin-top:5px;color:rgba(237,250,246,.48);font-size:11px;font-style:normal}
.mpc-center{position:absolute;left:50%;top:52%;width:166px;height:166px;transform:translate(-50%,-50%);display:grid;place-items:center;border-radius:50%;border:1px solid rgba(39,225,193,.23);background:radial-gradient(circle,rgba(39,225,193,.16),rgba(7,22,21,.94) 70%);z-index:3;text-align:center;box-shadow:0 0 70px rgba(39,225,193,.10)}.mpc-center strong{color:#fff;font:800 23px/1 Manrope,sans-serif;letter-spacing:-.04em}.mpc-center span{display:block;margin-top:7px;color:var(--aqua);font:700 8px/1.2 "Geist Mono",monospace;letter-spacing:.10em}
.mpc-branch{position:absolute;top:176px;height:1px;width:180px;background:linear-gradient(90deg,rgba(39,225,193,.08),rgba(39,225,193,.42),rgba(67,199,255,.12));z-index:1}.mpc-branch.left{left:179px;transform:rotate(29deg)}.mpc-branch.right{right:179px;transform:rotate(-29deg)}
.mpc-output{position:absolute;left:50%;bottom:52px;transform:translateX(-50%);width:310px;padding:18px 20px;text-align:center;border-radius:16px;border:1px solid rgba(39,225,193,.14);background:rgba(39,225,193,.055);z-index:3}.mpc-output small{display:block;color:var(--aqua);font:700 8px/1 "Geist Mono",monospace;letter-spacing:.11em}.mpc-output strong{display:block;margin-top:8px;color:#fff;font-size:15px}

.tech-ip-band{margin-top:60px;display:grid;grid-template-columns:1.05fr .95fr;border:1px solid rgba(7,22,21,.07);border-radius:28px;background:#fff;overflow:hidden;box-shadow:0 34px 84px -68px rgba(7,22,21,.35)}
.tech-ip-primary{position:relative;padding:52px 54px;background:linear-gradient(145deg,#071615,#0b2420);color:#fff;overflow:hidden}.tech-ip-primary::after{content:"74";position:absolute;right:-18px;bottom:-80px;color:rgba(255,255,255,.025);font:850 280px/1 Manrope,sans-serif;letter-spacing:-.09em}.tech-ip-primary small{color:var(--aqua);font:700 9px/1 "Geist Mono",monospace;letter-spacing:.13em}.tech-ip-primary strong{position:relative;z-index:2;display:block;margin-top:20px;color:#fff;font:830 clamp(72px,9vw,124px)/.8 Manrope,sans-serif;letter-spacing:-.08em}.tech-ip-primary h3{position:relative;z-index:2;margin:24px 0 0;max-width:460px;color:#fff;font:770 28px/1.08 Manrope,sans-serif;letter-spacing:-.04em}.tech-ip-primary p{position:relative;z-index:2;margin:14px 0 0;max-width:480px;color:rgba(237,250,246,.56);font-size:14px;line-height:1.65}
.tech-ip-side{display:grid;grid-template-rows:1fr 1fr}.tech-ip-stat{padding:42px 46px;border-bottom:1px solid rgba(7,22,21,.07)}.tech-ip-stat:last-child{border-bottom:0}.tech-ip-stat span{display:block;color:#71817d;font:700 9px/1 "Geist Mono",monospace;letter-spacing:.11em}.tech-ip-stat strong{display:block;margin-top:12px;color:#071615;font:820 46px/1 Manrope,sans-serif;letter-spacing:-.055em}.tech-ip-stat p{margin:8px 0 0;color:#667873;font-size:13px;line-height:1.55}
.tech-reliability{display:grid;grid-template-columns:minmax(300px,.7fr) 1.3fr;gap:72px;align-items:start;margin-top:62px}.tech-reliability-intro strong{display:block;color:#fff;font:800 clamp(44px,5vw,64px)/.95 Manrope,sans-serif;letter-spacing:-.06em}.tech-reliability-intro p{margin:17px 0 0;color:rgba(237,250,246,.56);font-size:14px;line-height:1.7}.tech-reliability-grid{display:grid;grid-template-columns:repeat(2,1fr);border-top:1px solid rgba(255,255,255,.09);border-left:1px solid rgba(255,255,255,.09)}.tech-reliability-item{min-height:150px;padding:28px;border-right:1px solid rgba(255,255,255,.09);border-bottom:1px solid rgba(255,255,255,.09)}.tech-reliability-item strong{display:block;color:#fff;font:800 38px/1 Manrope,sans-serif;letter-spacing:-.05em}.tech-reliability-item span{display:block;margin-top:10px;color:var(--aqua);font:700 9px/1.3 "Geist Mono",monospace;letter-spacing:.10em}.tech-reliability-item p{margin:7px 0 0;color:rgba(237,250,246,.46);font-size:11px;line-height:1.5}
.tech-doc-link{margin-top:42px;display:inline-flex;align-items:center;gap:10px;color:#fff;font-size:14px;font-weight:730}.tech-doc-link i{width:30px;height:30px;border-radius:50%;display:grid;place-items:center;background:rgba(39,225,193,.09);border:1px solid rgba(39,225,193,.14);color:var(--aqua);font-style:normal}

.company-hero-visual{position:relative;width:100%;max-width:520px;min-height:520px;justify-self:end;align-self:start;padding-top:0}
.company-monolith{position:absolute;inset:18px 18px 18px 66px;border:1px solid rgba(255,255,255,.08);border-radius:30px;background:linear-gradient(145deg,rgba(255,255,255,.04),rgba(255,255,255,.015));overflow:hidden}
.company-monolith::before{content:"";position:absolute;width:520px;height:520px;right:-120px;top:40px;border:66px solid rgba(39,225,193,.055);border-radius:50%}
.company-monolith::after{content:"";position:absolute;width:290px;height:290px;right:-5px;top:155px;border:1px solid rgba(67,199,255,.10);border-radius:50%}
.company-signal{position:absolute;left:36px;top:36px;color:rgba(237,250,246,.38);font:700 8px/1.4 "Geist Mono",monospace;letter-spacing:.11em}.company-signal b{display:block;margin-top:7px;color:#fff;font:770 16px/1.2 Manrope,sans-serif;letter-spacing:-.02em}
.company-year{position:absolute;left:36px;bottom:34px;color:#fff;font:820 82px/.9 Manrope,sans-serif;letter-spacing:-.075em}.company-year small{display:block;margin-bottom:9px;color:var(--aqua);font:700 8px/1 "Geist Mono",monospace;letter-spacing:.12em}
.company-monolith-note{position:absolute;right:34px;bottom:38px;width:180px;color:rgba(237,250,246,.44);font-size:11px;line-height:1.55}

.company-definition{display:grid;grid-template-columns:.85fr 1.15fr;gap:96px;align-items:start;margin-top:64px}.company-definition-lead{color:#071615;font:780 clamp(36px,4.5vw,58px)/1.02 Manrope,sans-serif;letter-spacing:-.052em}.company-definition-copy p{margin:0;color:#5f716c;font-size:16px;line-height:1.78}.company-definition-copy p+p{margin-top:18px}
.company-section-head-copy p{margin:0;color:#667873;font-size:16px;line-height:1.72}.company-section-head-copy p+p{margin-top:12px}
.company-principles{display:grid;grid-template-columns:repeat(3,1fr);gap:18px;margin-top:58px}.company-principle{min-height:250px;padding:30px;border:1px solid rgba(7,22,21,.075);border-radius:22px;background:#fff;box-shadow:0 22px 55px -48px rgba(7,22,21,.30)}.company-principle i{width:42px;height:42px;border-radius:13px;display:grid;place-items:center;background:#ecfbf7;color:#007c6d;font-style:normal}.company-principle i svg{width:20px;height:20px;fill:none;stroke:currentColor;stroke-width:1.6;stroke-linecap:round;stroke-linejoin:round}.company-principle h3{margin:24px 0 0;color:#10201d;font:760 22px/1.15 Manrope,sans-serif;letter-spacing:-.03em}.company-principle p{margin:10px 0 0;color:#667873;font-size:13px;line-height:1.65}

.company-proof-band{display:grid;grid-template-columns:repeat(4,1fr);margin-top:62px;border:1px solid rgba(255,255,255,.09);border-radius:26px;overflow:hidden;background:rgba(255,255,255,.025)}.company-proof-item{min-height:190px;padding:32px;border-right:1px solid rgba(255,255,255,.09)}.company-proof-item:last-child{border-right:0}.company-proof-item span{display:block;color:rgba(237,250,246,.42);font:700 8px/1.3 "Geist Mono",monospace;letter-spacing:.11em}.company-proof-item strong{display:block;margin-top:14px;color:#fff;font:820 46px/.95 Manrope,sans-serif;letter-spacing:-.06em}.company-proof-item p{margin:11px 0 0;color:rgba(237,250,246,.52);font-size:12px;line-height:1.55}

.company-awards{margin-top:66px;border-top:1px solid rgba(7,22,21,.09)}.company-award-row{display:grid;grid-template-columns:120px 1fr auto;gap:34px;align-items:center;min-height:112px;padding:22px 0;border-bottom:1px solid rgba(7,22,21,.09)}.company-award-year{color:#009984;font:800 18px/1 Manrope,sans-serif}.company-award-row h3{margin:0;color:#10201d;font:750 19px/1.25 Manrope,sans-serif;letter-spacing:-.02em}.company-award-row p{margin:6px 0 0;color:#758681;font-size:12px;line-height:1.5}.company-award-mark{width:37px;height:37px;border-radius:50%;display:grid;place-items:center;border:1px solid rgba(0,124,109,.10);background:#ecfbf7;color:#007c6d;font-size:15px}

.company-paths{display:grid;grid-template-columns:repeat(3,1fr);gap:16px;margin-top:60px}.company-path{position:relative;min-height:310px;padding:32px;border:1px solid rgba(255,255,255,.09);border-radius:22px;background:rgba(255,255,255,.025);overflow:hidden}.company-path::after{content:"";position:absolute;right:-55px;bottom:-70px;width:180px;height:180px;border:1px solid rgba(39,225,193,.10);border-radius:50%}.company-path span{color:var(--aqua);font:700 9px/1 "Geist Mono",monospace;letter-spacing:.12em}.company-path h3{margin:19px 0 0;color:#fff;font:770 27px/1.08 Manrope,sans-serif;letter-spacing:-.04em}.company-path p{margin:14px 0 0;color:rgba(237,250,246,.54);font-size:13px;line-height:1.66}.company-path a{position:absolute;left:32px;bottom:30px;color:#fff;font-size:13px;font-weight:720}.company-path a::after{content:" →";color:var(--aqua)}

@media(max-width:1100px){
  .inner-page-hero-grid{grid-template-columns:1fr;gap:58px;padding:72px 0 96px}
  .inner-page-hero-grid>div:first-child{max-width:800px;display:block;align-self:auto}
  .inner-page-hero h1{max-width:760px;font-size:clamp(42px,6.2vw,56px)}
  .inner-page-actions{margin-top:44px}
  .tech-hero-visual,.company-hero-visual{min-height:500px;justify-self:center;max-width:620px}
  .tech-orbit{width:500px}.company-monolith{inset:0 8%}
  .tech-security-grid,.company-definition{grid-template-columns:1fr;gap:46px}.tech-mpc-stage{min-height:460px}.tech-ip-band{grid-template-columns:1fr}.tech-ip-side{grid-template-columns:1fr 1fr;grid-template-rows:auto}.tech-ip-stat{border-bottom:0;border-right:1px solid rgba(7,22,21,.07)}.tech-ip-stat:last-child{border-right:0}
  .company-proof-band{grid-template-columns:repeat(2,1fr)}.company-proof-item:nth-child(2){border-right:0}.company-proof-item:nth-child(-n+2){border-bottom:1px solid rgba(255,255,255,.09)}
}
@media(max-width:820px){
  .inner-section{padding:96px 0}.inner-section-head{grid-template-columns:1fr;gap:22px;margin-bottom:48px}.tech-fund-path{grid-template-columns:1fr 1fr;gap:34px}.tech-fund-path::before{display:none}.tech-control-facts,.company-principles,.company-paths{grid-template-columns:1fr}.tech-reliability{grid-template-columns:1fr;gap:38px}.company-award-row{grid-template-columns:82px 1fr}.company-award-mark{display:none}
}
@media(max-width:620px){
  .inner-page-hero{min-height:auto;padding:0}.inner-page-hero-grid{gap:46px;padding:56px 0 82px}.inner-page-eyebrow{margin-bottom:20px;font-size:9px}.inner-page-hero h1{font-size:clamp(34px,9.2vw,44px);line-height:.99}.inner-page-hero-lead{margin-top:23px;font-size:15px}.inner-page-actions{align-items:center;flex-direction:row;gap:18px;margin-top:36px}.inner-page-proofline{gap:14px 22px;margin-top:38px}.tech-hero-visual,.company-hero-visual{min-height:390px}.tech-orbit{width:350px}.tech-orbit::before{inset:40px}.tech-orbit::after{inset:86px}.tech-core{width:112px;height:112px}.tech-core strong{font-size:13px}.tech-orbit-node{width:116px;min-height:63px;padding:11px 12px;border-radius:13px}.tech-orbit-node strong{font-size:11.5px}.tech-orbit-node.customer{left:0;top:62px}.tech-orbit-node.mpc{right:0;top:60px}.tech-orbit-node.contract{left:0;bottom:54px}.tech-orbit-node.merchant{right:0;bottom:52px}.tech-orbit-line{display:none}
  .inner-section{padding:78px 0}.inner-section-head{margin-bottom:40px}.inner-section h2{font-size:clamp(34px,10vw,46px)}.inner-section-head>p{font-size:14px}.tech-control-board{margin-top:42px;padding:24px 20px}.tech-fund-path{grid-template-columns:1fr;gap:0}.tech-fund-node{padding:20px 0 22px 64px;border-bottom:1px solid rgba(7,22,21,.07)}.tech-fund-node:last-child{border-bottom:0}.tech-fund-icon{width:46px;height:46px;border-radius:14px;top:19px}.tech-fund-icon svg{width:19px;height:19px}.tech-fund-node small{margin-top:0}.tech-fund-node h3{font-size:18px}.tech-control-facts{grid-template-columns:1fr;margin-top:18px;padding-top:18px}.tech-security-grid{margin-top:45px}.tech-mpc-stage{min-height:430px}.mpc-key{width:138px;top:48px;padding:14px}.mpc-key.left{left:18px}.mpc-key.right{right:18px}.mpc-center{width:135px;height:135px}.mpc-center strong{font-size:19px}.mpc-branch{display:none}.mpc-output{bottom:34px;width:calc(100% - 38px)}.tech-ip-band{margin-top:42px}.tech-ip-primary{padding:38px 28px}.tech-ip-primary strong{font-size:82px}.tech-ip-side{grid-template-columns:1fr}.tech-ip-stat{padding:28px;border-right:0;border-bottom:1px solid rgba(7,22,21,.07)}.tech-ip-stat:last-child{border-bottom:0}.tech-reliability-grid{grid-template-columns:1fr}.tech-reliability-item{min-height:130px}.company-monolith{inset:0}.company-year{font-size:62px}.company-monolith-note{width:150px}.company-definition{margin-top:44px}.company-principle{min-height:auto}.company-proof-band{grid-template-columns:1fr}.company-proof-item,.company-proof-item:nth-child(2){border-right:0;border-bottom:1px solid rgba(255,255,255,.09)}.company-proof-item:last-child{border-bottom:0}.company-awards{margin-top:44px}.company-award-row{grid-template-columns:64px 1fr;gap:18px;min-height:102px}.company-award-year{font-size:15px}.company-award-row h3{font-size:16px}.company-path{min-height:280px}
}

.use-hero-visual{position:relative;width:100%;max-width:520px;min-height:520px;justify-self:end;align-self:start;display:grid;place-items:center}
.use-hero-stage{position:relative;width:min(500px,100%);height:470px;border:1px solid rgba(255,255,255,.085);border-radius:30px;background:radial-gradient(circle at 52% 47%,rgba(39,225,193,.095),transparent 34%),rgba(255,255,255,.022);box-shadow:0 38px 90px -65px #000;overflow:hidden}
.use-hero-stage::before{content:"";position:absolute;inset:0;background-image:linear-gradient(rgba(255,255,255,.022) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.022) 1px,transparent 1px);background-size:42px 42px;mask-image:radial-gradient(circle at center,#000,transparent 78%)}
.use-hero-core{position:absolute;z-index:5;left:50%;top:50%;width:154px;height:154px;transform:translate(-50%,-50%);display:grid;place-items:center;text-align:center;border-radius:50%;border:1px solid rgba(39,225,193,.22);background:radial-gradient(circle at 35% 28%,rgba(67,199,255,.17),rgba(1,182,155,.11) 48%,rgba(7,22,21,.93) 100%);box-shadow:0 0 78px rgba(39,225,193,.12),inset 0 1px 0 rgba(255,255,255,.06)}
.use-hero-core strong{display:block;color:#fff;font:800 20px/1 Manrope,sans-serif;letter-spacing:-.035em}.use-hero-core span{display:block;margin-top:8px;color:var(--aqua);font:700 8px/1.2 "Geist Mono",monospace;letter-spacing:.12em}
.use-hero-node{position:absolute;z-index:4;width:184px;min-height:82px;padding:15px 16px;border:1px solid rgba(255,255,255,.09);border-radius:16px;background:rgba(255,255,255,.04);backdrop-filter:blur(10px);box-shadow:0 20px 60px -48px #000}
.use-hero-node small{display:block;color:rgba(237,250,246,.40);font:700 8px/1 "Geist Mono",monospace;letter-spacing:.10em}.use-hero-node strong{display:block;margin-top:7px;color:#f7fcfb;font-size:13.5px;line-height:1.25}.use-hero-node p{margin:5px 0 0;color:rgba(237,250,246,.46);font-size:10.5px;line-height:1.4}
.use-hero-node.products{left:26px;top:32px}.use-hero-node.cross{right:24px;top:54px}.use-hero-node.onchain{left:30px;bottom:40px}.use-hero-node.outcome{right:24px;bottom:34px;border-color:rgba(39,225,193,.18);background:rgba(39,225,193,.06)}
.use-hero-path{position:absolute;z-index:2;height:1px;background:linear-gradient(90deg,rgba(39,225,193,.06),rgba(39,225,193,.5),rgba(67,199,255,.08));transform-origin:left}.use-hero-path::after{content:"";position:absolute;top:-3px;left:0;width:7px;height:7px;border-radius:50%;background:var(--aqua);box-shadow:0 0 14px rgba(39,225,193,.5);animation:useSignal 3.2s linear infinite}
.use-hero-path.a{width:175px;left:156px;top:133px;transform:rotate(23deg)}.use-hero-path.b{width:168px;left:292px;top:146px;transform:rotate(148deg)}.use-hero-path.c{width:174px;left:154px;bottom:132px;transform:rotate(-22deg)}.use-hero-path.d{width:168px;left:292px;bottom:128px;transform:rotate(-147deg)}.use-hero-path.b::after,.use-hero-path.d::after{animation-delay:1.6s}@keyframes useSignal{0%{left:0;opacity:0}15%{opacity:1}85%{opacity:1}100%{left:calc(100% - 7px);opacity:0}}

.use-page-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:16px;margin-top:58px}
.use-page-card{position:relative;min-height:268px;padding:28px;border:1px solid rgba(7,22,21,.075);border-radius:22px;background:#fff;box-shadow:0 24px 58px -50px rgba(7,22,21,.32);overflow:hidden;transition:transform .28s var(--ease),border-color .28s ease,box-shadow .28s ease}
.use-page-card:hover{transform:translateY(-3px);border-color:rgba(0,124,109,.15);box-shadow:0 30px 68px -52px rgba(7,22,21,.40)}
.use-page-card::after{content:"";position:absolute;right:-50px;bottom:-64px;width:150px;height:150px;border:1px solid rgba(1,182,155,.08);border-radius:50%}
.use-page-icon{width:44px;height:44px;border-radius:14px;display:grid;place-items:center;border:1px solid rgba(0,124,109,.09);background:linear-gradient(145deg,#f4fffc,#e6f8f4);color:#007c6d}
.use-page-icon svg{width:21px;height:21px;fill:none;stroke:currentColor;stroke-width:1.6;stroke-linecap:round;stroke-linejoin:round}
.use-page-card h3{margin:25px 0 0;color:#10201d;font:760 20px/1.16 Manrope,sans-serif;letter-spacing:-.025em}.use-page-card p{margin:10px 0 0;color:#667873;font-size:13px;line-height:1.64}
.use-page-card small{position:absolute;left:28px;bottom:26px;color:#008f7c;font:700 8px/1 "Geist Mono",monospace;letter-spacing:.11em}

.use-commerce-strip{display:grid;grid-template-columns:1fr auto 1fr auto 1fr;align-items:center;gap:22px;margin-top:24px;padding:24px 28px;border:1px solid rgba(7,22,21,.07);border-radius:20px;background:rgba(236,251,247,.72)}
.use-commerce-step span{display:block;color:#71817d;font:700 8px/1 "Geist Mono",monospace;letter-spacing:.10em}.use-commerce-step strong{display:block;margin-top:8px;color:#10201d;font:740 15px/1.25 Manrope,sans-serif}.use-commerce-arrow{color:#00a48e;font-size:18px}

.use-cross-board{display:grid;grid-template-columns:minmax(0,.8fr) minmax(480px,1.2fr);gap:56px;align-items:stretch;margin-top:60px}
.use-cross-value{position:relative;min-height:420px;padding:36px;border:1px solid rgba(255,255,255,.09);border-radius:26px;background:radial-gradient(circle at 76% 20%,rgba(67,199,255,.09),transparent 32%),rgba(255,255,255,.025);overflow:hidden}
.use-cross-value::before{content:"";position:absolute;right:-100px;top:-100px;width:320px;height:320px;border:1px solid rgba(39,225,193,.11);border-radius:50%}.use-cross-value>span{color:var(--aqua);font:700 9px/1 "Geist Mono",monospace;letter-spacing:.12em}.use-cross-value h3{max-width:420px;margin:22px 0 0;color:#fff;font:800 clamp(32px,3.6vw,48px)/1.02 Manrope,sans-serif;letter-spacing:-.045em}.use-cross-value p{max-width:430px;margin:16px 0 0;color:rgba(237,250,246,.55);font-size:14px;line-height:1.7}
.use-cross-metrics{position:absolute;left:36px;right:36px;bottom:34px;display:grid;grid-template-columns:repeat(3,1fr);gap:10px}.use-cross-metric{padding:17px;border-top:1px solid rgba(255,255,255,.09)}.use-cross-metric strong{display:block;color:#fff;font:780 22px/1 Manrope,sans-serif;letter-spacing:-.035em}.use-cross-metric span{display:block;margin-top:7px;color:rgba(237,250,246,.42);font:700 7.5px/1.35 "Geist Mono",monospace;letter-spacing:.09em}
.use-cross-cases{display:grid;grid-template-columns:1fr 1fr;gap:14px}.use-cross-case{min-height:196px;padding:24px;border:1px solid rgba(255,255,255,.085);border-radius:20px;background:rgba(255,255,255,.025)}.use-cross-case i{width:36px;height:36px;border-radius:11px;display:grid;place-items:center;background:rgba(39,225,193,.065);border:1px solid rgba(39,225,193,.11);color:var(--aqua);font-style:normal}.use-cross-case i svg{width:18px;height:18px;fill:none;stroke:currentColor;stroke-width:1.6;stroke-linecap:round;stroke-linejoin:round}.use-cross-case h3{margin:20px 0 0;color:#fff;font:740 18px/1.18 Manrope,sans-serif;letter-spacing:-.02em}.use-cross-case p{margin:8px 0 0;color:rgba(237,250,246,.50);font-size:12.5px;line-height:1.6}

.use-onchain-layout{display:grid;grid-template-columns:minmax(320px,.75fr) minmax(0,1.25fr);gap:72px;align-items:start;margin-top:64px}.use-onchain-intro{position:sticky;top:120px}.use-onchain-intro strong{display:block;color:#071615;font:800 clamp(34px,4vw,52px)/1.02 Manrope,sans-serif;letter-spacing:-.05em}.use-onchain-intro p{margin:18px 0 0;color:#667873;font-size:14px;line-height:1.72}.use-onchain-points{display:grid;gap:10px;margin-top:28px}.use-onchain-point{display:flex;align-items:center;gap:11px;padding:13px 0;border-top:1px solid rgba(7,22,21,.07);color:#30413d;font-size:13px}.use-onchain-point i{width:7px;height:7px;border-radius:50%;background:var(--teal);box-shadow:0 0 0 5px rgba(1,182,155,.07)}
.use-onchain-cases{display:grid;gap:12px}.use-onchain-case{display:grid;grid-template-columns:54px 1fr auto;gap:18px;align-items:center;min-height:116px;padding:20px 22px;border:1px solid rgba(7,22,21,.075);border-radius:19px;background:#fff;box-shadow:0 20px 48px -44px rgba(7,22,21,.28)}.use-onchain-case i{width:50px;height:50px;border-radius:15px;display:grid;place-items:center;background:#ecfbf7;color:#007c6d;font-style:normal}.use-onchain-case i svg{width:22px;height:22px;fill:none;stroke:currentColor;stroke-width:1.6;stroke-linecap:round;stroke-linejoin:round}.use-onchain-case h3{margin:0;color:#10201d;font:750 19px/1.18 Manrope,sans-serif;letter-spacing:-.025em}.use-onchain-case p{margin:6px 0 0;color:#667873;font-size:12.5px;line-height:1.55}.use-onchain-case em{color:#008f7c;font:700 8px/1 "Geist Mono",monospace;font-style:normal;letter-spacing:.10em}

.use-fit-stage{position:relative;margin-top:60px;padding:42px;border:1px solid rgba(255,255,255,.09);border-radius:28px;background:radial-gradient(circle at 50% 48%,rgba(39,225,193,.07),transparent 34%),rgba(255,255,255,.025);overflow:hidden}
.use-fit-flow{position:relative;z-index:2;display:grid;grid-template-columns:1fr auto 1.08fr auto 1fr;gap:24px;align-items:center}.use-fit-node{min-height:154px;padding:24px;border:1px solid rgba(255,255,255,.09);border-radius:19px;background:rgba(255,255,255,.035)}.use-fit-node.hashnut{border-color:rgba(39,225,193,.20);background:linear-gradient(145deg,rgba(39,225,193,.09),rgba(67,199,255,.035))}.use-fit-node span{display:block;color:rgba(237,250,246,.38);font:700 8px/1 "Geist Mono",monospace;letter-spacing:.11em}.use-fit-node strong{display:block;margin-top:12px;color:#fff;font:760 20px/1.14 Manrope,sans-serif;letter-spacing:-.025em}.use-fit-node p{margin:9px 0 0;color:rgba(237,250,246,.50);font-size:12.5px;line-height:1.55}.use-fit-arrow{color:var(--aqua);font-size:22px}.use-fit-points{display:grid;grid-template-columns:repeat(3,1fr);gap:12px;margin-top:18px}.use-fit-point{padding:19px 20px;border-top:1px solid rgba(255,255,255,.09)}.use-fit-point span{color:var(--aqua);font:700 8px/1 "Geist Mono",monospace;letter-spacing:.10em}.use-fit-point strong{display:block;margin-top:8px;color:#fff;font-size:14px;line-height:1.35}

@media(max-width:1100px){
  .use-hero-visual{min-height:490px;justify-self:center;max-width:620px}.use-hero-stage{width:500px}
  .use-page-grid{grid-template-columns:1fr 1fr}.use-cross-board{grid-template-columns:1fr;gap:22px}.use-cross-value{min-height:380px}.use-onchain-layout{grid-template-columns:1fr;gap:42px}.use-onchain-intro{position:static;max-width:680px}
}
@media(max-width:820px){
  .use-fit-flow{grid-template-columns:1fr;gap:12px}.use-fit-arrow{transform:rotate(90deg);text-align:center}.use-fit-points{grid-template-columns:1fr}.use-commerce-strip{grid-template-columns:1fr;gap:10px}.use-commerce-arrow{transform:rotate(90deg);text-align:center}.use-cross-cases{grid-template-columns:1fr 1fr}
}
@media(max-width:620px){
  .use-hero-visual{min-height:390px}.use-hero-stage{width:350px;height:370px;border-radius:24px}.use-hero-core{width:112px;height:112px}.use-hero-core strong{font-size:16px}.use-hero-node{width:132px;min-height:66px;padding:11px 12px;border-radius:13px}.use-hero-node strong{font-size:10.5px}.use-hero-node p{display:none}.use-hero-node.products{left:8px;top:25px}.use-hero-node.cross{right:8px;top:42px}.use-hero-node.onchain{left:10px;bottom:31px}.use-hero-node.outcome{right:8px;bottom:26px}.use-hero-path{display:none}
  .use-page-grid{grid-template-columns:1fr;margin-top:40px}.use-page-card{min-height:220px;padding:24px}.use-page-card small{left:24px;bottom:22px}.use-commerce-strip{padding:20px}.use-cross-board{margin-top:42px}.use-cross-value{min-height:470px;padding:26px}.use-cross-value h3{font-size:34px}.use-cross-metrics{left:26px;right:26px;bottom:24px;grid-template-columns:1fr}.use-cross-metric{padding:10px 0}.use-cross-cases{grid-template-columns:1fr}.use-cross-case{min-height:auto}.use-onchain-layout{margin-top:42px}.use-onchain-case{grid-template-columns:46px 1fr;gap:14px;padding:18px}.use-onchain-case i{width:44px;height:44px}.use-onchain-case em{grid-column:2}.use-fit-stage{margin-top:42px;padding:24px 20px}.use-fit-node{min-height:auto}.use-fit-points{margin-top:8px}
}

#productPage .product-calibration-eyebrow,
#technologyPage .inner-page-eyebrow,
#companyPage .inner-page-eyebrow,
#useCasesPage .inner-page-eyebrow{
  display:flex;align-items:center;gap:10px;margin:0 0 22px;color:var(--aqua);
  font:700 12px/1.2 "Geist Mono",monospace;letter-spacing:.13em;text-transform:uppercase;
}
#productPage .product-calibration-eyebrow::before,
#technologyPage .inner-page-eyebrow::before,
#companyPage .inner-page-eyebrow::before,
#useCasesPage .inner-page-eyebrow::before{
  content:"";width:6px;height:6px;flex:0 0 auto;border-radius:50%;background:currentColor;
  box-shadow:0 0 14px rgba(39,225,193,.18);
}
#productPage .product-section-tag,
#technologyPage .inner-section-tag,
#companyPage .inner-section-tag,
#useCasesPage .inner-section-tag{
  display:flex;align-items:center;gap:10px;margin:0 0 22px;color:var(--action);
  font:700 11px/1.2 "Geist Mono",monospace;letter-spacing:.13em;text-transform:uppercase;
}
#productPage .product-section-tag::before,
#technologyPage .inner-section-tag::before,
#companyPage .inner-section-tag::before,
#useCasesPage .inner-section-tag::before{
  content:"";width:6px;height:6px;flex:0 0 auto;border-radius:50%;background:currentColor;
  box-shadow:0 0 14px rgba(1,182,155,.18);
}
#productPage .product-section.dark .product-section-tag,
#technologyPage .inner-section.dark .inner-section-tag,
#companyPage .inner-section.dark .inner-section-tag,
#useCasesPage .inner-section.dark .inner-section-tag{color:var(--aqua)}

@media(max-width:640px){
  #productPage .product-calibration-eyebrow,
  #technologyPage .inner-page-eyebrow,
  #companyPage .inner-page-eyebrow,
#useCasesPage .inner-page-eyebrow{margin-bottom:20px;font-size:9px}
}

body[data-site-page="technology"] .desktop-nav a[data-nav="technology"],body[data-site-page="company"] .desktop-nav a[data-nav="company"],body[data-site-page="use-cases"] .desktop-nav a[data-nav="use-cases"]{color:#071615}
body[data-site-page="technology"] .desktop-nav a[data-nav="technology"]::after,body[data-site-page="company"] .desktop-nav a[data-nav="company"]::after,body[data-site-page="use-cases"] .desktop-nav a[data-nav="use-cases"]::after{opacity:1;transform:scaleX(1)}

.home-sales-diff .sales-model.hashnut-model{
  background-color:#ffffff !important;
  background-image:linear-gradient(
    112deg,
    #ffffff 0%,
    #ffffff 18%,
    #f2fffc 36%,
    #d7faf3 62%,
    #c8f3f4 80%,
    #bfeaff 100%
  ) !important;
  border-color:rgba(39,225,193,.48) !important;
}
.home-sales-diff .sales-model.hashnut-model::before{
  background:
    linear-gradient(rgba(1,182,155,.022) 1px,transparent 1px),
    linear-gradient(90deg,rgba(1,182,155,.022) 1px,transparent 1px) !important;
  background-size:32px 32px !important;
  opacity:.72;
}

.enterprise-proof-section .section-head{
  margin-bottom:56px;
}
.enterprise-proof-v2{
  display:grid !important;
  grid-template-columns:minmax(0,.90fr) minmax(0,1.12fr) minmax(0,1fr) !important;
  gap:16px !important;
  align-items:stretch !important;
}
.enterprise-proof-v2 .ep-panel{
  position:relative;
  min-width:0;
  min-height:510px;
  padding:24px;
  overflow:hidden;
  border:1px solid rgba(7,22,21,.08);
  border-radius:22px;
  background:
    radial-gradient(circle at 92% 8%,rgba(39,225,193,.09),transparent 34%),
    linear-gradient(145deg,#ffffff 0%,#fbfefd 62%,#f1faf8 100%);
  box-shadow:
    0 26px 54px -46px rgba(0,80,68,.28),
    inset 0 1px 0 rgba(255,255,255,.92);
}
.enterprise-proof-v2 .ep-panel::before{
  content:"";
  position:absolute;
  left:24px;
  right:24px;
  top:0;
  height:1px;
  background:linear-gradient(90deg,rgba(1,182,155,.68),rgba(67,199,255,.26),transparent 88%);
}
.enterprise-proof-v2 .ep-panel-head{
  display:flex;
  align-items:flex-start;
  gap:12px;
  position:relative;
  z-index:2;
}
.enterprise-proof-v2 .ep-icon{
  width:38px;
  height:38px;
  flex:0 0 38px;
  display:grid;
  place-items:center;
  border-radius:11px;
  color:#007c6d;
  border:1px solid rgba(1,182,155,.16);
  background:rgba(39,225,193,.09);
}
.enterprise-proof-v2 .ep-icon svg{
  width:20px;
  height:20px;
  fill:none;
  stroke:currentColor;
  stroke-width:1.65;
  stroke-linecap:round;
  stroke-linejoin:round;
}
.enterprise-proof-v2 .ep-panel-head small{
  display:block;
  margin:2px 0 7px;
  color:#007c6d;
  font:750 10px/1.2 "Geist Mono",monospace;
  letter-spacing:.13em;
}
.enterprise-proof-v2 .ep-panel-head strong{
  display:block;
  color:var(--ink);
  font:750 17px/1.18 Manrope,sans-serif;
  letter-spacing:-.025em;
}
.enterprise-proof-v2 .ep-panel-note{
  position:absolute;
  left:24px;
  right:24px;
  bottom:22px;
  margin:0;
  color:#687a74;
  font-size:12.5px;
  line-height:1.58;
}

.enterprise-proof-v2 .ep-ip-main{
  position:relative;
  z-index:2;
  margin-top:44px;
}
.enterprise-proof-v2 .ep-big-stat{
  padding-bottom:28px;
  border-bottom:1px solid rgba(7,22,21,.075);
}
.enterprise-proof-v2 .ep-big-stat .trust-proof-premium-number{
  font-size:clamp(68px,6vw,94px);
  line-height:.84;
  background:linear-gradient(90deg,#071615 0%,#007c6d 58%,#43c7ff 118%);
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}
.enterprise-proof-v2 .ep-big-stat > span,
.enterprise-proof-v2 .ep-mini-stat > span,
.enterprise-proof-v2 .ep-uptime > span{
  display:block;
  margin-top:12px;
  color:#70817c;
  font:750 10px/1.25 "Geist Mono",monospace;
  letter-spacing:.12em;
}
.enterprise-proof-v2 .ep-ip-side{
  display:grid;
  grid-template-columns:.72fr 1.28fr;
  gap:12px;
  padding-top:18px;
}
.enterprise-proof-v2 .ep-mini-stat{
  min-width:0;
  padding:16px 0 0;
}
.enterprise-proof-v2 .ep-mini-stat + .ep-mini-stat{
  padding-left:18px;
  border-left:1px solid rgba(7,22,21,.07);
}
.enterprise-proof-v2 .ep-mini-stat .trust-proof-premium-number{
  font-size:clamp(34px,3.1vw,48px);
  line-height:.9;
  color:#0b2924;
}
.enterprise-proof-v2 .ep-mini-stat .trust-proof-premium-number.money{
  white-space:nowrap;
}
.enterprise-proof-v2 .ep-mini-stat .trust-proof-premium-number.money .prefix{
  font-size:.34em;
}
.enterprise-proof-v2 .ep-mini-stat .trust-proof-premium-number.money .suffix{
  font-size:.56em;
}

.enterprise-proof-v2 .ep-reliability{
  color:#fff;
  border-color:rgba(39,225,193,.24);
  background:
    radial-gradient(circle at 82% 16%,rgba(67,199,255,.14),transparent 33%),
    radial-gradient(circle at 20% 92%,rgba(39,225,193,.12),transparent 40%),
    linear-gradient(145deg,#071615 0%,#09231f 54%,#0a302b 100%);
  box-shadow:0 34px 68px -48px rgba(0,124,109,.66);
}
.enterprise-proof-v2 .ep-reliability::before{
  background:linear-gradient(90deg,var(--aqua),var(--cyan),transparent 88%);
  opacity:.88;
}
.enterprise-proof-v2 .ep-reliability::after{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px,transparent 1px),
    linear-gradient(90deg,rgba(255,255,255,.025) 1px,transparent 1px);
  background-size:34px 34px;
  mask-image:linear-gradient(to bottom,#000,rgba(0,0,0,.52) 72%,transparent);
}
.enterprise-proof-v2 .ep-reliability > *{
  position:relative;
  z-index:2;
}
.enterprise-proof-v2 .ep-panel-head.light .ep-icon{
  color:var(--aqua);
  border-color:rgba(39,225,193,.22);
  background:rgba(39,225,193,.08);
}
.enterprise-proof-v2 .ep-panel-head.light small{
  color:var(--aqua);
}
.enterprise-proof-v2 .ep-panel-head.light strong{
  color:#f3fbf8;
}
.enterprise-proof-v2 .ep-uptime{
  margin-top:48px;
}
.enterprise-proof-v2 .ep-uptime .trust-proof-premium-number{
  font-size:clamp(72px,7vw,104px);
  line-height:.82;
  letter-spacing:-.075em;
  background:linear-gradient(90deg,#ffffff 0%,#cffff5 48%,#7ddfff 112%);
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}
.enterprise-proof-v2 .ep-uptime .trust-proof-premium-number .suffix{
  font-size:.52em;
  margin-left:2px;
}
.enterprise-proof-v2 .ep-uptime > span{
  color:rgba(225,244,239,.56);
}
.enterprise-proof-v2 .ep-zero-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:1px;
  margin-top:34px;
  border:1px solid rgba(255,255,255,.075);
  border-radius:15px;
  overflow:hidden;
  background:rgba(255,255,255,.075);
}
.enterprise-proof-v2 .ep-zero-grid > div{
  min-width:0;
  padding:17px 13px 15px;
  background:rgba(7,22,21,.68);
}
.enterprise-proof-v2 .ep-zero-grid strong{
  display:block;
  color:#fff;
  font:800 30px/.9 Manrope,sans-serif;
  letter-spacing:-.055em;
}
.enterprise-proof-v2 .ep-zero-grid span{
  display:block;
  margin-top:8px;
  color:rgba(221,240,235,.49);
  font:700 8px/1.35 "Geist Mono",monospace;
  letter-spacing:.085em;
}
.enterprise-proof-v2 .ep-reliability .ep-panel-note{
  color:rgba(222,241,236,.50);
}

.enterprise-proof-v2 .ep-adoption{
  display:flex;
  flex-direction:column;
}
.enterprise-proof-v2 .ep-adoption-media{
  position:relative;
  margin-top:30px;
  height:220px;
  overflow:hidden;
  border-radius:16px;
  border:1px solid rgba(7,22,21,.075);
  background:#edf5f3;
}
.enterprise-proof-v2 .ep-adoption-media img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center 50%;
  display:block;
  filter:saturate(.90) contrast(1.03) brightness(.99);
  transform:scale(1.01);
}
.enterprise-proof-v2 .ep-adoption-media::after{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(180deg,rgba(7,22,21,0) 40%,rgba(7,22,21,.72) 100%),
    linear-gradient(90deg,rgba(39,225,193,.08),transparent 55%);
}
.enterprise-proof-v2 .ep-adoption-media span{
  position:absolute;
  z-index:2;
  left:15px;
  bottom:13px;
  color:#effbf7;
  font:750 8.5px/1.2 "Geist Mono",monospace;
  letter-spacing:.10em;
}
.enterprise-proof-v2 .ep-market-row{
  margin-top:auto;
  padding-top:24px;
}
.enterprise-proof-v2 .ep-market-row > strong{
  display:block;
  color:var(--ink);
  font:800 clamp(30px,3vw,44px)/.9 Manrope,sans-serif;
  letter-spacing:-.055em;
  background:linear-gradient(90deg,#071615 0%,#007c6d 55%,#43c7ff 112%);
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}
.enterprise-proof-v2 .ep-market-row p{
  margin:15px 0 0;
  color:#667873;
  font-size:13px;
  line-height:1.60;
}

@media(max-width:1120px){
  .enterprise-proof-v2{
    grid-template-columns:1fr 1fr !important;
  }
  .enterprise-proof-v2 .ep-adoption{
    grid-column:1/-1;
    min-height:460px;
    display:grid;
    grid-template-columns:.9fr 1.1fr;
    gap:24px;
    align-items:start;
  }
  .enterprise-proof-v2 .ep-adoption .ep-panel-head{
    grid-column:1/-1;
  }
  .enterprise-proof-v2 .ep-adoption-media{
    margin-top:4px;
    height:280px;
  }
  .enterprise-proof-v2 .ep-market-row{
    margin-top:4px;
    padding-top:20px;
    align-self:center;
  }
}
@media(max-width:760px){
  .enterprise-proof-section .section-head{
    margin-bottom:36px;
  }
  .enterprise-proof-v2{
    grid-template-columns:1fr !important;
    gap:12px !important;
  }
  .enterprise-proof-v2 .ep-panel{
    min-height:0;
    padding:20px 18px;
    border-radius:18px;
  }
  .enterprise-proof-v2 .ep-panel::before{
    left:18px;
    right:18px;
  }
  .enterprise-proof-v2 .ep-panel-note{
    position:static;
    margin-top:24px;
    font-size:12px;
  }
  .enterprise-proof-v2 .ep-ip-main{
    margin-top:34px;
  }
  .enterprise-proof-v2 .ep-big-stat .trust-proof-premium-number{
    font-size:68px;
  }
  .enterprise-proof-v2 .ep-ip-side{
    grid-template-columns:1fr 1fr;
  }
  .enterprise-proof-v2 .ep-uptime{
    margin-top:38px;
  }
  .enterprise-proof-v2 .ep-uptime .trust-proof-premium-number{
    font-size:76px;
  }
  .enterprise-proof-v2 .ep-zero-grid{
    margin-top:28px;
  }
  .enterprise-proof-v2 .ep-zero-grid span{
    font-size:7.5px;
  }
  .enterprise-proof-v2 .ep-adoption{
    grid-column:auto;
    display:flex;
    min-height:0;
  }
  .enterprise-proof-v2 .ep-adoption-media{
    margin-top:28px;
    height:230px;
  }
  .enterprise-proof-v2 .ep-market-row{
    margin-top:24px;
    padding-top:0;
  }
}
@media(max-width:480px){
  .enterprise-proof-v2 .ep-ip-side{
    grid-template-columns:1fr;
    gap:0;
  }
  .enterprise-proof-v2 .ep-mini-stat + .ep-mini-stat{
    margin-top:18px;
    padding-left:0;
    padding-top:18px;
    border-left:0;
    border-top:1px solid rgba(7,22,21,.07);
  }
  .enterprise-proof-v2 .ep-zero-grid{
    grid-template-columns:1fr;
  }
  .enterprise-proof-v2 .ep-zero-grid > div + div{
    border-top:1px solid rgba(255,255,255,.065);
  }
}

.enterprise-proof-v2 .ep-adoption-media{
  height:auto !important;
  min-height:0 !important;
  aspect-ratio:auto !important;
  background:#edf5f3;
  padding:0 18px 0 !important;
}
.enterprise-proof-v2 .ep-adoption-media img{
  width:86% !important;
  height:auto !important;
  max-height:none !important;
  object-fit:contain !important;
  object-position:center top !important;
  transform:none !important;
  margin:0 auto !important;
  filter:saturate(.98) contrast(1.06) brightness(1.01) !important;
}
.enterprise-proof-v2 .ep-adoption-media::after{
  display:none !important;
}
.enterprise-proof-v2 .ep-adoption-media span,
.enterprise-proof-v2 .ep-market-row{
  display:none !important;
}
@media(max-width:1120px){
  .enterprise-proof-v2 .ep-adoption-media{
    height:auto !important;
    padding:0 14px 0 !important;
  }
  .enterprise-proof-v2 .ep-adoption-media img{
    width:90% !important;
  }
}
@media(max-width:760px){
  .enterprise-proof-v2 .ep-adoption-media{
    height:auto !important;
    padding:0 10px 0 !important;
  }
  .enterprise-proof-v2 .ep-adoption-media img{
    width:100% !important;
  }
}

.enterprise-proof-section .section-head{
  margin-bottom:44px;
}
.enterprise-proof-v2{
  grid-template-columns:minmax(0,.90fr) minmax(0,1.12fr) minmax(0,.96fr) !important;
  gap:18px !important;
}
.enterprise-proof-v2 .ep-panel{
  min-height:528px;
  padding:26px 26px 24px;
  border-radius:24px;
  box-shadow:
    0 30px 64px -50px rgba(0,80,68,.24),
    inset 0 1px 0 rgba(255,255,255,.95);
}
.enterprise-proof-v2 .ep-panel::before{
  left:26px;
  right:26px;
}
.enterprise-proof-v2 .ep-panel-head{
  gap:14px;
}
.enterprise-proof-v2 .ep-icon{
  width:40px;
  height:40px;
  flex:0 0 40px;
  border-radius:12px;
}
.enterprise-proof-v2 .ep-panel-head small{
  margin:3px 0 8px;
  font-size:10.5px;
  letter-spacing:.14em;
}
.enterprise-proof-v2 .ep-panel-head strong{
  font-size:18.5px;
  line-height:1.12;
  max-width:20ch;
}
.enterprise-proof-v2 .ep-ip-main{
  margin-top:36px;
}
.enterprise-proof-v2 .ep-big-stat{
  padding-bottom:24px;
}
.enterprise-proof-v2 .ep-big-stat > span,
.enterprise-proof-v2 .ep-mini-stat > span,
.enterprise-proof-v2 .ep-uptime > span{
  margin-top:10px;
  font-size:10.2px;
}
.enterprise-proof-v2 .ep-ip-side{
  grid-template-columns:1fr 1fr;
  gap:14px;
  padding-top:16px;
}
.enterprise-proof-v2 .ep-mini-stat{
  padding:16px 16px 14px;
  border:1px solid rgba(7,22,21,.08);
  border-radius:16px;
  background:linear-gradient(145deg,rgba(255,255,255,.86),rgba(241,250,248,.98));
}
.enterprise-proof-v2 .ep-mini-stat + .ep-mini-stat{
  padding-left:16px;
  border-left:1px solid rgba(7,22,21,.08);
}
.enterprise-proof-v2 .ep-mini-stat .trust-proof-premium-number{
  font-size:clamp(36px,3vw,50px);
}
.enterprise-proof-v2 .ep-reliability{
  box-shadow:0 36px 72px -50px rgba(0,124,109,.62);
}
.enterprise-proof-v2 .ep-uptime{
  margin-top:42px;
}
.enterprise-proof-v2 .ep-zero-grid{
  margin-top:28px;
  border-radius:16px;
}
.enterprise-proof-v2 .ep-zero-grid > div{
  padding:18px 14px 16px;
  background:rgba(7,22,21,.60);
}
.enterprise-proof-v2 .ep-zero-grid strong{
  font-size:32px;
}
.enterprise-proof-v2 .ep-zero-grid span{
  margin-top:9px;
  font-size:8.2px;
  letter-spacing:.095em;
}
.enterprise-proof-v2 .ep-adoption{
  justify-content:flex-start;
}
.enterprise-proof-v2 .ep-adoption .ep-panel-head strong{
  max-width:18ch;
}
.enterprise-proof-v2 .ep-adoption-media{
  margin-top:26px;
  padding:8px 24px 0 !important;
  border-radius:18px;
  background:linear-gradient(180deg,#f7fbfa 0%,#edf5f3 100%);
  box-shadow:inset 0 1px 0 rgba(255,255,255,.94);
}
.enterprise-proof-v2 .ep-adoption-media img{
  width:82% !important;
  border-radius:12px;
  box-shadow:0 12px 28px rgba(7,22,21,.10);
  filter:saturate(1) contrast(1.08) brightness(1.02) !important;
}
@media(max-width:1120px){
  .enterprise-proof-section .section-head{
    margin-bottom:38px;
  }
  .enterprise-proof-v2 .ep-panel{
    min-height:0;
  }
  .enterprise-proof-v2 .ep-adoption-media{
    padding:6px 18px 0 !important;
  }
  .enterprise-proof-v2 .ep-adoption-media img{
    width:88% !important;
  }
}
@media(max-width:760px){
  .enterprise-proof-section .section-head{
    margin-bottom:34px;
  }
  .enterprise-proof-v2 .ep-panel{
    padding:20px 18px 18px;
    border-radius:20px;
  }
  .enterprise-proof-v2 .ep-panel::before{
    left:18px;
    right:18px;
  }
  .enterprise-proof-v2 .ep-panel-head strong{
    font-size:17px;
    max-width:none;
  }
  .enterprise-proof-v2 .ep-ip-side{
    gap:10px;
  }
  .enterprise-proof-v2 .ep-mini-stat,
  .enterprise-proof-v2 .ep-mini-stat + .ep-mini-stat{
    padding:14px 14px 12px;
  }
  .enterprise-proof-v2 .ep-adoption-media{
    margin-top:22px;
    padding:4px 12px 0 !important;
  }
  .enterprise-proof-v2 .ep-adoption-media img{
    width:100% !important;
  }
}

#homePage .hero-lead > strong:not(.grad){
  color:#f4fffc;
  font-weight:780;
}

.home-sales-diff .section-head{
  margin-bottom:46px;
}
.home-sales-diff .section-head h2{
  max-width:760px;
}
.home-sales-diff .section-copy p{
  max-width:610px;
}

.sales-core-values{
  position:relative;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:14px;
  margin-top:18px;
}
.sales-core-value{
  position:relative;
  min-width:0;
  min-height:322px;
  padding:27px 28px 25px;
  overflow:hidden;
  border-radius:22px;
  border:1px solid rgba(7,22,21,.08);
  background:linear-gradient(145deg,rgba(255,255,255,.98),rgba(244,252,249,.91));
  box-shadow:0 28px 58px -48px rgba(0,80,68,.32), inset 0 1px 0 rgba(255,255,255,.96);
}
.sales-core-value::before{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  background-image:
    linear-gradient(rgba(1,182,155,.020) 1px,transparent 1px),
    linear-gradient(90deg,rgba(1,182,155,.020) 1px,transparent 1px);
  background-size:34px 34px;
  mask-image:linear-gradient(to bottom,#000,rgba(0,0,0,.55) 68%,transparent);
}
.sales-core-value::after{
  content:"";
  position:absolute;
  width:260px;
  height:260px;
  right:-110px;
  top:-120px;
  border-radius:50%;
  pointer-events:none;
  background:radial-gradient(circle,rgba(39,225,193,.13),transparent 68%);
}
.sales-core-value.privacy-protection::after{
  background:radial-gradient(circle,rgba(67,199,255,.14),transparent 68%);
}
.sales-core-value > *{
  position:relative;
  z-index:2;
}
.sales-core-value-top{
  display:flex;
  align-items:center;
  justify-content:flex-start;
  gap:11px;
}
.sales-core-index{
  color:#007c6d;
  font:780 10px/1 "Geist Mono",monospace;
  letter-spacing:.13em;
}
.privacy-protection .sales-core-index{
  color:#087ea0;
}
.sales-core-icon{
  width:39px;
  height:39px;
  flex:0 0 39px;
  display:grid;
  place-items:center;
  border-radius:12px;
  color:#007c6d;
  border:1px solid rgba(1,182,155,.17);
  background:rgba(39,225,193,.075);
}
.privacy-protection .sales-core-icon{
  color:#1689ad;
  border-color:rgba(67,199,255,.18);
  background:rgba(67,199,255,.07);
}
.sales-core-icon svg{
  width:20px;
  height:20px;
  fill:none;
  stroke:currentColor;
  stroke-width:1.65;
  stroke-linecap:round;
  stroke-linejoin:round;
}
.sales-core-value h3{
  margin:27px 0 0;
  color:#0b211d;
  font:820 clamp(30px,3.15vw,46px)/.94 Manrope,sans-serif;
  letter-spacing:-.052em;
}
.fund-security h3{
  background:linear-gradient(90deg,#071615 0%,#007c6d 58%,#27e1c1 112%);
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}
.privacy-protection h3{
  background:linear-gradient(90deg,#071615 0%,#087f89 50%,#43c7ff 110%);
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}
.sales-core-line{
  display:block;
  margin-top:14px;
  color:#1a302b;
  font:760 18px/1.22 Manrope,sans-serif;
  letter-spacing:-.022em;
}
.sales-core-value > p{
  max-width:600px;
  margin:12px 0 0;
  color:#5f746d;
  font-size:13.5px;
  line-height:1.62;
}
.sales-core-tags{
  display:flex;
  flex-wrap:wrap;
  gap:7px;
  margin-top:21px;
}
.sales-core-tags span{
  padding:8px 9px 7px;
  border:1px solid rgba(7,22,21,.07);
  border-radius:9px;
  color:#62756f;
  background:rgba(255,255,255,.66);
  font:730 8.5px/1 "Geist Mono",monospace;
  letter-spacing:.075em;
}
.fund-security .sales-core-tags span:first-child,
.fund-security .sales-core-tags span:last-child{
  color:#007c6d;
  border-color:rgba(1,182,155,.13);
  background:rgba(39,225,193,.055);
}
.privacy-protection .sales-core-tags span:first-child,
.privacy-protection .sales-core-tags span:nth-child(2){
  color:#087e9e;
  border-color:rgba(67,199,255,.14);
  background:rgba(67,199,255,.052);
}

.home-sales-diff .sales-benefit-grid{
  margin-top:12px;
}
.home-sales-diff .sales-benefit-grid::before{
  content:"COMMERCIAL ADVANTAGES";
  grid-column:1/-1;
  display:block;
  padding:10px 1px 3px;
  color:#84948f;
  font:750 9px/1 "Geist Mono",monospace;
  letter-spacing:.14em;
}

@media(max-width:1100px){
  .sales-core-values{
    grid-template-columns:1fr;
  }
  .sales-core-value{
    min-height:0;
  }
}
@media(max-width:760px){
  .home-sales-diff .section-head{
    margin-bottom:32px;
  }
  .sales-core-values{
    gap:10px;
    margin-top:12px;
  }
  .sales-core-value{
    padding:21px 18px 19px;
    border-radius:18px;
  }
  .sales-core-value h3{
    margin-top:22px;
    font-size:34px;
  }
  .sales-core-line{
    margin-top:12px;
    font-size:16.5px;
  }
  .sales-core-value > p{
    font-size:12.8px;
  }
  .sales-core-tags{
    margin-top:18px;
  }
  .sales-core-tags span{
    font-size:8px;
  }
  .home-sales-diff .sales-benefit-grid::before{
    font-size:8.5px;
    padding-top:8px;
  }
}
@media(max-width:430px){
  .sales-core-value h3{
    font-size:30px;
  }
}

.home-sales-diff .section-head{
  margin-bottom:26px !important;
  display:block;
}
.home-sales-diff .section-head h2{
  max-width:none !important;
  margin-bottom:0;
}
.home-sales-diff .sales-core-values{
  margin-top:0 !important;
}
.home-sales-diff .sales-benefit-grid{
  margin-top:14px !important;
}
.home-sales-diff .sales-benefit-grid::before{
  content:none !important;
  display:none !important;
}

.technology .tech-architecture-comparison{
  position:relative;
  z-index:3;
  margin:34px 0 58px;
  padding:24px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.075);
  border-radius:24px;
  background:
    radial-gradient(circle at 82% 12%,rgba(39,225,193,.08),transparent 34%),
    linear-gradient(145deg,rgba(255,255,255,.035),rgba(255,255,255,.018));
  box-shadow:0 30px 66px -54px rgba(39,225,193,.34), inset 0 1px 0 rgba(255,255,255,.04);
}
.technology .tech-architecture-comparison::before{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  background-image:
    linear-gradient(rgba(255,255,255,.018) 1px,transparent 1px),
    linear-gradient(90deg,rgba(255,255,255,.018) 1px,transparent 1px);
  background-size:34px 34px;
  mask-image:linear-gradient(to bottom,#000,rgba(0,0,0,.48) 74%,transparent);
}
.technology .tech-architecture-comparison .sales-architecture-topline{
  position:relative;
  z-index:2;
  margin-bottom:18px;
  color:rgba(221,241,236,.48);
  font-size:10px;
}
.technology .tech-architecture-comparison .sales-architecture-topline i{
  background:linear-gradient(90deg,rgba(39,225,193,.32),rgba(67,199,255,.62));
}
.technology .tech-architecture-comparison .sales-models{
  position:relative;
  z-index:2;
  grid-template-columns:.72fr 1.28fr;
  gap:16px;
}
.technology .tech-architecture-comparison .sales-model{
  padding:21px;
  border-color:rgba(255,255,255,.07);
  background:rgba(255,255,255,.028);
  box-shadow:none;
}
.technology .tech-architecture-comparison .sales-model.conventional{
  align-self:center;
  opacity:.76;
}
.technology .tech-architecture-comparison .sales-model.hashnut-model{
  border-color:rgba(39,225,193,.24);
  background:
    radial-gradient(circle at 82% 18%,rgba(67,199,255,.10),transparent 34%),
    linear-gradient(135deg,rgba(39,225,193,.075),rgba(255,255,255,.035));
  box-shadow:0 28px 58px -48px rgba(39,225,193,.38);
}
.technology .tech-architecture-comparison .sales-model-kicker{
  color:rgba(220,237,232,.45);
}
.technology .tech-architecture-comparison .hashnut-model .sales-model-kicker{
  color:#77ead7;
}
.technology .tech-architecture-comparison .hashnut-model .sales-model-kicker span{
  color:#f1fbf8;
}
.technology .tech-architecture-comparison .sales-node{
  min-height:102px;
  border-color:rgba(255,255,255,.07);
  background:rgba(255,255,255,.035);
}
.technology .tech-architecture-comparison .sales-node.platform{
  background:rgba(255,255,255,.055);
}
.technology .tech-architecture-comparison .sales-node.mpc{
  border-color:rgba(39,225,193,.20);
  background:rgba(39,225,193,.055);
}
.technology .tech-architecture-comparison .sales-node.merchant-control{
  border-color:rgba(67,199,255,.19);
  background:linear-gradient(145deg,rgba(39,225,193,.06),rgba(67,199,255,.055));
}
.technology .tech-architecture-comparison .sales-node-icon,
.technology .tech-architecture-comparison .hashnut-model .sales-node-icon{
  color:#8ba29b;
  border-color:rgba(255,255,255,.08);
  background:rgba(255,255,255,.045);
}
.technology .tech-architecture-comparison .hashnut-model .sales-node-icon{
  color:#62dfca;
  border-color:rgba(39,225,193,.16);
}
.technology .tech-architecture-comparison .sales-node small{
  color:rgba(216,235,229,.42);
}
.technology .tech-architecture-comparison .sales-node strong,
.technology .tech-architecture-comparison .hashnut-model .sales-node strong{
  color:#eef8f5;
}
.technology .tech-architecture-comparison .sales-arrow{
  color:rgba(221,240,235,.28);
}
.technology .tech-architecture-comparison .sales-arrow.active{
  color:#27e1c1;
}
.technology .tech-architecture-comparison .sales-model > p{
  color:rgba(217,237,231,.48);
}
.technology .tech-architecture-comparison .hashnut-model > p{
  color:rgba(225,243,238,.68);
}
.technology .tech-system{
  margin-top:0;
}

@media(max-width:1100px){
  .technology .tech-architecture-comparison .sales-models{
    grid-template-columns:1fr;
  }
  .technology .tech-architecture-comparison .sales-model.conventional{
    opacity:.82;
  }
}
@media(max-width:760px){
  .home-sales-diff .section-head{
    margin-bottom:22px !important;
  }
  .technology .tech-architecture-comparison{
    margin:26px 0 42px;
    padding:16px;
    border-radius:19px;
  }
  .technology .tech-architecture-comparison .sales-flow{
    grid-template-columns:1fr;
  }
  .technology .tech-architecture-comparison .sales-arrow{
    transform:rotate(90deg);
    justify-self:center;
  }
}

.product-business-rail{
  margin-top:18px;
  display:grid;
  grid-template-columns:minmax(0,.88fr) auto minmax(0,1.14fr) auto minmax(0,1.28fr);
  gap:12px;
  align-items:stretch;
  padding:12px;
  border:1px solid rgba(7,22,21,.075);
  border-radius:18px;
  background:linear-gradient(145deg,rgba(255,255,255,.88),rgba(244,251,249,.92));
  box-shadow:0 22px 44px -42px rgba(0,80,68,.28), inset 0 1px 0 rgba(255,255,255,.96);
}
.product-business-rail .pbr-stage{
  min-width:0;
  padding:15px 16px;
  border-radius:13px;
  background:rgba(255,255,255,.72);
}
.product-business-rail .pbr-core{
  background:linear-gradient(135deg,rgba(39,225,193,.11),rgba(67,199,255,.08));
  border:1px solid rgba(1,182,155,.10);
}
.product-business-rail small{
  display:block;
  margin-bottom:8px;
  color:#71827d;
  font:750 8.5px/1.2 "Geist Mono",monospace;
  letter-spacing:.12em;
}
.product-business-rail strong{
  display:block;
  color:#10231f;
  font:720 13px/1.42 Manrope,sans-serif;
  letter-spacing:-.015em;
}
.product-business-rail .pbr-arrow{
  align-self:center;
  color:#34bda8;
  font:500 18px/1 Manrope,sans-serif;
}

.enterprise-proof-section .section-copy p{
  max-width:46ch;
}

#technology .sales-models{
  margin-bottom:34px;
}
#technology .tech-core{
  letter-spacing:.08em;
}

.home-use-compact{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:14px;
  margin-top:38px;
}
.home-use-card{
  position:relative;
  min-height:224px;
  padding:24px;
  overflow:hidden;
  border:1px solid rgba(7,22,21,.075);
  border-radius:20px;
  background:linear-gradient(145deg,rgba(255,255,255,.94),rgba(244,251,249,.86));
  box-shadow:0 24px 48px -44px rgba(0,80,68,.30), inset 0 1px 0 rgba(255,255,255,.96);
}
.home-use-card::before{
  content:"";
  position:absolute;
  left:24px;
  right:24px;
  top:0;
  height:1px;
  background:linear-gradient(90deg,rgba(1,182,155,.65),rgba(67,199,255,.22),transparent 90%);
}
.home-use-card::after{
  content:"";
  position:absolute;
  width:140px;
  height:140px;
  right:-62px;
  top:-65px;
  border-radius:50%;
  background:radial-gradient(circle,rgba(39,225,193,.12),transparent 68%);
  pointer-events:none;
}
.home-use-card small{
  position:relative;
  z-index:1;
  display:block;
  color:#007c6d;
  font:750 9px/1.25 "Geist Mono",monospace;
  letter-spacing:.12em;
}
.home-use-card h3{
  position:relative;
  z-index:1;
  margin:48px 0 0;
  color:#0b211d;
  font:760 clamp(22px,2vw,30px)/1.05 Manrope,sans-serif;
  letter-spacing:-.045em;
  max-width:14ch;
}
.home-use-card p{
  position:relative;
  z-index:1;
  margin:20px 0 0;
  color:#687a74;
  font:700 10px/1.55 "Geist Mono",monospace;
  letter-spacing:.055em;
  text-transform:uppercase;
}
.home-use-action{
  margin-top:24px;
  display:flex;
  justify-content:flex-end;
}
.home-use-link{
  display:inline-flex;
  align-items:center;
  min-height:44px;
  padding:0 18px;
  border:1px solid rgba(7,22,21,.10);
  border-radius:999px;
  color:#0b211d;
  background:rgba(255,255,255,.72);
  font:720 12px/1 Manrope,sans-serif;
  text-decoration:none;
  transition:transform .25s ease,border-color .25s ease,background .25s ease;
}
.home-use-link:hover{
  transform:translateY(-2px);
  border-color:rgba(1,182,155,.28);
  background:#fff;
}

@media(max-width:980px){
  .product-business-rail{
    grid-template-columns:1fr;
    gap:8px;
  }
  .product-business-rail .pbr-arrow{
    transform:rotate(90deg);
    justify-self:center;
  }
  .home-use-compact{
    grid-template-columns:1fr;
  }
  .home-use-card{
    min-height:190px;
  }
  .home-use-card h3{
    margin-top:34px;
    max-width:22ch;
  }
}
@media(max-width:640px){
  .product-business-rail{
    margin-top:12px;
    padding:8px;
    border-radius:15px;
  }
  .product-business-rail .pbr-stage{
    padding:13px 14px;
  }
  .home-use-compact{
    margin-top:28px;
    gap:10px;
  }
  .home-use-card{
    min-height:170px;
    padding:20px 18px;
    border-radius:17px;
  }
  .home-use-card::before{
    left:18px;
    right:18px;
  }
  .home-use-card h3{
    margin-top:30px;
    font-size:23px;
  }
  .home-use-action{
    justify-content:flex-start;
    margin-top:18px;
  }
}

.home-section-action{display:flex;justify-content:flex-end;margin-top:28px}
.home-section-action-dark .home-use-link{color:#dffbf4!important}
.home-section-action-dark .home-use-link::after{background:linear-gradient(90deg,var(--aqua),var(--cyan))}
@media(max-width:900px){.home-section-action{justify-content:flex-start}}
@media(max-width:620px){.home-section-action{margin-top:22px}}

#use-cases .section-copy p{max-width:60ch}
.home-usecase-shell{margin-top:40px;display:grid;grid-template-columns:minmax(260px,.86fr) minmax(0,1.38fr);gap:26px;align-items:start}
.home-usecase-nav{position:sticky;top:112px;display:grid;gap:0;border-top:1px solid rgba(7,22,21,.08)}
.home-usecase-nav.is-reordering{pointer-events:none}
.home-usecase-tab{position:relative;width:100%;padding:18px 10px 22px 0;background:none;border:0;border-bottom:1px solid rgba(7,22,21,.08);display:grid;grid-template-columns:34px minmax(0,1fr);gap:16px;text-align:left;cursor:pointer;color:#8b9793;transition:color .22s ease,opacity .22s ease}
.home-usecase-tab:hover{color:#2f4a45}
.home-usecase-tab.active{color:#0b211d}
.home-usecase-tab.active::before{content:"";position:absolute;left:0;top:20px;bottom:20px;width:3px;border-radius:99px;background:linear-gradient(180deg,var(--aqua),#59b9ff)}
.home-usecase-tab::after{content:"";position:absolute;left:0;right:0;bottom:-1px;height:2px;background:linear-gradient(90deg,var(--teal),var(--aqua),#59b9ff);transform:scaleX(0);transform-origin:left;opacity:0}
.home-usecase-tab.active.is-progressing::after{opacity:1;animation:homeUsecaseProgress 9.2s linear forwards}
.home-usecase-shell.is-paused .home-usecase-tab.active.is-progressing::after{animation-play-state:paused}
@keyframes homeUsecaseProgress{from{transform:scaleX(0)}to{transform:scaleX(1)}}
.home-usecase-tab-icon{width:34px;height:34px;border-radius:12px;border:1px solid rgba(7,22,21,.10);background:rgba(255,255,255,.70);display:grid;place-items:center;align-self:start;transition:border-color .22s ease,background .22s ease}
.home-usecase-tab.active .home-usecase-tab-icon{border-color:rgba(1,182,155,.18);background:rgba(255,255,255,.96)}
.home-usecase-tab-icon svg{width:16px;height:16px;stroke:currentColor;fill:none;stroke-width:1.7;stroke-linecap:round;stroke-linejoin:round}
.home-usecase-tab-body strong{display:block;margin-top:2px;color:inherit;font:730 clamp(15px,1.16vw,18px)/1.16 Manrope,sans-serif;letter-spacing:-.03em}
.home-usecase-tab-body p{margin:11px 0 0;color:#6e7f7a;font:560 13px/1.55 Manrope,sans-serif}
.home-usecase-panels{position:relative}
.home-usecase-panel{display:none}
.home-usecase-panel.active{display:block}
.home-usecase-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:18px}
.home-usecase-item{position:relative;min-height:126px;padding:26px 26px 22px;border:1px solid rgba(7,22,21,.08);border-radius:24px;background:rgba(255,255,255,.90);overflow:hidden;box-shadow:0 26px 50px -46px rgba(7,22,21,.30)}
.home-usecase-item::before{content:"";position:absolute;right:14px;top:10px;width:118px;height:118px;border-radius:28px;background:linear-gradient(145deg,rgba(1,182,155,.05),rgba(89,185,255,.03));opacity:.8}
.home-usecase-item .item-glyph{position:absolute;right:32px;top:26px;width:44px;height:44px;border-radius:16px;background:linear-gradient(145deg,rgba(1,182,155,.16),rgba(89,185,255,.14));display:grid;place-items:center;color:rgba(1,122,110,.34)}
.home-usecase-item .item-glyph svg{width:24px;height:24px;stroke:currentColor;fill:none;stroke-width:1.7;stroke-linecap:round;stroke-linejoin:round}
.home-usecase-item h3{position:relative;margin:22px 0 0;max-width:73%;color:#142b27;font:730 clamp(17px,1.5vw,20px)/1.12 Manrope,sans-serif;letter-spacing:-.038em}
.home-usecase-item p{position:relative;margin:12px 0 0;max-width:76%;color:#697a75;font:560 13px/1.58 Manrope,sans-serif}
.home-usecase-item.simple{min-height:92px;padding:22px 22px 18px}
.home-usecase-item.simple h3{margin:0;max-width:78%;font-size:17px;line-height:1.24}
.home-usecase-item.simple p{display:none}
.home-usecase-note{margin-top:14px;padding:0 2px;display:flex;align-items:flex-start;gap:10px;color:#8a6b26;font:560 11.8px/1.58 Manrope,sans-serif}
.home-usecase-note::before{content:"";flex:0 0 auto;width:6px;height:6px;margin-top:6px;border-radius:50%;background:#c99a39;box-shadow:0 0 0 5px rgba(201,154,57,.11)}
.home-usecase-panel[data-panel="enterprise"] .home-usecase-item::before{background:linear-gradient(145deg,rgba(67,199,255,.05),rgba(1,182,155,.025))}
.home-usecase-panel[data-panel="enterprise"] .item-glyph{background:linear-gradient(145deg,rgba(67,199,255,.16),rgba(1,182,155,.10));color:rgba(55,149,187,.34)}
.home-usecase-panel[data-panel="high-volume"] .home-usecase-item::before{background:linear-gradient(145deg,rgba(201,154,57,.06),rgba(255,255,255,.03))}
.home-usecase-panel[data-panel="high-volume"] .item-glyph{background:linear-gradient(145deg,rgba(201,154,57,.14),rgba(255,255,255,.08));color:rgba(138,107,38,.36)}
@media(max-width:980px){.home-usecase-shell{grid-template-columns:1fr;gap:20px}.home-usecase-nav{position:relative;top:auto;border-top:0;gap:10px}.home-usecase-tab{padding:0;border:0;grid-template-columns:1fr}.home-usecase-tab.active::before,.home-usecase-tab.active::after{display:none}.home-usecase-tab-icon{display:none}.home-usecase-tab-body{padding:16px 18px;border:1px solid rgba(7,22,21,.08);border-radius:18px;background:rgba(255,255,255,.76)}.home-usecase-tab.active .home-usecase-tab-body{border-color:rgba(1,182,155,.18);background:rgba(255,255,255,.96);box-shadow:0 16px 32px -30px rgba(7,22,21,.28)}.home-usecase-grid{grid-template-columns:repeat(2,minmax(0,1fr));gap:14px}.home-usecase-item{min-height:118px;padding:22px 20px 20px}.home-usecase-item .item-glyph{right:22px;top:20px}.home-usecase-item h3,.home-usecase-item p{max-width:74%}}
@media(max-width:640px){.home-usecase-shell{margin-top:28px;gap:16px}.home-usecase-tab-body strong{font-size:16px}.home-usecase-tab-body p{font-size:12.8px;margin-top:8px}.home-usecase-grid{grid-template-columns:1fr;gap:12px}.home-usecase-item,.home-usecase-item.simple{min-height:auto;padding:18px 18px 16px;border-radius:18px}.home-usecase-item::before{width:88px;height:88px;border-radius:20px;right:10px;top:8px}.home-usecase-item .item-glyph{width:36px;height:36px;right:18px;top:18px;border-radius:14px}.home-usecase-item .item-glyph svg{width:20px;height:20px}.home-usecase-item h3{margin-top:6px;max-width:78%;font-size:18px}.home-usecase-item p{margin-top:10px;max-width:82%;font-size:12.8px}.home-usecase-note{font-size:11.5px}}

#use-cases .section-head{
  margin-bottom:52px;
}
#use-cases .section-head > div:first-child{
  max-width:1180px;
}
#use-cases .section-head h2{
  max-width:1140px;
  font-size:clamp(38px,4.0vw,58px);
  line-height:1.01;
  letter-spacing:-.048em;
}
@media(max-width:900px){
  #use-cases .section-head{
    margin-bottom:42px;
  }
  #use-cases .section-head h2{
    font-size:clamp(34px,7.2vw,50px);
    line-height:1.03;
  }
}
@media(max-width:640px){
  #use-cases .section-head{
    margin-bottom:32px;
  }
  #use-cases .section-head h2{
    font-size:clamp(32px,9.2vw,42px);
    line-height:1.04;
  }
}

#homePage #why-hashnut .section-head,
#homePage #product .section-head,
#homePage #proof .section-head,
#homePage #technology .section-head,
#homePage #use-cases .section-head{
  margin-bottom:52px !important;
}

#homePage .section-copy{
  width:min(100%,840px);
  margin-top:22px;
}
#homePage .section-copy p{
  font-size:17px;
  line-height:1.72;
}

#homePage #why-hashnut .why-hashnut-head h2{
  font-size:clamp(36px,4.1vw,60px);
  line-height:.98;
}
#homePage #use-cases .section-head h2{
  font-size:clamp(38px,4vw,58px);
  line-height:1.01;
}

#homePage #product .section-head h2,
#homePage #proof .section-head h2,
#homePage #technology .section-head h2{
  font:800 clamp(42px,4.8vw,70px)/.96 Manrope,sans-serif;
  letter-spacing:-.052em;
}

#homePage .reveal.delay-1{transition-delay:.10s}
#homePage .reveal.delay-2{transition-delay:.20s}

@media(max-width:900px){
  #homePage #why-hashnut .section-head,
  #homePage #product .section-head,
  #homePage #proof .section-head,
  #homePage #technology .section-head,
  #homePage #use-cases .section-head{
    margin-bottom:42px !important;
  }
}
@media(max-width:640px){
  #homePage #why-hashnut .section-head,
  #homePage #product .section-head,
  #homePage #proof .section-head,
  #homePage #technology .section-head,
  #homePage #use-cases .section-head{
    margin-bottom:32px !important;
  }
}

#homePage #why-hashnut .sales-benefit-grid article{
  min-height:156px !important;
  padding:18px 18px 17px !important;
  display:grid !important;
  grid-template-rows:minmax(32px,auto) 46px minmax(34px,auto);
  align-content:stretch;
  justify-content:initial !important;
  row-gap:8px;
}

#homePage #why-hashnut .sales-benefit-grid article > small{
  position:relative !important;
  top:auto !important;
  left:auto !important;
  right:auto !important;
  display:block;
  align-self:start;
  min-height:32px;
  margin:0 !important;
  overflow-wrap:anywhere;
}

#homePage #why-hashnut .sales-benefit-grid article > strong{
  align-self:end;
  margin:0 !important;
  line-height:.94 !important;
}

#homePage #why-hashnut .sales-benefit-grid article > span{
  align-self:start;
  margin:0 !important;
  min-height:34px;
}

#homePage #why-hashnut .sales-benefit-grid .benefit-settlement > strong{
  font-size:clamp(25px,2.15vw,34px) !important;
}
#homePage #why-hashnut .sales-benefit-grid .benefit-fee > strong{
  font-size:clamp(25px,2.15vw,34px) !important;
}

@media(max-width:1100px){
  #homePage #why-hashnut .sales-benefit-grid article{
    min-height:148px !important;
  }
}
@media(max-width:640px){
  #homePage #why-hashnut .sales-benefit-grid article{
    min-height:132px !important;
    grid-template-rows:auto auto auto;
    row-gap:9px;
  }
  #homePage #why-hashnut .sales-benefit-grid article > small,
  #homePage #why-hashnut .sales-benefit-grid article > span{
    min-height:0;
  }
}

#homePage #product .product-flow-node,
#homePage #product .sales-flow-node,
#homePage #product .home-product-flow > *,
#homePage #product .product-demo-flow > *{
  background:rgba(255,255,255,.92);
  border:1px solid rgba(7,22,21,.09);
  border-radius:16px;
}

#homePage #product .product-flow-node:first-child,
#homePage #product .sales-flow-node:first-child,
#homePage #product .home-product-flow > *:first-child,
#homePage #product .product-demo-flow > *:first-child{
  background:rgba(255,255,255,.98);
  border-color:rgba(7,22,21,.11);
  box-shadow:0 10px 24px -22px rgba(7,22,21,.30);
}

#homePage #product .product-business-rail .pbr-stage{
  background:rgba(255,255,255,.94) !important;
  border:1px solid rgba(7,22,21,.085) !important;
  box-shadow:0 10px 24px -23px rgba(7,22,21,.30);
}
#homePage #product .product-business-rail .pbr-core{
  background:linear-gradient(135deg,rgba(39,225,193,.11),rgba(67,199,255,.08)) !important;
  border-color:rgba(1,182,155,.16) !important;
  box-shadow:0 10px 24px -22px rgba(1,120,105,.24);
}

#productPage .crypto-word{
  background:linear-gradient(90deg,#fff 0%,#d8f8f2 46%,#43c7ff 100%) !important;
  -webkit-background-clip:text !important;
  background-clip:text !important;
  color:transparent !important;
}

#productPage .stack-head{
  grid-template-columns:1fr !important;
  gap:0 !important;
  max-width:780px;
}
#productPage .stack-head h2{
  max-width:760px;
}

#productPage #product-stack .product-section-head,
#productPage #coverage .product-section-head,
#productPage #payment-engine .product-section-head,
#productPage #settlement .product-section-head{
  margin-bottom:56px;
}

#productPage #settlement .product-section-head h2{
  font-size:clamp(34px,3.65vw,56px);
  line-height:1.01;
}

#productPage .highlight-copy p{
  line-height:1.62;
}
#productPage .coverage-zone h3{
  max-width:26ch;
}
#productPage .coverage-zone p{
  max-width:54ch;
}

@media(max-width:900px){
  #productPage #product-stack .product-section-head,
  #productPage #coverage .product-section-head,
  #productPage #payment-engine .product-section-head,
  #productPage #settlement .product-section-head{
    margin-bottom:42px;
  }
}
@media(max-width:640px){
  #productPage #product-stack .product-section-head,
  #productPage #coverage .product-section-head,
  #productPage #payment-engine .product-section-head,
  #productPage #settlement .product-section-head{
    margin-bottom:32px;
  }
}

#productPage .crypto-word{
  display:inline-block;
  padding-right:.08em;
  margin-right:-.08em;
  -webkit-box-decoration-break:clone;
  box-decoration-break:clone;
}

#productPage #product-stack .stack-head{
  max-width:none !important;
}
#productPage #product-stack .stack-head h2{
  max-width:none !important;
  white-space:nowrap;
  font-size:clamp(42px,4.05vw,60px);
  letter-spacing:-.05em;
}
@media(max-width:980px){
  #productPage #product-stack .stack-head h2{
    white-space:normal;
    font-size:clamp(38px,6vw,54px);
  }
}

/* Locale typography */
.mobile-language{
  appearance:none;
  border:0;
  background:transparent;
  font:inherit;
  color:inherit;
  cursor:pointer;
}
.language-menu button:disabled{
  opacity:.38;
  cursor:default;
}
html[lang="zh-CN"] body{
  font-family:"Noto Sans SC","PingFang SC","Microsoft YaHei",Manrope,Arial,sans-serif;
  line-break:strict;
}
html[lang="zh-CN"] h1,
html[lang="zh-CN"] h2,
html[lang="zh-CN"] h3,
html[lang="zh-CN"] h4,
html[lang="zh-CN"] h5,
html[lang="zh-CN"] h6,
html[lang="zh-CN"] button,
html[lang="zh-CN"] input,
html[lang="zh-CN"] textarea,
html[lang="zh-CN"] select{
  font-family:"Noto Sans SC","PingFang SC","Microsoft YaHei",Manrope,Arial,sans-serif;
}
html[lang="zh-CN"] .eyebrow,
html[lang="zh-CN"] .inner-section-tag,
html[lang="zh-CN"] .product-section-tag,
html[lang="zh-CN"] [class*="kicker"],
html[lang="zh-CN"] [class*="section-tag"]{
  letter-spacing:.08em;
}
html[lang="zh-CN"] .hero h1,
html[lang="zh-CN"] .inner-page-hero h1,
html[lang="zh-CN"] .product-calibration-hero h1{
  letter-spacing:-.035em;
}

/* Use Cases and Technology */
#useCasesPage .inner-page-hero-copy h1{
  max-width:760px;
}
#useCasesPage .inner-page-hero-lead{
  max-width:760px;
}
#useCasesPage .industry-detail-section .inner-section-head{
  margin-bottom:46px;
}
#useCasesPage .industry-detail-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:16px;
}
#useCasesPage .industry-detail-card{
  position:relative;
  min-height:148px;
  padding:24px 24px 22px;
  border:1px solid rgba(7,22,21,.085);
  border-radius:22px;
  background:rgba(255,255,255,.88);
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  gap:28px;
  overflow:hidden;
}
#useCasesPage .industry-detail-card::after{
  content:"";
  position:absolute;
  right:-28px;
  top:-38px;
  width:112px;
  height:112px;
  border-radius:50%;
  background:radial-gradient(circle,rgba(1,182,155,.08),rgba(1,182,155,0) 70%);
}
#useCasesPage .industry-detail-card > span{
  position:relative;
  z-index:1;
  color:#008675;
  font:750 10px/1 "Geist Mono",monospace;
  letter-spacing:.12em;
}
#useCasesPage .industry-detail-card h3{
  position:relative;
  z-index:1;
  margin:0;
  max-width:30ch;
  color:#132b27;
  font:720 17px/1.34 Manrope,sans-serif;
  letter-spacing:-.028em;
}
#useCasesPage .inner-section.dark .industry-detail-card{
  background:rgba(255,255,255,.055);
  border-color:rgba(255,255,255,.10);
}
#useCasesPage .inner-section.dark .industry-detail-card > span{color:#7be6d2}
#useCasesPage .inner-section.dark .industry-detail-card h3{color:#f1faf7}
#useCasesPage .inner-section.dark .industry-detail-card::after{
  background:radial-gradient(circle,rgba(67,199,255,.10),rgba(67,199,255,0) 70%);
}
#useCasesPage .industry-detail-grid-three{
  grid-template-columns:repeat(3,minmax(0,1fr));
}
#useCasesPage .industry-regulatory-note{
  margin-top:18px;
  padding:17px 19px;
  border:1px solid rgba(201,154,57,.18);
  border-radius:16px;
  background:rgba(201,154,57,.055);
  display:flex;
  align-items:flex-start;
  gap:12px;
}
#useCasesPage .industry-regulatory-note i{
  flex:0 0 auto;
  width:7px;height:7px;
  margin-top:7px;
  border-radius:50%;
  background:#c99a39;
  box-shadow:0 0 0 5px rgba(201,154,57,.10);
}
#useCasesPage .industry-regulatory-note p{
  margin:0;
  color:#745c29;
  font:560 12.5px/1.6 Manrope,sans-serif;
}
#useCasesPage .use-hero-node strong{
  font-size:13px;
  line-height:1.28;
}
#useCasesPage .use-hero-node p{
  font-size:10.5px;
  line-height:1.45;
}

#technologyPage .tech-diff-section{
  padding:78px 0;
  background:linear-gradient(135deg,#0c2924,#102f2a);
}
#technologyPage .tech-diff-band{
  display:grid;
  grid-template-columns:minmax(0,.9fr) minmax(0,1.1fr);
  gap:46px;
  align-items:center;
  padding:34px 36px;
  border:1px solid rgba(255,255,255,.085);
  border-radius:24px;
  background:rgba(255,255,255,.035);
}
#technologyPage .tech-diff-band .inner-section-tag{color:#79e3d0}
#technologyPage .tech-diff-band h2{
  margin:14px 0 0;
  max-width:590px;
  color:#f5fcfa;
  font:780 clamp(30px,3.1vw,48px)/1.02 Manrope,sans-serif;
  letter-spacing:-.048em;
}
#technologyPage .tech-diff-facts{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:10px;
}
#technologyPage .tech-diff-facts > div{
  min-height:105px;
  padding:17px 18px;
  border:1px solid rgba(255,255,255,.075);
  border-radius:16px;
  background:rgba(255,255,255,.035);
}
#technologyPage .tech-diff-facts span{
  display:block;
  color:rgba(218,241,235,.54);
  font:700 9px/1.25 "Geist Mono",monospace;
  letter-spacing:.10em;
}
#technologyPage .tech-diff-facts strong{
  display:block;
  margin-top:16px;
  color:#f2fbf8;
  font:690 14px/1.35 Manrope,sans-serif;
}
#technologyPage .inner-section-head{
  margin-bottom:48px;
}

#useCasesPage .reveal.delay-1,
#technologyPage .reveal.delay-1{transition-delay:.10s}
#useCasesPage .reveal.delay-2,
#technologyPage .reveal.delay-2{transition-delay:.20s}

@media(max-width:980px){
  #useCasesPage .industry-detail-grid,
  #useCasesPage .industry-detail-grid-three{grid-template-columns:repeat(2,minmax(0,1fr))}
  #technologyPage .tech-diff-band{grid-template-columns:1fr}
}
@media(max-width:640px){
  #useCasesPage .industry-detail-grid,
  #useCasesPage .industry-detail-grid-three{grid-template-columns:1fr}
  #useCasesPage .industry-detail-card{min-height:118px;padding:19px 18px 17px;gap:20px;border-radius:18px}
  #useCasesPage .industry-detail-card h3{font-size:16px}
  #technologyPage .tech-diff-section{padding:60px 0}
  #technologyPage .tech-diff-band{padding:24px 20px;border-radius:19px;gap:26px}
  #technologyPage .tech-diff-facts{grid-template-columns:1fr}
}

#technologyPage .tech-orbit{
  overflow:visible;
}
#technologyPage .tech-core{
  width:162px;
  height:162px;
}
#technologyPage .tech-core-inner{
  display:grid;
  place-items:center;
  gap:12px;
}
#technologyPage .tech-core-copy{
  text-align:center;
}
#technologyPage .tech-core-copy strong{
  margin-top:0;
}
#technologyPage .tech-core-copy span{
  margin-top:4px;
}
#technologyPage .tech-core-acorn{
  position:relative;
  width:58px;
  height:70px;
  filter:drop-shadow(0 0 18px rgba(39,225,193,.22));
}
#technologyPage .tech-core-acorn .cap{
  position:absolute;
  left:50%;
  top:0;
  width:54px;
  height:22px;
  border:3px solid rgba(235,252,248,.92);
  border-bottom:none;
  border-radius:28px 28px 10px 10px / 22px 22px 8px 8px;
  transform:translateX(-50%);
}
#technologyPage .tech-core-acorn .body{
  position:absolute;
  left:50%;
  top:14px;
  width:44px;
  height:44px;
  border:3px solid rgba(235,252,248,.92);
  border-top:none;
  border-radius:0 0 22px 22px;
  transform:translateX(-50%);
}
#technologyPage .tech-core-acorn .stem{
  position:absolute;
  left:50%;
  top:2px;
  width:4px;
  height:14px;
  border-radius:999px;
  background:rgba(235,252,248,.92);
  transform:translateX(-50%);
}
#technologyPage .tech-orbit-node.customer{left:8px;top:86px}
#technologyPage .tech-orbit-node.mpc{right:8px;top:82px}
#technologyPage .tech-orbit-node.contract{left:8px;bottom:86px}
#technologyPage .tech-orbit-node.merchant{right:8px;bottom:82px}

#technologyPage .tech-orbit-line{
  height:2px;
  border-radius:999px;
  background:linear-gradient(90deg,rgba(39,225,193,.16),rgba(39,225,193,.62),rgba(67,199,255,.18));
}
#technologyPage .tech-orbit-line::after{
  top:-2.5px;
  width:8px;
  height:8px;
}
#technologyPage .tech-orbit-line.l1{
  width:128px;
  left:142px;
  top:160px;
  transform:rotate(29deg);
}
#technologyPage .tech-orbit-line.l2{
  width:128px;
  left:252px;
  top:162px;
  transform:rotate(-29deg);
}
#technologyPage .tech-orbit-line.l3{
  width:128px;
  left:142px;
  top:358px;
  transform:rotate(-29deg);
}
#technologyPage .tech-orbit-line.l4{
  width:128px;
  left:252px;
  top:356px;
  transform:rotate(29deg);
}
#technologyPage .tech-orbit-line.l2::after,
#technologyPage .tech-orbit-line.l4::after{
  animation-delay:1.5s;
}
@media(max-width:640px){
  #technologyPage .tech-core{
    width:136px;
    height:136px;
  }
  #technologyPage .tech-core-acorn{
    width:48px;
    height:58px;
  }
  #technologyPage .tech-core-acorn .cap{
    width:46px;
    height:18px;
    border-width:2.6px;
  }
  #technologyPage .tech-core-acorn .body{
    top:12px;
    width:37px;
    height:37px;
    border-width:2.6px;
  }
  #technologyPage .tech-core-acorn .stem{
    height:12px;
  }
}

#technologyPage .tech-orbit{overflow:visible}
#technologyPage .tech-orbit-line{display:none !important}
#technologyPage .tech-orbit-network{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  z-index:2;
  overflow:visible;
  pointer-events:none;
}
#technologyPage .tech-orbit-network .network-path{
  fill:none;
  stroke:url(#techSignalStroke);
  stroke-width:1.6;
  stroke-linecap:round;
}
#technologyPage .tech-orbit-network .network-dot{
  fill:var(--aqua);
  filter:drop-shadow(0 0 10px rgba(39,225,193,.9));
}
#technologyPage .tech-orbit-network .network-dot-delay{
  animation-delay:1.6s;
}
#technologyPage .tech-core{
  z-index:4;
  width:164px;
  height:164px;
}
#technologyPage .tech-core-inner{
  display:grid;
  place-items:center;
  gap:10px;
}
#technologyPage .tech-core-copy{
  text-align:center;
}
#technologyPage .tech-core-copy strong{
  display:block;
  color:#fff;
  font:780 15px/1.1 Manrope,sans-serif;
  letter-spacing:-.03em;
}
#technologyPage .tech-core-copy span{
  display:block;
  margin-top:5px;
  color:var(--aqua);
  font:700 8px/1.2 "Geist Mono",monospace;
  letter-spacing:.12em;
}
#technologyPage .tech-core-acorn{
  position:relative;
  width:78px;
  height:90px;
  filter:drop-shadow(0 0 20px rgba(39,225,193,.22));
}
#technologyPage .tech-core-acorn .cap{
  position:absolute;
  left:15px;
  top:0;
  width:50px;
  height:26px;
  border-radius:26px 26px 10px 10px;
  background:linear-gradient(135deg,#7fead9,#01b69b);
}
#technologyPage .tech-core-acorn .body{
  position:absolute;
  left:8px;
  top:24px;
  width:62px;
  height:60px;
  border-radius:20px 20px 30px 30px;
  background:linear-gradient(145deg,#04b79c,#008e7b);
  box-shadow:inset 0 1px 0 rgba(255,255,255,.18);
}
#technologyPage .tech-core-acorn .stem{
  position:absolute;
  left:40px;
  top:-8px;
  width:7px;
  height:16px;
  border-radius:99px;
  background:#baf7ea;
  transform:rotate(18deg);
}
#technologyPage .tech-orbit-node.customer{left:10px;top:86px}
#technologyPage .tech-orbit-node.mpc{right:10px;top:82px}
#technologyPage .tech-orbit-node.contract{left:10px;bottom:86px}
#technologyPage .tech-orbit-node.merchant{right:10px;bottom:82px}
@media(max-width:640px){
  #technologyPage .tech-core{width:140px;height:140px}
  #technologyPage .tech-core-acorn{width:62px;height:72px}
  #technologyPage .tech-core-acorn .cap{left:12px;width:40px;height:21px}
  #technologyPage .tech-core-acorn .body{left:7px;top:20px;width:49px;height:48px}
  #technologyPage .tech-core-acorn .stem{left:31px;top:-6px;height:13px}
}

#technologyPage .tech-core-logo{
  position:relative;
  z-index:8;
  width:76px;
  height:76px;
  display:grid;
  place-items:center;
  margin:0 auto 4px;
}
#technologyPage .tech-core-logo img{
  display:block !important;
  width:100% !important;
  height:100% !important;
  object-fit:contain !important;
  opacity:1 !important;
  visibility:visible !important;
  filter:brightness(0) invert(1) drop-shadow(0 0 14px rgba(39,225,193,.18));
}
#technologyPage .tech-core-inner{
  position:relative;
  z-index:7;
}
@media(max-width:640px){
  #technologyPage .tech-core-logo{
    width:62px;
    height:62px;
  }
}

@media(max-width:1120px){
  #technologyPage .tech-core{
    display:grid !important;
  }
}

#technologyPage .tech-orbit-network{
  display:block !important;
  opacity:1 !important;
  visibility:visible !important;
}
#technologyPage .tech-core{
  opacity:1 !important;
  visibility:visible !important;
}

@media(max-width:900px) and (min-width:641px){
  #technologyPage .tech-orbit{
    width:min(500px,100%);
  }
  #technologyPage .tech-orbit-node.customer{left:8px;top:80px}
  #technologyPage .tech-orbit-node.mpc{right:8px;top:78px}
  #technologyPage .tech-orbit-node.contract{left:8px;bottom:80px}
  #technologyPage .tech-orbit-node.merchant{right:8px;bottom:78px}
}

@media(max-width:640px){
  #technologyPage .tech-orbit{
    width:350px;
    max-width:100%;
  }
  #technologyPage .tech-core{
    display:grid !important;
    width:116px !important;
    height:116px !important;
  }
  #technologyPage .tech-core-logo{
    width:52px !important;
    height:52px !important;
    margin-bottom:1px;
  }
  #technologyPage .tech-core-copy strong{
    font-size:12px;
  }
  #technologyPage .tech-core-copy span{
    font-size:6.8px;
  }
  #technologyPage .tech-orbit-node{
    width:112px;
    min-height:62px;
    padding:11px 12px;
  }
  #technologyPage .tech-orbit-node.customer{left:0;top:56px}
  #technologyPage .tech-orbit-node.mpc{right:0;top:54px}
  #technologyPage .tech-orbit-node.contract{left:0;bottom:56px}
  #technologyPage .tech-orbit-node.merchant{right:0;bottom:54px}
}

#technologyPage .tech-fund-path{
  overflow:visible;
}
#technologyPage .tech-fund-path::before{
  opacity:.42;
}
#technologyPage .tech-fund-trajectory{
  position:absolute;
  left:8%;
  right:8%;
  top:33px;
  height:1px;
  z-index:0;
  pointer-events:none;
}
#technologyPage .tech-fund-trace{
  position:absolute;
  inset:0;
  background:linear-gradient(90deg,rgba(1,182,155,.06),rgba(1,182,155,.42),rgba(67,199,255,.32),rgba(1,182,155,.10));
}
#technologyPage .tech-fund-pulse{
  position:absolute;
  top:50%;
  left:0;
  width:10px;
  height:10px;
  margin-top:-5px;
  border-radius:50%;
  background:radial-gradient(circle,#9bf6e8 0%, var(--aqua) 58%, rgba(39,225,193,.2) 100%);
  box-shadow:0 0 0 6px rgba(39,225,193,.08), 0 0 18px rgba(39,225,193,.45);
  animation:techFundFlow 7.5s linear infinite;
  opacity:0;
}
#technologyPage .tech-fund-pulse::after{
  content:"";
  position:absolute;
  left:-18px;
  top:50%;
  width:24px;
  height:1px;
  background:linear-gradient(90deg,rgba(39,225,193,0),rgba(39,225,193,.45));
  transform:translateY(-50%);
}

@keyframes techFundFlow{
  0%{left:0;opacity:0}
  8%{opacity:1}
  82%{opacity:1}
  100%{left:calc(100% - 10px);opacity:0}
}

@media(max-width:980px){
  #technologyPage .tech-fund-trajectory{
    left:7%;
    right:7%;
  }
}
@media(max-width:640px){
  #technologyPage .tech-fund-trajectory{
    display:none;
  }
}

#technologyPage .tech-security-grid-simplified{
  margin-top:52px;
  align-items:center;
}
#technologyPage .tech-security-copy-simplified .tech-security-points{
  margin-top:0;
}
#technologyPage .tech-security-point{
  grid-template-columns:46px 1fr;
  gap:18px;
  padding:24px 0;
}
#technologyPage .tech-security-point i{
  width:42px;
  height:42px;
  border-radius:13px;
}
#technologyPage .tech-security-point i svg{
  width:20px;
  height:20px;
  fill:none;
  stroke:currentColor;
  stroke-width:1.65;
  stroke-linecap:round;
  stroke-linejoin:round;
}
#technologyPage .tech-security-point strong{
  font-size:15px;
}
#technologyPage .tech-security-point span{
  margin-top:6px;
  max-width:390px;
  font-size:12px;
  line-height:1.58;
}
@media(max-width:1100px){
  #technologyPage .tech-security-grid-simplified{
    margin-top:42px;
  }
}
@media(max-width:640px){
  #technologyPage .tech-security-grid-simplified{
    margin-top:32px;
  }
  #technologyPage .tech-security-point{
    grid-template-columns:42px 1fr;
    gap:15px;
    padding:19px 0;
  }
  #technologyPage .tech-security-point i{
    width:38px;
    height:38px;
  }
}

#technologyPage .inner-section.soft:first-of-type h2{
  max-width:900px;
  font-size:clamp(36px,3.7vw,58px);
}
@media(max-width:640px){
  #technologyPage .inner-section.soft:first-of-type h2{
    font-size:clamp(32px,9vw,42px);
  }
}

#technologyPage .tech-security-grid-simplified{
  align-items:stretch;
}
#technologyPage .tech-security-copy-simplified{
  display:flex;
  align-items:stretch;
}
#technologyPage .tech-security-copy-simplified .tech-security-points{
  width:100%;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
}

#technologyPage .tech-security-grid-simplified .tech-mpc-stage{
  min-height:0;
  height:100%;
  border:0;
  border-radius:0;
  background:transparent;
  box-shadow:none;
  overflow:visible;
}
#technologyPage .tech-security-grid-simplified .tech-mpc-stage::before{
  display:none;
}

#technologyPage .tech-security-grid-simplified .mpc-key{
  top:4px;
}
#technologyPage .tech-security-grid-simplified .mpc-key.left{
  left:34px;
}
#technologyPage .tech-security-grid-simplified .mpc-key.right{
  right:34px;
}
#technologyPage .tech-security-grid-simplified .mpc-center{
  top:50%;
  width:146px;
  height:146px;
}
#technologyPage .tech-security-grid-simplified .mpc-center strong{
  font-size:21px;
}
#technologyPage .tech-security-grid-simplified .mpc-branch{
  top:91px;
  width:150px;
}
#technologyPage .tech-security-grid-simplified .mpc-branch.left{
  left:156px;
  transform:rotate(24deg);
}
#technologyPage .tech-security-grid-simplified .mpc-branch.right{
  right:156px;
  transform:rotate(-24deg);
}
#technologyPage .tech-security-grid-simplified .mpc-output{
  bottom:0;
  width:300px;
  padding:15px 18px;
}

@media(min-width:1101px){
  #technologyPage .tech-security-grid-simplified{
    min-height:286px;
  }
}

@media(max-width:1100px){
  #technologyPage .tech-security-copy-simplified{
    display:block;
  }
  #technologyPage .tech-security-grid-simplified .tech-mpc-stage{
    height:390px;
    min-height:390px;
    margin-top:4px;
  }
  #technologyPage .tech-security-grid-simplified .mpc-key{
    top:34px;
  }
  #technologyPage .tech-security-grid-simplified .mpc-center{
    top:52%;
  }
  #technologyPage .tech-security-grid-simplified .mpc-branch{
    top:134px;
  }
  #technologyPage .tech-security-grid-simplified .mpc-output{
    bottom:18px;
  }
}
@media(max-width:640px){
  #technologyPage .tech-security-grid-simplified .tech-mpc-stage{
    height:370px;
    min-height:370px;
  }
  #technologyPage .tech-security-grid-simplified .mpc-key{
    top:26px;
  }
  #technologyPage .tech-security-grid-simplified .mpc-key.left{
    left:0;
  }
  #technologyPage .tech-security-grid-simplified .mpc-key.right{
    right:0;
  }
  #technologyPage .tech-security-grid-simplified .mpc-output{
    bottom:12px;
  }
}

#technologyPage .technology-hero .tech-hero-visual::before{
  content:"";
  position:absolute;
  inset:18px;
  border-radius:50%;
  background:
    linear-gradient(90deg,transparent 49.8%,rgba(67,199,255,.08) 50%,transparent 50.2%),
    linear-gradient(transparent 49.8%,rgba(39,225,193,.08) 50%,transparent 50.2%);
  mask-image:radial-gradient(circle,transparent 0 31%,#000 31.5% 70%,transparent 70.5%);
  pointer-events:none;
  animation:techHudRotate 26s linear infinite;
}
#technologyPage .technology-hero .tech-hero-visual::after{
  content:"SYS / DECENTRALIZED / ACTIVE";
  position:absolute;
  right:6px;
  bottom:30px;
  color:rgba(146,231,216,.38);
  font:700 8px/1 "Geist Mono",monospace;
  letter-spacing:.12em;
  pointer-events:none;
}
#technologyPage .tech-orbit-node{
  transition:border-color .35s ease,background .35s ease,transform .35s ease;
}
#technologyPage .tech-orbit-node::after{
  content:"";
  position:absolute;
  right:11px;
  top:11px;
  width:5px;height:5px;
  border-radius:50%;
  background:var(--aqua);
  box-shadow:0 0 12px rgba(39,225,193,.65);
  animation:techStatusPulse 2.8s ease-in-out infinite;
}
#technologyPage .tech-orbit-node:nth-of-type(2)::after{animation-delay:.7s}
#technologyPage .tech-orbit-node:nth-of-type(3)::after{animation-delay:1.4s}
#technologyPage .tech-orbit-node:nth-of-type(4)::after{animation-delay:2.1s}

#technologyPage .tech-self-custody-section{
  position:relative;
  overflow:hidden;
  background:
    radial-gradient(720px 340px at 76% 42%,rgba(1,182,155,.055),transparent 70%),
    linear-gradient(180deg,#f8fcfb 0%,#fff 100%);
}
#technologyPage .tech-self-custody-section::before{
  content:"";
  position:absolute;
  inset:0;
  background-image:
    linear-gradient(rgba(0,124,109,.026) 1px,transparent 1px),
    linear-gradient(90deg,rgba(0,124,109,.026) 1px,transparent 1px);
  background-size:48px 48px;
  mask-image:linear-gradient(90deg,transparent 0%,#000 18%,#000 82%,transparent 100%);
  pointer-events:none;
}
#technologyPage .tech-self-custody-section .wrap{position:relative;z-index:1}
#technologyPage .tech-control-board{
  border-color:rgba(0,124,109,.10);
  background:rgba(255,255,255,.72);
  backdrop-filter:blur(12px);
}
#technologyPage .tech-fund-icon{
  box-shadow:0 0 0 1px rgba(1,182,155,.025),0 18px 36px -26px rgba(0,124,109,.55);
}

#technologyPage .tech-mpc-section{
  position:relative;
  overflow:hidden;
  background:
    radial-gradient(620px 360px at 72% 52%,rgba(39,225,193,.08),transparent 68%),
    linear-gradient(180deg,#071615 0%,#081b19 100%);
}
#technologyPage .tech-mpc-section::before{
  content:"";
  position:absolute;
  inset:0;
  background-image:
    radial-gradient(circle,rgba(121,227,208,.09) 0 1px,transparent 1.25px);
  background-size:24px 24px;
  mask-image:linear-gradient(90deg,transparent 0%,rgba(0,0,0,.45) 38%,#000 100%);
  opacity:.45;
  pointer-events:none;
}
#technologyPage .tech-mpc-section::after{
  content:"";
  position:absolute;
  left:0;right:0;top:0;
  height:1px;
  background:linear-gradient(90deg,transparent,rgba(39,225,193,.45),rgba(67,199,255,.30),transparent);
  animation:techSectionSweep 7s ease-in-out infinite;
}
#technologyPage .tech-mpc-section .wrap{position:relative;z-index:1}
#technologyPage .mpc-key,
#technologyPage .mpc-output{
  backdrop-filter:blur(14px);
}
#technologyPage .mpc-center{
  box-shadow:
    0 0 0 1px rgba(39,225,193,.06),
    0 0 68px rgba(39,225,193,.12),
    inset 0 0 30px rgba(39,225,193,.05);
}

#technologyPage .technology-proof-chapter{
  position:relative;
  overflow:hidden;
  padding:0;
  color:#f5fcfa;
  background:
    radial-gradient(900px 600px at 86% 18%,rgba(67,199,255,.075),transparent 68%),
    radial-gradient(760px 620px at 10% 68%,rgba(39,225,193,.065),transparent 72%),
    linear-gradient(180deg,#061412 0%,#071a17 48%,#061311 100%);
}
#technologyPage .technology-proof-chapter .wrap{
  position:relative;
  z-index:2;
}
#technologyPage .tech-proof-ambient,
#technologyPage .tech-proof-grid,
#technologyPage .tech-proof-scan{
  position:absolute;
  inset:0;
  pointer-events:none;
}
#technologyPage .tech-proof-grid{
  background-image:
    linear-gradient(rgba(255,255,255,.026) 1px,transparent 1px),
    linear-gradient(90deg,rgba(255,255,255,.026) 1px,transparent 1px);
  background-size:58px 58px;
  mask-image:linear-gradient(90deg,transparent 0%,#000 14%,#000 86%,transparent 100%);
}
#technologyPage .tech-proof-scan{
  width:28%;
  left:-32%;
  background:linear-gradient(90deg,transparent,rgba(39,225,193,.035),transparent);
  transform:skewX(-14deg);
  animation:techProofScan 11s ease-in-out infinite;
}
#technologyPage .tech-proof-telemetry{
  min-height:66px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:28px;
  border-bottom:1px solid rgba(255,255,255,.085);
  color:rgba(231,249,244,.45);
  font:700 8px/1 "Geist Mono",monospace;
  letter-spacing:.105em;
}
#technologyPage .tech-proof-telemetry-label{
  display:flex;
  align-items:center;
  gap:10px;
  white-space:nowrap;
}
#technologyPage .tech-proof-telemetry-label i{
  width:6px;height:6px;
  border-radius:50%;
  background:var(--aqua);
  box-shadow:0 0 14px rgba(39,225,193,.7);
  animation:techStatusPulse 2.4s ease-in-out infinite;
}
#technologyPage .tech-proof-telemetry-data{
  display:flex;
  align-items:center;
  justify-content:flex-end;
  gap:24px;
  flex-wrap:wrap;
}
#technologyPage .tech-proof-telemetry-data span{
  position:relative;
}
#technologyPage .tech-proof-telemetry-data span+span::before{
  content:"/";
  position:absolute;
  left:-14px;
  color:rgba(255,255,255,.14);
}

#technologyPage .tech-proof-act{
  position:relative;
  display:grid;
  grid-template-columns:62px minmax(0,1fr);
  gap:28px;
  min-height:430px;
  padding:88px 0;
  border-bottom:1px solid rgba(255,255,255,.085);
}
#technologyPage .tech-proof-act:last-child{
  border-bottom:0;
  padding-bottom:104px;
}
#technologyPage .tech-proof-act-rail{
  position:relative;
  color:rgba(121,227,208,.55);
  font:750 10px/1 "Geist Mono",monospace;
  letter-spacing:.11em;
}
#technologyPage .tech-proof-act-rail::before{
  content:"";
  position:absolute;
  top:28px;
  bottom:-89px;
  left:4px;
  width:1px;
  background:linear-gradient(180deg,rgba(39,225,193,.48),rgba(67,199,255,.14),rgba(255,255,255,.04));
}
#technologyPage .tech-proof-act:last-child .tech-proof-act-rail::before{
  bottom:0;
  background:linear-gradient(180deg,rgba(39,225,193,.48),transparent);
}
#technologyPage .tech-proof-act-rail i{
  position:absolute;
  top:25px;
  left:1px;
  width:7px;height:7px;
  border-radius:50%;
  background:var(--aqua);
  box-shadow:0 0 0 5px rgba(39,225,193,.065),0 0 18px rgba(39,225,193,.42);
}
#technologyPage .tech-proof-act-main{
  min-width:0;
}
#technologyPage .tech-proof-act-head{
  display:grid;
  grid-template-columns:minmax(0,1fr);
  gap:26px;
}
#technologyPage .tech-proof-act-head .inner-section-tag{
  color:var(--aqua);
}
#technologyPage .tech-proof-act-head h2{
  max-width:900px;
  margin:14px 0 0;
  color:#f4fbf9;
  font:800 clamp(36px,4vw,60px)/.98 Manrope,sans-serif;
  letter-spacing:-.052em;
}
#technologyPage .tech-proof-act-head-inline{
  grid-template-columns:minmax(0,1fr) auto;
  align-items:end;
}
#technologyPage .tech-proof-act-head-inline .tech-doc-link{
  margin:0 0 8px;
}

#technologyPage .tech-proof-capabilities{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  margin-top:54px;
  border-top:1px solid rgba(255,255,255,.09);
  border-left:1px solid rgba(255,255,255,.09);
}
#technologyPage .tech-proof-capability{
  min-height:142px;
  padding:24px 22px;
  border-right:1px solid rgba(255,255,255,.09);
  border-bottom:1px solid rgba(255,255,255,.09);
  background:rgba(255,255,255,.018);
  transition:background .3s ease,border-color .3s ease,transform .3s ease;
}
#technologyPage .tech-proof-capability:hover{
  background:rgba(39,225,193,.045);
  border-color:rgba(39,225,193,.15);
  transform:translateY(-2px);
}
#technologyPage .tech-proof-capability span,
#technologyPage .tech-proof-ip-lattice span,
#technologyPage .tech-proof-runtime span{
  display:block;
  color:rgba(220,244,238,.42);
  font:700 8.5px/1.35 "Geist Mono",monospace;
  letter-spacing:.10em;
}
#technologyPage .tech-proof-capability strong{
  display:block;
  margin-top:22px;
  color:#f4fbf9;
  font:700 15px/1.38 Manrope,sans-serif;
  letter-spacing:-.018em;
}

#technologyPage .tech-proof-ip-lattice{
  display:grid;
  grid-template-columns:1.25fr .75fr .9fr;
  gap:0;
  margin-top:48px;
  border-top:1px solid rgba(255,255,255,.09);
  border-bottom:1px solid rgba(255,255,255,.09);
}
#technologyPage .tech-proof-ip-primary,
#technologyPage .tech-proof-ip-stat{
  position:relative;
  min-height:206px;
  padding:30px 30px 28px;
  border-right:1px solid rgba(255,255,255,.09);
  overflow:hidden;
}
#technologyPage .tech-proof-ip-stat:last-child{border-right:0}
#technologyPage .tech-proof-ip-primary::after{
  content:"";
  position:absolute;
  width:180px;height:180px;
  right:-28px;bottom:-82px;
  border:1px solid rgba(39,225,193,.10);
  border-radius:50%;
  box-shadow:0 0 0 34px rgba(39,225,193,.018),0 0 0 68px rgba(67,199,255,.012);
}
#technologyPage .tech-proof-ip-primary strong{
  display:block;
  margin-top:24px;
  color:#fff;
  font:840 clamp(82px,9vw,126px)/.72 Manrope,sans-serif;
  letter-spacing:-.085em;
}
#technologyPage .tech-proof-ip-stat strong{
  display:block;
  margin-top:38px;
  color:#f5fcfa;
  font:820 clamp(42px,5vw,68px)/.9 Manrope,sans-serif;
  letter-spacing:-.06em;
}
#technologyPage .tech-proof-ip-lattice small{
  position:relative;
  z-index:2;
  display:block;
  margin-top:18px;
  color:rgba(220,244,238,.47);
  font-size:11px;
  line-height:1.5;
}

#technologyPage .tech-proof-runtime{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:12px;
  margin-top:48px;
}
#technologyPage .tech-proof-runtime-item{
  position:relative;
  min-height:162px;
  padding:26px 24px;
  border:1px solid rgba(255,255,255,.085);
  background:linear-gradient(180deg,rgba(255,255,255,.026),rgba(255,255,255,.012));
}
#technologyPage .tech-proof-runtime-item > i{
  position:absolute;
  top:18px;right:18px;
  width:6px;height:6px;
  border-radius:50%;
  background:var(--aqua);
  box-shadow:0 0 12px rgba(39,225,193,.65);
  animation:techStatusPulse 2.8s ease-in-out infinite;
}
#technologyPage .tech-proof-runtime-item:nth-child(2)>i{animation-delay:.55s}
#technologyPage .tech-proof-runtime-item:nth-child(3)>i{animation-delay:1.1s}
#technologyPage .tech-proof-runtime-item:nth-child(4)>i{animation-delay:1.65s}
#technologyPage .tech-proof-runtime-item strong{
  display:block;
  color:#fff;
  font:830 44px/.95 Manrope,sans-serif;
  letter-spacing:-.06em;
}
#technologyPage .tech-proof-runtime-item span{
  margin-top:13px;
  color:var(--aqua);
}
#technologyPage .tech-proof-runtime-item small{
  display:block;
  margin-top:8px;
  color:rgba(220,244,238,.45);
  font-size:11px;
}

@keyframes techHudRotate{
  to{transform:rotate(360deg)}
}
@keyframes techStatusPulse{
  0%,100%{opacity:.42;transform:scale(.82)}
  50%{opacity:1;transform:scale(1)}
}
@keyframes techSectionSweep{
  0%,100%{opacity:.18;transform:translateX(-28%)}
  50%{opacity:.75;transform:translateX(28%)}
}
@keyframes techProofScan{
  0%,18%{left:-32%;opacity:0}
  28%{opacity:1}
  72%{opacity:1}
  82%,100%{left:104%;opacity:0}
}

@media(max-width:1050px){
  #technologyPage .tech-proof-capabilities,
  #technologyPage .tech-proof-runtime{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }
  #technologyPage .tech-proof-ip-lattice{
    grid-template-columns:1fr 1fr;
  }
  #technologyPage .tech-proof-ip-primary{
    grid-column:1/-1;
    border-bottom:1px solid rgba(255,255,255,.09);
  }
  #technologyPage .tech-proof-ip-stat:nth-child(2){
    border-right:1px solid rgba(255,255,255,.09);
  }
}
@media(max-width:760px){
  #technologyPage .technology-hero .tech-hero-visual::after{display:none}
  #technologyPage .tech-proof-telemetry{
    align-items:flex-start;
    flex-direction:column;
    padding:19px 0;
  }
  #technologyPage .tech-proof-telemetry-data{
    justify-content:flex-start;
    gap:11px 22px;
  }
  #technologyPage .tech-proof-act{
    grid-template-columns:32px minmax(0,1fr);
    gap:16px;
    min-height:0;
    padding:64px 0;
  }
  #technologyPage .tech-proof-act-rail::before{
    bottom:-65px;
  }
  #technologyPage .tech-proof-act-head h2{
    font-size:clamp(32px,9vw,44px);
  }
  #technologyPage .tech-proof-act-head-inline{
    grid-template-columns:1fr;
  }
  #technologyPage .tech-proof-act-head-inline .tech-doc-link{
    margin-top:10px;
  }
  #technologyPage .tech-proof-capabilities,
  #technologyPage .tech-proof-runtime,
  #technologyPage .tech-proof-ip-lattice{
    grid-template-columns:1fr;
  }
  #technologyPage .tech-proof-capability{
    min-height:110px;
  }
  #technologyPage .tech-proof-ip-primary{
    grid-column:auto;
  }
  #technologyPage .tech-proof-ip-primary,
  #technologyPage .tech-proof-ip-stat{
    min-height:150px;
    border-right:0;
    border-bottom:1px solid rgba(255,255,255,.09);
  }
  #technologyPage .tech-proof-ip-stat:last-child{
    border-bottom:0;
  }
}
@media(prefers-reduced-motion:reduce){
  #technologyPage .technology-hero .tech-hero-visual::before,
  #technologyPage .tech-orbit-node::after,
  #technologyPage .tech-mpc-section::after,
  #technologyPage .tech-proof-scan,
  #technologyPage .tech-proof-telemetry-label i,
  #technologyPage .tech-proof-runtime-item>i{
    animation:none !important;
  }
}

#technologyPage .technology-proof-chapter{
  background:#fff;
  color:#10201d;
}

#technologyPage .tech-proof-telemetry{
  margin:0 calc(50% - 50vw);
  padding-left:max(24px,calc((100vw - min(1200px,calc(100vw - 48px)))/2));
  padding-right:max(24px,calc((100vw - min(1200px,calc(100vw - 48px)))/2));
  background:#061412;
  border-bottom:1px solid rgba(255,255,255,.085);
}

#technologyPage .tech-proof-act::before{
  content:"";
  position:absolute;
  top:0;
  bottom:0;
  left:50%;
  width:100vw;
  transform:translateX(-50%);
  z-index:-2;
}

#technologyPage .tech-proof-act-web3{
  color:#10201d;
}
#technologyPage .tech-proof-act-web3::before{
  background:
    radial-gradient(760px 420px at 88% 20%,rgba(67,199,255,.055),transparent 68%),
    radial-gradient(650px 380px at 10% 80%,rgba(39,225,193,.05),transparent 72%),
    linear-gradient(180deg,#f7fbfa 0%,#ffffff 100%);
}
#technologyPage .tech-proof-act-web3 .inner-section-tag{
  color:#008b79;
}
#technologyPage .tech-proof-act-web3 .tech-proof-act-head h2{
  color:#10201d;
}
#technologyPage .tech-proof-act-web3 .tech-proof-capabilities{
  border-top-color:rgba(7,22,21,.09);
  border-left-color:rgba(7,22,21,.09);
}
#technologyPage .tech-proof-act-web3 .tech-proof-capability{
  background:rgba(255,255,255,.72);
  border-right-color:rgba(7,22,21,.09);
  border-bottom-color:rgba(7,22,21,.09);
}
#technologyPage .tech-proof-act-web3 .tech-proof-capability:hover{
  background:rgba(1,182,155,.045);
  border-color:rgba(1,182,155,.14);
}
#technologyPage .tech-proof-act-web3 .tech-proof-capability span{
  color:#71817d;
}
#technologyPage .tech-proof-act-web3 .tech-proof-capability strong{
  color:#10201d;
}
#technologyPage .tech-proof-act-web3 .tech-proof-act-rail{
  color:#008b79;
}
#technologyPage .tech-proof-act-web3 .tech-proof-act-rail::before{
  background:linear-gradient(180deg,rgba(1,182,155,.55),rgba(1,182,155,.18),rgba(7,22,21,.07));
}

#technologyPage .tech-proof-act-ip{
  color:#f5fcfa;
}
#technologyPage .tech-proof-act-ip::before{
  background:
    radial-gradient(820px 520px at 84% 25%,rgba(67,199,255,.075),transparent 68%),
    radial-gradient(720px 500px at 10% 74%,rgba(39,225,193,.065),transparent 72%),
    linear-gradient(180deg,#061412 0%,#071a17 100%);
}
#technologyPage .tech-proof-act-ip .tech-proof-act-head h2{
  color:#f4fbf9;
}
#technologyPage .tech-proof-act-ip .tech-proof-act-rail{
  color:rgba(121,227,208,.62);
}

#technologyPage .tech-proof-act-reliability{
  color:#10201d;
  border-bottom:0;
}
#technologyPage .tech-proof-act-reliability::before{
  background:
    radial-gradient(760px 420px at 10% 22%,rgba(39,225,193,.05),transparent 70%),
    radial-gradient(720px 420px at 90% 80%,rgba(67,199,255,.045),transparent 70%),
    linear-gradient(180deg,#ffffff 0%,#f7fbfa 100%);
}
#technologyPage .tech-proof-act-reliability .inner-section-tag{
  color:#008b79;
}
#technologyPage .tech-proof-act-reliability .tech-proof-act-head h2{
  color:#10201d;
}
#technologyPage .tech-proof-act-reliability .tech-doc-link{
  color:#10201d;
}
#technologyPage .tech-proof-act-reliability .tech-doc-link i{
  color:#008b79;
  background:rgba(1,182,155,.065);
  border-color:rgba(1,182,155,.12);
}
#technologyPage .tech-proof-act-reliability .tech-proof-runtime-item{
  background:rgba(255,255,255,.74);
  border-color:rgba(7,22,21,.09);
}
#technologyPage .tech-proof-act-reliability .tech-proof-runtime-item strong{
  color:#10201d;
}
#technologyPage .tech-proof-act-reliability .tech-proof-runtime-item span{
  color:#008b79;
}
#technologyPage .tech-proof-act-reliability .tech-proof-runtime-item small{
  color:#71817d;
}
#technologyPage .tech-proof-act-reliability .tech-proof-act-rail{
  color:#008b79;
}
#technologyPage .tech-proof-act-reliability .tech-proof-act-rail::before{
  background:linear-gradient(180deg,rgba(1,182,155,.48),rgba(1,182,155,.16),transparent);
}

#technologyPage .technology-proof-chapter > .tech-proof-ambient{
  display:none;
}

#technologyPage .tech-proof-act-rail i{
  background:var(--aqua);
  box-shadow:0 0 0 5px rgba(39,225,193,.065),0 0 18px rgba(39,225,193,.42);
}

#technologyPage .tech-proof-act{
  border-bottom-color:rgba(7,22,21,.08);
}
#technologyPage .tech-proof-act-ip{
  border-bottom-color:rgba(255,255,255,.085);
}

@media(max-width:760px){
  #technologyPage .tech-proof-telemetry{
    padding-left:24px;
    padding-right:24px;
  }
}

#technologyPage .tech-proof-telemetry{
  display:none !important;
}

#technologyPage .tech-proof-act{
  grid-template-columns:26px minmax(0,1fr);
  gap:18px;
}
#technologyPage .tech-proof-act-rail{
  width:26px;
}
#technologyPage .tech-proof-act-rail span{
  display:none !important;
}
#technologyPage .tech-proof-act-rail::before{
  top:8px;
}
#technologyPage .tech-proof-act-rail i{
  top:5px;
}

@media(max-width:760px){
  #technologyPage .tech-proof-act{
    grid-template-columns:20px minmax(0,1fr);
    gap:14px;
  }
  #technologyPage .tech-proof-act-rail{
    width:20px;
  }
}

#technologyPage .tech-capability-system{
  position:relative;
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  margin-top:52px;
  overflow:hidden;
  border:1px solid rgba(7,22,21,.095);
  border-radius:24px;
  background:
    linear-gradient(180deg,rgba(255,255,255,.78),rgba(245,251,249,.88));
  box-shadow:0 30px 74px -58px rgba(7,38,33,.32);
}
#technologyPage .tech-capability-system::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(rgba(0,124,109,.03) 1px,transparent 1px),
    linear-gradient(90deg,rgba(0,124,109,.03) 1px,transparent 1px);
  background-size:32px 32px;
  mask-image:linear-gradient(90deg,#000,rgba(0,0,0,.28) 66%,transparent);
  pointer-events:none;
}
#technologyPage .tech-capability-system::after{
  content:"";
  position:absolute;
  width:300px;height:300px;
  right:-130px;top:-170px;
  border:1px solid rgba(67,199,255,.10);
  border-radius:50%;
  box-shadow:0 0 0 46px rgba(1,182,155,.018),0 0 0 92px rgba(67,199,255,.012);
  pointer-events:none;
}
#technologyPage .tech-capability-module{
  position:relative;
  z-index:2;
  min-height:210px;
  padding:28px 26px 26px;
  border-right:1px solid rgba(7,22,21,.085);
  display:flex;
  flex-direction:column;
}
#technologyPage .tech-capability-module:last-child{border-right:0}
#technologyPage .tech-capability-top{
  min-height:38px;
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:14px;
}
#technologyPage .tech-capability-top span{
  max-width:180px;
  color:#73837f;
  font:700 8.5px/1.35 "Geist Mono",monospace;
  letter-spacing:.105em;
}
#technologyPage .tech-capability-top i{
  flex:0 0 auto;
  width:7px;height:7px;
  margin-top:2px;
  border-radius:50%;
  background:#01b69b;
  box-shadow:0 0 0 5px rgba(1,182,155,.07),0 0 14px rgba(1,182,155,.30);
}
#technologyPage .tech-capability-module strong{
  margin-top:auto;
  color:#0b2521;
  font:820 clamp(38px,4.1vw,58px)/.9 Manrope,sans-serif;
  letter-spacing:-.065em;
}
#technologyPage .tech-capability-module:not(.fee) strong{
  color:#008b79;
  font-size:clamp(34px,3.5vw,48px);
}
#technologyPage .tech-capability-module small{
  display:block;
  min-height:38px;
  margin-top:14px;
  color:#536762;
  font:620 12px/1.5 Manrope,sans-serif;
}
#technologyPage .tech-capability-signal{
  position:absolute;
  z-index:3;
  left:26px;
  right:26px;
  bottom:18px;
  height:1px;
  pointer-events:none;
}
#technologyPage .tech-capability-signal .rail{
  position:absolute;
  inset:0;
  background:linear-gradient(90deg,rgba(1,182,155,.12),rgba(1,182,155,.46),rgba(67,199,255,.22),rgba(1,182,155,.10));
}
#technologyPage .tech-capability-signal .pulse{
  position:absolute;
  top:50%;
  left:0;
  width:7px;height:7px;
  margin-top:-3.5px;
  border-radius:50%;
  background:#59e3cc;
  box-shadow:0 0 14px rgba(39,225,193,.58);
  animation:techCapabilitySignal 8s linear infinite;
}
#technologyPage .tech-capability-module:hover{
  background:linear-gradient(180deg,rgba(1,182,155,.035),rgba(67,199,255,.018));
}
@keyframes techCapabilitySignal{
  0%{left:0;opacity:0}
  8%{opacity:1}
  88%{opacity:1}
  100%{left:calc(100% - 7px);opacity:0}
}

#technologyPage .tech-runtime-console{
  display:grid;
  grid-template-columns:minmax(0,1.35fr) minmax(310px,.65fr);
  gap:14px;
  margin-top:50px;
}
#technologyPage .tech-runtime-primary,
#technologyPage .tech-runtime-incidents{
  border:1px solid rgba(7,22,21,.09);
  border-radius:24px;
  background:
    radial-gradient(420px 240px at 84% 0%,rgba(67,199,255,.07),transparent 70%),
    linear-gradient(180deg,rgba(255,255,255,.88),rgba(245,251,249,.86));
  box-shadow:0 30px 70px -58px rgba(7,38,33,.30);
}
#technologyPage .tech-runtime-primary{
  position:relative;
  min-height:332px;
  padding:26px 28px 22px;
  overflow:hidden;
}
#technologyPage .tech-runtime-primary::before{
  content:"";
  position:absolute;
  inset:0;
  background-image:
    linear-gradient(rgba(0,124,109,.025) 1px,transparent 1px),
    linear-gradient(90deg,rgba(0,124,109,.025) 1px,transparent 1px);
  background-size:34px 34px;
  mask-image:linear-gradient(90deg,#000,rgba(0,0,0,.24),transparent 82%);
  pointer-events:none;
}
#technologyPage .tech-runtime-meta{
  position:relative;
  z-index:2;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
}
#technologyPage .tech-runtime-meta > span{
  display:flex;
  align-items:center;
  gap:9px;
  color:#6e817c;
  font:700 8.5px/1 "Geist Mono",monospace;
  letter-spacing:.11em;
}
#technologyPage .tech-runtime-meta > span i{
  width:7px;height:7px;
  border-radius:50%;
  background:#01b69b;
  box-shadow:0 0 12px rgba(1,182,155,.45);
  animation:techStatusPulse 2.6s ease-in-out infinite;
}
#technologyPage .tech-runtime-meta small{
  color:#91a09c;
  font:700 8px/1 "Geist Mono",monospace;
  letter-spacing:.11em;
}
#technologyPage .tech-runtime-gauge{
  position:relative;
  z-index:2;
  display:flex;
  align-items:center;
  gap:30px;
  margin-top:24px;
}
#technologyPage .tech-runtime-ring{
  width:156px;height:156px;
  flex:0 0 auto;
  display:grid;
  place-items:center;
  border-radius:50%;
  background:
    radial-gradient(circle,#f8fcfb 0 57%,transparent 58%),
    conic-gradient(#01b69b 0deg,#43c7ff 360deg);
  box-shadow:
    inset 0 0 0 1px rgba(0,124,109,.06),
    0 18px 40px -30px rgba(0,124,109,.38);
  position:relative;
}
#technologyPage .tech-runtime-ring::after{
  content:"";
  position:absolute;
  inset:8px;
  border-radius:50%;
  border:1px solid rgba(0,124,109,.08);
}
#technologyPage .tech-runtime-ring div{text-align:center}
#technologyPage .tech-runtime-ring strong{
  display:block;
  color:#0b2521;
  font:830 42px/.9 Manrope,sans-serif;
  letter-spacing:-.065em;
}
#technologyPage .tech-runtime-ring span{
  display:block;
  margin-top:8px;
  color:#008b79;
  font:700 8px/1 "Geist Mono",monospace;
  letter-spacing:.11em;
}
#technologyPage .tech-runtime-copy strong{
  display:block;
  color:#10201d;
  font:760 24px/1.1 Manrope,sans-serif;
  letter-spacing:-.035em;
}
#technologyPage .tech-runtime-copy span{
  display:block;
  max-width:270px;
  margin-top:9px;
  color:#70817d;
  font-size:12px;
  line-height:1.55;
}
#technologyPage .tech-runtime-wave{
  position:absolute;
  z-index:2;
  left:28px;
  right:28px;
  bottom:18px;
  height:64px;
  overflow:hidden;
  border-top:1px solid rgba(7,22,21,.065);
}
#technologyPage .tech-runtime-wave svg{
  width:100%;
  height:100%;
}
#technologyPage .runtime-grid{
  fill:none;
  stroke:rgba(0,124,109,.045);
  stroke-width:1;
}
#technologyPage .runtime-wave-line{
  fill:none;
  stroke:#01a990;
  stroke-width:1.5;
  vector-effect:non-scaling-stroke;
}
#technologyPage .runtime-wave-scan{
  position:absolute;
  top:0;bottom:0;
  width:80px;
  left:-90px;
  background:linear-gradient(90deg,transparent,rgba(67,199,255,.12),transparent);
  animation:techRuntimeScan 6.5s linear infinite;
}
@keyframes techRuntimeScan{
  to{left:calc(100% + 20px)}
}
#technologyPage .tech-runtime-incidents{
  overflow:hidden;
  display:grid;
  grid-template-rows:repeat(3,1fr);
}
#technologyPage .tech-runtime-incident{
  position:relative;
  min-height:106px;
  padding:22px 24px;
  border-bottom:1px solid rgba(7,22,21,.075);
}
#technologyPage .tech-runtime-incident:last-child{border-bottom:0}
#technologyPage .tech-runtime-incident::after{
  content:"";
  position:absolute;
  right:20px;top:22px;
  width:6px;height:6px;
  border-radius:50%;
  background:#01b69b;
  box-shadow:0 0 11px rgba(1,182,155,.38);
}
#technologyPage .tech-runtime-incident span{
  display:block;
  max-width:190px;
  color:#71817d;
  font:700 8.5px/1.35 "Geist Mono",monospace;
  letter-spacing:.10em;
}
#technologyPage .tech-runtime-incident strong{
  display:block;
  margin-top:13px;
  color:#10201d;
  font:830 34px/.9 Manrope,sans-serif;
  letter-spacing:-.055em;
}
#technologyPage .tech-runtime-incident i{
  position:absolute;
  right:22px;
  bottom:21px;
  color:#9aa8a4;
  font:700 7px/1 "Geist Mono",monospace;
  font-style:normal;
  letter-spacing:.10em;
}

#technologyPage .tech-proof-act-web3 .tech-proof-capabilities,
#technologyPage .tech-proof-act-reliability .tech-proof-runtime{
  display:none;
}

@media(max-width:1000px){
  #technologyPage .tech-capability-system{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }
  #technologyPage .tech-capability-module:nth-child(3){
    border-right:0;
  }
  #technologyPage .tech-capability-module:nth-child(-n+2){
    border-bottom:1px solid rgba(7,22,21,.085);
  }
  #technologyPage .tech-runtime-console{
    grid-template-columns:1fr;
  }
  #technologyPage .tech-runtime-incidents{
    grid-template-columns:repeat(3,1fr);
    grid-template-rows:none;
  }
  #technologyPage .tech-runtime-incident{
    border-bottom:0;
    border-right:1px solid rgba(7,22,21,.075);
  }
  #technologyPage .tech-runtime-incident:last-child{border-right:0}
}
@media(max-width:640px){
  #technologyPage .tech-capability-system{
    grid-template-columns:1fr;
    border-radius:20px;
  }
  #technologyPage .tech-capability-module{
    min-height:164px;
    border-right:0;
    border-bottom:1px solid rgba(7,22,21,.085);
  }
  #technologyPage .tech-capability-module:last-child{border-bottom:0}
  #technologyPage .tech-capability-signal{display:none}
  #technologyPage .tech-runtime-primary{
    min-height:390px;
    padding:22px 20px;
  }
  #technologyPage .tech-runtime-gauge{
    align-items:flex-start;
    flex-direction:column;
    gap:20px;
  }
  #technologyPage .tech-runtime-ring{
    width:138px;height:138px;
  }
  #technologyPage .tech-runtime-wave{
    left:20px;right:20px;
  }
  #technologyPage .tech-runtime-incidents{
    grid-template-columns:1fr;
  }
  #technologyPage .tech-runtime-incident{
    border-right:0;
    border-bottom:1px solid rgba(7,22,21,.075);
  }
  #technologyPage .tech-runtime-incident:last-child{border-bottom:0}
}
@media(prefers-reduced-motion:reduce){
  #technologyPage .tech-capability-signal .pulse,
  #technologyPage .runtime-wave-scan,
  #technologyPage .tech-runtime-meta > span i{
    animation:none !important;
  }
}

#technologyPage .tech-capability-signal{
  display:none !important;
}

#technologyPage .tech-capability-top span{
  max-width:200px;
  font-size:11px !important;
  line-height:1.42 !important;
  letter-spacing:.075em !important;
}

#technologyPage .tech-proof-ip-lattice span{
  font-size:11px !important;
  line-height:1.4 !important;
  letter-spacing:.075em !important;
}

#technologyPage .tech-runtime-meta > span,
#technologyPage .tech-runtime-meta small,
#technologyPage .tech-runtime-ring span,
#technologyPage .tech-runtime-incident span{
  font-size:11px !important;
  line-height:1.4 !important;
  letter-spacing:.075em !important;
}

#technologyPage .tech-runtime-incident i{
  font-size:9.5px !important;
  line-height:1.2 !important;
  letter-spacing:.075em !important;
}

#technologyPage .tech-capability-module small,
#technologyPage .tech-proof-ip-lattice small,
#technologyPage .tech-runtime-copy span{
  font-size:12.5px !important;
  line-height:1.55 !important;
}

#technologyPage .tech-capability-top{
  min-height:48px;
}
#technologyPage .tech-runtime-incident{
  padding-top:24px;
}
#technologyPage .tech-proof-ip-primary,
#technologyPage .tech-proof-ip-stat{
  padding-top:32px;
}

@media(max-width:640px){
  #technologyPage .tech-capability-top span,
  #technologyPage .tech-proof-ip-lattice span,
  #technologyPage .tech-runtime-meta > span,
  #technologyPage .tech-runtime-meta small,
  #technologyPage .tech-runtime-ring span,
  #technologyPage .tech-runtime-incident span{
    font-size:10.5px !important;
  }
}

#companyPage .company-monolith-reviewed .company-monolith-note{
  width:205px;
}
#companyPage .company-monolith-reviewed .company-monolith-note span{
  display:block;
  margin-bottom:8px;
  color:var(--aqua);
  font:700 8.5px/1 "Geist Mono",monospace;
  letter-spacing:.11em;
}
#companyPage .company-monolith-reviewed .company-monolith-note strong{
  display:block;
  color:#f3fbf8;
  font:720 16px/1.25 Manrope,sans-serif;
  letter-spacing:-.025em;
}

#companyPage .company-vision-layout{
  display:grid;
  grid-template-columns:minmax(0,.75fr) minmax(480px,1.25fr);
  gap:84px;
  align-items:center;
}
#companyPage .company-vision-copy h2{
  max-width:590px;
  margin:16px 0 0;
  color:#10201d;
  font:800 clamp(46px,5.4vw,76px)/.96 Manrope,sans-serif;
  letter-spacing:-.058em;
}
#companyPage .company-vision-copy p{
  margin:22px 0 0;
  color:#6a7c77;
  font-size:15px;
  line-height:1.6;
}
#companyPage .company-market-panel{
  position:relative;
  min-height:390px;
  overflow:hidden;
  border:1px solid rgba(7,22,21,.085);
  border-radius:28px;
  background:
    radial-gradient(430px 260px at 86% 14%,rgba(67,199,255,.065),transparent 70%),
    linear-gradient(180deg,#fff,#f5fbf9);
  box-shadow:0 32px 76px -62px rgba(7,38,33,.34);
}
#companyPage .company-market-panel::before{
  content:"";
  position:absolute;
  inset:0;
  background-image:
    linear-gradient(rgba(0,124,109,.026) 1px,transparent 1px),
    linear-gradient(90deg,rgba(0,124,109,.026) 1px,transparent 1px);
  background-size:36px 36px;
  mask-image:linear-gradient(90deg,#000,rgba(0,0,0,.22),transparent 82%);
}
#companyPage .company-market-primary,
#companyPage .company-market-secondary{
  position:absolute;
  z-index:2;
}
#companyPage .company-market-primary{left:34px;top:32px}
#companyPage .company-market-secondary{right:34px;top:42px;text-align:right}
#companyPage .company-market-primary span,
#companyPage .company-market-secondary span{
  display:block;
  color:#71817d;
  font:700 10.5px/1.3 "Geist Mono",monospace;
  letter-spacing:.08em;
}
#companyPage .company-market-primary strong{
  display:block;
  margin-top:12px;
  color:#10201d;
  font:830 clamp(48px,5.5vw,72px)/.9 Manrope,sans-serif;
  letter-spacing:-.065em;
}
#companyPage .company-market-secondary strong{
  display:block;
  margin-top:12px;
  color:#008b79;
  font:830 45px/.9 Manrope,sans-serif;
  letter-spacing:-.055em;
}
#companyPage .company-market-primary small,
#companyPage .company-market-secondary small{
  display:block;
  margin-top:9px;
  color:#859590;
  font:700 10px/1 "Geist Mono",monospace;
  letter-spacing:.08em;
}
#companyPage .company-market-spark{
  position:absolute;
  z-index:2;
  left:30px;right:30px;bottom:28px;
  height:180px;
}
#companyPage .company-market-spark svg{width:100%;height:145px}
#companyPage .market-grid{
  fill:none;
  stroke:rgba(0,124,109,.055);
  stroke-width:1;
}
#companyPage .market-line{
  fill:none;
  stroke:#01a990;
  stroke-width:2;
  vector-effect:non-scaling-stroke;
}
#companyPage .company-market-years{
  display:flex;
  justify-content:space-between;
  color:#94a39f;
  font:700 8.5px/1 "Geist Mono",monospace;
  letter-spacing:.06em;
}

#companyPage .company-awards-section{
  background:
    radial-gradient(720px 380px at 86% 24%,rgba(39,225,193,.065),transparent 70%),
    #071615;
}
#companyPage .company-awards-reviewed{
  border-top-color:rgba(255,255,255,.10);
}
#companyPage .company-awards-reviewed .company-award-row{
  grid-template-columns:minmax(0,1fr) auto;
  border-bottom-color:rgba(255,255,255,.09);
}
#companyPage .company-awards-reviewed .company-award-year{
  color:var(--aqua);
}
#companyPage .company-awards-reviewed h3{color:#f4fbf9}
#companyPage .company-awards-reviewed p{color:rgba(235,249,245,.55)}
#companyPage .company-awards-reviewed .company-award-mark{
  border-color:rgba(39,225,193,.13);
  background:rgba(39,225,193,.055);
  color:var(--aqua);
}

#companyPage .company-team-summary{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px;
}
#companyPage .company-team-summary-card{
  position:relative;
  min-height:310px;
  padding:30px;
  overflow:hidden;
  border:1px solid rgba(7,22,21,.085);
  border-radius:24px;
  background:#fff;
  box-shadow:0 24px 60px -52px rgba(7,38,33,.30);
}
#companyPage .company-team-summary-card::after{
  content:"";
  position:absolute;
  width:220px;height:220px;
  right:-95px;bottom:-110px;
  border:1px solid rgba(1,182,155,.08);
  border-radius:50%;
  box-shadow:0 0 0 38px rgba(1,182,155,.018);
}
#companyPage .company-team-summary-top{
  position:relative;
  z-index:1;
  display:flex;
  justify-content:space-between;
  align-items:center;
}
#companyPage .company-team-summary-top span,
#companyPage .company-leadership-label span{
  color:#008b79;
  font:700 10.5px/1.25 "Geist Mono",monospace;
  letter-spacing:.085em;
}
#companyPage .company-team-summary-top i{
  width:7px;height:7px;
  border-radius:50%;
  background:#01b69b;
  box-shadow:0 0 12px rgba(1,182,155,.38);
}
#companyPage .company-team-summary-card h3{
  position:relative;
  z-index:1;
  margin:28px 0 0;
  max-width:500px;
  color:#10201d;
  font:770 27px/1.12 Manrope,sans-serif;
  letter-spacing:-.04em;
}
#companyPage .company-team-summary-card p{
  position:relative;
  z-index:1;
  max-width:600px;
  margin:16px 0 0;
  color:#657771;
  font-size:13.5px;
  line-height:1.68;
}
#companyPage .company-team-facts{
  position:relative;
  z-index:1;
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:28px;
}
#companyPage .company-team-facts span{
  padding:10px 12px;
  border:1px solid rgba(0,124,109,.075);
  border-radius:12px;
  background:#f0faf7;
  color:#61736e;
  font-size:11px;
  line-height:1.4;
}
#companyPage .company-team-facts strong{color:#007c6d}

#companyPage .company-leadership-label{
  margin-top:64px;
  padding-bottom:16px;
  border-bottom:1px solid rgba(7,22,21,.09);
}
#companyPage .company-leadership-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:14px;
  margin-top:16px;
}
#companyPage .company-leader{
  min-height:290px;
  padding:24px;
  border:1px solid rgba(7,22,21,.085);
  border-radius:20px;
  background:rgba(255,255,255,.76);
}
#companyPage .company-leader-head{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:18px;
}
#companyPage .company-leader-head strong{
  display:block;
  color:#10201d;
  font:760 20px/1.1 Manrope,sans-serif;
  letter-spacing:-.03em;
}
#companyPage .company-leader-head span{
  display:block;
  margin-top:7px;
  color:#008b79;
  font:700 9.5px/1.2 "Geist Mono",monospace;
  letter-spacing:.075em;
}
#companyPage .company-leader-head i{
  width:42px;height:42px;
  flex:0 0 auto;
  display:grid;
  place-items:center;
  border-radius:13px;
  background:#edf9f6;
  color:#008b79;
  font:750 10px/1 "Geist Mono",monospace;
  font-style:normal;
}
#companyPage .company-leader p{
  margin:24px 0 0;
  color:#60726d;
  font-size:12.5px;
  line-height:1.64;
}
#companyPage .company-leader small{
  display:block;
  margin-top:18px;
  color:#899894;
  font-size:10.5px;
  line-height:1.55;
}
#companyPage .company-advisors{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:14px;
  margin-top:14px;
}
#companyPage .company-advisor{
  padding:23px 24px;
  border:1px solid rgba(7,22,21,.075);
  border-radius:18px;
  background:#f5faf8;
}
#companyPage .company-advisor span{
  display:block;
  color:#008b79;
  font:700 9.5px/1 "Geist Mono",monospace;
  letter-spacing:.08em;
}
#companyPage .company-advisor strong{
  display:block;
  margin-top:10px;
  color:#10201d;
  font:750 18px/1.1 Manrope,sans-serif;
}
#companyPage .company-advisor p{
  margin:10px 0 0;
  color:#687a75;
  font-size:12px;
  line-height:1.6;
}

@media(max-width:1050px){
  #companyPage .company-vision-layout{grid-template-columns:1fr;gap:42px}
  #companyPage .company-market-panel{min-height:360px}
  #companyPage .company-leadership-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
}
@media(max-width:760px){
  #companyPage .company-team-summary{grid-template-columns:1fr}
  #companyPage .company-leadership-grid{grid-template-columns:1fr}
  #companyPage .company-advisors{grid-template-columns:1fr}
  #companyPage .company-market-panel{min-height:330px;border-radius:22px}
  #companyPage .company-market-primary{left:22px;top:24px}
  #companyPage .company-market-secondary{right:22px;top:30px}
  #companyPage .company-market-spark{left:20px;right:20px;bottom:20px;height:150px}
  #companyPage .company-market-spark svg{height:118px}
  #companyPage .company-team-summary-card{min-height:auto;padding:24px;border-radius:20px}
  #companyPage .company-leader{min-height:auto}
}

#companyPage .company-leadership-grid{
  margin-top:54px;
}

#companyPage .company-team-summary{
  margin-bottom:0;
}

#companyPage .company-hero-visual{
  width:100%;
  max-width:500px;
  min-height:600px;
  display:flex;
  justify-content:flex-end;
  align-items:flex-start;
  padding:0;
}

#companyPage .company-id-card{
  position:relative;
  width:min(100%,420px);
  aspect-ratio:3 / 4;
  overflow:hidden;
  isolation:isolate;
  border:1px solid rgba(255,255,255,.12);
  border-radius:30px;
  background:
    radial-gradient(420px 340px at 85% 17%,rgba(67,199,255,.10),transparent 66%),
    radial-gradient(390px 360px at 8% 88%,rgba(39,225,193,.08),transparent 72%),
    linear-gradient(152deg,#0b201d 0%,#071615 48%,#061210 100%);
  box-shadow:
    0 48px 90px -58px rgba(0,0,0,.78),
    inset 0 1px 0 rgba(255,255,255,.06);
}

#companyPage .company-id-card::before{
  content:"";
  position:absolute;
  inset:12px;
  z-index:4;
  border:1px solid rgba(255,255,255,.055);
  border-radius:22px;
  pointer-events:none;
}

#companyPage .company-id-card::after{
  content:"";
  position:absolute;
  left:28px;
  right:28px;
  top:94px;
  height:1px;
  z-index:4;
  background:linear-gradient(90deg,rgba(39,225,193,.48),rgba(67,199,255,.22),transparent 84%);
  pointer-events:none;
}

#companyPage .company-id-card-grid{
  position:absolute;
  inset:0;
  z-index:-1;
  background-image:
    linear-gradient(rgba(255,255,255,.022) 1px,transparent 1px),
    linear-gradient(90deg,rgba(255,255,255,.022) 1px,transparent 1px);
  background-size:32px 32px;
  mask-image:linear-gradient(145deg,rgba(0,0,0,.88),rgba(0,0,0,.18) 65%,transparent 90%);
}

#companyPage .company-id-brand{
  position:absolute;
  z-index:5;
  top:34px;
  left:34px;
  display:inline-flex;
  align-items:center;
  gap:11px;
}
#companyPage .company-id-brand img{
  width:auto;
  height:34px;
  filter:brightness(0) invert(1);
}
#companyPage .company-id-brand span{
  color:#fff;
  font:800 22px/1 Manrope,sans-serif;
  letter-spacing:-.045em;
}

#companyPage .company-id-watermark{
  position:absolute;
  z-index:0;
  top:120px;
  left:50%;
  width:270px;
  height:300px;
  transform:translateX(-50%);
  display:grid;
  place-items:center;
  opacity:.065;
  pointer-events:none;
}
#companyPage .company-id-watermark img{
  max-width:100%;
  max-height:100%;
  filter:brightness(0) invert(1);
}

#companyPage .company-id-positioning{
  position:absolute;
  z-index:5;
  left:34px;
  right:34px;
  top:150px;
}
#companyPage .company-id-positioning span{
  display:block;
  max-width:300px;
  color:rgba(199,239,231,.62);
  font:700 10.5px/1.45 "Geist Mono",monospace;
  letter-spacing:.085em;
}
#companyPage .company-id-positioning strong{
  display:block;
  margin-top:13px;
  max-width:290px;
  color:#f5fcfa;
  font:770 30px/1.02 Manrope,sans-serif;
  letter-spacing:-.045em;
}

#companyPage .company-id-meta{
  position:absolute;
  z-index:5;
  left:34px;
  right:34px;
  bottom:76px;
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:24px;
  padding-top:21px;
  border-top:1px solid rgba(255,255,255,.085);
}
#companyPage .company-id-meta > div{
  min-width:0;
}
#companyPage .company-id-meta small{
  display:block;
  color:rgba(215,244,238,.42);
  font:700 9px/1 "Geist Mono",monospace;
  letter-spacing:.11em;
}
#companyPage .company-id-meta strong{
  display:block;
  margin-top:9px;
  color:#f4fbf9;
  font:760 15px/1 Manrope,sans-serif;
  letter-spacing:-.018em;
}
#companyPage .company-id-meta > div:first-child strong{
  font-size:23px;
  letter-spacing:-.04em;
}
#companyPage .company-id-site{
  text-align:right;
}

#companyPage .company-id-tags{
  position:absolute;
  z-index:5;
  left:34px;
  right:34px;
  bottom:34px;
  display:flex;
  align-items:center;
  gap:10px;
  color:rgba(215,244,238,.46);
  font:700 8.5px/1 "Geist Mono",monospace;
  letter-spacing:.09em;
}
#companyPage .company-id-tags i{
  width:3px;
  height:3px;
  flex:0 0 auto;
  border-radius:50%;
  background:#27e1c1;
  box-shadow:0 0 8px rgba(39,225,193,.50);
}

#companyPage .company-id-card-grid{
  animation:companyCardGridShift 18s linear infinite alternate;
}
@keyframes companyCardGridShift{
  from{transform:translate3d(0,0,0)}
  to{transform:translate3d(-12px,-8px,0)}
}

@media(max-width:1100px){
  #companyPage .company-hero-visual{
    min-height:590px;
    max-width:520px;
    justify-content:center;
  }
}
@media(max-width:620px){
  #companyPage .company-hero-visual{
    min-height:auto;
    max-width:390px;
  }
  #companyPage .company-id-card{
    width:min(100%,350px);
    border-radius:25px;
  }
  #companyPage .company-id-brand{
    top:28px;
    left:28px;
  }
  #companyPage .company-id-brand img{height:30px}
  #companyPage .company-id-brand span{font-size:20px}
  #companyPage .company-id-card::after{
    left:28px;
    right:28px;
    top:82px;
  }
  #companyPage .company-id-positioning{
    left:28px;
    right:28px;
    top:132px;
  }
  #companyPage .company-id-positioning strong{
    font-size:26px;
  }
  #companyPage .company-id-meta{
    left:28px;
    right:28px;
    bottom:68px;
  }
  #companyPage .company-id-tags{
    left:28px;
    right:28px;
    bottom:29px;
  }
}
@media(prefers-reduced-motion:reduce){
  #companyPage .company-id-card-grid{
    animation:none !important;
  }
}

/* Use Cases Experience */
#useCasesPage{
  --uc-ink:#0d211e;
  --uc-muted:#637671;
  --uc-line:rgba(7,22,21,.085);
  --uc-teal:#00a98f;
  --uc-aqua:#27e1c1;
  --uc-blue:#43c7ff;
}

#useCasesPage .usecases-sales-hero{
  position:relative;
  overflow:hidden;
}
#useCasesPage .usecases-sales-hero::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(680px 440px at 84% 42%,rgba(67,199,255,.065),transparent 70%),
    radial-gradient(540px 360px at 64% 84%,rgba(39,225,193,.055),transparent 72%);
  pointer-events:none;
}
#useCasesPage .usecases-hero-layout{
  position:relative;
  z-index:1;
  display:grid;
  grid-template-columns:minmax(0,.84fr) minmax(500px,1.16fr);
  gap:70px;
  align-items:center;
}
#useCasesPage .usecases-sales-hero .inner-page-hero-copy{
  max-width:650px;
}
#useCasesPage .uc-hero-selector{
  position:relative;
  overflow:hidden;
  border:1px solid rgba(7,22,21,.09);
  border-radius:28px;
  background:rgba(255,255,255,.78);
  box-shadow:0 36px 80px -60px rgba(0,55,45,.34);
  backdrop-filter:blur(18px);
}
#useCasesPage .uc-hero-selector::before{
  content:"";
  position:absolute;
  inset:0;
  background-image:
    linear-gradient(rgba(0,124,109,.023) 1px,transparent 1px),
    linear-gradient(90deg,rgba(0,124,109,.023) 1px,transparent 1px);
  background-size:34px 34px;
  mask-image:linear-gradient(135deg,#000,rgba(0,0,0,.28),transparent 75%);
  pointer-events:none;
}
#useCasesPage .uc-selector-top{
  position:relative;
  z-index:1;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  padding:20px 22px;
  border-bottom:1px solid var(--uc-line);
}
#useCasesPage .uc-selector-top span,
#useCasesPage .uc-selector-top small,
#useCasesPage .uc-section-kicker{
  font:700 10.5px/1 "Geist Mono",monospace;
  letter-spacing:.085em;
}
#useCasesPage .uc-selector-top span{color:#008b79}
#useCasesPage .uc-selector-top small{color:#8a9995}
#useCasesPage .uc-business-options{
  position:relative;
  z-index:1;
  display:grid;
  grid-template-columns:1fr 1fr;
  border-bottom:1px solid var(--uc-line);
}
#useCasesPage .uc-business-option{
  appearance:none;
  border:0;
  border-right:1px solid var(--uc-line);
  border-bottom:1px solid var(--uc-line);
  background:rgba(255,255,255,.18);
  padding:18px 18px;
  text-align:left;
  display:flex;
  align-items:center;
  gap:13px;
  cursor:pointer;
  transition:background .25s ease,transform .25s ease;
}
#useCasesPage .uc-business-option:nth-child(2n){border-right:0}
#useCasesPage .uc-business-option:nth-child(n+3){border-bottom:0}
#useCasesPage .uc-business-option:hover{background:rgba(1,182,155,.035)}
#useCasesPage .uc-business-option.active{
  background:linear-gradient(135deg,rgba(1,182,155,.09),rgba(67,199,255,.04));
}
#useCasesPage .uc-icon{
  width:39px;height:39px;
  flex:0 0 auto;
  display:grid;
  place-items:center;
  border:1px solid rgba(0,124,109,.09);
  border-radius:12px;
  background:#f0faf7;
  color:#008b79;
}
#useCasesPage .uc-icon svg{
  width:21px;height:21px;
  fill:none;
  stroke:currentColor;
  stroke-width:1.6;
  stroke-linecap:round;
  stroke-linejoin:round;
}
#useCasesPage .uc-business-option > span{min-width:0}
#useCasesPage .uc-business-option strong{
  display:block;
  color:#10201d;
  font:720 13px/1.2 Manrope,sans-serif;
  letter-spacing:-.02em;
}
#useCasesPage .uc-business-option small{
  display:block;
  margin-top:5px;
  color:#81908c;
  font-size:10px;
  line-height:1.35;
}
#useCasesPage .uc-hero-preview{
  position:relative;
  z-index:1;
  padding:20px 22px 22px;
}
#useCasesPage .uc-preview-meta{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:20px;
}
#useCasesPage .uc-preview-badge,
#useCasesPage .uc-preview-status{
  font:700 9.5px/1 "Geist Mono",monospace;
  letter-spacing:.075em;
}
#useCasesPage .uc-preview-badge{color:#008b79}
#useCasesPage .uc-preview-status{
  display:flex;
  align-items:center;
  gap:7px;
  color:#7c8d88;
}
#useCasesPage .uc-preview-status i,
#useCasesPage .uc-status-dot{
  width:6px;height:6px;
  border-radius:50%;
  background:#01b69b;
  box-shadow:0 0 11px rgba(1,182,155,.42);
}
#useCasesPage .uc-preview-window{
  margin-top:14px;
  overflow:hidden;
  border:1px solid rgba(7,22,21,.08);
  border-radius:18px;
  background:#fbfdfc;
}
#useCasesPage .uc-preview-window-top{
  height:34px;
  padding:0 13px;
  display:flex;
  align-items:center;
  gap:5px;
  border-bottom:1px solid rgba(7,22,21,.06);
}
#useCasesPage .uc-preview-window-top > span{
  width:5px;height:5px;border-radius:50%;background:#cad5d2;
}
#useCasesPage .uc-preview-window-top small{
  margin-left:auto;
  color:#97a5a1;
  font:700 8px/1 "Geist Mono",monospace;
  letter-spacing:.08em;
}
#useCasesPage .uc-preview-content{
  min-height:128px;
  padding:22px;
  display:grid;
  grid-template-columns:1fr 28px 1fr;
  gap:10px;
  align-items:center;
}
#useCasesPage .uc-preview-request small,
#useCasesPage .uc-preview-result small{
  display:block;
  color:#879691;
  font:700 8.5px/1 "Geist Mono",monospace;
  letter-spacing:.08em;
}
#useCasesPage .uc-preview-request strong,
#useCasesPage .uc-preview-result strong{
  display:block;
  margin-top:9px;
  color:#10201d;
  font:740 16px/1.15 Manrope,sans-serif;
  letter-spacing:-.025em;
}
#useCasesPage .uc-preview-request span,
#useCasesPage .uc-preview-result span{
  display:block;
  margin-top:6px;
  color:#788984;
  font-size:10.5px;
  line-height:1.45;
}
#useCasesPage .uc-preview-arrow{
  color:#00a98f;
  font-size:17px;
  text-align:center;
}

#useCasesPage .uc-section-heading{
  display:grid;
  grid-template-columns:minmax(0,1fr) minmax(260px,390px);
  gap:48px;
  align-items:end;
  margin-bottom:42px;
}
#useCasesPage .uc-section-heading h2{
  max-width:820px;
  margin:14px 0 0;
  color:#10201d;
  font:800 clamp(40px,4.6vw,66px)/.98 Manrope,sans-serif;
  letter-spacing:-.055em;
}
#useCasesPage .uc-section-heading > p{
  margin:0 0 5px;
  color:#71827d;
  font-size:14px;
  line-height:1.65;
}
#useCasesPage .uc-section-kicker{color:#008b79}

#useCasesPage .uc-lab-section{
  position:relative;
  background:
    radial-gradient(760px 420px at 84% 18%,rgba(67,199,255,.05),transparent 72%),
    linear-gradient(180deg,#f7fbfa,#fff);
}
#useCasesPage .uc-lab-shell{
  overflow:hidden;
  border:1px solid rgba(7,22,21,.09);
  border-radius:28px;
  background:#fff;
  box-shadow:0 42px 90px -68px rgba(5,53,45,.38);
}
#useCasesPage .uc-lab-tabs{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  border-bottom:1px solid var(--uc-line);
}
#useCasesPage .uc-lab-tab{
  appearance:none;
  border:0;
  border-right:1px solid var(--uc-line);
  background:#f8fbfa;
  padding:17px 18px;
  color:#6f817c;
  text-align:left;
  font:700 12px/1.2 Manrope,sans-serif;
  cursor:pointer;
}
#useCasesPage .uc-lab-tab:last-child{border-right:0}
#useCasesPage .uc-lab-tab span{
  margin-right:8px;
  color:#9caaa6;
  font:700 9px/1 "Geist Mono",monospace;
}
#useCasesPage .uc-lab-tab.active{
  background:#fff;
  color:#0e2723;
  box-shadow:inset 0 -2px 0 #01b69b;
}
#useCasesPage .uc-lab-tab.active span{color:#008b79}
#useCasesPage .uc-lab-workspace{
  padding:26px;
}
#useCasesPage .uc-lab-topbar{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:30px;
}
#useCasesPage .uc-lab-industry{
  display:block;
  color:#008b79;
  font:700 10.5px/1 "Geist Mono",monospace;
  letter-spacing:.08em;
}
#useCasesPage .uc-lab-title{
  display:block;
  margin-top:9px;
  color:#10201d;
  font:770 25px/1.05 Manrope,sans-serif;
  letter-spacing:-.04em;
}
#useCasesPage .uc-lab-demo-label{
  display:flex;
  align-items:center;
  gap:8px;
  color:#8a9995;
  font:700 9px/1 "Geist Mono",monospace;
  letter-spacing:.08em;
}
#useCasesPage .uc-lab-demo-label i{
  width:6px;height:6px;border-radius:50%;
  background:#01b69b;
  box-shadow:0 0 10px rgba(1,182,155,.38);
}
#useCasesPage .uc-role-switch{
  display:inline-flex;
  gap:4px;
  margin-top:22px;
  padding:4px;
  border:1px solid rgba(7,22,21,.075);
  border-radius:12px;
  background:#f4f8f7;
}
#useCasesPage .uc-role-switch button{
  appearance:none;
  border:0;
  border-radius:9px;
  padding:8px 12px;
  background:transparent;
  color:#7b8b87;
  font:700 9px/1 "Geist Mono",monospace;
  letter-spacing:.055em;
  cursor:pointer;
}
#useCasesPage .uc-role-switch button.active{
  background:#fff;
  color:#007c6d;
  box-shadow:0 5px 16px -12px rgba(0,50,42,.35);
}
#useCasesPage .uc-demo-grid{
  display:grid;
  grid-template-columns:1fr .82fr 1fr;
  gap:14px;
  margin-top:18px;
}
#useCasesPage .uc-demo-panel{
  min-height:410px;
  overflow:hidden;
  border:1px solid rgba(7,22,21,.075);
  border-radius:20px;
  background:#f9fcfb;
  transition:opacity .25s ease,transform .25s ease,border-color .25s ease;
}
#useCasesPage .uc-demo-panel:not(.active-role){
  opacity:.72;
}
#useCasesPage .uc-demo-panel.active-role{
  opacity:1;
  border-color:rgba(0,169,143,.20);
  transform:translateY(-2px);
}
#useCasesPage .uc-demo-panel-head{
  height:47px;
  padding:0 17px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  border-bottom:1px solid rgba(7,22,21,.065);
  color:#6f817c;
  font:700 9.5px/1 "Geist Mono",monospace;
  letter-spacing:.075em;
}
#useCasesPage .uc-engine-live{
  padding:5px 7px;
  border-radius:7px;
  background:rgba(1,182,155,.08);
  color:#008b79;
  font:700 8px/1 "Geist Mono",monospace;
  font-style:normal;
}
#useCasesPage .uc-customer-screen{
  padding:18px;
}
#useCasesPage .uc-screen-brand{
  display:flex;
  align-items:center;
  gap:9px;
  color:#10201d;
}
#useCasesPage .uc-screen-icon{
  width:29px;height:29px;
  display:grid;place-items:center;
  border-radius:9px;
  background:#e8f8f4;
  color:#008b79;
}
#useCasesPage .uc-screen-brand strong{
  font:740 14px/1 Manrope,sans-serif;
}
#useCasesPage .uc-screen-card{
  margin-top:20px;
  padding:18px;
  border:1px solid rgba(7,22,21,.07);
  border-radius:15px;
  background:#fff;
}
#useCasesPage .uc-screen-card small,
#useCasesPage .uc-screen-price small{
  display:block;
  color:#859590;
  font:700 9.5px/1.25 "Geist Mono",monospace;
  letter-spacing:.07em;
}
#useCasesPage .uc-screen-card strong{
  display:block;
  margin-top:10px;
  color:#10201d;
  font:740 16px/1.2 Manrope,sans-serif;
}
#useCasesPage .uc-screen-card span{
  display:block;
  margin-top:8px;
  color:#71827d;
  font-size:11px;
  line-height:1.5;
}
#useCasesPage .uc-screen-price{
  margin-top:15px;
  padding:0 3px;
}
#useCasesPage .uc-screen-price strong{
  display:block;
  margin-top:7px;
  color:#008b79;
  font:800 24px/1 Manrope,sans-serif;
  letter-spacing:-.04em;
}
#useCasesPage .uc-demo-action{
  width:100%;
  margin-top:20px;
  border:0;
  border-radius:12px;
  padding:13px 16px;
  background:#0c2a25;
  color:#fff;
  font:720 12px/1 Manrope,sans-serif;
  cursor:pointer;
  transition:transform .2s ease,background .2s ease;
}
#useCasesPage .uc-demo-action:hover{
  transform:translateY(-1px);
  background:#073d34;
}

#useCasesPage .uc-demo-engine{
  background:
    radial-gradient(260px 250px at 50% 50%,rgba(39,225,193,.09),transparent 70%),
    #071816;
  border-color:rgba(255,255,255,.07);
}
#useCasesPage .uc-demo-engine .uc-demo-panel-head{
  border-bottom-color:rgba(255,255,255,.07);
  color:rgba(225,245,240,.52);
}
#useCasesPage .uc-engine-flow{
  padding:24px 18px 18px;
}
#useCasesPage .uc-engine-step{
  display:flex;
  align-items:center;
  gap:12px;
  opacity:.36;
  transition:opacity .25s ease,transform .25s ease;
}
#useCasesPage .uc-engine-step.active,
#useCasesPage .uc-engine-step.complete{
  opacity:1;
}
#useCasesPage .uc-engine-step.active{
  transform:translateX(3px);
}
#useCasesPage .uc-engine-step > i{
  width:29px;height:29px;
  flex:0 0 auto;
  display:grid;place-items:center;
  border:1px solid rgba(39,225,193,.22);
  border-radius:50%;
  color:#7fe7d6;
  background:rgba(39,225,193,.05);
  font:700 9px/1 "Geist Mono",monospace;
  font-style:normal;
}
#useCasesPage .uc-engine-step.complete > i{
  background:#0f6b5d;
  color:#d9fff8;
}
#useCasesPage .uc-engine-step small{
  display:block;
  color:rgba(143,228,211,.54);
  font:700 8px/1 "Geist Mono",monospace;
  letter-spacing:.08em;
}
#useCasesPage .uc-engine-step strong{
  display:block;
  margin-top:4px;
  color:#eaf9f5;
  font:690 12px/1.25 Manrope,sans-serif;
}
#useCasesPage .uc-engine-line{
  height:27px;
  margin-left:14px;
  display:flex;
  align-items:center;
}
#useCasesPage .uc-engine-line span{
  width:1px;
  height:100%;
  background:rgba(39,225,193,.14);
  position:relative;
  overflow:visible;
}
#useCasesPage .uc-engine-line.active span::after{
  content:"";
  position:absolute;
  left:-2px;top:0;
  width:5px;height:5px;border-radius:50%;
  background:#57e6ce;
  box-shadow:0 0 12px rgba(39,225,193,.65);
  animation:ucLinePulse .85s ease forwards;
}
@keyframes ucLinePulse{
  from{top:0;opacity:0}
  20%{opacity:1}
  to{top:calc(100% - 5px);opacity:.2}
}
#useCasesPage .uc-engine-note{
  margin:8px 18px 0;
  padding-top:15px;
  border-top:1px solid rgba(255,255,255,.07);
  display:flex;
  flex-wrap:wrap;
  gap:7px;
}
#useCasesPage .uc-engine-note span{
  padding:6px 7px;
  border:1px solid rgba(255,255,255,.07);
  border-radius:7px;
  color:rgba(220,244,238,.40);
  font:700 7.5px/1 "Geist Mono",monospace;
  letter-spacing:.065em;
}

#useCasesPage .uc-business-dashboard{
  padding:18px;
}
#useCasesPage .uc-business-order{
  display:flex;
  justify-content:space-between;
  gap:18px;
  padding:18px;
  border:1px solid rgba(7,22,21,.07);
  border-radius:15px;
  background:#fff;
}
#useCasesPage .uc-business-order small,
#useCasesPage .uc-business-metrics small{
  display:block;
  color:#879691;
  font:700 9.5px/1 "Geist Mono",monospace;
  letter-spacing:.065em;
}
#useCasesPage .uc-business-order strong{
  display:block;
  margin-top:9px;
  color:#10201d;
  font:730 14px/1.25 Manrope,sans-serif;
}
#useCasesPage .uc-business-status-chip{
  height:fit-content;
  padding:6px 8px;
  border-radius:7px;
  background:#edf3f1;
  color:#788884;
  font:700 8px/1 "Geist Mono",monospace;
  letter-spacing:.06em;
}
#useCasesPage .uc-business-status-chip.success{
  background:#e8f8f4;
  color:#007c6d;
}
#useCasesPage .uc-business-metrics{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:10px;
  margin-top:10px;
}
#useCasesPage .uc-business-metrics > div{
  min-height:86px;
  padding:15px;
  border:1px solid rgba(7,22,21,.07);
  border-radius:13px;
  background:#fff;
}
#useCasesPage .uc-business-metrics strong{
  display:block;
  margin-top:10px;
  color:#10201d;
  font:720 12px/1.25 Manrope,sans-serif;
}
#useCasesPage .uc-business-log{
  margin-top:18px;
  padding:14px 3px 0;
  border-top:1px solid rgba(7,22,21,.06);
}
#useCasesPage .uc-business-log span{
  display:flex;
  align-items:center;
  gap:8px;
  min-height:25px;
  color:#7c8d88;
  font-size:10px;
}
#useCasesPage .uc-business-log i{
  width:5px;height:5px;border-radius:50%;background:#b6c3bf;
}
#useCasesPage .uc-business-log span:first-child i{
  background:#01b69b;
}
#useCasesPage .uc-business-log b{font-weight:620}

#useCasesPage .uc-demo-progress{
  margin-top:18px;
}
#useCasesPage .uc-demo-progress-track{
  height:3px;
  overflow:hidden;
  border-radius:99px;
  background:#edf2f0;
}
#useCasesPage .uc-demo-progress-track span{
  display:block;
  width:25%;
  height:100%;
  border-radius:inherit;
  background:linear-gradient(90deg,#00a98f,#43c7ff);
  transition:width .35s ease;
}
#useCasesPage .uc-demo-progress-copy{
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-top:10px;
}
#useCasesPage .uc-demo-step-copy{
  color:#8b9a96;
  font:700 8.5px/1 "Geist Mono",monospace;
  letter-spacing:.07em;
}
#useCasesPage .uc-demo-reset{
  border:0;
  background:transparent;
  color:#007c6d;
  font:700 9.5px/1 Manrope,sans-serif;
  cursor:pointer;
}

#useCasesPage .uc-underhood-section{
  background:
    radial-gradient(740px 420px at 74% 38%,rgba(39,225,193,.065),transparent 72%),
    #071615;
}
#useCasesPage .uc-underhood-section .uc-section-kicker{color:#65dfcb}
#useCasesPage .uc-underhood-section .uc-section-heading h2{color:#f4fbf9}
#useCasesPage .uc-underhood-section .uc-section-heading > p{color:rgba(231,248,244,.48)}
#useCasesPage .uc-underhood-flow{
  display:grid;
  grid-template-columns:1fr 54px 1fr 54px 1fr 54px 1fr;
  align-items:stretch;
}
#useCasesPage .uc-underhood-flow article{
  min-height:270px;
  padding:24px 22px;
  border:1px solid rgba(255,255,255,.08);
  border-radius:20px;
  background:rgba(255,255,255,.018);
}
#useCasesPage .uc-underhood-flow article > i{
  width:44px;height:44px;
  display:grid;place-items:center;
  border:1px solid rgba(39,225,193,.12);
  border-radius:13px;
  background:rgba(39,225,193,.045);
  color:#6be2ce;
}
#useCasesPage .uc-underhood-flow svg{
  width:22px;height:22px;
  fill:none;stroke:currentColor;stroke-width:1.6;stroke-linecap:round;stroke-linejoin:round;
}
#useCasesPage .uc-underhood-flow article > span{
  display:block;
  margin-top:30px;
  color:rgba(121,227,208,.48);
  font:700 9px/1 "Geist Mono",monospace;
}
#useCasesPage .uc-underhood-flow h3{
  margin:10px 0 0;
  color:#f2faf7;
  font:730 18px/1.15 Manrope,sans-serif;
  letter-spacing:-.028em;
}
#useCasesPage .uc-underhood-flow p{
  margin:13px 0 0;
  color:rgba(227,246,241,.46);
  font-size:11.5px;
  line-height:1.6;
}
#useCasesPage .uc-underhood-connector{
  display:grid;
  place-items:center;
}
#useCasesPage .uc-underhood-connector span{
  width:100%;
  height:1px;
  background:linear-gradient(90deg,rgba(39,225,193,.08),rgba(39,225,193,.40),rgba(67,199,255,.15));
  position:relative;
}
#useCasesPage .uc-underhood-connector span::after{
  content:"";
  position:absolute;
  width:6px;height:6px;
  top:-2.5px;left:0;
  border-radius:50%;
  background:#62e5cf;
  box-shadow:0 0 12px rgba(39,225,193,.55);
  animation:ucConnector 4.8s linear infinite;
}
#useCasesPage .uc-underhood-connector:nth-of-type(2) span::after{animation-delay:1.2s}
#useCasesPage .uc-underhood-connector:nth-of-type(3) span::after{animation-delay:2.4s}
@keyframes ucConnector{to{left:calc(100% - 6px)}}

#useCasesPage .uc-coverage-section{
  background:
    radial-gradient(720px 360px at 88% 20%,rgba(67,199,255,.045),transparent 72%),
    #f7fbfa;
}
#useCasesPage .uc-coverage-shell{
  display:grid;
  grid-template-columns:330px minmax(0,1fr);
  overflow:hidden;
  border:1px solid rgba(7,22,21,.085);
  border-radius:25px;
  background:#fff;
}
#useCasesPage .uc-coverage-nav{
  border-right:1px solid var(--uc-line);
  background:#f3f8f6;
}
#useCasesPage .uc-coverage-nav button{
  width:100%;
  min-height:122px;
  appearance:none;
  border:0;
  border-bottom:1px solid var(--uc-line);
  background:transparent;
  padding:21px 22px;
  text-align:left;
  cursor:pointer;
  transition:background .2s ease;
}
#useCasesPage .uc-coverage-nav button:last-child{border-bottom:0}
#useCasesPage .uc-coverage-nav button:hover{background:rgba(1,182,155,.028)}
#useCasesPage .uc-coverage-nav button.active{
  background:#fff;
  box-shadow:inset 3px 0 0 #01b69b;
}
#useCasesPage .uc-coverage-nav button > span{
  display:block;
  color:#00927e;
  font:700 9.5px/1 "Geist Mono",monospace;
}
#useCasesPage .uc-coverage-nav strong{
  display:block;
  margin-top:10px;
  color:#243a35;
  font:710 13px/1.35 Manrope,sans-serif;
}
#useCasesPage .uc-coverage-nav small{
  display:block;
  margin-top:8px;
  color:#899894;
  font-size:10px;
}
#useCasesPage .uc-coverage-content{
  padding:28px;
}
#useCasesPage .uc-coverage-head{
  display:flex;
  justify-content:space-between;
  gap:30px;
  padding-bottom:22px;
  border-bottom:1px solid rgba(7,22,21,.07);
}
#useCasesPage .uc-coverage-title{
  display:block;
  color:#10201d;
  font:760 21px/1.15 Manrope,sans-serif;
  letter-spacing:-.035em;
}
#useCasesPage .uc-coverage-note{
  max-width:650px;
  margin:9px 0 0;
  color:#71827d;
  font-size:11.5px;
  line-height:1.55;
}
#useCasesPage .uc-coverage-count{
  flex:0 0 auto;
  color:#8b9995;
  font:700 9px/1 "Geist Mono",monospace;
  letter-spacing:.08em;
}
#useCasesPage .uc-industry-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:9px;
  margin-top:22px;
}
#useCasesPage .uc-industry-item{
  position:relative;
  min-height:100px;
  padding:16px;
  border:1px solid rgba(7,22,21,.075);
  border-radius:14px;
  background:#fbfdfc;
  color:#40534e;
  font-size:11.5px;
  line-height:1.42;
}
#useCasesPage .uc-industry-item.demo{
  border-color:rgba(1,182,155,.18);
  background:linear-gradient(145deg,rgba(1,182,155,.055),rgba(67,199,255,.025));
  cursor:pointer;
}
#useCasesPage .uc-industry-item.demo::after{
  content:"INTERACTIVE DEMO";
  position:absolute;
  left:15px;
  bottom:13px;
  color:#008b79;
  font:700 7.5px/1 "Geist Mono",monospace;
  letter-spacing:.07em;
}
#useCasesPage .uc-industry-item.demo{
  padding-bottom:35px;
}
#useCasesPage .uc-industry-item:hover{
  transform:translateY(-1px);
}
#useCasesPage .uc-regulatory-note{
  margin-top:18px;
  padding:15px 17px;
  display:flex;
  align-items:flex-start;
  gap:10px;
  border:1px solid rgba(154,93,0,.12);
  border-radius:12px;
  background:#fffaf0;
}
#useCasesPage .uc-regulatory-note[hidden]{display:none}
#useCasesPage .uc-regulatory-note i{
  width:7px;height:7px;flex:0 0 auto;margin-top:5px;border-radius:50%;background:#c4871f;
}
#useCasesPage .uc-regulatory-note p{
  margin:0;
  color:#7c6946;
  font-size:10.5px;
  line-height:1.55;
}

#useCasesPage .uc-final-section{
  background:#071615;
}
#useCasesPage .uc-final-card{
  display:grid;
  grid-template-columns:minmax(0,1fr) auto;
  gap:50px;
  align-items:end;
  padding:12px 0;
}
#useCasesPage .uc-final-card > div:first-child > span{
  color:#69dfcc;
  font:700 10.5px/1 "Geist Mono",monospace;
  letter-spacing:.085em;
}
#useCasesPage .uc-final-card h2{
  max-width:820px;
  margin:16px 0 0;
  color:#f4fbf9;
  font:800 clamp(40px,4.6vw,64px)/.98 Manrope,sans-serif;
  letter-spacing:-.055em;
}
#useCasesPage .uc-final-card p{
  max-width:620px;
  margin:19px 0 0;
  color:rgba(232,248,244,.52);
  font-size:14px;
  line-height:1.65;
}
#useCasesPage .uc-final-actions{
  display:flex;
  align-items:center;
  gap:14px;
}
#useCasesPage .uc-final-actions .inner-page-secondary{
  color:#d9eeea;
}

@media(max-width:1150px){
  #useCasesPage .usecases-hero-layout{
    grid-template-columns:1fr;
    gap:46px;
  }
  #useCasesPage .uc-hero-selector{max-width:760px}
  #useCasesPage .uc-demo-grid{
    grid-template-columns:1fr 1fr;
  }
  #useCasesPage .uc-demo-engine{
    grid-column:1/-1;
    min-height:330px;
  }
  #useCasesPage .uc-engine-flow{
    display:grid;
    grid-template-columns:1fr 38px 1fr 38px 1fr 38px 1fr;
    align-items:center;
    padding:42px 24px 28px;
  }
  #useCasesPage .uc-engine-line{
    height:1px;
    margin:0;
  }
  #useCasesPage .uc-engine-line span{
    width:100%;
    height:1px;
  }
  #useCasesPage .uc-engine-line.active span::after{
    top:-2px;
    left:0;
    animation:ucLinePulseHorizontal .85s ease forwards;
  }
  @keyframes ucLinePulseHorizontal{
    from{left:0;opacity:0}
    20%{opacity:1}
    to{left:calc(100% - 5px);opacity:.2}
  }
  #useCasesPage .uc-underhood-flow{
    grid-template-columns:1fr 34px 1fr;
    gap:0;
  }
  #useCasesPage .uc-underhood-flow article:nth-of-type(3),
  #useCasesPage .uc-underhood-flow article:nth-of-type(4){
    margin-top:34px;
  }
  #useCasesPage .uc-underhood-flow .uc-underhood-connector:nth-of-type(2){
    display:none;
  }
}
@media(max-width:900px){
  #useCasesPage .uc-section-heading{
    grid-template-columns:1fr;
    gap:18px;
  }
  #useCasesPage .uc-coverage-shell{
    grid-template-columns:1fr;
  }
  #useCasesPage .uc-coverage-nav{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    border-right:0;
    border-bottom:1px solid var(--uc-line);
  }
  #useCasesPage .uc-coverage-nav button{
    min-height:118px;
    border-right:1px solid var(--uc-line);
    border-bottom:0;
  }
  #useCasesPage .uc-coverage-nav button:last-child{border-right:0}
  #useCasesPage .uc-coverage-nav button.active{
    box-shadow:inset 0 -3px 0 #01b69b;
  }
  #useCasesPage .uc-industry-grid{grid-template-columns:repeat(2,1fr)}
  #useCasesPage .uc-final-card{grid-template-columns:1fr}
}
@media(max-width:700px){
  #useCasesPage .uc-business-options{grid-template-columns:1fr}
  #useCasesPage .uc-business-option{
    border-right:0;
    border-bottom:1px solid var(--uc-line) !important;
  }
  #useCasesPage .uc-business-option:last-child{border-bottom:0 !important}
  #useCasesPage .uc-preview-content{
    grid-template-columns:1fr;
  }
  #useCasesPage .uc-preview-arrow{
    transform:rotate(90deg);
  }
  #useCasesPage .uc-lab-tabs{
    grid-template-columns:1fr 1fr;
  }
  #useCasesPage .uc-lab-tab:nth-child(2){border-right:0}
  #useCasesPage .uc-lab-tab:nth-child(-n+2){border-bottom:1px solid var(--uc-line)}
  #useCasesPage .uc-lab-workspace{padding:18px}
  #useCasesPage .uc-lab-topbar{
    align-items:flex-start;
    flex-direction:column;
    gap:10px;
  }
  #useCasesPage .uc-role-switch{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    width:100%;
  }
  #useCasesPage .uc-demo-grid{
    grid-template-columns:1fr;
  }
  #useCasesPage .uc-demo-engine{grid-column:auto}
  #useCasesPage .uc-engine-flow{
    display:block;
    padding:24px 18px 18px;
  }
  #useCasesPage .uc-engine-line{
    height:27px;
    margin-left:14px;
  }
  #useCasesPage .uc-engine-line span{
    width:1px;
    height:100%;
  }
  #useCasesPage .uc-underhood-flow{
    grid-template-columns:1fr;
  }
  #useCasesPage .uc-underhood-connector{
    height:28px;
  }
  #useCasesPage .uc-underhood-connector span{
    width:1px;
    height:100%;
  }
  #useCasesPage .uc-underhood-connector span::after{
    left:-2.5px;
    top:0;
    animation:ucConnectorVertical 2.8s linear infinite;
  }
  @keyframes ucConnectorVertical{to{top:calc(100% - 6px)}}
  #useCasesPage .uc-underhood-flow article:nth-of-type(3),
  #useCasesPage .uc-underhood-flow article:nth-of-type(4){
    margin-top:0;
  }
  #useCasesPage .uc-coverage-nav{
    grid-template-columns:1fr;
  }
  #useCasesPage .uc-coverage-nav button{
    min-height:auto;
    border-right:0;
    border-bottom:1px solid var(--uc-line);
  }
  #useCasesPage .uc-coverage-nav button:last-child{border-bottom:0}
  #useCasesPage .uc-coverage-nav button.active{
    box-shadow:inset 3px 0 0 #01b69b;
  }
  #useCasesPage .uc-coverage-content{padding:20px}
  #useCasesPage .uc-coverage-head{
    flex-direction:column;
    gap:10px;
  }
  #useCasesPage .uc-industry-grid{grid-template-columns:1fr}
  #useCasesPage .uc-final-actions{
    align-items:flex-start;
    flex-direction:column;
  }
}
@media(prefers-reduced-motion:reduce){
  #useCasesPage .uc-underhood-connector span::after,
  #useCasesPage .uc-engine-line.active span::after{
    animation:none !important;
  }
}

#useCasesPage .uc-hero-selector{
  box-shadow:
    0 42px 90px -62px rgba(0,55,45,.38),
    0 0 0 1px rgba(255,255,255,.75) inset;
}
#useCasesPage .uc-preview-stage{
  margin-top:14px;
  overflow:hidden;
  border:1px solid rgba(7,22,21,.075);
  border-radius:20px;
  background:
    radial-gradient(300px 180px at 88% 0%,rgba(67,199,255,.055),transparent 72%),
    linear-gradient(180deg,#fbfdfc,#f6fbf9);
}
#useCasesPage .uc-preview-context{
  display:flex;
  align-items:center;
  gap:12px;
  padding:16px 18px;
  border-bottom:1px solid rgba(7,22,21,.06);
}
#useCasesPage .uc-preview-context-icon{
  width:38px;height:38px;
  flex:0 0 auto;
  display:grid;place-items:center;
  border:1px solid rgba(0,124,109,.08);
  border-radius:12px;
  background:#edf9f6;
  color:#008b79;
}
#useCasesPage .uc-preview-context-icon svg{
  width:20px;height:20px;
  fill:none;stroke:currentColor;stroke-width:1.6;stroke-linecap:round;stroke-linejoin:round;
}
#useCasesPage .uc-preview-context small{
  display:block;
  color:#899894;
  font:700 9.5px/1 "Geist Mono",monospace;
  letter-spacing:.075em;
}
#useCasesPage .uc-preview-context strong{
  display:block;
  margin-top:6px;
  color:#10201d;
  font:740 15px/1.15 Manrope,sans-serif;
  letter-spacing:-.025em;
}
#useCasesPage .uc-preview-window{
  margin:0;
  border:0;
  border-radius:0;
  background:rgba(255,255,255,.65);
}
#useCasesPage .uc-preview-content{
  min-height:140px;
  grid-template-columns:1fr 50px 1fr;
}
#useCasesPage .uc-preview-request,
#useCasesPage .uc-preview-result{
  padding:16px;
  border:1px solid rgba(7,22,21,.065);
  border-radius:14px;
  background:rgba(255,255,255,.78);
  box-shadow:0 16px 30px -26px rgba(0,60,50,.30);
}
#useCasesPage .uc-preview-arrow{
  position:relative;
  height:100%;
  display:grid;
  place-items:center;
}
#useCasesPage .uc-preview-arrow > span{
  width:100%;
  height:1px;
  background:linear-gradient(90deg,rgba(1,182,155,.12),rgba(1,182,155,.65),rgba(67,199,255,.25));
}
#useCasesPage .uc-preview-arrow > i{
  position:absolute;
  width:7px;height:7px;
  border-radius:50%;
  background:#4ee4ca;
  box-shadow:0 0 14px rgba(39,225,193,.62);
  left:0;
  animation:ucHeroSignal 3.9s linear infinite;
}
@keyframes ucHeroSignal{
  from{left:0;opacity:0}
  12%{opacity:1}
  88%{opacity:1}
  to{left:calc(100% - 7px);opacity:0}
}
#useCasesPage .uc-preview-foot{
  display:grid;
  grid-template-columns:1fr 20px 1fr 20px 1fr;
  align-items:center;
  gap:8px;
  padding:14px 18px 16px;
  border-top:1px solid rgba(7,22,21,.055);
}
#useCasesPage .uc-preview-foot > div{
  min-width:0;
}
#useCasesPage .uc-preview-foot span{
  display:block;
  color:#91a09c;
  font:700 8.5px/1 "Geist Mono",monospace;
  letter-spacing:.07em;
}
#useCasesPage .uc-preview-foot strong{
  display:block;
  margin-top:5px;
  color:#40534e;
  font:680 10.5px/1.3 Manrope,sans-serif;
}
#useCasesPage .uc-preview-foot > i{
  width:100%;
  height:1px;
  background:rgba(0,124,109,.10);
}

#useCasesPage .uc-lab-shell{
  position:relative;
  background:
    radial-gradient(780px 300px at 50% -5%,rgba(67,199,255,.035),transparent 72%),
    #fff;
}
#useCasesPage .uc-lab-workspace{
  position:relative;
}
#useCasesPage .uc-lab-workspace::before{
  content:"";
  position:absolute;
  inset:0;
  background-image:
    linear-gradient(rgba(0,124,109,.018) 1px,transparent 1px),
    linear-gradient(90deg,rgba(0,124,109,.018) 1px,transparent 1px);
  background-size:38px 38px;
  mask-image:linear-gradient(180deg,#000,rgba(0,0,0,.18) 60%,transparent);
  pointer-events:none;
}
#useCasesPage .uc-lab-workspace > *{position:relative;z-index:1}
#useCasesPage .uc-scenario-outcomes{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:10px;
  margin-top:14px;
}
#useCasesPage .uc-scenario-outcomes > div{
  min-height:72px;
  padding:13px 14px;
  border:1px solid rgba(7,22,21,.065);
  border-radius:12px;
  background:rgba(248,252,251,.82);
}
#useCasesPage .uc-scenario-outcomes span{
  display:block;
  color:#8a9995;
  font:700 9px/1.2 "Geist Mono",monospace;
  letter-spacing:.065em;
}
#useCasesPage .uc-scenario-outcomes strong{
  display:block;
  margin-top:8px;
  color:#1a302b;
  font:710 12px/1.35 Manrope,sans-serif;
}
#useCasesPage .uc-demo-panel{
  box-shadow:0 18px 38px -34px rgba(0,48,40,.22);
}
#useCasesPage .uc-demo-panel.active-role{
  box-shadow:
    0 24px 48px -36px rgba(0,92,76,.28),
    0 0 0 1px rgba(0,169,143,.05) inset;
}
#useCasesPage .uc-demo-engine{
  box-shadow:
    0 26px 56px -42px rgba(0,0,0,.70),
    inset 0 1px 0 rgba(255,255,255,.025);
}
#useCasesPage .uc-engine-flow{
  position:relative;
}
#useCasesPage .uc-engine-flow::before{
  content:"";
  position:absolute;
  inset:14px 10px;
  background-image:radial-gradient(circle,rgba(121,227,208,.08) 0 1px,transparent 1.3px);
  background-size:18px 18px;
  mask-image:linear-gradient(90deg,transparent,#000 28%,#000 72%,transparent);
  pointer-events:none;
}
#useCasesPage .uc-engine-flow > *{position:relative;z-index:1}

#useCasesPage .uc-coverage-shell{
  box-shadow:0 36px 80px -64px rgba(0,52,44,.34);
}
#useCasesPage .uc-industry-item{
  transition:transform .2s ease,background .2s ease,border-color .2s ease,box-shadow .2s ease;
}
#useCasesPage .uc-industry-item:hover{
  transform:translateY(-2px);
  box-shadow:0 18px 30px -28px rgba(0,50,42,.34);
}
#useCasesPage .uc-industry-item.demo:hover{
  border-color:rgba(1,182,155,.28);
  background:linear-gradient(145deg,rgba(1,182,155,.08),rgba(67,199,255,.035));
}

#useCasesPage .uc-beyond-section{
  position:relative;
  overflow:hidden;
  background:
    radial-gradient(700px 420px at 14% 28%,rgba(1,182,155,.05),transparent 70%),
    radial-gradient(700px 440px at 88% 76%,rgba(67,199,255,.045),transparent 72%),
    #fff;
}
#useCasesPage .uc-beyond-shell{
  display:grid;
  grid-template-columns:minmax(0,1.05fr) minmax(360px,.95fr);
  gap:50px;
  align-items:center;
}
#useCasesPage .uc-beyond-core{
  position:relative;
  min-height:520px;
  border:1px solid rgba(7,22,21,.075);
  border-radius:28px;
  background:
    radial-gradient(circle at 50% 50%,rgba(1,182,155,.055),transparent 34%),
    linear-gradient(180deg,#f9fcfb,#f4faf8);
  overflow:hidden;
}
#useCasesPage .uc-beyond-core::before{
  content:"";
  position:absolute;
  inset:0;
  background-image:
    linear-gradient(rgba(0,124,109,.025) 1px,transparent 1px),
    linear-gradient(90deg,rgba(0,124,109,.025) 1px,transparent 1px);
  background-size:36px 36px;
  mask-image:radial-gradient(circle,#000 0 62%,transparent 88%);
}
#useCasesPage .uc-beyond-ring{
  position:absolute;
  left:50%;top:50%;
  transform:translate(-50%,-50%);
  border:1px solid rgba(0,124,109,.10);
  border-radius:50%;
}
#useCasesPage .uc-beyond-ring.ring-one{width:270px;height:270px}
#useCasesPage .uc-beyond-ring.ring-two{width:410px;height:410px;border-style:dashed}
#useCasesPage .uc-beyond-center{
  position:absolute;
  left:50%;top:50%;
  transform:translate(-50%,-50%);
  width:180px;height:180px;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-align:center;
  border:1px solid rgba(0,124,109,.10);
  border-radius:50%;
  background:rgba(255,255,255,.88);
  box-shadow:0 28px 52px -40px rgba(0,76,63,.34);
}
#useCasesPage .uc-beyond-center span{
  color:#008b79;
  font:700 10px/1 "Geist Mono",monospace;
  letter-spacing:.08em;
}
#useCasesPage .uc-beyond-center strong{
  margin-top:8px;
  color:#10201d;
  font:760 20px/1.05 Manrope,sans-serif;
  letter-spacing:-.035em;
}
#useCasesPage .uc-beyond-center small{
  margin-top:7px;
  color:#899894;
  font-size:10px;
}
#useCasesPage .uc-beyond-node{
  position:absolute;
  left:var(--x);
  top:var(--y);
  transform:translate(-50%,-50%);
  appearance:none;
  border:1px solid rgba(7,22,21,.08);
  border-radius:13px;
  padding:11px 13px;
  background:rgba(255,255,255,.90);
  box-shadow:0 16px 30px -26px rgba(0,50,42,.28);
  color:#52655f;
  font:700 10.5px/1 Manrope,sans-serif;
  cursor:pointer;
  transition:transform .2s ease,border-color .2s ease,background .2s ease,color .2s ease;
}
#useCasesPage .uc-beyond-node i{
  display:inline-block;
  width:6px;height:6px;
  margin-right:7px;
  border-radius:50%;
  background:#9bb0aa;
  vertical-align:middle;
}
#useCasesPage .uc-beyond-node:hover,
#useCasesPage .uc-beyond-node.active{
  transform:translate(-50%,-50%) translateY(-2px);
  border-color:rgba(1,182,155,.25);
  background:#f0faf7;
  color:#007c6d;
}
#useCasesPage .uc-beyond-node.active i{
  background:#01b69b;
  box-shadow:0 0 11px rgba(1,182,155,.42);
}
#useCasesPage .uc-beyond-detail{
  padding:28px 0;
}
#useCasesPage .uc-beyond-label{
  display:block;
  color:#008b79;
  font:700 10.5px/1.2 "Geist Mono",monospace;
  letter-spacing:.08em;
}
#useCasesPage .uc-beyond-title{
  max-width:520px;
  margin:16px 0 0;
  color:#10201d;
  font:780 clamp(30px,3.4vw,46px)/1.02 Manrope,sans-serif;
  letter-spacing:-.05em;
}
#useCasesPage .uc-beyond-copy{
  max-width:540px;
  margin:20px 0 0;
  color:#697b76;
  font-size:14px;
  line-height:1.7;
}
#useCasesPage .uc-beyond-note{
  display:flex;
  align-items:flex-start;
  gap:9px;
  max-width:510px;
  margin-top:26px;
  padding:14px 15px;
  border:1px solid rgba(7,22,21,.07);
  border-radius:12px;
  background:#f7faf9;
}
#useCasesPage .uc-beyond-note i{
  width:6px;height:6px;
  flex:0 0 auto;
  margin-top:5px;
  border-radius:50%;
  background:#01b69b;
}
#useCasesPage .uc-beyond-note span{
  color:#7e8f8a;
  font-size:10.5px;
  line-height:1.5;
}

@media(max-width:1000px){
  #useCasesPage .uc-beyond-shell{
    grid-template-columns:1fr;
    gap:28px;
  }
  #useCasesPage .uc-beyond-core{
    min-height:460px;
  }
}
@media(max-width:700px){
  #useCasesPage .uc-preview-content{
    grid-template-columns:1fr;
  }
  #useCasesPage .uc-preview-arrow{
    height:30px;
  }
  #useCasesPage .uc-preview-arrow > span{
    width:1px;height:100%;
    background:linear-gradient(180deg,rgba(1,182,155,.12),rgba(1,182,155,.60),rgba(67,199,255,.22));
  }
  #useCasesPage .uc-preview-arrow > i{
    left:50%;
    top:0;
    margin-left:-3.5px;
    animation:ucHeroSignalVertical 2.8s linear infinite;
  }
  @keyframes ucHeroSignalVertical{
    from{top:0;opacity:0}
    12%{opacity:1}
    88%{opacity:1}
    to{top:calc(100% - 7px);opacity:0}
  }
  #useCasesPage .uc-preview-foot{
    grid-template-columns:1fr;
    gap:10px;
  }
  #useCasesPage .uc-preview-foot > i{display:none}
  #useCasesPage .uc-scenario-outcomes{
    grid-template-columns:1fr;
  }
  #useCasesPage .uc-beyond-core{
    min-height:390px;
  }
  #useCasesPage .uc-beyond-ring.ring-one{width:210px;height:210px}
  #useCasesPage .uc-beyond-ring.ring-two{width:315px;height:315px}
  #useCasesPage .uc-beyond-center{width:150px;height:150px}
  #useCasesPage .uc-beyond-node{
    padding:9px 10px;
    font-size:9.5px;
  }
}
@media(prefers-reduced-motion:reduce){
  #useCasesPage .uc-preview-arrow > i{
    animation:none !important;
  }
}

#useCasesPage #use-case-coverage .section-head{
  margin-bottom:52px;
}
#useCasesPage #use-case-coverage .section-head > div:first-child{
  max-width:1180px;
}
#useCasesPage #use-case-coverage .section-head h2{
  max-width:1140px;
  font-size:clamp(38px,4vw,58px);
  line-height:1.01;
  letter-spacing:-.048em;
}

#useCasesPage .uc-home-industries-reuse{
  position:relative;
}

#useCasesPage .uc-beyond-core{
  min-height:550px;
}

#useCasesPage .uc-beyond-node{
  padding:14px 17px;
  border-radius:15px;
  font-size:14px;
  line-height:1.2;
  font-weight:720;
  letter-spacing:-.015em;
}
#useCasesPage .uc-beyond-node i{
  width:8px;
  height:8px;
  margin-right:9px;
}

#useCasesPage .uc-beyond-center{
  width:196px;
  height:196px;
}
#useCasesPage .uc-beyond-center span{
  font-size:12px;
  line-height:1.15;
  letter-spacing:.075em;
}
#useCasesPage .uc-beyond-center strong{
  margin-top:10px;
  font-size:25px;
  line-height:1.02;
}
#useCasesPage .uc-beyond-center small{
  margin-top:9px;
  font-size:12px;
  line-height:1.3;
}

#useCasesPage .uc-beyond-label{
  font-size:12px;
  line-height:1.3;
  letter-spacing:.07em;
}
#useCasesPage .uc-beyond-title{
  font-size:clamp(34px,3.5vw,48px);
}
#useCasesPage .uc-beyond-copy{
  font-size:15px;
  line-height:1.72;
}
#useCasesPage .uc-beyond-note span{
  font-size:12px;
  line-height:1.55;
}

@media(max-width:900px){
  #useCasesPage #use-case-coverage .section-head{
    margin-bottom:42px;
  }
  #useCasesPage #use-case-coverage .section-head h2{
    font-size:clamp(34px,7.2vw,50px);
    line-height:1.03;
  }
}
@media(max-width:700px){
  #useCasesPage .uc-beyond-core{
    min-height:430px;
  }
  #useCasesPage .uc-beyond-node{
    padding:11px 12px;
    font-size:11.5px;
  }
  #useCasesPage .uc-beyond-center{
    width:158px;
    height:158px;
  }
  #useCasesPage .uc-beyond-center span{
    font-size:10.5px;
  }
  #useCasesPage .uc-beyond-center strong{
    font-size:20px;
  }
  #useCasesPage .uc-beyond-center small{
    font-size:10.5px;
  }
}
@media(max-width:640px){
  #useCasesPage #use-case-coverage .section-head{
    margin-bottom:32px;
  }
  #useCasesPage #use-case-coverage .section-head h2{
    font-size:clamp(32px,9.2vw,42px);
    line-height:1.04;
  }
}

#useCasesPage .uc-financial-extension-section{
  position:relative;
  overflow:hidden;
  background:
    radial-gradient(720px 420px at 50% 52%,rgba(1,182,155,.055),transparent 72%),
    linear-gradient(180deg,#f8fcfb 0%,#fff 100%);
}

#useCasesPage .uc-financial-heading{
  margin-bottom:46px;
}

#useCasesPage .uc-financial-canvas{
  position:relative;
  min-height:620px;
  overflow:hidden;
  border:1px solid rgba(7,22,21,.08);
  border-radius:28px;
  background:
    linear-gradient(rgba(0,124,109,.025) 1px,transparent 1px),
    linear-gradient(90deg,rgba(0,124,109,.025) 1px,transparent 1px),
    radial-gradient(circle at 50% 50%,rgba(1,182,155,.06),transparent 34%),
    linear-gradient(180deg,#fbfdfc,#f5faf8);
  background-size:36px 36px,36px 36px,auto,auto;
  box-shadow:0 34px 74px -60px rgba(0,52,44,.32);
}

#useCasesPage .uc-financial-links{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  pointer-events:none;
}

#useCasesPage .uc-financial-links path{
  fill:none;
  stroke:rgba(0,149,125,.16);
  stroke-width:1.25;
  vector-effect:non-scaling-stroke;
}

#useCasesPage .uc-financial-engine{
  position:absolute;
  z-index:3;
  left:50%;
  top:50%;
  width:220px;
  height:220px;
  transform:translate(-50%,-50%);
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-align:center;
  border:1px solid rgba(0,124,109,.13);
  border-radius:50%;
  background:rgba(255,255,255,.93);
  box-shadow:
    0 26px 54px -40px rgba(0,78,65,.34),
    0 0 0 22px rgba(1,182,155,.025);
}

#useCasesPage .uc-financial-engine span{
  color:#008b79;
  font:700 12px/1 "Geist Mono",monospace;
  letter-spacing:.08em;
}

#useCasesPage .uc-financial-engine strong{
  margin-top:10px;
  color:#10201d;
  font:780 28px/1.02 Manrope,sans-serif;
  letter-spacing:-.045em;
}

#useCasesPage .uc-financial-engine small{
  max-width:150px;
  margin-top:10px;
  color:#71827d;
  font-size:12px;
  line-height:1.45;
}

#useCasesPage .uc-financial-node{
  position:absolute;
  z-index:4;
  width:260px;
  min-height:92px;
  padding:16px 18px;
  appearance:none;
  border:1px solid rgba(7,22,21,.08);
  border-radius:15px;
  background:rgba(255,255,255,.93);
  text-align:left;
  cursor:default;
  box-shadow:0 18px 34px -30px rgba(0,55,46,.28);
  transition:transform .2s ease,border-color .2s ease,box-shadow .2s ease;
}

#useCasesPage .uc-financial-node:hover{
  transform:translateY(-2px);
  border-color:rgba(1,182,155,.24);
  box-shadow:0 24px 42px -32px rgba(0,80,66,.32);
}

#useCasesPage .uc-financial-node span{
  display:block;
  color:#008b79;
  font:700 10.5px/1 "Geist Mono",monospace;
  letter-spacing:.07em;
}

#useCasesPage .uc-financial-node strong{
  display:block;
  margin-top:9px;
  color:#20342f;
  font:700 14px/1.38 Manrope,sans-serif;
  letter-spacing:-.015em;
}

#useCasesPage .uc-financial-node.node-1{left:4%;top:7%}
#useCasesPage .uc-financial-node.node-2{right:4%;top:7%}
#useCasesPage .uc-financial-node.node-3{left:1%;top:35%}
#useCasesPage .uc-financial-node.node-4{right:1%;top:35%}
#useCasesPage .uc-financial-node.node-5{left:4%;top:68%}
#useCasesPage .uc-financial-node.node-6{right:4%;top:68%}
#useCasesPage .uc-financial-node.node-7{
  left:50%;
  bottom:18px;
  width:310px;
  transform:translateX(-50%);
}

#useCasesPage .uc-financial-node.node-7:hover{
  transform:translateX(-50%) translateY(-2px);
}

#useCasesPage .uc-financial-conclusion{
  max-width:880px;
  margin:28px auto 0;
  color:#667873;
  text-align:center;
  font-size:14px;
  line-height:1.68;
}

@media(max-width:1000px){
  #useCasesPage .uc-financial-canvas{
    min-height:auto;
    padding:28px;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:12px;
  }
  #useCasesPage .uc-financial-links{
    display:none;
  }
  #useCasesPage .uc-financial-engine,
  #useCasesPage .uc-financial-node{
    position:relative;
    inset:auto !important;
    width:auto !important;
    min-height:110px;
    transform:none !important;
  }
  #useCasesPage .uc-financial-engine{
    grid-column:1/-1;
    width:210px !important;
    height:210px;
    min-height:210px;
    justify-self:center;
    margin-bottom:10px;
  }
  #useCasesPage .uc-financial-node.node-7{
    grid-column:1/-1;
  }
  #useCasesPage .uc-financial-node:hover,
  #useCasesPage .uc-financial-node.node-7:hover{
    transform:translateY(-2px) !important;
  }
}

@media(max-width:640px){
  #useCasesPage .uc-financial-canvas{
    grid-template-columns:1fr;
    padding:20px;
    border-radius:22px;
  }
  #useCasesPage .uc-financial-engine{
    grid-column:auto;
    width:180px !important;
    height:180px;
    min-height:180px;
  }
  #useCasesPage .uc-financial-engine strong{
    font-size:23px;
  }
  #useCasesPage .uc-financial-node,
  #useCasesPage .uc-financial-node.node-7{
    grid-column:auto;
  }
  #useCasesPage .uc-financial-node strong{
    font-size:13.5px;
  }
  #useCasesPage .uc-financial-conclusion{
    text-align:left;
    font-size:13px;
  }
}

#useCasesPage .uc-financial-node.node-1{left:11%;top:9%}
#useCasesPage .uc-financial-node.node-2{right:11%;top:9%}
#useCasesPage .uc-financial-node.node-3{left:7%;top:37%}
#useCasesPage .uc-financial-node.node-4{right:7%;top:37%}
#useCasesPage .uc-financial-node.node-5{left:11%;top:64%}
#useCasesPage .uc-financial-node.node-6{right:11%;top:64%}
#useCasesPage .uc-financial-node.node-7{bottom:38px}

#useCasesPage .uc-financial-node.node-1{left:15%;top:9%}
#useCasesPage .uc-financial-node.node-2{right:15%;top:9%}
#useCasesPage .uc-financial-node.node-3{left:11%;top:37%}
#useCasesPage .uc-financial-node.node-4{right:11%;top:37%}
#useCasesPage .uc-financial-node.node-5{left:15%;top:64%}
#useCasesPage .uc-financial-node.node-6{right:15%;top:64%}

#useCasesPage .uc-lab-section .uc-section-heading h2{
  margin-top:0;
}

#useCasesPage .uc-primary-industry-selector{
  position:relative;
  overflow:hidden;
  border:1px solid rgba(7,22,21,.09);
  border-radius:28px;
  background:rgba(255,255,255,.82);
  box-shadow:0 38px 84px -62px rgba(0,55,45,.36);
  backdrop-filter:blur(18px);
}

#useCasesPage .uc-primary-industry-selector::before{
  content:"";
  position:absolute;
  inset:0;
  background-image:
    linear-gradient(rgba(0,124,109,.022) 1px,transparent 1px),
    linear-gradient(90deg,rgba(0,124,109,.022) 1px,transparent 1px);
  background-size:36px 36px;
  mask-image:linear-gradient(145deg,#000,rgba(0,0,0,.18) 70%,transparent);
  pointer-events:none;
}

#useCasesPage .uc-primary-industry-selector > *{
  position:relative;
  z-index:1;
}

#useCasesPage .uc-primary-selector-top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
  padding:20px 22px;
  border-bottom:1px solid rgba(7,22,21,.07);
}

#useCasesPage .uc-primary-selector-top span{
  display:block;
  color:#008b79;
  font:700 11px/1.2 "Geist Mono",monospace;
  letter-spacing:.075em;
}

#useCasesPage .uc-primary-selector-top small{
  display:block;
  margin-top:6px;
  color:#8b9a96;
  font:700 9.5px/1.2 "Geist Mono",monospace;
  letter-spacing:.06em;
}

#useCasesPage .uc-primary-selector-top > strong{
  color:#10201d;
  font:760 11px/1 "Geist Mono",monospace;
  letter-spacing:.07em;
}

#useCasesPage .uc-primary-category-tabs{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  border-bottom:1px solid rgba(7,22,21,.07);
}

#useCasesPage .uc-primary-category-tabs button{
  appearance:none;
  min-height:108px;
  padding:16px;
  border:0;
  border-right:1px solid rgba(7,22,21,.07);
  background:rgba(248,252,251,.74);
  text-align:left;
  cursor:pointer;
}

#useCasesPage .uc-primary-category-tabs button:last-child{border-right:0}

#useCasesPage .uc-primary-category-tabs button.active{
  background:#fff;
  box-shadow:inset 0 -3px 0 #01b69b;
}

#useCasesPage .uc-primary-category-tabs span{
  display:block;
  color:#008b79;
  font:700 10.5px/1 "Geist Mono",monospace;
}

#useCasesPage .uc-primary-category-tabs strong{
  display:block;
  margin-top:10px;
  color:#3b4f4a;
  font:690 11px/1.38 Manrope,sans-serif;
}

#useCasesPage .uc-primary-category-copy{
  padding:18px 22px 15px;
}

#useCasesPage .uc-primary-category-copy strong{
  display:block;
  color:#10201d;
  font:750 17px/1.18 Manrope,sans-serif;
  letter-spacing:-.028em;
}

#useCasesPage .uc-primary-category-copy p{
  max-width:650px;
  margin:8px 0 0;
  color:#71827d;
  font-size:11px;
  line-height:1.5;
}

#useCasesPage .uc-primary-industry-list{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:7px;
  max-height:236px;
  overflow:auto;
  padding:0 22px 18px;
}

#useCasesPage .uc-primary-industry-item{
  appearance:none;
  min-height:52px;
  padding:10px 11px;
  border:1px solid rgba(7,22,21,.07);
  border-radius:11px;
  background:#fbfdfc;
  color:#5b6e69;
  text-align:left;
  font:650 10.5px/1.35 Manrope,sans-serif;
  cursor:pointer;
  transition:background .2s ease,border-color .2s ease,color .2s ease;
}

#useCasesPage .uc-primary-industry-item:hover{
  border-color:rgba(1,182,155,.18);
  background:#f3fbf8;
}

#useCasesPage .uc-primary-industry-item.active{
  border-color:rgba(1,182,155,.24);
  background:linear-gradient(145deg,rgba(1,182,155,.085),rgba(67,199,255,.035));
  color:#0d5e51;
}

#useCasesPage .uc-primary-selected{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  padding:17px 22px;
  border-top:1px solid rgba(7,22,21,.07);
  background:rgba(248,252,251,.74);
}

#useCasesPage .uc-primary-selected small{
  display:block;
  color:#8b9a96;
  font:700 9px/1 "Geist Mono",monospace;
  letter-spacing:.07em;
}

#useCasesPage .uc-primary-selected strong{
  display:block;
  max-width:320px;
  margin-top:6px;
  color:#10201d;
  font:700 12px/1.32 Manrope,sans-serif;
}

#useCasesPage .uc-primary-open-demo{
  flex:0 0 auto;
  appearance:none;
  border:0;
  border-radius:10px;
  padding:11px 13px;
  background:#0d2b26;
  color:#fff;
  font:700 10.5px/1 Manrope,sans-serif;
  cursor:pointer;
}

#useCasesPage .uc-primary-regulatory{
  display:flex;
  gap:9px;
  padding:13px 22px 16px;
  border-top:1px solid rgba(145,96,0,.08);
  background:#fffaf0;
}

#useCasesPage .uc-primary-regulatory[hidden]{display:none}

#useCasesPage .uc-primary-regulatory i{
  width:6px;height:6px;
  flex:0 0 auto;
  margin-top:5px;
  border-radius:50%;
  background:#bd8425;
}

#useCasesPage .uc-primary-regulatory span{
  color:#7b6a4a;
  font-size:10px;
  line-height:1.5;
}

#useCasesPage .uc-industry-lab-selector{
  margin-bottom:14px;
  overflow:hidden;
  border:1px solid rgba(7,22,21,.075);
  border-radius:18px;
  background:#f7fbfa;
}

#useCasesPage .uc-industry-lab-categories{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  border-bottom:1px solid rgba(7,22,21,.07);
}

#useCasesPage .uc-industry-lab-categories button{
  appearance:none;
  min-height:54px;
  padding:11px 14px;
  border:0;
  border-right:1px solid rgba(7,22,21,.07);
  background:transparent;
  color:#71827d;
  text-align:left;
  font:680 10.5px/1.35 Manrope,sans-serif;
  cursor:pointer;
}

#useCasesPage .uc-industry-lab-categories button:last-child{border-right:0}

#useCasesPage .uc-industry-lab-categories button.active{
  background:#fff;
  color:#007c6d;
  box-shadow:inset 0 -2px 0 #01b69b;
}

#useCasesPage .uc-industry-lab-list{
  display:flex;
  gap:7px;
  overflow-x:auto;
  padding:12px;
}

#useCasesPage .uc-industry-lab-item{
  position:relative;
  flex:0 0 auto;
  max-width:270px;
  min-height:42px;
  padding:9px 12px;
  border:1px solid rgba(7,22,21,.07);
  border-radius:10px;
  background:#fff;
  color:#657872;
  text-align:left;
  font:650 10px/1.35 Manrope,sans-serif;
  cursor:pointer;
}

#useCasesPage .uc-industry-lab-item.active{
  border-color:rgba(1,182,155,.24);
  background:#edf9f6;
  color:#006f60;
}

#useCasesPage .uc-industry-lab-item span{
  display:block;
  margin-top:5px;
  color:#008b79;
  font:700 7.5px/1 "Geist Mono",monospace;
  letter-spacing:.06em;
}

#useCasesPage .uc-extension-context{
  margin-top:16px;
  padding:15px 17px;
  border:1px solid rgba(1,182,155,.10);
  border-radius:13px;
  background:linear-gradient(145deg,rgba(1,182,155,.055),rgba(67,199,255,.022));
}

#useCasesPage .uc-extension-context[hidden]{display:none}

#useCasesPage .uc-extension-context span{
  display:block;
  color:#008b79;
  font:700 10px/1 "Geist Mono",monospace;
  letter-spacing:.075em;
}

#useCasesPage .uc-extension-context p{
  max-width:850px;
  margin:8px 0 0;
  color:#61736e;
  font-size:12px;
  line-height:1.58;
}

#useCasesPage .uc-screen-icon svg{
  width:18px;
  height:18px;
  fill:none;
  stroke:currentColor;
  stroke-width:1.6;
  stroke-linecap:round;
  stroke-linejoin:round;
}

#useCasesPage .uc-screen-price strong{
  font-size:19px;
}

@media(max-width:1000px){
  #useCasesPage .uc-primary-category-tabs,
  #useCasesPage .uc-industry-lab-categories{
    grid-template-columns:1fr;
  }
  #useCasesPage .uc-primary-category-tabs button,
  #useCasesPage .uc-industry-lab-categories button{
    min-height:auto;
    border-right:0;
    border-bottom:1px solid rgba(7,22,21,.07);
  }
  #useCasesPage .uc-primary-category-tabs button:last-child,
  #useCasesPage .uc-industry-lab-categories button:last-child{
    border-bottom:0;
  }
  #useCasesPage .uc-primary-category-tabs button.active,
  #useCasesPage .uc-industry-lab-categories button.active{
    box-shadow:inset 3px 0 0 #01b69b;
  }
}

@media(max-width:700px){
  #useCasesPage .uc-primary-industry-list{
    grid-template-columns:1fr;
    max-height:310px;
  }
  #useCasesPage .uc-primary-selected{
    align-items:flex-start;
    flex-direction:column;
  }
  #useCasesPage .uc-primary-open-demo{
    width:100%;
  }
}

#useCasesPage .uc-experience-map{
  position:relative;
  overflow:hidden;
  border:1px solid rgba(7,22,21,.09);
  border-radius:28px;
  background:
    radial-gradient(440px 260px at 82% 8%,rgba(67,199,255,.055),transparent 72%),
    rgba(255,255,255,.84);
  box-shadow:0 40px 86px -64px rgba(0,55,45,.38);
  backdrop-filter:blur(18px);
}
#useCasesPage .uc-experience-map::before{
  content:"";
  position:absolute;inset:0;
  background-image:
    linear-gradient(rgba(0,124,109,.021) 1px,transparent 1px),
    linear-gradient(90deg,rgba(0,124,109,.021) 1px,transparent 1px);
  background-size:36px 36px;
  mask-image:linear-gradient(145deg,#000,rgba(0,0,0,.18) 70%,transparent);
  pointer-events:none;
}
#useCasesPage .uc-experience-map > *{position:relative;z-index:1}
#useCasesPage .uc-experience-map-head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:24px;
  padding:21px 22px 19px;
  border-bottom:1px solid rgba(7,22,21,.07);
}
#useCasesPage .uc-experience-map-head span{
  display:block;
  color:#008b79;
  font:700 10.5px/1 "Geist Mono",monospace;
  letter-spacing:.075em;
}
#useCasesPage .uc-experience-map-head strong{
  display:block;
  margin-top:7px;
  color:#10201d;
  font:740 18px/1.1 Manrope,sans-serif;
  letter-spacing:-.03em;
}
#useCasesPage .uc-experience-map-head small{
  color:#8b9a96;
  font:700 9.5px/1 "Geist Mono",monospace;
  letter-spacing:.07em;
}
#useCasesPage .uc-experience-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
}
#useCasesPage .uc-experience-card{
  appearance:none;
  min-height:98px;
  padding:17px 18px;
  border:0;
  border-right:1px solid rgba(7,22,21,.07);
  border-bottom:1px solid rgba(7,22,21,.07);
  background:rgba(249,252,251,.68);
  display:flex;
  align-items:center;
  gap:13px;
  text-align:left;
  cursor:pointer;
  transition:background .2s ease,box-shadow .2s ease;
}
#useCasesPage .uc-experience-card:nth-child(2n){border-right:0}
#useCasesPage .uc-experience-card:nth-child(n+5){border-bottom:0}
#useCasesPage .uc-experience-card:hover{background:#f5fbf9}
#useCasesPage .uc-experience-card.active{
  background:linear-gradient(145deg,rgba(1,182,155,.09),rgba(67,199,255,.035));
  box-shadow:inset 3px 0 0 #01b69b;
}
#useCasesPage .uc-experience-icon{
  width:40px;height:40px;
  flex:0 0 auto;
  display:grid;place-items:center;
  border:1px solid rgba(0,124,109,.09);
  border-radius:12px;
  background:#eef9f6;
  color:#008b79;
}
#useCasesPage .uc-experience-icon svg{
  width:21px;height:21px;
  fill:none;stroke:currentColor;stroke-width:1.6;stroke-linecap:round;stroke-linejoin:round;
}
#useCasesPage .uc-experience-card strong{
  display:block;color:#19302b;font:720 12.5px/1.22 Manrope,sans-serif;letter-spacing:-.018em;
}
#useCasesPage .uc-experience-card small{
  display:block;margin-top:5px;color:#7c8d88;font-size:10px;line-height:1.35;
}
#useCasesPage .uc-experience-preview{
  display:grid;
  grid-template-columns:1fr 1.1fr auto;
  gap:18px;
  align-items:center;
  padding:17px 22px;
  border-top:1px solid rgba(7,22,21,.07);
  background:rgba(247,251,250,.86);
}
#useCasesPage .uc-experience-preview small{
  display:block;color:#8a9995;font:700 8.5px/1 "Geist Mono",monospace;letter-spacing:.07em;
}
#useCasesPage .uc-experience-preview strong{
  display:block;margin-top:6px;color:#40534e;font:680 10.5px/1.35 Manrope,sans-serif;
}
#useCasesPage .uc-experience-open{
  appearance:none;border:0;border-radius:10px;padding:11px 13px;
  background:#0d2b26;color:#fff;font:700 10.5px/1 Manrope,sans-serif;cursor:pointer;
}

#useCasesPage .uc-flow-switcher{
  display:grid;
  grid-template-columns:repeat(6,1fr);
  overflow:hidden;
  margin-bottom:14px;
  border:1px solid rgba(7,22,21,.075);
  border-radius:16px;
  background:#f5f9f8;
}
#useCasesPage .uc-flow-switcher button{
  appearance:none;
  min-height:72px;
  padding:13px 12px;
  border:0;
  border-right:1px solid rgba(7,22,21,.07);
  background:transparent;
  text-align:left;
  cursor:pointer;
}
#useCasesPage .uc-flow-switcher button:last-child{border-right:0}
#useCasesPage .uc-flow-switcher button.active{
  background:#fff;
  box-shadow:inset 0 -3px 0 #01b69b;
}
#useCasesPage .uc-flow-switcher i{
  display:block;
  color:#00927e;
  font:700 9.5px/1 "Geist Mono",monospace;
  font-style:normal;
}
#useCasesPage .uc-flow-switcher span{
  display:block;
  margin-top:8px;
  color:#536660;
  font:680 10.5px/1.25 Manrope,sans-serif;
}
#useCasesPage .uc-flow-switcher button.active span{color:#0e4e43}

#useCasesPage .uc-experience-demo{
  overflow:hidden;
  border:1px solid rgba(7,22,21,.085);
  border-radius:28px;
  background:#fff;
  box-shadow:0 38px 82px -64px rgba(0,57,47,.35);
}
#useCasesPage .uc-experience-demo-top{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:30px;
  padding:24px 26px;
  border-bottom:1px solid rgba(7,22,21,.07);
  background:
    radial-gradient(500px 180px at 8% 0%,rgba(1,182,155,.045),transparent 72%),
    #fbfdfc;
}
#useCasesPage .uc-demo-type{
  display:block;color:#008b79;font:700 10.5px/1 "Geist Mono",monospace;letter-spacing:.075em;
}
#useCasesPage .uc-demo-title{
  margin:9px 0 0;color:#10201d;font:760 25px/1.05 Manrope,sans-serif;letter-spacing:-.04em;
}
#useCasesPage .uc-demo-step-indicator{
  display:flex;align-items:center;gap:7px;
}
#useCasesPage .uc-demo-step-indicator span{
  width:28px;height:28px;display:grid;place-items:center;border:1px solid rgba(7,22,21,.08);border-radius:50%;
  color:#8a9995;background:#fff;font:700 8.5px/1 "Geist Mono",monospace;
}
#useCasesPage .uc-demo-step-indicator span.active{
  border-color:rgba(1,182,155,.24);background:#eaf8f4;color:#007c6d;
}
#useCasesPage .uc-demo-step-indicator i{width:18px;height:1px;background:rgba(7,22,21,.09)}

#useCasesPage .uc-experience-stage{
  display:grid;
  grid-template-columns:minmax(0,1.12fr) 190px minmax(0,.88fr);
  min-height:510px;
}
#useCasesPage .uc-customer-experience,
#useCasesPage .uc-business-experience{
  padding:22px;
}
#useCasesPage .uc-customer-experience{
  background:
    radial-gradient(480px 280px at 70% 24%,rgba(67,199,255,.04),transparent 72%),
    #f8fbfa;
  border-right:1px solid rgba(7,22,21,.065);
}
#useCasesPage .uc-business-experience{
  background:#f8fbfa;
  border-left:1px solid rgba(7,22,21,.065);
}
#useCasesPage .uc-stage-label{
  height:30px;display:flex;align-items:center;justify-content:space-between;gap:20px;
}
#useCasesPage .uc-stage-label span,
#useCasesPage .uc-stage-label small{
  font:700 9.5px/1 "Geist Mono",monospace;letter-spacing:.07em;
}
#useCasesPage .uc-stage-label span{color:#008b79}
#useCasesPage .uc-stage-label small{color:#8a9995}

#useCasesPage .uc-customer-ui{
  min-height:420px;
  margin-top:16px;
}

#useCasesPage .uc-ui-browser,
#useCasesPage .uc-ui-subscription,
#useCasesPage .uc-ui-booking,
#useCasesPage .uc-ui-usage,
#useCasesPage .uc-ui-funding,
#useCasesPage .uc-ui-invoice{
  min-height:400px;
  overflow:hidden;
  border:1px solid rgba(7,22,21,.08);
  border-radius:20px;
  background:#fff;
  box-shadow:0 28px 50px -42px rgba(0,55,45,.30);
}

#useCasesPage .uc-ui-browser-bar{
  height:38px;padding:0 14px;display:flex;align-items:center;gap:5px;border-bottom:1px solid rgba(7,22,21,.06);
}
#useCasesPage .uc-ui-browser-bar span{width:6px;height:6px;border-radius:50%;background:#c8d4d1}
#useCasesPage .uc-ui-browser-bar small{margin-left:auto;color:#8b9a96;font:700 8px/1 "Geist Mono",monospace;letter-spacing:.08em}
#useCasesPage .uc-product-view{
  display:grid;grid-template-columns:170px 1fr;gap:22px;align-items:center;padding:30px 24px;
}
#useCasesPage .uc-product-art{
  aspect-ratio:1;border-radius:18px;display:grid;place-items:center;
  background:linear-gradient(145deg,#0b2e28,#0f6d5c);color:#c8fff4;
}
#useCasesPage .uc-product-art span{font:800 28px/1 Manrope,sans-serif;letter-spacing:-.06em}
#useCasesPage .uc-product-copy small,
#useCasesPage .uc-ui-subscription small,
#useCasesPage .uc-ui-booking small,
#useCasesPage .uc-ui-usage small,
#useCasesPage .uc-ui-funding small,
#useCasesPage .uc-ui-invoice small{
  color:#8a9995;font:700 8.5px/1 "Geist Mono",monospace;letter-spacing:.07em;
}
#useCasesPage .uc-product-copy h4{margin:8px 0 0;color:#10201d;font:750 20px/1.08 Manrope,sans-serif;letter-spacing:-.035em}
#useCasesPage .uc-product-copy p{margin:9px 0 0;color:#71827d;font-size:11px;line-height:1.5}
#useCasesPage .uc-product-copy > strong{display:block;margin-top:18px;color:#008b79;font:800 23px/1 Manrope,sans-serif}
#useCasesPage .uc-ui-action-state{
  margin:0 24px 24px;padding:13px 15px;border:1px solid rgba(7,22,21,.07);border-radius:12px;background:#f6faf8;color:#6f817c;font-size:10.5px;
}
#useCasesPage .uc-ui-action-state.active{border-color:rgba(1,182,155,.15);background:#edf9f6;color:#007c6d}

#useCasesPage .uc-ui-subscription{padding:25px}
#useCasesPage .uc-ui-brand-row{display:flex;align-items:center;gap:10px;color:#10201d}
#useCasesPage .uc-mini-logo{width:32px;height:32px;display:grid;place-items:center;border-radius:10px;background:#0d2b26;color:#fff;font:750 13px/1 Manrope,sans-serif}
#useCasesPage .uc-ui-brand-row strong{font:730 15px/1 Manrope,sans-serif}
#useCasesPage .uc-plan-options{display:grid;grid-template-columns:repeat(3,1fr);gap:9px;margin-top:32px}
#useCasesPage .uc-plan-options > div{padding:18px 14px;border:1px solid rgba(7,22,21,.07);border-radius:14px;background:#f9fcfb}
#useCasesPage .uc-plan-options > div.selected{border-color:rgba(1,182,155,.22);background:#eef9f6}
#useCasesPage .uc-plan-options strong{display:block;margin-top:14px;color:#10201d;font:800 26px/1 Manrope,sans-serif}
#useCasesPage .uc-plan-options span{color:#71827d;font-size:10px}
#useCasesPage .uc-access-state{display:flex;align-items:center;gap:9px;margin-top:28px;padding:15px;border-radius:12px;background:#f6faf8;color:#71827d;font-size:10.5px}
#useCasesPage .uc-access-state i{width:8px;height:8px;border-radius:50%;background:#b9c6c2}
#useCasesPage .uc-access-state i.on{background:#01b69b;box-shadow:0 0 12px rgba(1,182,155,.42)}

#useCasesPage .uc-ui-booking{padding:25px;background:linear-gradient(180deg,#fff,#f7fbfa)}
#useCasesPage .uc-booking-route{display:flex;align-items:center;gap:13px}
#useCasesPage .uc-booking-route small{margin-right:auto}
#useCasesPage .uc-booking-route strong{color:#10201d;font:800 26px/1 Manrope,sans-serif}
#useCasesPage .uc-booking-route i{font-style:normal;color:#00a98f}
#useCasesPage .uc-booking-card{display:grid;grid-template-columns:1fr 1fr;gap:9px;margin-top:32px}
#useCasesPage .uc-booking-card > div{padding:16px;border:1px solid rgba(7,22,21,.07);border-radius:13px;background:#fff}
#useCasesPage .uc-booking-card > div:last-child{grid-column:1/-1}
#useCasesPage .uc-booking-card strong{display:block;margin-top:8px;color:#20342f;font:710 12px/1.3 Manrope,sans-serif}
#useCasesPage .uc-reservation-state{margin-top:24px;padding:14px;border-radius:12px;background:#f2f6f5;color:#71827d;font-size:10.5px}
#useCasesPage .uc-reservation-state.confirmed{background:#eaf8f4;color:#007c6d}

#useCasesPage .uc-ui-usage{padding:25px;background:#081b18;color:#fff}
#useCasesPage .uc-usage-head{display:flex;justify-content:space-between;align-items:flex-start}
#useCasesPage .uc-usage-head strong{display:block;margin-top:8px;font:720 18px/1 Manrope,sans-serif}
#useCasesPage .uc-usage-head span{padding:6px 8px;border-radius:7px;background:rgba(39,225,193,.08);color:#72e6d3;font:700 8px/1 "Geist Mono",monospace}
#useCasesPage .uc-usage-meter{height:8px;margin-top:48px;border-radius:99px;background:rgba(255,255,255,.08);overflow:hidden}
#useCasesPage .uc-usage-meter i{display:block;height:100%;border-radius:inherit;background:linear-gradient(90deg,#0d9e88,#50ddc7);transition:width .35s ease}
#useCasesPage .uc-usage-stats{display:grid;grid-template-columns:repeat(3,1fr);gap:9px;margin-top:24px}
#useCasesPage .uc-usage-stats > div{padding:14px;border:1px solid rgba(255,255,255,.07);border-radius:12px;background:rgba(255,255,255,.025)}
#useCasesPage .uc-usage-stats strong{display:block;margin-top:8px;color:#ecfbf8;font:720 12px/1.2 Manrope,sans-serif}
#useCasesPage .uc-usage-state{margin-top:28px;padding:14px;border-top:1px solid rgba(255,255,255,.07);color:rgba(226,246,241,.55);font-size:10.5px}

#useCasesPage .uc-ui-funding{padding:25px}
#useCasesPage .uc-wallet-balance{padding:20px;border-radius:15px;background:#0c2b26;color:#fff}
#useCasesPage .uc-wallet-balance strong{display:block;margin-top:9px;font:780 28px/1 Manrope,sans-serif;letter-spacing:-.04em}
#useCasesPage .uc-funding-form{margin-top:22px;padding:18px;border:1px solid rgba(7,22,21,.07);border-radius:14px}
#useCasesPage .uc-funding-form > div{display:flex;align-items:flex-end;justify-content:space-between;margin-top:9px}
#useCasesPage .uc-funding-form strong{color:#10201d;font:800 29px/1 Manrope,sans-serif}
#useCasesPage .uc-funding-form span{color:#71827d;font-size:11px}
#useCasesPage .uc-transfer-target{display:flex;align-items:center;justify-content:space-between;gap:15px;margin-top:12px;padding:14px;border-radius:11px;background:#f5f9f8}
#useCasesPage .uc-transfer-target span{color:#8b9a96;font:700 8px/1 "Geist Mono",monospace}
#useCasesPage .uc-transfer-target strong{color:#465a54;font:680 10.5px/1.25 Manrope,sans-serif}
#useCasesPage .uc-funding-state{margin-top:18px;color:#008b79;font:680 10.5px/1.3 Manrope,sans-serif}

#useCasesPage .uc-ui-invoice{padding:25px}
#useCasesPage .uc-invoice-top{display:flex;align-items:center;justify-content:space-between;padding-bottom:18px;border-bottom:1px solid rgba(7,22,21,.07)}
#useCasesPage .uc-invoice-top span{color:#008b79;font:700 10px/1 "Geist Mono",monospace}
#useCasesPage .uc-invoice-top strong{color:#10201d;font:720 12px/1 Manrope,sans-serif}
#useCasesPage .uc-invoice-company{margin-top:24px}
#useCasesPage .uc-invoice-company strong{display:block;margin-top:8px;color:#10201d;font:720 16px/1.2 Manrope,sans-serif}
#useCasesPage .uc-invoice-lines{display:flex;justify-content:space-between;gap:20px;margin-top:32px;padding:16px 0;border-top:1px solid rgba(7,22,21,.06);border-bottom:1px solid rgba(7,22,21,.06);color:#657872;font-size:11px}
#useCasesPage .uc-invoice-lines strong{color:#20342f}
#useCasesPage .uc-invoice-total{display:flex;align-items:flex-end;justify-content:space-between;margin-top:22px}
#useCasesPage .uc-invoice-total strong{color:#10201d;font:800 25px/1 Manrope,sans-serif}
#useCasesPage .uc-invoice-state{margin-top:24px;padding:12px;text-align:center;border-radius:10px;background:#f2f6f5;color:#7a8b86;font:700 9px/1 "Geist Mono",monospace;letter-spacing:.07em}
#useCasesPage .uc-invoice-state.paid{background:#eaf8f4;color:#007c6d}

#useCasesPage .uc-hashnut-bridge{
  position:relative;
  padding:22px 17px;
  background:
    radial-gradient(180px 260px at 50% 48%,rgba(39,225,193,.08),transparent 72%),
    #071816;
  color:#fff;
}
#useCasesPage .uc-bridge-brand{text-align:center}
#useCasesPage .uc-bridge-brand span{display:block;color:#74e5d2;font:700 9px/1 "Geist Mono",monospace;letter-spacing:.08em}
#useCasesPage .uc-bridge-brand strong{display:block;margin-top:8px;color:#f1fbf8;font:740 15px/1.08 Manrope,sans-serif}
#useCasesPage .uc-bridge-flow{margin-top:38px}
#useCasesPage .uc-bridge-step{display:flex;align-items:center;gap:9px;opacity:.34;transition:opacity .25s ease,transform .25s ease}
#useCasesPage .uc-bridge-step.active,#useCasesPage .uc-bridge-step.complete{opacity:1}
#useCasesPage .uc-bridge-step.active{transform:translateX(2px)}
#useCasesPage .uc-bridge-step i{width:10px;height:10px;border:1px solid rgba(112,229,210,.45);border-radius:50%;background:rgba(112,229,210,.04)}
#useCasesPage .uc-bridge-step.complete i{background:#20b59c}
#useCasesPage .uc-bridge-step span{color:#e9f8f5;font:670 10.5px/1 Manrope,sans-serif}
#useCasesPage .uc-bridge-line{height:37px;margin-left:4px}
#useCasesPage .uc-bridge-line b{display:block;width:1px;height:100%;background:rgba(112,229,210,.14);position:relative}
#useCasesPage .uc-bridge-line.active b::after{
  content:"";position:absolute;left:-2px;top:0;width:5px;height:5px;border-radius:50%;background:#5ce2cb;box-shadow:0 0 12px rgba(39,225,193,.6);animation:ucV60Bridge .8s ease forwards;
}
@keyframes ucV60Bridge{to{top:calc(100% - 5px)}}
#useCasesPage .uc-bridge-method{
  margin-top:32px;padding-top:17px;border-top:1px solid rgba(255,255,255,.07);
  color:rgba(213,242,236,.40);font:700 8px/1.55 "Geist Mono",monospace;letter-spacing:.07em;text-align:center;
}

#useCasesPage .uc-business-ui{
  min-height:420px;
  margin-top:16px;
  padding:18px;
  border:1px solid rgba(7,22,21,.075);
  border-radius:20px;
  background:#fff;
  box-shadow:0 28px 50px -42px rgba(0,55,45,.26);
}
#useCasesPage .uc-business-main-status{
  display:flex;align-items:flex-start;justify-content:space-between;gap:18px;padding-bottom:17px;border-bottom:1px solid rgba(7,22,21,.065);
}
#useCasesPage .uc-business-main-status small,
#useCasesPage .uc-business-status-grid small{
  display:block;color:#8a9995;font:700 8.5px/1 "Geist Mono",monospace;letter-spacing:.07em;
}
#useCasesPage .uc-business-main-status strong{
  display:block;margin-top:8px;color:#10201d;font:730 15px/1.2 Manrope,sans-serif;
}
#useCasesPage .uc-business-state{
  padding:6px 8px;border-radius:7px;background:#edf3f1;color:#71827d;font:700 8px/1 "Geist Mono",monospace;letter-spacing:.06em;
}
#useCasesPage .uc-business-status-grid{display:grid;grid-template-columns:1fr 1fr;gap:9px;margin-top:14px}
#useCasesPage .uc-business-status-grid > div{padding:14px;border:1px solid rgba(7,22,21,.065);border-radius:12px;background:#f9fcfb}
#useCasesPage .uc-business-status-grid strong{display:block;margin-top:9px;color:#263b35;font:710 11px/1.3 Manrope,sans-serif}
#useCasesPage .uc-business-timeline{margin-top:19px;padding-top:15px;border-top:1px solid rgba(7,22,21,.06)}
#useCasesPage .uc-business-timeline > div{display:flex;align-items:flex-start;gap:9px;min-height:34px;color:#8a9995;font-size:10px;line-height:1.35;opacity:.45}
#useCasesPage .uc-business-timeline > div.active{opacity:1;color:#61736e}
#useCasesPage .uc-business-timeline i{width:6px;height:6px;flex:0 0 auto;margin-top:4px;border-radius:50%;background:#c1cdca}
#useCasesPage .uc-business-timeline > div.active i{background:#01b69b}
#useCasesPage .uc-business-system-tags{display:flex;flex-wrap:wrap;gap:6px;margin-top:16px}
#useCasesPage .uc-business-system-tags span{padding:6px 7px;border:1px solid rgba(7,22,21,.065);border-radius:7px;color:#8b9a96;font:700 7.5px/1 "Geist Mono",monospace;letter-spacing:.06em}

#useCasesPage .uc-experience-demo-foot{
  display:flex;align-items:flex-end;justify-content:space-between;gap:30px;padding:20px 24px;border-top:1px solid rgba(7,22,21,.07);background:#fbfdfc;
}
#useCasesPage .uc-common-industries{min-width:0}
#useCasesPage .uc-common-industries > small{display:block;color:#8b9a96;font:700 8.5px/1 "Geist Mono",monospace;letter-spacing:.065em}
#useCasesPage .uc-common-industry-tags{display:flex;flex-wrap:wrap;gap:6px;margin-top:9px}
#useCasesPage .uc-common-industry-tags span{padding:6px 8px;border:1px solid rgba(7,22,21,.065);border-radius:8px;background:#fff;color:#5f726c;font-size:9.5px;line-height:1.2}
#useCasesPage .uc-demo-controls{display:flex;gap:8px;flex:0 0 auto}
#useCasesPage .uc-demo-controls button{appearance:none;border-radius:10px;padding:11px 13px;font:700 10.5px/1 Manrope,sans-serif;cursor:pointer}
#useCasesPage .uc-demo-reset-new{border:1px solid rgba(7,22,21,.09);background:#fff;color:#657872}
#useCasesPage .uc-demo-next{border:0;background:#0d2b26;color:#fff}

@media(max-width:1180px){
  #useCasesPage .uc-flow-switcher{grid-template-columns:repeat(3,1fr)}
  #useCasesPage .uc-flow-switcher button:nth-child(3){border-right:0}
  #useCasesPage .uc-flow-switcher button:nth-child(-n+3){border-bottom:1px solid rgba(7,22,21,.07)}
  #useCasesPage .uc-experience-stage{grid-template-columns:1fr}
  #useCasesPage .uc-customer-experience,
  #useCasesPage .uc-business-experience{border:0}
  #useCasesPage .uc-hashnut-bridge{
    display:grid;grid-template-columns:170px 1fr 150px;align-items:center;gap:22px;
  }
  #useCasesPage .uc-bridge-flow{
    display:grid;grid-template-columns:auto 1fr auto 1fr auto 1fr auto;align-items:center;margin:0;
  }
  #useCasesPage .uc-bridge-line{height:1px;margin:0}
  #useCasesPage .uc-bridge-line b{width:100%;height:1px}
  #useCasesPage .uc-bridge-method{margin:0;padding:0;border:0;text-align:right}
}
@media(max-width:760px){
  #useCasesPage .uc-experience-grid{grid-template-columns:1fr}
  #useCasesPage .uc-experience-card{border-right:0!important;border-bottom:1px solid rgba(7,22,21,.07)!important}
  #useCasesPage .uc-experience-card:last-child{border-bottom:0!important}
  #useCasesPage .uc-experience-preview{grid-template-columns:1fr}
  #useCasesPage .uc-experience-open{width:100%}
  #useCasesPage .uc-flow-switcher{grid-template-columns:1fr 1fr}
  #useCasesPage .uc-flow-switcher button{border-right:1px solid rgba(7,22,21,.07)!important;border-bottom:1px solid rgba(7,22,21,.07)!important}
  #useCasesPage .uc-flow-switcher button:nth-child(2n){border-right:0!important}
  #useCasesPage .uc-flow-switcher button:nth-last-child(-n+2){border-bottom:0!important}
  #useCasesPage .uc-experience-demo-top{align-items:flex-start;flex-direction:column}
  #useCasesPage .uc-hashnut-bridge{display:block}
  #useCasesPage .uc-bridge-flow{display:block;margin-top:30px}
  #useCasesPage .uc-bridge-line{height:28px;margin-left:4px}
  #useCasesPage .uc-bridge-line b{width:1px;height:100%}
  #useCasesPage .uc-bridge-method{margin-top:24px;text-align:left}
  #useCasesPage .uc-product-view{grid-template-columns:1fr}
  #useCasesPage .uc-product-art{max-width:150px}
  #useCasesPage .uc-plan-options{grid-template-columns:1fr}
  #useCasesPage .uc-experience-demo-foot{align-items:flex-start;flex-direction:column}
  #useCasesPage .uc-demo-controls{width:100%}
  #useCasesPage .uc-demo-controls button{flex:1}
}

#useCasesPage .uc-flow-switcher{
  grid-template-columns:repeat(6,1fr);
  border-radius:18px;
  background:#f6fbfa;
}
#useCasesPage .uc-flow-switcher button{
  min-height:94px;
  padding:14px 12px 12px;
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  gap:10px;
}
#useCasesPage .uc-flow-switcher .uc-switch-icon{
  width:34px;height:34px;display:grid;place-items:center;
  border:1px solid rgba(0,124,109,.09);
  border-radius:11px;background:#eef9f6;color:#008b79;
}
#useCasesPage .uc-flow-switcher .uc-switch-icon svg{
  width:18px;height:18px;fill:none;stroke:currentColor;stroke-width:1.7;stroke-linecap:round;stroke-linejoin:round;
}
#useCasesPage .uc-flow-switcher span{
  margin-top:0;
  font-size:13px;
  line-height:1.25;
}
#useCasesPage .uc-flow-switcher button.active{
  box-shadow:inset 0 -3px 0 #01b69b;
}

#useCasesPage .uc-experience-stage.v2{
  display:grid;
  grid-template-columns:1fr 1fr 1fr;
  min-height:620px;
}
#useCasesPage .uc-experience-stage.v2 .device-column,
#useCasesPage .uc-experience-stage.v2 .center-column{
  padding:22px;
}
#useCasesPage .uc-experience-stage.v2 .device-column{
  background:#f8fbfa;
}
#useCasesPage .uc-experience-stage.v2 .center-column{
  background:
    radial-gradient(240px 260px at 50% 22%,rgba(39,225,193,.06),transparent 72%),
    #071816;
  color:#fff;
}

#useCasesPage .uc-device-wrap{
  min-height:520px;
  margin-top:16px;
  display:flex;
  align-items:center;
  justify-content:center;
}
#useCasesPage .uc-device-phone{
  position:relative;
  width:248px;
  height:506px;
  padding:8px;
  border-radius:41px;
  background:
    linear-gradient(130deg,rgba(255,255,255,.26),rgba(255,255,255,.055) 20%,transparent 44%),
    linear-gradient(180deg,#354542 0%,#192724 46%,#0a1715 100%);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.22),
    inset 0 -1px 0 rgba(255,255,255,.04),
    inset 1px 0 0 rgba(255,255,255,.07),
    0 32px 64px -44px rgba(0,0,0,.98),
    0 0 0 1px rgba(2,11,10,.92),
    0 0 0 2px rgba(172,220,211,.065);
}
#useCasesPage .uc-device-phone-screen{
  position:relative;
  width:100%;height:100%;overflow:hidden;border-radius:34px;background:#f7fbfa;
  box-shadow:inset 0 0 0 1px rgba(255,255,255,.12);
}
#useCasesPage .uc-device-island{
  position:absolute;z-index:4;left:50%;top:0;width:92px;height:25px;transform:translateX(-50%);
  border-radius:0 0 16px 16px;background:
    radial-gradient(circle at 76% 46%,#263b37 0 2px,#0a1513 2.5px 4.5px,transparent 5px),
    linear-gradient(180deg,#050d0c,#0a1513);
}
#useCasesPage .uc-device-statusbar{
  position:absolute;z-index:4;top:9px;left:18px;right:18px;height:16px;display:flex;align-items:center;justify-content:space-between;
  color:#34413e;font:700 7px/1 Manrope,sans-serif;pointer-events:none;
}
#useCasesPage .uc-device-statusbar>div{display:flex;align-items:center;gap:4px}
#useCasesPage .uc-bar-signal{width:9px;height:6px;background:linear-gradient(90deg,#34413e 0 18%,transparent 18% 27%,#34413e 27% 50%,transparent 50% 59%,#34413e 59% 82%,transparent 82%)}
#useCasesPage .uc-bar-wifi{width:7px;height:6px;border:1px solid #34413e;border-top-color:transparent;border-left-color:transparent;transform:rotate(45deg);border-radius:0 4px 0 0}
#useCasesPage .uc-bar-battery{position:relative;width:12px;height:6px;border:1px solid #34413e;border-radius:2px}
#useCasesPage .uc-bar-battery::after{content:"";position:absolute;right:-2px;top:1px;width:1px;height:2px;background:#34413e;border-radius:0 1px 1px 0}
#useCasesPage .uc-phone-side-left,#useCasesPage .uc-phone-side-right{position:absolute;z-index:8;pointer-events:none}
#useCasesPage .uc-phone-side-left{left:-3px;top:96px;width:3px;height:122px}
#useCasesPage .uc-phone-side-left i,#useCasesPage .uc-phone-side-right i{position:absolute;display:block;width:3px;background:linear-gradient(180deg,#485754,#182522);box-shadow:inset 1px 0 0 rgba(255,255,255,.10)}
#useCasesPage .uc-phone-side-left i{border-radius:2px 0 0 2px}
#useCasesPage .uc-phone-side-left .mute{top:0;height:20px}
#useCasesPage .uc-phone-side-left .vol-up{top:34px;height:38px}
#useCasesPage .uc-phone-side-left .vol-down{top:78px;height:38px}
#useCasesPage .uc-phone-side-right{right:-3px;top:134px;width:3px;height:60px}
#useCasesPage .uc-phone-side-right i{right:0;height:60px;border-radius:0 2px 2px 0}
#useCasesPage .uc-phone-home-indicator{
  position:absolute;left:50%;bottom:8px;transform:translateX(-50%);
  width:110px;height:4px;border-radius:99px;background:rgba(0,0,0,.08);
}

#useCasesPage .uc-device-tablet{
  width:100%;
  max-width:340px;
  height:490px;
  padding:10px;
  border-radius:28px;
  background:
    linear-gradient(130deg,rgba(255,255,255,.20),rgba(255,255,255,.05) 24%,transparent 44%),
    linear-gradient(180deg,#2e3c39 0%,#172320 50%,#0a1412 100%);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.18),
    0 32px 64px -44px rgba(0,0,0,.80),
    0 0 0 1px rgba(2,11,10,.92),
    0 0 0 2px rgba(172,220,211,.055);
}
#useCasesPage .uc-device-tablet-screen{
  width:100%;height:100%;overflow:hidden;border-radius:20px;background:#fbfdfc;
}

#useCasesPage .uc-customer-ui{
  min-height:100%;
  padding:38px 18px 20px;
}
#useCasesPage .uc-phone-scene{
  height:100%;
  display:flex;
  flex-direction:column;
}
#useCasesPage .uc-phone-appbar span{
  display:block;color:#8b9a96;font:700 8px/1 "Geist Mono",monospace;letter-spacing:.075em;
}
#useCasesPage .uc-phone-appbar b{
  display:block;margin-top:8px;color:#10201d;font:760 18px/1.08 Manrope,sans-serif;letter-spacing:-.03em;
}
#useCasesPage .uc-phone-scene .uc-phone-cta{
  appearance:none;border:0;border-radius:14px;padding:14px 16px;background:#0d2b26;color:#fff;
  font:700 13px/1 Manrope,sans-serif;cursor:pointer;margin-top:auto;
}
#useCasesPage .uc-phone-product{margin-top:24px}
#useCasesPage .uc-phone-product-art{
  height:140px;border-radius:18px;display:grid;place-items:center;
  background:linear-gradient(145deg,#0b2e28,#0f6d5c);color:#c8fff4;
}
#useCasesPage .uc-phone-product-art span{font:800 34px/1 Manrope,sans-serif;letter-spacing:-.06em}
#useCasesPage .uc-phone-product-copy{margin-top:18px}
#useCasesPage .uc-phone-product-copy small,
#useCasesPage .uc-phone-product-copy p,
#useCasesPage .uc-phone-summary span,
#useCasesPage .uc-phone-summary b,
#useCasesPage .uc-phone-note,
#useCasesPage .uc-phone-qr-card small,
#useCasesPage .uc-phone-loading p,
#useCasesPage .uc-phone-success-card span,
#useCasesPage .uc-phone-success-copy,
#useCasesPage .uc-booking-pack span,
#useCasesPage .uc-usage-meter-card small,
#useCasesPage .uc-usage-stats span,
#useCasesPage .uc-wallet-balance-card small,
#useCasesPage .uc-funding-amount-card span,
#useCasesPage .uc-invoice-card-mini span{
  font-family:Manrope,sans-serif;
}
#useCasesPage .uc-phone-product-copy small,
#useCasesPage .uc-phone-qr-card small,
#useCasesPage .uc-booking-pack span,
#useCasesPage .uc-usage-meter-card small,
#useCasesPage .uc-wallet-balance-card small,
#useCasesPage .uc-funding-amount-card span,
#useCasesPage .uc-invoice-card-mini span{
  display:block;color:#8a9995;font:700 8px/1 "Geist Mono",monospace;letter-spacing:.07em;
}
#useCasesPage .uc-phone-product-copy strong{
  display:block;margin-top:8px;color:#10201d;font:760 18px/1.1 Manrope,sans-serif;
}
#useCasesPage .uc-phone-product-copy p{
  margin:9px 0 0;color:#6f817c;font-size:11px;line-height:1.5;
}
#useCasesPage .uc-phone-product-copy em{
  display:block;margin-top:14px;color:#008b79;font-style:normal;font:800 23px/1 Manrope,sans-serif;
}
#useCasesPage .uc-phone-summary{
  display:grid;grid-template-columns:1fr auto 1fr auto;gap:8px;
  margin-top:18px;padding:14px;border:1px solid rgba(7,22,21,.07);border-radius:13px;background:#f7faf9;
}
#useCasesPage .uc-phone-summary span{color:#8b9a96;font:700 8px/1 "Geist Mono",monospace}
#useCasesPage .uc-phone-summary b{color:#40534e;font:700 11px/1 Manrope,sans-serif}

#useCasesPage .uc-phone-qr-card{
  margin-top:26px;padding:18px;border:1px solid rgba(7,22,21,.07);border-radius:18px;background:#fff;
}
#useCasesPage .uc-qr-box{
  width:170px;height:170px;margin:0 auto 16px;border-radius:14px;
  background:
    linear-gradient(90deg,#111 10px,transparent 10px) 0 0/20px 20px,
    linear-gradient(#111 10px,transparent 10px) 0 0/20px 20px,
    linear-gradient(90deg,transparent 10px,#111 10px) 10px 10px/20px 20px,
    linear-gradient(transparent 10px,#111 10px) 10px 10px/20px 20px,
    #fff;
  box-shadow:inset 0 0 0 8px #fff;
}
#useCasesPage .uc-phone-qr-card strong{
  display:block;margin-top:10px;color:#20342f;text-align:center;font:720 14px/1.25 Manrope,sans-serif;word-break:break-all;
}
#useCasesPage .uc-phone-note{
  margin-top:16px;color:#6f817c;font-size:11px;line-height:1.5;
}
#useCasesPage .uc-phone-loading{
  margin-top:48px;display:flex;flex-direction:column;align-items:center;text-align:center;
}
#useCasesPage .uc-loader-ring{
  width:78px;height:78px;border-radius:50%;
  border:4px solid rgba(1,182,155,.12);border-top-color:#01b69b;
  animation:ucSpin 1.1s linear infinite;
}
@keyframes ucSpin{to{transform:rotate(360deg)}}
#useCasesPage .uc-phone-loading strong{
  display:block;margin-top:22px;color:#10201d;font:760 17px/1.15 Manrope,sans-serif;
}
#useCasesPage .uc-phone-loading p{max-width:190px;margin-top:10px;color:#6f817c;font-size:11px;line-height:1.5}
#useCasesPage .uc-phone-success-badge{
  width:78px;height:78px;margin:72px auto 0;border-radius:50%;display:grid;place-items:center;
  background:#eaf8f4;color:#008b79;font:800 34px/1 Manrope,sans-serif;
}
#useCasesPage .uc-phone-success-title{
  display:block;margin-top:22px;color:#10201d;text-align:center;font:760 20px/1.08 Manrope,sans-serif;
}
#useCasesPage .uc-phone-success-copy{
  max-width:210px;margin:12px auto 0;color:#6f817c;text-align:center;font-size:11px;line-height:1.55;
}
#useCasesPage .uc-phone-success-card{
  display:flex;align-items:center;justify-content:space-between;gap:12px;
  margin:24px 0 0;padding:14px 15px;border:1px solid rgba(7,22,21,.07);border-radius:13px;background:#f7faf9;
}
#useCasesPage .uc-phone-success-card span{color:#8a9995;font:700 8px/1 "Geist Mono",monospace}
#useCasesPage .uc-phone-success-card b{color:#007c6d;font:760 12px/1 Manrope,sans-serif}

#useCasesPage .uc-plan-stack{
  display:grid;gap:10px;margin-top:24px;
}
#useCasesPage .uc-plan-stack>div{
  display:grid;grid-template-columns:1fr auto auto;align-items:end;gap:8px;padding:16px;border:1px solid rgba(7,22,21,.07);border-radius:14px;background:#f9fcfb;
}
#useCasesPage .uc-plan-stack>div.active{border-color:rgba(1,182,155,.2);background:#edf9f6}
#useCasesPage .uc-plan-stack strong{color:#10201d;font:800 24px/1 Manrope,sans-serif}
#useCasesPage .uc-plan-stack span{color:#71827d;font-size:10px}

#useCasesPage .uc-booking-route{
  display:flex;align-items:center;justify-content:center;gap:10px;margin-top:24px;padding:18px;border-radius:16px;background:#0c2b26;color:#d9faf2;
}
#useCasesPage .uc-booking-route small{font:800 24px/1 Manrope,sans-serif}
#useCasesPage .uc-booking-route i{font-style:normal;color:#54dcc7}
#useCasesPage .uc-booking-pack{display:grid;gap:9px;margin-top:18px}
#useCasesPage .uc-booking-pack>div{padding:14px;border:1px solid rgba(7,22,21,.07);border-radius:13px;background:#fff}
#useCasesPage .uc-booking-pack b{display:block;margin-top:8px;color:#20342f;font:710 12px/1.3 Manrope,sans-serif}

#useCasesPage .uc-usage-meter-card{
  margin-top:24px;padding:18px;border-radius:16px;background:#081b18;color:#fff;
}
#useCasesPage .uc-usage-meter-card strong{display:block;margin-top:8px;font:800 28px/1 Manrope,sans-serif}
#useCasesPage .uc-usage-bars{display:grid;gap:10px;margin-top:20px}
#useCasesPage .uc-usage-bars i{display:block;height:10px;border-radius:99px;background:linear-gradient(90deg,#0d9e88,#50ddc7)}
#useCasesPage .uc-usage-stats{display:grid;gap:8px;margin-top:18px}
#useCasesPage .uc-usage-stats span{padding:12px;border:1px solid rgba(7,22,21,.07);border-radius:12px;background:#fff;color:#556862;font-size:10px}

#useCasesPage .uc-wallet-balance-card{
  margin-top:24px;padding:18px;border-radius:16px;background:#0c2b26;color:#fff;
}
#useCasesPage .uc-wallet-balance-card strong{display:block;margin-top:8px;font:800 26px/1 Manrope,sans-serif}
#useCasesPage .uc-funding-amount-card{
  margin-top:18px;padding:16px;border:1px solid rgba(7,22,21,.07);border-radius:14px;background:#fff;
}
#useCasesPage .uc-funding-amount-card b{display:block;margin-top:10px;color:#10201d;font:760 20px/1 Manrope,sans-serif}

#useCasesPage .uc-invoice-card-mini{
  display:grid;gap:10px;margin-top:24px;padding:16px;border:1px solid rgba(7,22,21,.07);border-radius:16px;background:#fff;
}
#useCasesPage .uc-invoice-card-mini b{display:block;margin-top:8px;color:#20342f;font:710 12px/1.3 Manrope,sans-serif}

#useCasesPage .uc-engine-panel{
  min-height:520px;
  margin-top:16px;padding:18px;border:1px solid rgba(255,255,255,.08);border-radius:22px;
  background:rgba(255,255,255,.025);
  box-shadow:inset 0 1px 0 rgba(255,255,255,.02);
}
#useCasesPage .uc-engine-panel-head{
  display:flex;align-items:flex-start;justify-content:space-between;gap:18px;
}
#useCasesPage .uc-engine-panel-head small{
  display:block;color:rgba(217,239,233,.33);font:700 8px/1 "Geist Mono",monospace;letter-spacing:.13em;
}
#useCasesPage .uc-engine-panel-head strong{
  display:block;margin-top:8px;color:rgba(247,255,253,.92);font:760 18px/1.1 Manrope,sans-serif;
}
#useCasesPage .uc-engine-led{
  display:flex;align-items:center;gap:7px;color:rgba(218,240,234,.45);font:700 7px/1 "Geist Mono",monospace;letter-spacing:.11em;
}
#useCasesPage .uc-engine-led i{
  width:6px;height:6px;border-radius:50%;background:var(--aqua);box-shadow:0 0 10px rgba(39,225,193,.8);
}
#useCasesPage .uc-engine-flowboard{
  display:grid;gap:18px;margin-top:18px;
}
#useCasesPage .uc-engine-flow-steps{
  padding:16px;border:1px solid rgba(255,255,255,.07);border-radius:18px;background:rgba(255,255,255,.018);
}
#useCasesPage .uc-bridge-step{
  display:flex;align-items:center;gap:10px;opacity:.36;transition:opacity .25s ease,transform .25s ease;
}
#useCasesPage .uc-bridge-step.active,#useCasesPage .uc-bridge-step.complete{opacity:1}
#useCasesPage .uc-bridge-step.active{transform:translateX(2px)}
#useCasesPage .uc-bridge-step i{
  width:10px;height:10px;border:1px solid rgba(112,229,210,.45);border-radius:50%;background:rgba(112,229,210,.04)
}
#useCasesPage .uc-bridge-step.complete i{background:#20b59c}
#useCasesPage .uc-bridge-step span{
  color:#ecfbf8;font:670 12px/1.25 Manrope,sans-serif;
}
#useCasesPage .uc-bridge-line{height:28px;margin-left:4px}
#useCasesPage .uc-bridge-line b{display:block;width:1px;height:100%;background:rgba(112,229,210,.14);position:relative}
#useCasesPage .uc-bridge-line.active b::after{
  content:"";position:absolute;left:-2px;top:0;width:5px;height:5px;border-radius:50%;
  background:#5ce2cb;box-shadow:0 0 12px rgba(39,225,193,.6);animation:ucV61Bridge .8s ease forwards;
}
@keyframes ucV61Bridge{to{top:calc(100% - 5px)}}
#useCasesPage .uc-engine-chainboard{
  padding:16px;border:1px solid rgba(255,255,255,.07);border-radius:18px;background:rgba(255,255,255,.018);
}
#useCasesPage .uc-chain-head span{
  display:block;color:rgba(217,239,233,.33);font:700 8px/1 "Geist Mono",monospace;letter-spacing:.12em;
}
#useCasesPage .uc-chain-head strong{
  display:block;margin-top:8px;color:#f1fbf8;font:720 16px/1.12 Manrope,sans-serif;
}
#useCasesPage .uc-chain-lane{
  display:grid;grid-template-columns:1fr 28px 1fr 28px 1fr;align-items:center;gap:0;margin-top:18px;
}
#useCasesPage .uc-chain-node{
  min-height:84px;padding:12px;border:1px solid rgba(255,255,255,.07);border-radius:14px;background:rgba(255,255,255,.012);opacity:.45;
}
#useCasesPage .uc-chain-node.active{opacity:1;border-color:rgba(39,225,193,.18);background:rgba(39,225,193,.05)}
#useCasesPage .uc-chain-node small{display:block;color:rgba(217,239,233,.33);font:700 7px/1 "Geist Mono",monospace;letter-spacing:.11em}
#useCasesPage .uc-chain-node strong{display:block;margin-top:10px;color:#eaf8f5;font:700 12px/1.25 Manrope,sans-serif}
#useCasesPage .uc-chain-connector{
  position:relative;height:1px;background:rgba(112,229,210,.12);
}
#useCasesPage .uc-chain-connector i{
  position:absolute;left:0;top:-2px;width:5px;height:5px;border-radius:50%;background:#5ce2cb;box-shadow:0 0 12px rgba(39,225,193,.6);
  animation:ucV61Horizontal 2s linear infinite;
}
@keyframes ucV61Horizontal{to{left:calc(100% - 5px)}}
#useCasesPage .uc-chain-card{
  display:grid;grid-template-columns:1fr 1fr;gap:10px;margin-top:18px;
}
#useCasesPage .uc-chain-card>div{
  padding:12px;border:1px solid rgba(255,255,255,.07);border-radius:12px;background:rgba(255,255,255,.012);
}
#useCasesPage .uc-chain-card small{display:block;color:rgba(217,239,233,.33);font:700 7px/1 "Geist Mono",monospace;letter-spacing:.11em}
#useCasesPage .uc-chain-card strong{display:block;margin-top:9px;color:#eaf8f5;font:680 11px/1.3 Manrope,sans-serif;word-break:break-all}
#useCasesPage .uc-sync-pulses{
  display:flex;gap:8px;justify-content:center;margin-top:18px;
}
#useCasesPage .uc-sync-pulses span{
  width:34px;height:6px;border-radius:99px;background:rgba(255,255,255,.08)
}
#useCasesPage .uc-sync-pulses span.active{
  background:linear-gradient(90deg,#00a98f,#4ee4ca)
}

#useCasesPage .uc-business-ui{
  min-height:100%;
  padding:18px;background:linear-gradient(180deg,#fbfdfc,#f6fbf9);
}
#useCasesPage .uc-tablet-topbar{
  display:flex;align-items:center;justify-content:space-between;gap:18px;padding-bottom:14px;border-bottom:1px solid rgba(7,22,21,.06);
}
#useCasesPage .uc-tablet-topbar span,
#useCasesPage .uc-tablet-header small,
#useCasesPage .uc-tablet-grid small{
  display:block;color:#8a9995;font:700 8px/1 "Geist Mono",monospace;letter-spacing:.07em;
}
#useCasesPage .uc-tablet-topbar strong{color:#008b79;font:700 9px/1 "Geist Mono",monospace;letter-spacing:.06em}
#useCasesPage .uc-tablet-header{
  display:flex;align-items:flex-start;justify-content:space-between;gap:16px;margin-top:18px;
}
#useCasesPage .uc-tablet-header h4{
  margin:8px 0 0;color:#10201d;font:760 20px/1.08 Manrope,sans-serif;
}
#useCasesPage .uc-tablet-state{
  padding:7px 8px;border-radius:8px;background:#edf3f1;color:#71827d;font:700 8px/1 "Geist Mono",monospace;letter-spacing:.06em;
}
#useCasesPage .uc-tablet-grid{
  display:grid;grid-template-columns:1fr 1fr;gap:10px;margin-top:18px;
}
#useCasesPage .uc-tablet-grid>div{
  padding:14px;border:1px solid rgba(7,22,21,.065);border-radius:14px;background:#fff;
}
#useCasesPage .uc-tablet-grid strong{
  display:block;margin-top:10px;color:#243832;font:710 12px/1.3 Manrope,sans-serif;
}
#useCasesPage .uc-tablet-timeline{
  margin-top:18px;padding:16px;border:1px solid rgba(7,22,21,.065);border-radius:16px;background:#fff;
}
#useCasesPage .uc-tablet-timeline>div{
  display:flex;align-items:flex-start;gap:9px;min-height:36px;color:#8a9995;font-size:11px;line-height:1.4;opacity:.5;
}
#useCasesPage .uc-tablet-timeline>div.active{opacity:1;color:#60736d}
#useCasesPage .uc-tablet-timeline i{
  width:6px;height:6px;flex:0 0 auto;margin-top:4px;border-radius:50%;background:#c1cdca;
}
#useCasesPage .uc-tablet-timeline>div.active i{background:#01b69b}
#useCasesPage .uc-tablet-tags{
  display:flex;flex-wrap:wrap;gap:7px;margin-top:16px;
}
#useCasesPage .uc-tablet-tags span{
  padding:6px 8px;border:1px solid rgba(7,22,21,.065);border-radius:8px;background:#fff;color:#8b9a96;font:700 7.5px/1 "Geist Mono",monospace;letter-spacing:.06em;
}

#useCasesPage .uc-experience-demo-foot{
  align-items:flex-end;
}
#useCasesPage .uc-demo-controls{display:flex;gap:8px}
#useCasesPage .uc-demo-controls button{padding:11px 14px}
#useCasesPage .uc-common-industry-tags span{
  font-size:10px;
  line-height:1.3;
}

@media(max-width:1280px){
  #useCasesPage .uc-flow-switcher{grid-template-columns:repeat(3,1fr)}
  #useCasesPage .uc-flow-switcher button:nth-child(3){border-right:0}
  #useCasesPage .uc-flow-switcher button:nth-child(-n+3){border-bottom:1px solid rgba(7,22,21,.07)}
}
@media(max-width:1100px){
  #useCasesPage .uc-experience-stage.v2{grid-template-columns:1fr}
}
@media(max-width:760px){
  #useCasesPage .uc-flow-switcher{grid-template-columns:1fr 1fr}
  #useCasesPage .uc-flow-switcher button{min-height:88px}
  #useCasesPage .uc-flow-switcher button:nth-child(2n){border-right:0!important}
  #useCasesPage .uc-flow-switcher button:nth-child(-n+4){border-bottom:1px solid rgba(7,22,21,.07)!important}
  #useCasesPage .uc-device-phone{transform:scale(.94);transform-origin:center top}
  #useCasesPage .uc-device-tablet{height:430px}
  #useCasesPage .uc-chain-lane{grid-template-columns:1fr;gap:8px}
  #useCasesPage .uc-chain-connector{height:18px;width:1px;justify-self:center}
  #useCasesPage .uc-chain-connector i{left:-2px;top:0;animation:ucV61Bridge 1.8s linear infinite}
  #useCasesPage .uc-chain-card{grid-template-columns:1fr}
}

#useCasesPage .uc-flow-switcher{
  grid-template-columns:repeat(3,1fr);
  gap:0;
}
#useCasesPage .uc-flow-switcher button{
  min-height:124px;
  padding:16px 16px 14px;
  display:flex;
  flex-direction:column;
  align-items:stretch;
  gap:14px;
}
#useCasesPage .uc-flow-switcher button:nth-child(-n+3){
  border-bottom:1px solid rgba(7,22,21,.07);
}
#useCasesPage .uc-flow-switcher button:nth-child(3){
  border-right:0;
}
#useCasesPage .uc-flow-switcher button:nth-child(6){
  border-right:0;
}
#useCasesPage .uc-switch-head{
  display:flex;
  align-items:center;
  gap:12px;
}
#useCasesPage .uc-flow-switcher .uc-switch-icon{
  width:36px;
  height:36px;
  flex:0 0 auto;
  border-radius:12px;
}
#useCasesPage .uc-flow-switcher .uc-switch-title{
  margin:0;
  color:#19302b;
  font:720 14px/1.2 Manrope,sans-serif;
  letter-spacing:-.015em;
}
#useCasesPage .uc-flow-switcher button.active .uc-switch-title{
  color:#0e4e43;
}
#useCasesPage .uc-switch-subicons{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  min-height:28px;
}
#useCasesPage .uc-subdot{
  position:relative;
  width:28px;
  height:28px;
  border-radius:50%;
  display:grid;
  place-items:center;
  color:#fff;
  font:800 9px/1 Manrope,sans-serif;
  letter-spacing:.01em;
  box-shadow:inset 0 1px 0 rgba(255,255,255,.22), 0 6px 16px -10px rgba(0,0,0,.45);
  cursor:default;
  transition:transform .18s ease, filter .18s ease, opacity .18s ease;
}
#useCasesPage .uc-subdot:hover{
  transform:translateY(-1px) scale(1.04);
  z-index:3;
}
#useCasesPage .uc-subdot::after{
  content:attr(data-label);
  position:absolute;
  left:50%;
  bottom:calc(100% + 10px);
  transform:translateX(-50%) translateY(4px);
  white-space:nowrap;
  padding:7px 9px;
  border-radius:9px;
  background:#0d2b26;
  color:#fff;
  font:700 10px/1.2 Manrope,sans-serif;
  box-shadow:0 16px 28px -18px rgba(0,0,0,.45);
  opacity:0;
  pointer-events:none;
  transition:opacity .16s ease, transform .16s ease;
}
#useCasesPage .uc-subdot::before{
  content:"";
  position:absolute;
  left:50%;
  bottom:calc(100% + 4px);
  width:8px;
  height:8px;
  transform:translateX(-50%) rotate(45deg);
  background:#0d2b26;
  opacity:0;
  transition:opacity .16s ease;
}
#useCasesPage .uc-subdot:hover::after,
#useCasesPage .uc-subdot:hover::before{
  opacity:1;
}
#useCasesPage .uc-subdot:hover::after{
  transform:translateX(-50%) translateY(0);
}
#useCasesPage .uc-flow-switcher button:not(.active) .uc-subdot{
  filter:grayscale(1) saturate(.2);
  opacity:.55;
}
#useCasesPage .uc-flow-switcher button:not(.active):hover .uc-subdot{
  opacity:.72;
}
#useCasesPage .sub-teal{background:linear-gradient(145deg,#00a98f,#4be3ca)}
#useCasesPage .sub-blue{background:linear-gradient(145deg,#2d7dff,#4fb5ff)}
#useCasesPage .sub-gold{background:linear-gradient(145deg,#f0a300,#ffd05b)}
#useCasesPage .sub-purple{background:linear-gradient(145deg,#8a4dff,#c57bff)}
#useCasesPage .sub-pink{background:linear-gradient(145deg,#ff5f94,#ff8cb1)}
#useCasesPage .sub-lime{background:linear-gradient(145deg,#4da72c,#8fd95e)}
#useCasesPage .sub-cyan{background:linear-gradient(145deg,#18a6b7,#5fe1ef)}
#useCasesPage .sub-red{background:linear-gradient(145deg,#d24f4f,#ff8a8a)}
#useCasesPage .sub-slate{background:linear-gradient(145deg,#53646b,#8a9aa1)}

#useCasesPage .uc-experience-demo{padding-bottom:0}
#useCasesPage .uc-experience-demo-foot,
#useCasesPage .uc-common-industries,
#useCasesPage .uc-demo-controls{
  display:none !important;
}

@media(max-width:1280px){
  #useCasesPage .uc-flow-switcher{
    grid-template-columns:repeat(2,1fr);
  }
  #useCasesPage .uc-flow-switcher button{
    border-right:1px solid rgba(7,22,21,.07) !important;
    border-bottom:1px solid rgba(7,22,21,.07) !important;
  }
  #useCasesPage .uc-flow-switcher button:nth-child(2n){
    border-right:0 !important;
  }
  #useCasesPage .uc-flow-switcher button:nth-last-child(-n+2){
    border-bottom:0 !important;
  }
}
@media(max-width:760px){
  #useCasesPage .uc-flow-switcher{
    grid-template-columns:1fr;
  }
  #useCasesPage .uc-flow-switcher button{
    min-height:110px;
    border-right:0 !important;
    border-bottom:1px solid rgba(7,22,21,.07) !important;
  }
  #useCasesPage .uc-flow-switcher button:last-child{
    border-bottom:0 !important;
  }
  #useCasesPage .uc-switch-title{
    font-size:13px;
  }
}

#useCasesPage .uc-flow-switcher{
  grid-template-columns:repeat(6,minmax(0,1fr)) !important;
}
#useCasesPage .uc-flow-switcher button{
  min-height:124px;
  padding:16px 14px 14px;
}
#useCasesPage .uc-flow-switcher button:nth-child(-n+3){
  border-bottom:0 !important;
}
#useCasesPage .uc-flow-switcher button:nth-child(3){
  border-right:1px solid rgba(7,22,21,.07) !important;
}
#useCasesPage .uc-flow-switcher button:nth-child(6){
  border-right:0 !important;
}
#useCasesPage .uc-flow-switcher .uc-switch-head{
  display:flex;
  align-items:center;
  gap:10px;
}
#useCasesPage .uc-flow-switcher .uc-switch-icon{
  width:34px;
  height:34px;
  flex:0 0 auto;
}
#useCasesPage .uc-flow-switcher .uc-switch-title{
  font-size:13px;
  line-height:1.2;
}
#useCasesPage .uc-switch-subicons{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  min-height:28px;
}
#useCasesPage .uc-subdot{
  width:29px;
  height:29px;
  padding:0;
  border-radius:50%;
}
#useCasesPage .uc-subdot svg{
  width:16px;
  height:16px;
  fill:none;
  stroke:#fff;
  stroke-width:1.65;
  stroke-linecap:round;
  stroke-linejoin:round;
}
#useCasesPage .uc-flow-switcher button:not(.active) .uc-subdot{
  filter:grayscale(1) saturate(.15);
  opacity:.55;
}
#useCasesPage .uc-flow-switcher button:hover:not(.active) .uc-subdot{
  opacity:.72;
}
#useCasesPage .uc-subdot::after{
  max-width:220px;
  white-space:normal;
  min-width:120px;
  text-align:center;
}

@media(max-width:1500px){
  #useCasesPage .uc-flow-switcher{
    grid-template-columns:repeat(6,minmax(0,1fr)) !important;
  }
  #useCasesPage .uc-flow-switcher .uc-switch-title{
    font-size:12px;
  }
  #useCasesPage .uc-subdot{
    width:27px;
    height:27px;
  }
  #useCasesPage .uc-subdot svg{
    width:14px;
    height:14px;
  }
}
@media(max-width:1100px){
  #useCasesPage .uc-flow-switcher{
    grid-template-columns:repeat(3,1fr) !important;
  }
  #useCasesPage .uc-flow-switcher button{
    border-right:1px solid rgba(7,22,21,.07) !important;
    border-bottom:1px solid rgba(7,22,21,.07) !important;
  }
  #useCasesPage .uc-flow-switcher button:nth-child(3),
  #useCasesPage .uc-flow-switcher button:nth-child(6){
    border-right:0 !important;
  }
  #useCasesPage .uc-flow-switcher button:nth-last-child(-n+3){
    border-bottom:0 !important;
  }
}
@media(max-width:760px){
  #useCasesPage .uc-flow-switcher{
    grid-template-columns:1fr !important;
  }
  #useCasesPage .uc-flow-switcher button{
    border-right:0 !important;
    border-bottom:1px solid rgba(7,22,21,.07) !important;
    min-height:104px;
  }
  #useCasesPage .uc-flow-switcher button:last-child{
    border-bottom:0 !important;
  }
}

#useCasesPage .uc-flow-switcher > button:first-child .uc-subdot:first-child::after{
  left:-2px;
  transform:translateY(4px);
  text-align:left;
}
#useCasesPage .uc-flow-switcher > button:first-child .uc-subdot:first-child:hover::after{
  transform:translateY(0);
}
#useCasesPage .uc-flow-switcher > button:first-child .uc-subdot:first-child::before{
  left:12px;
  transform:rotate(45deg);
}

#useCasesPage .uc-switch-subicons{
  justify-content:center;
}

#useCasesPage .uc-flow-switcher button:not(.active) .uc-subdot{
  pointer-events:none;
}
#useCasesPage .uc-flow-switcher button.active .uc-subdot{
  pointer-events:auto;
}

#useCasesPage .uc-subdot{
  width:35px;
  height:35px;
  border:1px solid rgba(255,255,255,.28);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.34),
    inset 0 -1px 0 rgba(0,0,0,.08),
    0 8px 18px -12px rgba(0,0,0,.40);
}
#useCasesPage .uc-subdot::marker{display:none}

#useCasesPage .uc-subdot svg{
  width:19px;
  height:19px;
  fill:none;
  stroke:#fff;
  stroke-width:1.8;
  stroke-linecap:round;
  stroke-linejoin:round;
  filter:drop-shadow(0 1px 1px rgba(0,0,0,.14));
}

#useCasesPage .uc-subdot{
  background-clip:padding-box;
}
#useCasesPage .uc-subdot > svg{
  position:relative;
  z-index:2;
}
#useCasesPage .uc-subdot::after{
  font-size:12px;
  line-height:1.35;
  font-weight:700;
  min-width:148px;
  max-width:260px;
  padding:9px 11px;
  border-radius:10px;
}
#useCasesPage .uc-subdot::before{
  bottom:calc(100% + 5px);
}

#useCasesPage .sub-teal{
  background:
    radial-gradient(circle at 30% 24%,rgba(255,255,255,.28),transparent 34%),
    linear-gradient(145deg,#00947f,#48dbc2);
}
#useCasesPage .sub-blue{
  background:
    radial-gradient(circle at 30% 24%,rgba(255,255,255,.28),transparent 34%),
    linear-gradient(145deg,#2469e8,#55b7ff);
}
#useCasesPage .sub-gold{
  background:
    radial-gradient(circle at 30% 24%,rgba(255,255,255,.30),transparent 34%),
    linear-gradient(145deg,#d98a00,#ffc84a);
}
#useCasesPage .sub-purple{
  background:
    radial-gradient(circle at 30% 24%,rgba(255,255,255,.28),transparent 34%),
    linear-gradient(145deg,#7541de,#bd76f2);
}
#useCasesPage .sub-pink{
  background:
    radial-gradient(circle at 30% 24%,rgba(255,255,255,.28),transparent 34%),
    linear-gradient(145deg,#df4f80,#ff8eb3);
}
#useCasesPage .sub-lime{
  background:
    radial-gradient(circle at 30% 24%,rgba(255,255,255,.26),transparent 34%),
    linear-gradient(145deg,#3d8e23,#86d45b);
}
#useCasesPage .sub-cyan{
  background:
    radial-gradient(circle at 30% 24%,rgba(255,255,255,.28),transparent 34%),
    linear-gradient(145deg,#138f9f,#5ddde9);
}
#useCasesPage .sub-red{
  background:
    radial-gradient(circle at 30% 24%,rgba(255,255,255,.28),transparent 34%),
    linear-gradient(145deg,#b94141,#f47979);
}
#useCasesPage .sub-slate{
  background:
    radial-gradient(circle at 30% 24%,rgba(255,255,255,.24),transparent 34%),
    linear-gradient(145deg,#46575e,#83939a);
}

#useCasesPage .uc-flow-switcher button.active .uc-subdot{
  transform:translateY(0);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.36),
    inset 0 -1px 0 rgba(0,0,0,.08),
    0 9px 20px -12px rgba(0,0,0,.42),
    0 0 0 1px rgba(255,255,255,.10);
}
#useCasesPage .uc-flow-switcher button.active .uc-subdot:hover{
  transform:translateY(-2px) scale(1.06);
}

#useCasesPage .uc-flow-switcher button:not(.active) .uc-subdot{
  filter:grayscale(1) saturate(.12) brightness(.98);
  opacity:.58;
}

#useCasesPage .uc-switch-subicons{
  gap:10px;
}

@media(max-width:1500px){
  #useCasesPage .uc-subdot{
    width:33px;
    height:33px;
  }
  #useCasesPage .uc-subdot svg{
    width:18px;
    height:18px;
  }
}

#useCasesPage .uc-flow-switcher{
  overflow:visible !important;
  position:relative;
  z-index:6;
}

#useCasesPage .uc-flow-switcher > button{
  position:relative;
  overflow:visible !important;
  z-index:1;
}
#useCasesPage .uc-flow-switcher > button:hover,
#useCasesPage .uc-flow-switcher > button.active{
  z-index:20;
}

#useCasesPage .uc-subdot::before,
#useCasesPage .uc-subdot::after{
  z-index:100;
}

#useCasesPage .uc-switch-subicons{
  display:none !important;
}
#useCasesPage .uc-demo-copy{
  max-width:860px;
}
#useCasesPage .uc-demo-description{
  margin:12px 0 0;
  color:#6f817c;
  font-size:13px;
  line-height:1.6;
}
#useCasesPage .uc-applied-scenarios{
  display:flex;
  align-items:center;
  gap:12px;
  margin-top:14px;
  flex-wrap:wrap;
}
#useCasesPage .uc-applied-label{
  color:#546761;
  font:700 12px/1.3 Manrope,sans-serif;
}
#useCasesPage .uc-applied-scenario-icons{
  display:flex;
  align-items:center;
  gap:10px;
  flex-wrap:wrap;
}
#useCasesPage .uc-applied-dot{
  position:relative;
  width:36px;
  height:36px;
  border:1px solid rgba(255,255,255,.28);
  cursor:default;
}
#useCasesPage .uc-applied-dot svg{
  width:19px;
  height:19px;
}
#useCasesPage .uc-applied-dot::after{
  z-index:120;
}
#useCasesPage .uc-applied-dot::before{
  z-index:119;
}
#useCasesPage .uc-flow-switcher button{
  min-height:84px;
  justify-content:center;
}
#useCasesPage .uc-flow-switcher .uc-switch-head{
  justify-content:flex-start;
}
@media(max-width:900px){
  #useCasesPage .uc-applied-scenarios{
    align-items:flex-start;
    flex-direction:column;
    gap:8px;
  }
}

#useCasesPage .uc-experience-demo-top{
  display:block;
}
#useCasesPage .uc-demo-copy-inline{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
  width:100%;
  max-width:none;
}
#useCasesPage .uc-demo-copy-inline .uc-demo-title{
  margin:0;
  flex:0 1 auto;
}
#useCasesPage .uc-demo-copy-inline .uc-applied-scenarios{
  margin-top:0;
  margin-left:auto;
  flex:0 1 auto;
  justify-content:flex-end;
}
#useCasesPage .uc-demo-step-indicator{
  display:none !important;
}
#useCasesPage .uc-demo-description{
  display:none !important;
}

@media(max-width:900px){
  #useCasesPage .uc-demo-copy-inline{
    align-items:flex-start;
    flex-direction:column;
    gap:14px;
  }
  #useCasesPage .uc-demo-copy-inline .uc-applied-scenarios{
    margin-left:0;
    justify-content:flex-start;
  }
}

#useCasesPage .uc-experience-demo,
#useCasesPage .uc-experience-demo-top,
#useCasesPage .uc-demo-copy,
#useCasesPage .uc-demo-copy-inline,
#useCasesPage .uc-applied-scenarios,
#useCasesPage .uc-applied-scenario-icons{
  overflow:visible !important;
}

#useCasesPage .uc-demo-copy-inline{
  justify-content:flex-start !important;
  align-items:center;
  gap:18px;
}

#useCasesPage .uc-demo-copy-inline .uc-applied-scenarios{
  margin-left:0 !important;
  margin-right:0 !important;
  justify-content:flex-start !important;
  flex:0 0 auto;
}

#useCasesPage .uc-applied-dot{
  position:relative;
  z-index:2;
}
#useCasesPage .uc-applied-dot:hover{
  z-index:20;
}
#useCasesPage .uc-applied-dot::before,
#useCasesPage .uc-applied-dot::after{
  z-index:120;
}

@media(max-width:900px){
  #useCasesPage .uc-demo-copy-inline{
    align-items:flex-start;
    flex-direction:column;
    gap:12px;
  }
}

#useCasesPage .uc-applied-label{
  font-size:14px !important;
  line-height:1.35 !important;
  font-weight:700 !important;
}
#useCasesPage .uc-applied-dot{
  width:40px !important;
  height:40px !important;
}
#useCasesPage .uc-applied-dot svg{
  width:21px !important;
  height:21px !important;
}
#useCasesPage .uc-applied-scenarios{
  gap:14px !important;
}
#useCasesPage .uc-applied-scenario-icons{
  gap:12px !important;
}
#useCasesPage .uc-applied-dot::after{
  font-size:12.5px !important;
}

#useCasesPage .uc-applied-dot{
  width:42px !important;
  height:42px !important;
}
#useCasesPage .uc-applied-dot svg{
  width:23px !important;
  height:23px !important;
  stroke-width:2.15 !important;
  filter:drop-shadow(0 1px 1px rgba(0,0,0,.18));
}

#useCasesPage .uc-applied-dot{
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.38),
    inset 0 -1px 0 rgba(0,0,0,.08),
    0 10px 18px -12px rgba(0,0,0,.42) !important;
}

#useCasesPage .uc-applied-scenarios{
  gap:16px !important;
}
#useCasesPage .uc-applied-scenario-icons{
  gap:13px !important;
}

#useCasesPage .uc-experience-stage.v2{
  position:relative;
  isolation:isolate;
  overflow:hidden;
  border-radius:28px;
  background:
    radial-gradient(220px 220px at 19% 55%, rgba(18,189,161,.06), transparent 68%),
    radial-gradient(280px 240px at 82% 54%, rgba(18,189,161,.055), transparent 70%),
    linear-gradient(180deg,#f8fcfb 0%,#f5faf8 100%);
  box-shadow:inset 0 0 0 1px rgba(7,22,21,.06);
}
#useCasesPage .uc-experience-stage.v2::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(rgba(7,22,21,.032) 1px, transparent 1px) 0 0/100% 48px,
    linear-gradient(90deg, rgba(7,22,21,.022) 1px, transparent 1px) 0 0/48px 100%;
  opacity:.38;
  pointer-events:none;
}
#useCasesPage .uc-experience-stage.v2 .device-column,
#useCasesPage .uc-experience-stage.v2 .center-column{
  position:relative;
  z-index:2;
  background:transparent !important;
}
#useCasesPage .uc-experience-stage.v2 .device-column{
  padding:22px 20px;
}
#useCasesPage .uc-experience-stage.v2 .center-column{
  padding:22px 10px;
}
#useCasesPage .uc-customer-experience::before,
#useCasesPage .uc-business-experience::before,
#useCasesPage .uc-hashnut-bridge::before{
  content:"";
  position:absolute;
  left:50%;
  top:53%;
  transform:translate(-50%,-50%);
  border-radius:50%;
  pointer-events:none;
}
#useCasesPage .uc-customer-experience::before{
  width:270px;height:270px;
  background:radial-gradient(circle, rgba(11,172,148,.09) 0%, rgba(11,172,148,.035) 38%, transparent 70%);
}
#useCasesPage .uc-business-experience::before{
  width:300px;height:300px;
  background:radial-gradient(circle, rgba(11,172,148,.085) 0%, rgba(11,172,148,.03) 38%, transparent 72%);
}
#useCasesPage .uc-hashnut-bridge::before{
  width:360px;height:360px;
  background:radial-gradient(circle, rgba(39,225,193,.16) 0%, rgba(39,225,193,.06) 34%, transparent 70%);
}

#useCasesPage .uc-stage-transmission{
  position:absolute;
  inset:0;
  z-index:1;
  pointer-events:none;
}
#useCasesPage .uc-stage-link{
  position:absolute;
  top:53.5%;
  height:14px;
}
#useCasesPage .uc-stage-link.link-left{
  left:25.2%;
  width:13.2%;
}
#useCasesPage .uc-stage-link.link-right{
  left:61.7%;
  width:13.2%;
}
#useCasesPage .uc-link-trail{
  position:absolute;
  left:0;right:0;top:50%;height:2px;
  transform:translateY(-50%);
  background:linear-gradient(90deg, rgba(0,140,123,.18), rgba(0,140,123,.28), rgba(0,140,123,.18));
  box-shadow:0 0 0 1px rgba(0,140,123,.03);
}
#useCasesPage .uc-link-trail::after{
  content:"";
  position:absolute;
  left:0;top:0;bottom:0;width:0%;
  background:linear-gradient(90deg, rgba(76,226,201,.0), rgba(76,226,201,.82), rgba(76,226,201,1));
  box-shadow:0 0 16px rgba(62,224,196,.52);
  opacity:0;
}
#useCasesPage .uc-stage-link.playing .uc-link-trail::after{
  animation:ucLinkFill .58s ease forwards;
}
@keyframes ucLinkFill{
  0%{width:0%;opacity:1}
  85%{width:100%;opacity:1}
  100%{width:100%;opacity:0}
}
#useCasesPage .uc-link-dot{
  position:absolute;
  left:0;top:50%;
  width:10px;height:10px;border-radius:50%;
  transform:translate(-50%,-50%);
  background:radial-gradient(circle at 35% 35%, #d9fff8 0 18%, #6ce9d3 35%, #10bca1 72%, #0c8b75 100%);
  box-shadow:0 0 0 4px rgba(59,226,198,.12), 0 0 18px rgba(59,226,198,.62);
  opacity:0;
}
#useCasesPage .uc-stage-link.playing .uc-link-dot{
  animation:ucLinkDot .58s ease forwards;
}
@keyframes ucLinkDot{
  0%{left:0%;opacity:1}
  85%{left:100%;opacity:1}
  100%{left:100%;opacity:0}
}
#useCasesPage .uc-link-end{
  position:absolute;
  top:50%;width:6px;height:6px;border-radius:50%;transform:translateY(-50%);
  background:#0aa790;opacity:.4;
  box-shadow:0 0 0 3px rgba(10,167,144,.08);
}
#useCasesPage .uc-link-end.start{left:-1px}
#useCasesPage .uc-link-end.end{right:-1px}
#useCasesPage .uc-experience-stage.v2.is-transmitting .uc-link-end{opacity:1}

#useCasesPage .uc-stage-label{
  text-align:center;
}
#useCasesPage .uc-stage-label span{
  color:#536762;
}
#useCasesPage .uc-stage-label small{
  color:#7a8c87;
}
#useCasesPage .uc-device-wrap{
  min-height:540px;
}
#useCasesPage .uc-device-phone{
  transform:translateZ(0);
}
#useCasesPage .uc-device-tablet{
  transform:translateZ(0);
}
#useCasesPage .uc-engine-panel{
  min-height:540px;
  position:relative;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.08);
  background:
    radial-gradient(180px 120px at 50% 0%, rgba(44,240,203,.08), transparent 72%),
    rgba(7,24,22,.94);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.03),
    0 28px 60px -48px rgba(0,0,0,.85),
    0 0 0 1px rgba(14,35,32,.36);
}
#useCasesPage .uc-engine-panel::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px) 0 0/100% 44px,
    linear-gradient(90deg, rgba(255,255,255,.02) 1px, transparent 1px) 0 0/44px 100%;
  opacity:.22;
  pointer-events:none;
}
#useCasesPage .uc-engine-panel.is-processing{
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.03),
    0 28px 60px -48px rgba(0,0,0,.85),
    0 0 0 1px rgba(14,35,32,.36),
    0 0 34px rgba(42,223,191,.14);
}
#useCasesPage .uc-engine-panel.is-processing::after{
  content:"";
  position:absolute;
  inset:-30% -12%;
  background:linear-gradient(90deg, transparent 0%, rgba(73,235,210,.10) 42%, rgba(73,235,210,.18) 50%, rgba(73,235,210,.10) 58%, transparent 100%);
  transform:translateX(-45%) skewX(-16deg);
  animation:ucEngineSweep 1.05s ease forwards;
  pointer-events:none;
}
@keyframes ucEngineSweep{
  to{transform:translateX(46%) skewX(-16deg);opacity:0}
}

#useCasesPage .uc-customer-experience,
#useCasesPage .uc-business-experience,
#useCasesPage .uc-hashnut-bridge{
  border:0 !important;
}

@media(max-width:1100px){
  #useCasesPage .uc-stage-transmission{display:none}
  #useCasesPage .uc-experience-stage.v2::before{opacity:.2}
}

#useCasesPage .uc-stage-label{
  display:flex;
  align-items:center;
  justify-content:center;
  min-height:34px;
  margin-bottom:6px;
  text-align:center;
}
#useCasesPage .uc-stage-label span{
  display:block;
  color:#143732 !important;
  font:800 15px/1.2 Manrope,sans-serif !important;
  letter-spacing:.08em;
  text-transform:uppercase;
}
#useCasesPage .uc-hashnut-bridge .uc-stage-label span{
  color:#d8f7f1 !important;
}
#useCasesPage .uc-stage-label small{
  display:none !important;
}

#useCasesPage .uc-hashnut-bridge .uc-stage-label span{
  color:#8ff0dd !important;
  text-shadow:0 0 14px rgba(39,225,193,.18);
}

#useCasesPage .uc-experience-stage.v2{
  border-radius:0 !important;
  box-shadow:none !important;
  border:0 !important;
  overflow:visible !important;
}
#useCasesPage .uc-experience-stage.v2::before{
  border-radius:0 !important;
}

#useCasesPage .uc-customer-experience,
#useCasesPage .uc-hashnut-bridge,
#useCasesPage .uc-business-experience{
  border:0 !important;
  border-radius:0 !important;
  box-shadow:none !important;
}

#useCasesPage .uc-experience-demo{
  border-radius:0 !important;
  border-left:0 !important;
  border-right:0 !important;
  box-shadow:none !important;
}

#useCasesPage .uc-flow-switcher{
  overflow:hidden !important;
  border-radius:16px !important;
}
#useCasesPage .uc-flow-switcher > button{
  overflow:hidden !important;
  border-radius:0 !important;
}
#useCasesPage .uc-flow-switcher > button:first-child{
  border-radius:15px 0 0 15px !important;
}
#useCasesPage .uc-flow-switcher > button:last-child{
  border-radius:0 15px 15px 0 !important;
}

#useCasesPage .uc-flow-switcher{
  border-radius:0 !important;
}
#useCasesPage .uc-flow-switcher > button,
#useCasesPage .uc-flow-switcher > button:first-child,
#useCasesPage .uc-flow-switcher > button:last-child{
  border-radius:0 !important;
}

#useCasesPage .uc-hashnut-bridge .uc-stage-label span{
  color:#143732 !important;
}

#useCasesPage .uc-customer-ui{padding:16px 14px 16px;}
#useCasesPage .uc-phone-topline{display:flex;align-items:center;justify-content:space-between;color:#6f817c;font:700 10px/1 Manrope,sans-serif;letter-spacing:.02em;}
#useCasesPage .uc-phone-topline div{display:flex;align-items:center;gap:5px;}
#useCasesPage .uc-phone-topline i{display:block;width:8px;height:8px;border-radius:50%;background:#d7e3df;}
#useCasesPage .uc-phone-topline i:nth-child(1){background:#9ed4c9;width:18px;height:6px;border-radius:99px;}
#useCasesPage .uc-phone-topline i:nth-child(2){background:#cfdad7;}
#useCasesPage .uc-phone-topline i:nth-child(3){background:#0ca58f;}
#useCasesPage .uc-phone-appbar{margin-top:14px;}
#useCasesPage .uc-phone-appbar span{display:none !important;}
#useCasesPage .uc-phone-appbar b{margin-top:0 !important;color:#10201d;font:800 22px/1.06 Manrope,sans-serif;letter-spacing:-.035em;}
#useCasesPage .uc-phone-subcopy{margin:8px 0 0;color:#6d7f7b;font:500 12px/1.55 Manrope,sans-serif;}
#useCasesPage .uc-scene-hero{position:relative;margin-top:18px;height:148px;border-radius:20px;overflow:hidden;background:#eff6f4;border:1px solid rgba(7,22,21,.05);box-shadow:0 16px 30px -22px rgba(0,0,0,.18);}
#useCasesPage .uc-scene-hero::after{content:'';position:absolute;inset:0;background:linear-gradient(180deg,rgba(255,255,255,0) 52%, rgba(8,21,19,.12) 100%);pointer-events:none;}
#useCasesPage .uc-scene-photo{position:absolute;inset:0;background-position:center;background-size:cover;}
#useCasesPage .uc-scene-overlay{position:absolute;left:14px;right:14px;bottom:12px;display:flex;align-items:flex-end;justify-content:space-between;gap:12px;z-index:2;}
#useCasesPage .uc-scene-overlay strong{display:block;color:#fff;font:760 18px/1.06 Manrope,sans-serif;}
#useCasesPage .uc-scene-overlay span{display:block;margin-top:6px;color:rgba(255,255,255,.8);font:600 11px/1.4 Manrope,sans-serif;max-width:148px;}
#useCasesPage .uc-pill{display:inline-flex;align-items:center;gap:6px;padding:8px 10px;border-radius:999px;background:rgba(255,255,255,.88);backdrop-filter:blur(8px);color:#123530;font:700 10px/1 Manrope,sans-serif;box-shadow:0 10px 18px -14px rgba(0,0,0,.35);}
#useCasesPage .uc-pill::before{content:'';width:7px;height:7px;border-radius:50%;background:#08a48e;box-shadow:0 0 0 3px rgba(8,164,142,.13);}
#useCasesPage .uc-ui-card{margin-top:14px;padding:14px;border:1px solid rgba(7,22,21,.065);border-radius:16px;background:#fff;box-shadow:0 14px 28px -24px rgba(0,0,0,.14);}
#useCasesPage .uc-kv-grid{display:grid;grid-template-columns:1fr auto;gap:10px 12px;align-items:center;}
#useCasesPage .uc-kv-grid span{color:#7b8d88;font:700 10px/1 'Geist Mono',monospace;letter-spacing:.06em;}
#useCasesPage .uc-kv-grid b{color:#15312c;font:760 13px/1.2 Manrope,sans-serif;text-align:right;}
#useCasesPage .uc-mini-chips{display:flex;flex-wrap:wrap;gap:8px;margin-top:12px;}
#useCasesPage .uc-mini-chips span{padding:7px 9px;border-radius:999px;background:#f0f6f4;color:#516661;font:700 10px/1 Manrope,sans-serif;}
#useCasesPage .uc-phone-scene .uc-phone-cta{appearance:none;border:0;display:flex;align-items:center;justify-content:center;gap:8px;border-radius:16px;padding:15px 16px;background:linear-gradient(180deg,#11332d,#08231e);color:#fff;box-shadow:0 18px 28px -20px rgba(8,35,30,.55);font:760 13px/1 Manrope,sans-serif;cursor:pointer;margin-top:auto;}
#useCasesPage .uc-phone-scene .uc-phone-cta::after{content:'→';font-size:15px;line-height:1;opacity:.9;}
#useCasesPage .uc-phone-qr-card{margin-top:18px;padding:16px;border-radius:18px;background:#fff;box-shadow:0 18px 34px -24px rgba(0,0,0,.16);}
#useCasesPage .uc-phone-qr-head{display:flex;align-items:center;justify-content:space-between;gap:12px;margin-bottom:12px;}
#useCasesPage .uc-amount-pill{display:flex;align-items:center;gap:8px;padding:8px 10px;border-radius:999px;background:#f2faf7;color:#0d8d7a;font:800 11px/1 Manrope,sans-serif;}
#useCasesPage .uc-amount-pill i{width:22px;height:22px;border-radius:50%;background:linear-gradient(145deg,#d7fff6,#8cf0dd);display:grid;place-items:center;color:#0e5b4f;font-style:normal;font:800 11px/1 Manrope,sans-serif;}
#useCasesPage .uc-qr-box{width:176px;height:176px;margin:0 auto 14px;border-radius:16px;background:#fff url('../use-cases/payment-qr.svg') center/100% 100% no-repeat;box-shadow:inset 0 0 0 8px #fff, 0 12px 22px -18px rgba(0,0,0,.28);}
#useCasesPage .uc-qr-meta{display:grid;grid-template-columns:1fr auto;gap:8px 10px;align-items:center;margin-top:8px;padding-top:12px;border-top:1px solid rgba(7,22,21,.06);}
#useCasesPage .uc-qr-meta span{color:#83948f;font:700 10px/1 'Geist Mono',monospace;}
#useCasesPage .uc-qr-meta b{color:#18332f;font:720 12px/1.3 Manrope,sans-serif;text-align:right;}
#useCasesPage .uc-phone-note{margin-top:12px;font-size:11px;color:#6b7e79;line-height:1.55;}
#useCasesPage .uc-loader-ring{width:84px;height:84px;border-width:5px;}
#useCasesPage .uc-phone-loading strong{font-size:19px;}
#useCasesPage .uc-phone-loading p{font-size:12px;}
#useCasesPage .uc-processing-card{margin-top:18px;padding:14px;border:1px solid rgba(7,22,21,.06);border-radius:15px;background:#f7fbfa;display:grid;gap:10px;}
#useCasesPage .uc-processing-row{display:flex;align-items:center;justify-content:space-between;gap:10px;}
#useCasesPage .uc-processing-row span{color:#7e908b;font:700 10px/1 'Geist Mono',monospace;}
#useCasesPage .uc-processing-row b{color:#17342f;font:750 12px/1.2 Manrope,sans-serif;}
#useCasesPage .uc-progressbar{height:8px;border-radius:999px;background:#deebe7;overflow:hidden;}
#useCasesPage .uc-progressbar i{display:block;height:100%;width:68%;border-radius:999px;background:linear-gradient(90deg,#0ea58f,#76e4d1);}
#useCasesPage .uc-phone-success-badge{margin-top:48px;background:linear-gradient(180deg,#dff9f2,#c9f3e9);color:#0a8e78;box-shadow:0 18px 28px -20px rgba(10,142,120,.38);}
#useCasesPage .uc-phone-success-title{font-size:22px;}
#useCasesPage .uc-phone-success-copy{font-size:12px;max-width:220px;}
#useCasesPage .uc-phone-success-card{margin-top:18px;border-radius:15px;box-shadow:0 16px 26px -24px rgba(0,0,0,.14);}
#useCasesPage .uc-phone-success-card b{font-size:13px;}
#useCasesPage .uc-plan-stack{gap:12px;margin-top:18px;}
#useCasesPage .uc-plan-stack>div{display:grid;grid-template-columns:auto 1fr auto;align-items:center;gap:10px;padding:15px;border:1px solid rgba(7,22,21,.07);border-radius:14px;background:#f9fcfb;}
#useCasesPage .uc-plan-stack>div::before{content:'';width:36px;height:36px;border-radius:12px;background:linear-gradient(145deg,#ebf2ff,#d0dcff);display:block;}
#useCasesPage .uc-plan-stack>div.active{border-color:rgba(1,182,155,.2);background:#edf9f6;}
#useCasesPage .uc-plan-stack>div.active::before{background:linear-gradient(145deg,#dffff7,#90f0dc);}
#useCasesPage .uc-plan-stack strong{font-size:20px;color:#10201d;font-weight:800;}
#useCasesPage .uc-plan-stack small{display:block;color:#17332e;font:800 13px/1 Manrope,sans-serif;letter-spacing:-.01em;}
#useCasesPage .uc-plan-stack span{font-size:10px;color:#71827d;justify-self:end;}
#useCasesPage .uc-booking-route{margin-top:18px;padding:16px 18px;border-radius:18px;background:linear-gradient(135deg,#0d2f29,#125549);box-shadow:0 18px 30px -24px rgba(0,0,0,.28);}
#useCasesPage .uc-booking-route small{font-size:26px;}
#useCasesPage .uc-booking-pack b{font-size:13px;}
#useCasesPage .uc-usage-meter-card{margin-top:18px;padding:18px;border-radius:18px;background:linear-gradient(145deg,#081b18,#0d3a32);color:#fff;box-shadow:0 18px 30px -24px rgba(0,0,0,.32);}
#useCasesPage .uc-usage-meter-card strong{display:block;margin-top:8px;font:800 32px/1 Manrope,sans-serif;}
#useCasesPage .uc-usage-bars i{height:12px;display:block;border-radius:99px;background:linear-gradient(90deg,#0d9e88,#50ddc7);}
#useCasesPage .uc-usage-stats span{font-size:11px;}
#useCasesPage .uc-wallet-balance-card{margin-top:18px;padding:18px;border-radius:18px;background:linear-gradient(145deg,#0a2722,#0e6658);color:#fff;box-shadow:0 18px 30px -24px rgba(0,0,0,.28);}
#useCasesPage .uc-wallet-balance-card strong{display:block;margin-top:8px;font:800 30px/1 Manrope,sans-serif;}
#useCasesPage .uc-funding-amount-card{margin-top:18px;padding:16px;border:1px solid rgba(7,22,21,.07);border-radius:14px;background:#fff;}
#useCasesPage .uc-funding-amount-card b{display:block;margin-top:10px;color:#10201d;font:760 24px/1 Manrope,sans-serif;}
#useCasesPage .uc-invoice-card-mini{display:grid;gap:10px;margin-top:18px;padding:16px;border:1px solid rgba(7,22,21,.07);border-radius:18px;background:#fff;box-shadow:0 16px 30px -24px rgba(0,0,0,.12);}
#useCasesPage .uc-invoice-card-mini b{font-size:13px;}
#useCasesPage .checkout-photo{background-image:url('../use-cases/checkout-illustration.svg');}
#useCasesPage .subscription-photo{background-image:url('../use-cases/subscription-illustration.svg');}
#useCasesPage .booking-photo{background-image:url('../use-cases/booking-illustration.svg');}
#useCasesPage .usage-photo{background-image:url('../use-cases/usage-illustration.svg');}
#useCasesPage .funding-photo{background-image:url('../use-cases/funding-illustration.svg');}
#useCasesPage .invoice-photo{background-image:url('../use-cases/invoice-illustration.svg');}

#useCasesPage .uc-customer-ui{padding:8px 14px 12px;}
#useCasesPage .uc-phone-topline,
#useCasesPage .uc-phone-appbar,
#useCasesPage .uc-phone-subcopy{display:none !important;}
#useCasesPage .uc-phone-scene{display:flex;flex-direction:column;gap:10px;height:100%;}
#useCasesPage .uc-scene-hero{margin-top:2px;height:124px;border-radius:18px;}
#useCasesPage .uc-scene-overlay{left:10px;right:10px;bottom:10px;justify-content:flex-end;align-items:flex-end;}
#useCasesPage .uc-scene-overlay > div:first-child{display:none !important;}
#useCasesPage .uc-pill{padding:7px 10px;font:700 9px/1 Manrope,sans-serif;gap:5px;box-shadow:0 8px 18px -14px rgba(0,0,0,.28);}
#useCasesPage .uc-pill::before{width:6px;height:6px;box-shadow:0 0 0 2px rgba(8,164,142,.12);}
#useCasesPage .uc-ui-card,
#useCasesPage .uc-phone-qr-card,
#useCasesPage .uc-processing-card,
#useCasesPage .uc-funding-amount-card,
#useCasesPage .uc-invoice-card-mini{border-radius:15px;}
#useCasesPage .uc-ui-card{margin-top:4px;padding:12px 13px;box-shadow:0 10px 24px -22px rgba(0,0,0,.16);}
#useCasesPage .uc-kv-grid{gap:8px 10px;}
#useCasesPage .uc-kv-grid span{font:700 9px/1 'Geist Mono',monospace;letter-spacing:.08em;color:#8a9a96;}
#useCasesPage .uc-kv-grid b{font:740 11px/1.15 Manrope,sans-serif;color:#1a3430;}
#useCasesPage .uc-mini-chips{margin-top:2px;gap:6px;}
#useCasesPage .uc-mini-chips span{padding:6px 9px;font:700 9px/1 Manrope,sans-serif;}
#useCasesPage .uc-phone-scene .uc-phone-cta{padding:12px 14px;border-radius:14px;font:760 12px/1 Manrope,sans-serif;margin-top:auto;}
#useCasesPage .uc-phone-note{margin-top:2px;font-size:10px;line-height:1.45;color:#788884;}
#useCasesPage .uc-phone-qr-card{margin-top:2px;padding:14px;}
#useCasesPage .uc-phone-qr-head{margin-bottom:10px;}
#useCasesPage .uc-amount-pill{padding:7px 10px;font:800 10px/1 Manrope,sans-serif;}
#useCasesPage .uc-amount-pill i{width:20px;height:20px;font:800 10px/1 Manrope,sans-serif;}
#useCasesPage .uc-qr-box{width:152px;height:152px;margin:0 auto 10px;border-radius:14px;box-shadow:inset 0 0 0 7px #fff, 0 10px 18px -16px rgba(0,0,0,.26);}
#useCasesPage .uc-qr-meta span{font:700 9px/1 'Geist Mono',monospace;color:#8a9a96;}
#useCasesPage .uc-qr-meta b{font:720 11px/1.25 Manrope,sans-serif;}
#useCasesPage .uc-loader-ring{width:74px;height:74px;border-width:4px;}
#useCasesPage .uc-phone-loading strong{font-size:16px;}
#useCasesPage .uc-phone-loading p{font-size:10px;line-height:1.5;max-width:210px;margin-inline:auto;}
#useCasesPage .uc-processing-card{margin-top:2px;padding:12px;}
#useCasesPage .uc-processing-row span{font:700 9px/1 'Geist Mono',monospace;}
#useCasesPage .uc-processing-row b{font:750 11px/1.2 Manrope,sans-serif;}
#useCasesPage .uc-phone-success-badge{margin-top:26px;}
#useCasesPage .uc-phone-success-title{font-size:18px;line-height:1.05;}
#useCasesPage .uc-phone-success-copy{font-size:11px;line-height:1.5;max-width:220px;}
#useCasesPage .uc-phone-success-card{margin-top:8px;}
#useCasesPage .uc-phone-success-card b{font-size:12px;}
#useCasesPage .uc-plan-stack{gap:8px;margin-top:4px;}
#useCasesPage .uc-plan-stack>div{padding:12px 13px;border-radius:14px;gap:9px;}
#useCasesPage .uc-plan-stack>div::before{width:30px;height:30px;border-radius:10px;}
#useCasesPage .uc-plan-stack small{font-size:12px;}
#useCasesPage .uc-plan-stack strong{font-size:16px;line-height:1;}
#useCasesPage .uc-plan-stack span{font-size:9px;}
#useCasesPage .uc-booking-route{margin-top:4px;padding:14px 16px;border-radius:16px;}
#useCasesPage .uc-booking-route small{font-size:18px;}
#useCasesPage .uc-booking-pack b{font-size:11px;}
#useCasesPage .uc-booking-pack span{font-size:9px;}
#useCasesPage .uc-usage-meter-card,
#useCasesPage .uc-wallet-balance-card{margin-top:4px;padding:16px;border-radius:16px;}
#useCasesPage .uc-usage-meter-card small,
#useCasesPage .uc-wallet-balance-card small{font-size:9px;letter-spacing:.08em;}
#useCasesPage .uc-usage-meter-card strong{font-size:26px;}
#useCasesPage .uc-wallet-balance-card strong{font-size:22px;line-height:1.05;}
#useCasesPage .uc-usage-bars{margin-top:4px;}
#useCasesPage .uc-usage-bars i{height:10px;margin-top:6px;}
#useCasesPage .uc-usage-stats span{font-size:10px;}
#useCasesPage .uc-funding-amount-card{margin-top:4px;padding:12px 14px;}
#useCasesPage .uc-funding-amount-card span{font-size:9px;color:#859690;letter-spacing:.08em;}
#useCasesPage .uc-funding-amount-card b{font-size:18px;margin-top:8px;}
#useCasesPage .uc-invoice-card-mini{margin-top:4px;padding:13px;gap:8px;}
#useCasesPage .uc-invoice-card-mini span{font-size:9px;color:#859690;letter-spacing:.08em;}
#useCasesPage .uc-invoice-card-mini b{font-size:11px;line-height:1.3;}

#useCasesPage .uc-device-statusbar{color:#758883;}
#useCasesPage .uc-device-statusbar>div{gap:5px;}
#useCasesPage .uc-bar-signal{width:18px;height:6px;border-radius:999px;background:#9ed4c9;}
#useCasesPage .uc-bar-wifi{width:8px;height:8px;border:none;transform:none;border-radius:50%;background:#d4ddda;}
#useCasesPage .uc-bar-battery{width:8px;height:8px;border:none;border-radius:50%;background:#17aa93;}
#useCasesPage .uc-bar-battery::after{display:none;}

#useCasesPage .checkout-photo{background-image:url("../use-cases/checkout-product.webp");background-size:cover;background-position:center;background-color:#f3f4f2;}
#useCasesPage .uc-phone-scene.checkout .uc-scene-hero{height:154px;background:#f3f4f2;}
#useCasesPage .uc-phone-scene.checkout .uc-scene-overlay,
#useCasesPage .uc-phone-scene.checkout .uc-mini-chips{display:none !important;}
#useCasesPage .uc-phone-scene.checkout .uc-ui-card{margin-top:8px;}
#useCasesPage .uc-phone-scene.checkout .uc-phone-cta{margin-top:8px;}

#useCasesPage .uc-customer-ui .demo-phone{
  position:relative;
  width:196px;
  height:400px;
  margin:0 auto;
  padding:7px;
  border-radius:35px;
  background:
    linear-gradient(130deg,rgba(255,255,255,.26),rgba(255,255,255,.055) 20%,transparent 44%),
    linear-gradient(180deg,#354542 0%,#192724 46%,#0a1715 100%);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.22),
    inset 0 -1px 0 rgba(255,255,255,.04),
    inset 1px 0 0 rgba(255,255,255,.07),
    0 32px 64px -44px rgba(0,0,0,.98),
    0 0 0 1px rgba(2,11,10,.92),
    0 0 0 2px rgba(172,220,211,.065);
}
#useCasesPage .uc-customer-ui .demo-phone::before{
  content:"";
  position:absolute;
  inset:4px;
  border:1px solid rgba(255,255,255,.05);
  border-radius:32px;
  pointer-events:none;
}
#useCasesPage .uc-customer-ui .demo-phone-side-left,#useCasesPage .uc-customer-ui .demo-phone-side-right{
  position:absolute;
  z-index:8;
  pointer-events:none;
}
#useCasesPage .uc-customer-ui .demo-phone-side-left{left:-3px;top:76px;width:3px;height:106px}
#useCasesPage .uc-customer-ui .demo-phone-side-left i,#useCasesPage .uc-customer-ui .demo-phone-side-right i{
  position:absolute;
  display:block;
  width:3px;
  background:linear-gradient(180deg,#485754,#182522);
  box-shadow:inset 1px 0 0 rgba(255,255,255,.10);
}
#useCasesPage .uc-customer-ui .demo-phone-side-left i{border-radius:2px 0 0 2px}
#useCasesPage .uc-customer-ui .demo-phone-side-left .mute{top:0;height:19px}
#useCasesPage .uc-customer-ui .demo-phone-side-left .vol-up{top:31px;height:34px}
#useCasesPage .uc-customer-ui .demo-phone-side-left .vol-down{top:70px;height:34px}
#useCasesPage .uc-customer-ui .demo-phone-side-right{right:-3px;top:116px;width:3px;height:58px}
#useCasesPage .uc-customer-ui .demo-phone-side-right i{
  right:0;
  height:58px;
  border-radius:0 2px 2px 0;
}

#useCasesPage .uc-customer-ui .demo-phone-screen{
  position:relative;
  width:100%;
  height:100%;
  overflow:hidden;
  border-radius:29px;
  background:#f7fbfa;
  box-shadow:inset 0 0 0 1px rgba(255,255,255,.12);
}
#useCasesPage .uc-customer-ui .demo-phone-island{
  position:absolute;
  z-index:7;
  left:50%;
  top:0;
  width:78px;
  height:21px;
  transform:translateX(-50%);
  border-radius:0 0 14px 14px;
  background:
    radial-gradient(circle at 76% 46%,#263b37 0 2px,#0a1513 2.5px 4.5px,transparent 5px),
    linear-gradient(180deg,#050d0c,#0a1513);
}
#useCasesPage .uc-customer-ui .demo-phone-statusbar{
  position:absolute;
  z-index:6;
  top:8px;
  left:16px;
  right:16px;
  height:15px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  color:#34413e;
  font:700 6.3px/1 Manrope,sans-serif;
  pointer-events:none;
}
#useCasesPage .uc-customer-ui .demo-phone-statusbar>div{
  display:flex;
  align-items:center;
  gap:3px;
}
#useCasesPage .uc-customer-ui .demo-signal{
  width:8px;height:5px;
  background:linear-gradient(90deg,#34413e 0 18%,transparent 18% 27%,#34413e 27% 50%,transparent 50% 59%,#34413e 59% 82%,transparent 82%);
  clip-path:polygon(0 100%,0 72%,22% 72%,22% 48%,48% 48%,48% 24%,74% 24%,74% 0,100% 0,100% 100%);
}
#useCasesPage .uc-customer-ui .demo-wifi{
  width:7px;height:5px;
  border:1px solid #34413e;
  border-left-color:transparent;
  border-right-color:transparent;
  border-bottom-color:transparent;
  border-radius:50% 50% 0 0;
  transform:translateY(2px);
}
#useCasesPage .uc-customer-ui .demo-battery{
  position:relative;
  width:10px;height:5px;
  border:1px solid #34413e;
  border-radius:1.5px;
}
#useCasesPage .uc-customer-ui .demo-battery::before{
  content:"";
  position:absolute;
  inset:1px;
  border-radius:.5px;
  background:#34413e;
}
#useCasesPage .uc-customer-ui .demo-battery::after{
  content:"";
  position:absolute;
  right:-2.4px;
  top:1px;
  width:1.3px;
  height:2px;
  border-radius:0 1px 1px 0;
  background:#34413e;
}
#useCasesPage .uc-customer-ui .demo-home-indicator{
  position:absolute;
  z-index:6;
  left:50%;
  bottom:6px;
  width:70px;
  height:3px;
  transform:translateX(-50%);
  border-radius:999px;
  background:rgba(7,22,21,.66);
}

#useCasesPage .uc-customer-ui .demo-screen{
  position:absolute;
  inset:0;
  padding:34px 15px 20px;
  opacity:0;
  transform:translateY(8px) scale(.994);
  pointer-events:none;
  transition:opacity .45s var(--ease),transform .45s var(--ease);
}
#useCasesPage .uc-customer-ui .demo-screen.active{
  opacity:1;
  transform:none;
  pointer-events:auto;
}

#useCasesPage .uc-customer-ui .demo-storebar{
  display:flex;
  justify-content:space-between;
  color:#70837d;
  font:700 5.6px/1 "Geist Mono",monospace;
  letter-spacing:.11em;
}
#useCasesPage .uc-customer-ui .demo-storebar small{
  color:#8d9c98;
  font:600 6.7px/1 Manrope,sans-serif;
  letter-spacing:0;
}

#useCasesPage .uc-customer-ui .demo-product-card{
  display:grid;
  grid-template-columns:48px 1fr;
  gap:8px 10px;
  margin-top:14px;
  padding:10px;
  border:1px solid var(--line);
  border-radius:12px;
  background:#fff;
}
#useCasesPage .uc-customer-ui .demo-product-art{
  position:relative;
  grid-row:1 / span 2;
  width:48px;
  height:48px;
  border-radius:12px;
  background:linear-gradient(145deg,#152522,#071513);
}
#useCasesPage .uc-customer-ui .demo-product-art .hp-band{
  position:absolute;
  left:12px;top:9px;
  width:24px;height:21px;
  border:3px solid #f4faf8;
  border-bottom:0;
  border-radius:15px 15px 0 0;
}
#useCasesPage .uc-customer-ui .demo-product-art .hp-left,#useCasesPage .uc-customer-ui .demo-product-art .hp-right{
  position:absolute;
  top:26px;
  width:7px;
  height:14px;
  border-radius:4px;
  background:#f4faf8;
}
#useCasesPage .uc-customer-ui .demo-product-art .hp-left{left:9px}
#useCasesPage .uc-customer-ui .demo-product-art .hp-right{right:9px}
#useCasesPage .uc-customer-ui .demo-product-copy strong{
  display:block;
  color:#0c1917;
  font:760 9.8px/1.14 Manrope,sans-serif;
  letter-spacing:-.018em;
}
#useCasesPage .uc-customer-ui .demo-product-card>b{
  grid-column:2;
  margin-top:-2px;
  color:#0b1917;
  font:770 11.4px/1 Manrope,sans-serif;
}

#useCasesPage .uc-customer-ui .demo-methods{
  margin-top:12px;
}
#useCasesPage .uc-customer-ui .demo-methods-label{
  display:none;
}
#useCasesPage .uc-customer-ui .demo-method{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:8px;
  padding:8px 9px;
  border:1px solid rgba(12,25,23,.08);
  border-radius:10px;
  background:#fbfdfc;
}
#useCasesPage .uc-customer-ui .demo-method + .demo-method{
  margin-top:7px;
}
#useCasesPage .uc-customer-ui .demo-method-main{
  display:flex;
  align-items:center;
  gap:8px;
  min-width:0;
}
#useCasesPage .uc-customer-ui .demo-method-icon{
  display:grid;
  place-items:center;
  width:24px;
  height:24px;
  border-radius:8px;
  background:#edf4f2;
  color:#5a6f69;
  flex:0 0 auto;
}
#useCasesPage .uc-customer-ui .demo-method-icon.card{
  position:relative;
}
#useCasesPage .uc-customer-ui .demo-method-icon.card::before,#useCasesPage .uc-customer-ui .demo-method-icon.card::after{
  content:"";
  position:absolute;
  left:5px;
  right:5px;
  border-radius:999px;
}
#useCasesPage .uc-customer-ui .demo-method-icon.card::before{
  top:7px;
  height:4px;
  background:#7f938d;
}
#useCasesPage .uc-customer-ui .demo-method-icon.card::after{
  bottom:7px;
  height:2px;
  background:#b7c7c2;
}
#useCasesPage .uc-customer-ui .demo-method-icon.acorn svg{
  width:12px;
  height:15px;
  display:block;
}
#useCasesPage .uc-customer-ui .demo-method-copy strong{
  display:block;
  color:#10201d;
  font:750 7.6px/1.18 Manrope,sans-serif;
  letter-spacing:-.012em;
}
#useCasesPage .uc-customer-ui .demo-method-copy small{
  display:block;
  margin-top:2px;
  color:#7f928c;
  font-size:6px;
  line-height:1.24;
}
#useCasesPage .uc-customer-ui .demo-method-radio{
  width:12px;
  height:12px;
  border-radius:50%;
  border:1px solid rgba(12,25,23,.14);
  background:#fff;
  flex:0 0 auto;
}
#useCasesPage .uc-customer-ui .demo-method.selected{
  border-color:rgba(0,124,109,.22);
  background:linear-gradient(180deg,#f7fffc,#eefaf6);
  box-shadow:0 8px 18px -16px rgba(0,124,109,.32);
}
#useCasesPage .uc-customer-ui .demo-method.selected .demo-method-icon{
  background:linear-gradient(135deg,#ddfaf4,#c9f4ec);
}
#useCasesPage .uc-customer-ui .demo-method.selected .demo-method-copy strong{
  color:#006f61;
}
#useCasesPage .uc-customer-ui .demo-method.selected .demo-method-radio{
  position:relative;
  border-color:rgba(0,124,109,.36);
  background:#ecfaf6;
}
#useCasesPage .uc-customer-ui .demo-method.selected .demo-method-radio::after{
  content:"";
  position:absolute;
  inset:2px;
  border-radius:50%;
  background:var(--teal);
}

#useCasesPage .uc-customer-ui .demo-total{
  display:flex;
  justify-content:space-between;
  margin-top:10px;
  color:#71837d;
  font-size:7.1px;
}
#useCasesPage .uc-customer-ui .demo-total strong{
  color:#0b1917;
  font-size:9.8px;
}
#useCasesPage .uc-customer-ui .demo-action-primary,#useCasesPage .uc-customer-ui .demo-action-secondary{
  width:100%;
  min-height:36px;
  margin-top:13px;
  border:0;
  border-radius:9px;
  cursor:pointer;
  font-size:9.4px;
  font-weight:780;
  transition:transform .2s ease,box-shadow .2s ease;
}
#useCasesPage .uc-customer-ui .demo-action-primary{
  background:linear-gradient(90deg,var(--action),var(--teal),var(--aqua));
  color:#fff;
  box-shadow:0 16px 26px -20px rgba(0,124,109,.48);
}
#useCasesPage .uc-customer-ui .demo-action-secondary{
  min-height:34px;
  margin-top:11px;
  border:1px solid rgba(0,124,109,.16);
  background:#eaf8f4;
  color:#006f61;
}
#useCasesPage .uc-customer-ui .demo-action-primary:hover,#useCasesPage .uc-customer-ui .demo-action-secondary:hover{
  transform:translateY(-1px);
}

#useCasesPage .uc-customer-ui .demo-pay-head{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
}
#useCasesPage .uc-customer-ui .demo-pay-head span{
  display:none;
}
#useCasesPage .uc-customer-ui .demo-pay-head strong{
  display:block;
  color:#0b1917;
  font:780 22px/1 Manrope,sans-serif;
  letter-spacing:-.035em;
}
#useCasesPage .uc-customer-ui .demo-pay-head strong em{
  margin-left:6px;
  color:var(--action);
  font:800 10.5px/1 Manrope,sans-serif;
  font-style:normal;
  letter-spacing:-.01em;
  vertical-align:3px;
}
#useCasesPage .uc-customer-ui .demo-pay-head>small{
  display:none;
}
#useCasesPage .uc-customer-ui .demo-qr-meta{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:7px;
  margin-top:10px;
}
#useCasesPage .uc-customer-ui .demo-qr-meta > div{
  padding:7px 8px;
  border:1px solid var(--line);
  border-radius:9px;
  background:#fff;
}
#useCasesPage .uc-customer-ui .demo-qr-meta span{
  display:block;
  color:#83958f;
  font:700 4.6px/1 "Geist Mono",monospace;
  letter-spacing:.10em;
}
#useCasesPage .uc-customer-ui .demo-qr-meta strong{
  display:block;
  margin-top:4px;
  color:#13211e;
  font:740 7.3px/1.18 Manrope,sans-serif;
}
#useCasesPage .uc-customer-ui .demo-qr{
  position:relative;
  width:132px;
  height:132px;
  margin:16px auto 12px;
  border-radius:14px;
  background:#fff;
  box-shadow:inset 0 0 0 1px rgba(7,22,21,.06), 0 12px 24px -20px rgba(7,22,21,.18);
  overflow:hidden;
  display:flex;
  align-items:center;
  justify-content:center;
}
#useCasesPage .uc-customer-ui .demo-qr img{
  width:114px;
  height:114px;
  display:block;
}
#useCasesPage .uc-customer-ui .demo-address{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  padding:8px 9px;
  border:1px solid var(--line);
  border-radius:8px;
  background:#fff;
}
#useCasesPage .uc-customer-ui .demo-address div{min-width:0}
#useCasesPage .uc-customer-ui .demo-address span{
  display:block;
  color:#84948f;
  font:700 4.5px/1 "Geist Mono",monospace;
  letter-spacing:.10em;
}
#useCasesPage .uc-customer-ui .demo-address strong{
  display:block;
  margin-top:4px;
  color:#172722;
  font:700 7.3px/1 "Geist Mono",monospace;
}
#useCasesPage .uc-customer-ui .demo-address em{
  padding:5px 6px;
  border-radius:999px;
  background:#edf7f4;
  color:#007c6d;
  font:700 4.8px/1 "Geist Mono",monospace;
  font-style:normal;
  letter-spacing:.08em;
}
#useCasesPage .uc-customer-ui .demo-wallet-note{
  display:none;
}

#useCasesPage .uc-customer-ui .demo-state-panel{
  max-width:188px;
  margin:23px auto 0;
  text-align:center;
}
#useCasesPage .uc-customer-ui .demo-confirm-ring,#useCasesPage .uc-customer-ui .demo-complete-mark{
  position:relative;
  width:64px;
  height:64px;
  margin:0 auto 15px;
}
#useCasesPage .uc-customer-ui .demo-confirm-ring svg{
  position:relative;
  z-index:2;
  width:100%;
  height:100%;
  animation:demoRing 1.9s linear infinite;
}
#useCasesPage .uc-customer-ui .demo-confirm-ring circle{
  fill:none;
  stroke:#deebe7;
  stroke-width:4.5;
}
#useCasesPage .uc-customer-ui .demo-confirm-ring path{
  fill:none;
  stroke:var(--teal);
  stroke-width:4.5;
  stroke-linecap:round;
}
#useCasesPage .uc-customer-ui .demo-confirm-ring::before{
  content:"";
  position:absolute;
  z-index:1;
  inset:14px;
  border-radius:50%;
  background:linear-gradient(145deg,#effbf8,#e4f6f1);
  box-shadow:inset 0 0 0 1px rgba(1,182,155,.08);
}
#useCasesPage .uc-customer-ui .demo-confirm-ring::after{
  content:"";
  position:absolute;
  z-index:3;
  left:50%;
  top:50%;
  width:8px;
  height:8px;
  transform:translate(-50%,-50%);
  border-radius:50%;
  background:var(--teal);
  box-shadow:0 0 0 7px rgba(1,182,155,.10),0 0 18px rgba(1,182,155,.24);
  animation:demoPulse 1.8s ease-in-out infinite;
}
@keyframes demoRing{to{transform:rotate(360deg)}}
@keyframes demoPulse{50%{box-shadow:0 0 0 10px rgba(1,182,155,.05),0 0 21px rgba(1,182,155,.30)}}
#useCasesPage .uc-customer-ui .demo-state-title{
  display:block;
  margin:0;
  color:#0d1b18;
  font:770 16px/1.12 Manrope,sans-serif;
  letter-spacing:-.03em;
}
#useCasesPage .uc-customer-ui .demo-state-card,#useCasesPage .uc-customer-ui .demo-result-card{
  margin-top:17px;
  overflow:hidden;
  border:1px solid rgba(13,32,28,.08);
  border-radius:12px;
  background:#fff;
  box-shadow:0 14px 28px -26px rgba(7,22,21,.30);
}
#useCasesPage .uc-customer-ui .demo-state-row{
  min-height:43px;
  display:grid;
  grid-template-columns:18px minmax(0,1fr) auto;
  align-items:center;
  gap:8px;
  padding:8px 10px;
  text-align:left;
}
#useCasesPage .uc-customer-ui .demo-state-row + .demo-state-row{border-top:1px solid rgba(13,32,28,.065)}
#useCasesPage .uc-customer-ui .demo-state-row i{
  width:17px;
  height:17px;
  display:grid;
  place-items:center;
  border-radius:50%;
  font-style:normal;
  font-size:7px;
}
#useCasesPage .uc-customer-ui .demo-state-row span{
  color:#354b45;
  font:690 7.6px/1.3 Manrope,sans-serif;
}
#useCasesPage .uc-customer-ui .demo-state-row b{
  font:700 5.4px/1 "Geist Mono",monospace;
  letter-spacing:.07em;
  text-transform:uppercase;
}
#useCasesPage .uc-customer-ui .demo-state-row.done i{
  background:#e5f8f3;
  color:#007c6d;
  box-shadow:inset 0 0 0 1px rgba(1,182,155,.12);
}
#useCasesPage .uc-customer-ui .demo-state-row.done b{color:#78918a}
#useCasesPage .uc-customer-ui .demo-state-row.current{background:linear-gradient(90deg,#f7fffc,#effbf7)}
#useCasesPage .uc-customer-ui .demo-state-row.current i{
  position:relative;
  background:#e5f8f3;
  box-shadow:inset 0 0 0 1px rgba(1,182,155,.16);
}
#useCasesPage .uc-customer-ui .demo-state-row.current i::before{
  content:"";
  width:6px;
  height:6px;
  border-radius:50%;
  background:var(--teal);
  box-shadow:0 0 0 4px rgba(1,182,155,.10);
  animation:demoStatusPulse 1.7s ease-in-out infinite;
}
#useCasesPage .uc-customer-ui .demo-state-row.current b{color:#007c6d}
@keyframes demoStatusPulse{50%{box-shadow:0 0 0 7px rgba(1,182,155,.035)}}
#useCasesPage .uc-customer-ui .demo-complete-mark{
  display:grid;
  place-items:center;
  border-radius:50%;
  background:linear-gradient(145deg,#02a98f,var(--aqua));
  color:#fff;
  font-size:25px;
  font-weight:800;
  box-shadow:0 18px 34px -22px rgba(1,182,155,.48);
}
#useCasesPage .uc-customer-ui .demo-complete-mark::before,#useCasesPage .uc-customer-ui .demo-complete-mark::after{
  content:"";
  position:absolute;
  border-radius:50%;
  pointer-events:none;
}
#useCasesPage .uc-customer-ui .demo-complete-mark::before{inset:-6px;border:1px solid rgba(1,182,155,.18)}
#useCasesPage .uc-customer-ui .demo-complete-mark::after{inset:-12px;border:1px solid rgba(1,182,155,.07)}
#useCasesPage .uc-customer-ui .demo-result-card{padding:2px 0}
#useCasesPage .uc-customer-ui .demo-result-row{
  min-height:37px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding:8px 10px;
  text-align:left;
}
#useCasesPage .uc-customer-ui .demo-result-row + .demo-result-row{border-top:1px solid rgba(13,32,28,.06)}
#useCasesPage .uc-customer-ui .demo-result-row span{
  color:#83958f;
  font:700 5px/1 "Geist Mono",monospace;
  letter-spacing:.10em;
}
#useCasesPage .uc-customer-ui .demo-result-row strong{
  max-width:110px;
  color:#172722;
  text-align:right;
  font:760 7.8px/1.18 Manrope,sans-serif;
}
#useCasesPage .uc-customer-ui .demo-result-row.highlight{background:linear-gradient(90deg,#f4fcfa,#ebf9f5)}
#useCasesPage .uc-customer-ui .demo-result-row.highlight strong{color:#007c6d}

#useCasesPage .uc-customer-ui .demo-premium-caption{
  align-self:center;
}
#useCasesPage .uc-customer-ui .demo-callout{
  position:relative;
  max-width:232px;
  padding:15px 16px 16px;
  border:1px solid rgba(162,229,216,.12);
  border-radius:14px;
  background:
    linear-gradient(145deg,rgba(255,255,255,.035),rgba(255,255,255,.012)),
    rgba(7,25,23,.72);
  box-shadow:
    0 22px 38px -30px rgba(0,0,0,.92),
    inset 0 1px 0 rgba(255,255,255,.025);
  backdrop-filter:blur(10px);
}
#useCasesPage .uc-customer-ui .demo-callout::before{
  content:"";
  position:absolute;
  left:-7px;
  top:50%;
  width:13px;
  height:13px;
  transform:translateY(-50%) rotate(45deg);
  border-left:1px solid rgba(162,229,216,.12);
  border-bottom:1px solid rgba(162,229,216,.12);
  background:rgba(7,25,23,.88);
}
#useCasesPage .uc-customer-ui .demo-callout-connector{
  position:absolute;
  left:-34px;
  top:50%;
  width:27px;
  height:1px;
  transform:translateY(-50%);
  background:linear-gradient(90deg,rgba(39,225,193,.34),rgba(39,225,193,.08));
}
#useCasesPage .uc-customer-ui .demo-callout-connector::before{
  content:"";
  position:absolute;
  left:-3px;
  top:-2px;
  width:5px;
  height:5px;
  border-radius:50%;
  background:var(--aqua);
  box-shadow:0 0 10px rgba(39,225,193,.45);
}
#useCasesPage .uc-customer-ui .demo-caption-title,#useCasesPage .uc-customer-ui .demo-caption-note{
  position:relative;
  display:block;
  padding-left:14px;
  font:500 15px/1.32 Manrope,sans-serif;
  letter-spacing:-.025em;
}
#useCasesPage .uc-customer-ui .demo-caption-title{
  color:#f6fffc;
}
#useCasesPage .uc-customer-ui .demo-caption-note{
  margin:9px 0 0;
  color:#8ff0da;
  font-weight:500;
}
#useCasesPage .uc-customer-ui .demo-caption-title::before,#useCasesPage .uc-customer-ui .demo-caption-note::before{
  content:"";
  position:absolute;
  left:0;
  top:.42em;
  width:6px;
  height:6px;
  border-radius:50%;
}
#useCasesPage .uc-customer-ui .demo-caption-title::before{
  background:#f6fffc;
  opacity:.92;
}
#useCasesPage .uc-customer-ui .demo-caption-note::before{
  background:var(--aqua);
  box-shadow:0 0 10px rgba(39,225,193,.28);
}
@keyframes premiumDemoProgress{to{transform:scaleX(1)}}

@media (min-width:981px) and (max-height:780px){
  #useCasesPage .uc-customer-ui .demo-premium-shell{
    min-height:484px;
    padding:14px 15px 12px;
  }
  #useCasesPage .uc-customer-ui .demo-premium-tabs{margin-top:11px}
  #useCasesPage .uc-customer-ui .demo-premium-stage{
    height:377px;
    grid-template-columns:194px minmax(0,1fr);
    gap:19px;
    margin-top:9px;
  }
  #useCasesPage .uc-customer-ui .demo-phone{
    width:178px;
    height:364px;
  }
  #useCasesPage .uc-customer-ui .demo-screen{
    padding:31px 13px 18px;
  }
  #useCasesPage .uc-customer-ui .demo-product-card{
    grid-template-columns:44px 1fr;
    margin-top:12px;
    padding:9px;
  }
  #useCasesPage .uc-customer-ui .demo-product-art{
    width:44px;
    height:44px;
  }
  #useCasesPage .uc-customer-ui .demo-qr{
    width:124px;
    height:124px;
    margin:14px auto 10px;
  }
  #useCasesPage .uc-customer-ui .demo-confirm-ring{
    margin-top:31px;
  }
  #useCasesPage .uc-customer-ui .demo-complete-mark{
    margin-top:30px;
  }
}

@media (max-width:1180px){
  #useCasesPage .uc-customer-ui .product-calibration-visual{max-width:500px}
  #useCasesPage .uc-customer-ui .demo-premium-stage{
    grid-template-columns:198px minmax(0,1fr);
    gap:18px;
  }
  #useCasesPage .uc-customer-ui .demo-phone{
    width:184px;
    height:378px;
  }
}

@media (max-width:980px){
  #useCasesPage .uc-customer-ui .product-calibration-visual{
    max-width:600px;
    justify-self:center;
  }
  #useCasesPage .uc-customer-ui .demo-premium-shell{
    min-height:auto;
  }
  #useCasesPage .uc-customer-ui .demo-premium-stage{
    height:auto;
    grid-template-columns:208px 1fr;
    min-height:420px;
  }
}

@media (max-width:640px){
  #useCasesPage .uc-customer-ui .demo-premium-shell{
    padding:13px;
    border-radius:19px;
  }
  #useCasesPage .uc-customer-ui .demo-premium-tabs{gap:4px}
  #useCasesPage .uc-customer-ui .demo-premium-tab{
    min-height:32px;
    padding:0 8px;
  }
  #useCasesPage .uc-customer-ui .demo-premium-tab span{font-size:9.4px}
  #useCasesPage .uc-customer-ui .demo-premium-stage{
    grid-template-columns:1fr;
    gap:17px;
    min-height:0;
    padding-top:8px;
  }
  #useCasesPage .uc-customer-ui .demo-phone{
    width:196px;
    height:400px;
  }
  #useCasesPage .uc-customer-ui .demo-premium-caption{
    max-width:300px;
    margin:0 auto;
    text-align:left;
  }
  #useCasesPage .uc-customer-ui .demo-callout{
    padding:14px 15px;
  }
  #useCasesPage .uc-customer-ui .demo-callout::before,#useCasesPage .uc-customer-ui .demo-callout-connector{
    display:none;
  }
}

@media (prefers-reduced-motion:reduce){
  #useCasesPage .uc-customer-ui .demo-screen{transition:none!important}
  #useCasesPage .uc-customer-ui .demo-confirm-ring svg,#useCasesPage .uc-customer-ui .demo-confirm-ring::after,#useCasesPage .uc-customer-ui .demo-state-row.current i::before{animation:none!important}
  #useCasesPage .uc-customer-ui .demo-premium-tab i{
    animation:none!important;
    transform:scaleX(1)!important;
  }
}

.site-page[hidden]{display:none!important}
#productPage{min-height:100vh}
body[data-site-page="product"] .desktop-nav a[data-nav="product"]{color:#071615}
body[data-site-page="product"] .desktop-nav a[data-nav="product"]::after{opacity:1;transform:scaleX(1)}
body[data-site-page="product"] .mobile-links a[data-page-link="product"]{color:#071615}

#useCasesPage .uc-customer-ui .demo-phone{width:196px;height:400px;}
#useCasesPage .uc-customer-ui .demo-phone-screen{overflow:hidden;}
#useCasesPage .uc-customer-ui .demo-product-card b{font-size:20px;}
#useCasesPage .uc-customer-ui .demo-screen{display:none;}
#useCasesPage .uc-customer-ui .demo-screen.active{display:flex;}

#useCasesPage .uc-customer-experience.product-demo-mode .uc-device-wrap{
  min-height:540px;
  margin-top:16px;
}
#useCasesPage .uc-customer-experience.product-demo-mode .uc-device-phone{
  width:auto !important;
  height:auto !important;
  padding:0 !important;
  border-radius:0 !important;
  background:transparent !important;
  box-shadow:none !important;
}
#useCasesPage .uc-customer-experience.product-demo-mode .uc-device-phone::before,
#useCasesPage .uc-customer-experience.product-demo-mode .uc-phone-side-left,
#useCasesPage .uc-customer-experience.product-demo-mode .uc-phone-side-right,
#useCasesPage .uc-customer-experience.product-demo-mode .uc-device-island,
#useCasesPage .uc-customer-experience.product-demo-mode .uc-device-statusbar,
#useCasesPage .uc-customer-experience.product-demo-mode .uc-phone-home-indicator{
  display:none !important;
}
#useCasesPage .uc-customer-experience.product-demo-mode .uc-device-phone-screen{
  width:auto !important;
  height:auto !important;
  overflow:visible !important;
  border-radius:0 !important;
  background:transparent !important;
  box-shadow:none !important;
}
#useCasesPage .uc-customer-experience.product-demo-mode .uc-customer-ui{
  min-height:0 !important;
  padding:0 !important;
  display:flex;
  justify-content:center;
  align-items:center;
}
#useCasesPage .uc-customer-experience.product-demo-mode .demo-phone{
  margin:0 auto !important;
}

#useCasesPage .uc-customer-ui .demo-screen{
  display:block !important;
}
#useCasesPage .uc-customer-ui .demo-screen:not(.active){
  pointer-events:none;
}
#useCasesPage .uc-customer-ui .demo-screen.active{
  display:block !important;
}

#useCasesPage .uc-customer-ui .demo-product-art.plan{background:linear-gradient(145deg,#1b2750,#5569ff);overflow:hidden;}
#useCasesPage .uc-customer-ui .demo-product-art.plan{display:flex;align-items:center;justify-content:center;}
#useCasesPage .uc-customer-ui .demo-product-art.plan .openai-mark{width:29px;height:29px;display:block;object-fit:contain;filter:brightness(0) invert(1);}
#useCasesPage .uc-customer-ui .demo-result-row.small strong{font-size:10px;}

#useCasesPage .uc-customer-column.product-demo-mode .demo-product-card b{font-size:17px;line-height:1.05;white-space:nowrap;}

#useCasesPage .uc-customer-experience.product-demo-mode .demo-product-card > b{
  font-size:14.5px !important;
  line-height:1 !important;
  letter-spacing:-.015em !important;
  white-space:nowrap !important;
}

#useCasesPage .uc-customer-experience.product-demo-mode .demo-product-card > b.subscription-price{
  display:flex !important;
  align-items:baseline !important;
  gap:4px !important;
  justify-self:start !important;
  width:auto !important;
  min-width:0 !important;
  white-space:nowrap !important;
  margin-top:-1px !important;
}
#useCasesPage .uc-customer-experience.product-demo-mode .demo-product-card > b.subscription-price strong{
  color:#0b1917 !important;
  font:780 14px/1 Manrope,sans-serif !important;
  letter-spacing:-.02em !important;
}
#useCasesPage .uc-customer-experience.product-demo-mode .demo-product-card > b.subscription-price small{
  color:#647772 !important;
  font:700 9px/1 Manrope,sans-serif !important;
  letter-spacing:0 !important;
}

#useCasesPage .uc-customer-experience.product-demo-mode .uc-device-wrap{
  min-height: 660px !important;
}
#useCasesPage .uc-customer-experience.product-demo-mode .demo-phone{
  transform: scale(1.27);
  transform-origin: top center;
}

#useCasesPage .uc-customer-experience.product-demo-mode .uc-device-wrap{
  align-items:flex-start !important;
  padding-top:17px !important;
}

#useCasesPage .uc-customer-experience.product-demo-mode .demo-product-card > b .price-unit{
  font-size:.68em !important;
}
#useCasesPage .uc-customer-experience.product-demo-mode .demo-product-card > b{
  font-size:13.5px !important;
}

#useCasesPage .uc-customer-ui .demo-product-art.booking{
  position:relative;
  overflow:hidden;
  background:linear-gradient(145deg,#0d3852,#1689b7);
}
#useCasesPage .uc-customer-ui .demo-product-art.booking::before{
  content:"";
  position:absolute;
  left:8px;
  right:8px;
  top:22px;
  height:2px;
  border-radius:99px;
  background:rgba(226,250,255,.45);
}
#useCasesPage .uc-customer-ui .demo-product-art.booking .bk-plane{
  position:absolute;
  left:11px;
  top:14px;
  width:27px;
  height:18px;
  transform:rotate(-12deg);
}
#useCasesPage .uc-customer-ui .demo-product-art.booking .bk-plane::before{
  content:"";
  position:absolute;
  left:0;
  top:7px;
  width:27px;
  height:4px;
  border-radius:6px 10px 10px 6px;
  background:#f4fbff;
}
#useCasesPage .uc-customer-ui .demo-product-art.booking .bk-plane::after{
  content:"";
  position:absolute;
  left:10px;
  top:1px;
  width:10px;
  height:16px;
  background:
    linear-gradient(135deg,transparent 0 38%,#f4fbff 40% 62%,transparent 64%) top/100% 50% no-repeat,
    linear-gradient(45deg,transparent 0 38%,#f4fbff 40% 62%,transparent 64%) bottom/100% 50% no-repeat;
}

#useCasesPage .uc-customer-ui .booking-native{
  padding-top:2px;
}
#useCasesPage .uc-customer-ui .booking-searchbar{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  margin-top:8px;
  padding:10px 11px;
  border:1px solid rgba(7,22,21,.07);
  border-radius:12px;
  background:#fff;
}
#useCasesPage .uc-customer-ui .booking-searchbar strong{
  display:block;
  color:#0c1917;
  font:760 10.5px/1.1 Manrope,sans-serif;
}
#useCasesPage .uc-customer-ui .booking-searchbar small{
  display:block;
  margin-top:3px;
  color:#7b8c87;
  font:650 7.8px/1.1 Manrope,sans-serif;
}
#useCasesPage .uc-customer-ui .booking-route-pill{
  flex:0 0 auto;
  padding:6px 8px;
  border-radius:999px;
  background:#eef8f5;
  color:#008d79;
  font:750 8px/1 Manrope,sans-serif;
}
#useCasesPage .uc-customer-ui .booking-flight-card{
  margin-top:10px;
  padding:11px;
  border:1px solid rgba(7,22,21,.075);
  border-radius:13px;
  background:#fff;
  box-shadow:0 12px 22px -22px rgba(0,0,0,.22);
}
#useCasesPage .uc-customer-ui .booking-flight-top{
  display:flex;
  align-items:center;
  gap:8px;
}
#useCasesPage .uc-customer-ui .booking-airline-mark{
  width:28px;
  height:28px;
  border-radius:9px;
  display:grid;
  place-items:center;
  background:linear-gradient(145deg,#0d3d59,#1c91bc);
  color:#fff;
  font:800 8px/1 Manrope,sans-serif;
}
#useCasesPage .uc-customer-ui .booking-airline-copy{
  min-width:0;
}
#useCasesPage .uc-customer-ui .booking-airline-copy strong{
  display:block;
  color:#10201d;
  font:760 9.3px/1.1 Manrope,sans-serif;
}
#useCasesPage .uc-customer-ui .booking-airline-copy small{
  display:block;
  margin-top:3px;
  color:#81918d;
  font:650 7.6px/1 Manrope,sans-serif;
}
#useCasesPage .uc-customer-ui .booking-price{
  margin-left:auto;
  text-align:right;
}
#useCasesPage .uc-customer-ui .booking-price strong{
  display:block;
  color:#0b1917;
  font:800 12px/1 Manrope,sans-serif;
}
#useCasesPage .uc-customer-ui .booking-price small{
  display:block;
  margin-top:3px;
  color:#81918d;
  font:650 7.4px/1 Manrope,sans-serif;
}
#useCasesPage .uc-customer-ui .booking-route-line{
  display:grid;
  grid-template-columns:auto 1fr auto;
  align-items:center;
  gap:8px;
  margin-top:13px;
}
#useCasesPage .uc-customer-ui .booking-airport{
  text-align:center;
}
#useCasesPage .uc-customer-ui .booking-airport strong{
  display:block;
  color:#0d1d1a;
  font:800 15px/1 Manrope,sans-serif;
  letter-spacing:-.03em;
}
#useCasesPage .uc-customer-ui .booking-airport small{
  display:block;
  margin-top:3px;
  color:#7f908b;
  font:650 7.3px/1 Manrope,sans-serif;
}
#useCasesPage .uc-customer-ui .booking-flight-path{
  position:relative;
  height:22px;
}
#useCasesPage .uc-customer-ui .booking-flight-path::before{
  content:"";
  position:absolute;
  left:0;
  right:0;
  top:50%;
  height:1px;
  background:#cbdad6;
}
#useCasesPage .uc-customer-ui .booking-flight-path::after{
  content:"✈";
  position:absolute;
  left:50%;
  top:50%;
  transform:translate(-50%,-52%);
  padding:0 5px;
  background:#fff;
  color:#00a58e;
  font-size:10px;
}
#useCasesPage .uc-customer-ui .booking-meta-row{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:6px;
  margin-top:11px;
}
#useCasesPage .uc-customer-ui .booking-meta-row div{
  padding:7px 7px 6px;
  border-radius:9px;
  background:#f5f9f8;
}
#useCasesPage .uc-customer-ui .booking-meta-row span{
  display:block;
  color:#879792;
  font:700 6.8px/1 "Geist Mono",monospace;
  letter-spacing:.06em;
}
#useCasesPage .uc-customer-ui .booking-meta-row strong{
  display:block;
  margin-top:4px;
  color:#17302b;
  font:740 8.2px/1.15 Manrope,sans-serif;
}
#useCasesPage .uc-customer-ui .booking-fare-summary{
  margin-top:10px;
  padding:10px 11px;
  border-top:1px solid rgba(7,22,21,.065);
  display:flex;
  align-items:center;
  justify-content:space-between;
}
#useCasesPage .uc-customer-ui .booking-fare-summary span{
  color:#72837e;
  font:650 8px/1 Manrope,sans-serif;
}
#useCasesPage .uc-customer-ui .booking-fare-summary strong{
  color:#0d1d1a;
  font:800 12px/1 Manrope,sans-serif;
}

#useCasesPage .uc-customer-ui .demo-screen.booking-native{
  padding-top:40px !important;
}
#useCasesPage .uc-customer-ui .booking-flight-card{
  margin-top:0 !important;
}
#useCasesPage .uc-customer-ui .booking-fare-summary{
  padding-bottom:5px !important;
}

#useCasesPage .uc-customer-ui .demo-screen.usage-native{
  padding-top:40px !important;
}
#useCasesPage .uc-customer-ui .usage-summary-card{
  padding:12px;
  border:1px solid rgba(7,22,21,.075);
  border-radius:13px;
  background:#fff;
  box-shadow:0 12px 22px -22px rgba(0,0,0,.22);
}
#useCasesPage .uc-customer-ui .usage-summary-head{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:10px;
}
#useCasesPage .uc-customer-ui .usage-summary-head small{
  display:block;
  color:#81918d;
  font:700 7px/1 "Geist Mono",monospace;
  letter-spacing:.07em;
}
#useCasesPage .uc-customer-ui .usage-summary-head strong{
  display:block;
  margin-top:4px;
  color:#10201d;
  font:760 10px/1.1 Manrope,sans-serif;
}
#useCasesPage .uc-customer-ui .usage-cycle-pill{
  flex:0 0 auto;
  padding:5px 7px;
  border-radius:999px;
  background:#eef8f5;
  color:#008d79;
  font:750 7px/1 Manrope,sans-serif;
}
#useCasesPage .uc-customer-ui .usage-amount{
  margin-top:11px;
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
}
#useCasesPage .uc-customer-ui .usage-amount span{
  color:#72837e;
  font:650 8px/1 Manrope,sans-serif;
}
#useCasesPage .uc-customer-ui .usage-amount strong{
  color:#0b1917;
  font:800 18px/1 Manrope,sans-serif;
  letter-spacing:-.035em;
}
#useCasesPage .uc-customer-ui .usage-meter{
  height:5px;
  margin-top:10px;
  overflow:hidden;
  border-radius:999px;
  background:#edf3f1;
}
#useCasesPage .uc-customer-ui .usage-meter i{
  display:block;
  width:68%;
  height:100%;
  border-radius:inherit;
  background:linear-gradient(90deg,#00a88d,#56d4bd);
}
#useCasesPage .uc-customer-ui .usage-breakdown{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:6px;
  margin-top:8px;
}
#useCasesPage .uc-customer-ui .usage-breakdown > div{
  padding:8px;
  border-radius:9px;
  background:#f5f9f8;
}
#useCasesPage .uc-customer-ui .usage-breakdown span{
  display:block;
  color:#879792;
  font:700 6.7px/1 "Geist Mono",monospace;
  letter-spacing:.06em;
}
#useCasesPage .uc-customer-ui .usage-breakdown strong{
  display:block;
  margin-top:4px;
  color:#17302b;
  font:750 8.3px/1.1 Manrope,sans-serif;
}
#useCasesPage .uc-customer-ui .usage-native .demo-methods{
  margin-top:9px;
}
#useCasesPage .uc-customer-ui .usage-native .demo-action-primary{
  margin-top:9px;
}

#useCasesPage .uc-customer-ui .demo-screen.funding-native{
  padding-top:40px !important;
}
#useCasesPage .uc-customer-ui .funding-balance-card{
  padding:12px;
  border-radius:13px;
  background:linear-gradient(145deg,#0b2b26,#105d50);
  color:#fff;
  box-shadow:0 16px 28px -24px rgba(0,72,61,.5);
}
#useCasesPage .uc-customer-ui .funding-balance-card small{
  display:block;
  color:rgba(232,255,250,.63);
  font:700 7px/1 "Geist Mono",monospace;
  letter-spacing:.07em;
}
#useCasesPage .uc-customer-ui .funding-balance-card strong{
  display:block;
  margin-top:7px;
  color:#fff;
  font:800 19px/1 Manrope,sans-serif;
  letter-spacing:-.035em;
}
#useCasesPage .uc-customer-ui .funding-balance-card span{
  display:block;
  margin-top:5px;
  color:rgba(232,255,250,.68);
  font:650 7.8px/1.15 Manrope,sans-serif;
}
#useCasesPage .uc-customer-ui .funding-form-card{
  margin-top:9px;
  padding:11px 12px;
  border:1px solid rgba(7,22,21,.075);
  border-radius:13px;
  background:#fff;
}
#useCasesPage .uc-customer-ui .funding-form-label{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
}
#useCasesPage .uc-customer-ui .funding-form-label span{
  color:#81918d;
  font:700 7px/1 "Geist Mono",monospace;
  letter-spacing:.06em;
}
#useCasesPage .uc-customer-ui .funding-form-label small{
  color:#008d79;
  font:750 7.2px/1 Manrope,sans-serif;
}
#useCasesPage .uc-customer-ui .funding-amount-row{
  display:flex;
  align-items:center;
  gap:8px;
  margin-top:8px;
  padding-bottom:9px;
  border-bottom:1px solid rgba(7,22,21,.065);
}
#useCasesPage .uc-customer-ui .funding-amount-row strong{
  min-width:0;
  flex:1;
  color:#0b1917;
  font:800 19px/1 Manrope,sans-serif;
  letter-spacing:-.035em;
}
#useCasesPage .uc-customer-ui .funding-asset-pill{
  flex:0 0 auto;
  display:flex;
  align-items:center;
  gap:5px;
  padding:6px 8px;
  border-radius:999px;
  background:#eef8f5;
  color:#087c6c;
  font:760 7.5px/1 Manrope,sans-serif;
}
#useCasesPage .uc-customer-ui .funding-asset-pill i{
  width:13px;
  height:13px;
  display:grid;
  place-items:center;
  border-radius:50%;
  background:#22a079;
  color:#fff;
  font:800 7px/1 Manrope,sans-serif;
  font-style:normal;
}
#useCasesPage .uc-customer-ui .funding-destination{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  margin-top:9px;
}
#useCasesPage .uc-customer-ui .funding-destination div span{
  display:block;
  color:#879792;
  font:700 6.8px/1 "Geist Mono",monospace;
  letter-spacing:.06em;
}
#useCasesPage .uc-customer-ui .funding-destination div strong{
  display:block;
  margin-top:4px;
  color:#17302b;
  font:750 8.3px/1.1 Manrope,sans-serif;
}
#useCasesPage .uc-customer-ui .funding-destination b{
  flex:0 0 auto;
  color:#008d79;
  font:750 7.5px/1 Manrope,sans-serif;
}
#useCasesPage .uc-customer-ui .funding-native .demo-action-primary{
  margin-top:10px;
}

#useCasesPage .uc-customer-ui .demo-screen.wallet-transfer-native{
  padding-top:38px !important;
}
#useCasesPage .uc-customer-ui .wallet-send-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  margin-bottom:11px;
}
#useCasesPage .uc-customer-ui .wallet-send-head strong{
  color:#0d1d1a;
  font:780 13px/1 Manrope,sans-serif;
  letter-spacing:-.025em;
}
#useCasesPage .uc-customer-ui .wallet-send-head span{
  color:#778984;
  font:700 7.4px/1 Manrope,sans-serif;
}
#useCasesPage .uc-customer-ui .wallet-balance-line{
  display:flex;
  align-items:baseline;
  justify-content:space-between;
  padding:0 1px 10px;
}
#useCasesPage .uc-customer-ui .wallet-balance-line span{
  color:#84938f;
  font:650 7.5px/1 Manrope,sans-serif;
}
#useCasesPage .uc-customer-ui .wallet-balance-line strong{
  color:#17302b;
  font:760 9px/1 Manrope,sans-serif;
}
#useCasesPage .uc-customer-ui .wallet-recipient-card,
#useCasesPage .uc-customer-ui .wallet-amount-card,
#useCasesPage .uc-customer-ui .wallet-transfer-meta{
  border:1px solid rgba(7,22,21,.075);
  background:#fff;
}
#useCasesPage .uc-customer-ui .wallet-recipient-card{
  display:flex;
  align-items:center;
  gap:9px;
  padding:10px;
  border-radius:12px;
}
#useCasesPage .uc-customer-ui .wallet-recipient-avatar{
  width:30px;
  height:30px;
  flex:0 0 auto;
  display:grid;
  place-items:center;
  border-radius:50%;
  background:linear-gradient(145deg,#0d3d36,#0c9b84);
  color:#fff;
  font:800 8px/1 Manrope,sans-serif;
}
#useCasesPage .uc-customer-ui .wallet-recipient-copy{
  min-width:0;
  flex:1;
}
#useCasesPage .uc-customer-ui .wallet-recipient-copy span,
#useCasesPage .uc-customer-ui .wallet-amount-label,
#useCasesPage .uc-customer-ui .wallet-transfer-meta span,
#useCasesPage .uc-customer-ui .wallet-review-row span{
  display:block;
  color:#879792;
  font:700 6.7px/1 "Geist Mono",monospace;
  letter-spacing:.06em;
}
#useCasesPage .uc-customer-ui .wallet-recipient-copy strong{
  display:block;
  margin-top:4px;
  color:#10201d;
  font:760 9px/1.1 Manrope,sans-serif;
}
#useCasesPage .uc-customer-ui .wallet-recipient-copy small{
  display:block;
  margin-top:3px;
  color:#7b8c87;
  font:650 7.1px/1 Manrope,sans-serif;
}
#useCasesPage .uc-customer-ui .wallet-recipient-change{
  color:#008d79;
  font:750 7px/1 Manrope,sans-serif;
}
#useCasesPage .uc-customer-ui .wallet-amount-card{
  margin-top:8px;
  padding:10px;
  border-radius:12px;
}
#useCasesPage .uc-customer-ui .wallet-amount-main{
  display:flex;
  align-items:center;
  gap:8px;
  margin-top:8px;
}
#useCasesPage .uc-customer-ui .wallet-amount-main strong{
  min-width:0;
  flex:1;
  color:#0b1917;
  font:800 20px/1 Manrope,sans-serif;
  letter-spacing:-.045em;
}
#useCasesPage .uc-customer-ui .wallet-token-pill{
  flex:0 0 auto;
  display:flex;
  align-items:center;
  gap:5px;
  padding:6px 8px;
  border-radius:999px;
  background:#eef8f5;
  color:#087c6c;
  font:760 7.5px/1 Manrope,sans-serif;
}
#useCasesPage .uc-customer-ui .wallet-token-pill i{
  width:14px;
  height:14px;
  display:grid;
  place-items:center;
  border-radius:50%;
  background:#22a079;
  color:#fff;
  font:800 7px/1 Manrope,sans-serif;
  font-style:normal;
}
#useCasesPage .uc-customer-ui .wallet-fiat{
  display:block;
  margin-top:5px;
  color:#81918d;
  font:650 7.3px/1 Manrope,sans-serif;
}
#useCasesPage .uc-customer-ui .wallet-transfer-meta{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:0;
  margin-top:8px;
  border-radius:12px;
  overflow:hidden;
}
#useCasesPage .uc-customer-ui .wallet-transfer-meta > div{
  padding:8px 9px;
}
#useCasesPage .uc-customer-ui .wallet-transfer-meta > div + div{
  border-left:1px solid rgba(7,22,21,.065);
}
#useCasesPage .uc-customer-ui .wallet-transfer-meta strong{
  display:block;
  margin-top:4px;
  color:#17302b;
  font:750 8px/1.1 Manrope,sans-serif;
}
#useCasesPage .uc-customer-ui .wallet-transfer-native .demo-action-primary{
  margin-top:9px;
}

#useCasesPage .uc-customer-ui .wallet-review-screen{
  padding-top:38px !important;
}
#useCasesPage .uc-customer-ui .wallet-review-title{
  display:block;
  color:#0d1d1a;
  font:780 13px/1 Manrope,sans-serif;
  letter-spacing:-.025em;
}
#useCasesPage .uc-customer-ui .wallet-review-amount{
  margin-top:16px;
  text-align:center;
}
#useCasesPage .uc-customer-ui .wallet-review-amount i{
  width:30px;
  height:30px;
  margin:0 auto 8px;
  display:grid;
  place-items:center;
  border-radius:50%;
  background:#22a079;
  color:#fff;
  font:800 10px/1 Manrope,sans-serif;
  font-style:normal;
}
#useCasesPage .uc-customer-ui .wallet-review-amount strong{
  display:block;
  color:#0b1917;
  font:800 20px/1 Manrope,sans-serif;
  letter-spacing:-.04em;
}
#useCasesPage .uc-customer-ui .wallet-review-amount small{
  display:block;
  margin-top:4px;
  color:#81918d;
  font:650 7.5px/1 Manrope,sans-serif;
}
#useCasesPage .uc-customer-ui .wallet-review-card{
  margin-top:15px;
  border:1px solid rgba(7,22,21,.075);
  border-radius:12px;
  overflow:hidden;
  background:#fff;
}
#useCasesPage .uc-customer-ui .wallet-review-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  padding:9px 10px;
}
#useCasesPage .uc-customer-ui .wallet-review-row + .wallet-review-row{
  border-top:1px solid rgba(7,22,21,.06);
}
#useCasesPage .uc-customer-ui .wallet-review-row strong{
  color:#17302b;
  font:750 8px/1.15 Manrope,sans-serif;
  text-align:right;
}
#useCasesPage .uc-customer-ui .wallet-review-row.highlight strong{
  color:#008d79;
}
#useCasesPage .uc-customer-ui .wallet-review-screen .demo-action-secondary{
  margin-top:11px;
}

#useCasesPage .uc-customer-ui .demo-screen.business-payment-native{
  padding-top:38px !important;
}
#useCasesPage .uc-customer-ui .business-invoice-card{
  border:1px solid rgba(7,22,21,.075);
  border-radius:13px;
  background:#fff;
  overflow:hidden;
  box-shadow:0 12px 22px -22px rgba(0,0,0,.22);
}
#useCasesPage .uc-customer-ui .business-invoice-head{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:10px;
  padding:11px;
  border-bottom:1px solid rgba(7,22,21,.06);
}
#useCasesPage .uc-customer-ui .business-vendor{
  display:flex;
  align-items:center;
  gap:8px;
  min-width:0;
}
#useCasesPage .uc-customer-ui .business-vendor-mark{
  width:30px;
  height:30px;
  flex:0 0 auto;
  display:grid;
  place-items:center;
  border-radius:9px;
  background:linear-gradient(145deg,#17372f,#0f806e);
  color:#fff;
  font:800 7.5px/1 Manrope,sans-serif;
}
#useCasesPage .uc-customer-ui .business-vendor-copy strong{
  display:block;
  color:#10201d;
  font:760 9px/1.1 Manrope,sans-serif;
}
#useCasesPage .uc-customer-ui .business-vendor-copy small{
  display:block;
  margin-top:3px;
  color:#81918d;
  font:650 7px/1 Manrope,sans-serif;
}
#useCasesPage .uc-customer-ui .business-due-pill{
  flex:0 0 auto;
  padding:5px 7px;
  border-radius:999px;
  background:#fff4e7;
  color:#a86200;
  font:750 6.9px/1 Manrope,sans-serif;
}
#useCasesPage .uc-customer-ui .business-invoice-main{
  padding:11px;
}
#useCasesPage .uc-customer-ui .business-invoice-line{
  display:flex;
  align-items:baseline;
  justify-content:space-between;
  gap:10px;
}
#useCasesPage .uc-customer-ui .business-invoice-line span,
#useCasesPage .uc-customer-ui .business-meta-grid span{
  display:block;
  color:#879792;
  font:700 6.7px/1 "Geist Mono",monospace;
  letter-spacing:.06em;
}
#useCasesPage .uc-customer-ui .business-invoice-line strong{
  color:#0b1917;
  font:800 17px/1 Manrope,sans-serif;
  letter-spacing:-.035em;
}
#useCasesPage .uc-customer-ui .business-meta-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:6px;
  margin-top:10px;
}
#useCasesPage .uc-customer-ui .business-meta-grid > div{
  padding:8px;
  border-radius:9px;
  background:#f5f9f8;
}
#useCasesPage .uc-customer-ui .business-meta-grid strong{
  display:block;
  margin-top:4px;
  color:#17302b;
  font:750 8px/1.1 Manrope,sans-serif;
}
#useCasesPage .uc-customer-ui .business-reference{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  margin-top:8px;
  padding-top:9px;
  border-top:1px solid rgba(7,22,21,.06);
}
#useCasesPage .uc-customer-ui .business-reference span{
  color:#879792;
  font:700 6.7px/1 "Geist Mono",monospace;
  letter-spacing:.06em;
}
#useCasesPage .uc-customer-ui .business-reference strong{
  color:#17302b;
  font:750 7.8px/1 Manrope,sans-serif;
}
#useCasesPage .uc-customer-ui .business-payment-native .demo-methods{
  margin-top:9px;
}
#useCasesPage .uc-customer-ui .business-payment-native .demo-action-primary{
  margin-top:9px;
}

#useCasesPage .uc-customer-ui .business-invoice-line strong{
  font-size:15px !important;
}

#useCasesPage .uc-customer-ui .business-invoice-line strong{
  font-size:13.5px !important;
  line-height:1 !important;
  white-space:nowrap !important;
}

#useCasesPage .uc-customer-experience[data-demo="subscription"]{
  --demo-accent:#6954df;
  --demo-accent-deep:#4c3ab3;
  --demo-soft:#eeeaff;
  --demo-soft-2:#f7f4ff;
}
#useCasesPage .uc-customer-experience[data-demo="booking"]{
  --demo-accent:#168fc3;
  --demo-accent-deep:#096f9e;
  --demo-soft:#e7f6ff;
  --demo-soft-2:#f3faff;
}
#useCasesPage .uc-customer-experience[data-demo="usage"]{
  --demo-accent:#e19521;
  --demo-accent-deep:#b56c08;
  --demo-soft:#fff0d2;
  --demo-soft-2:#fff8e9;
}
#useCasesPage .uc-customer-experience[data-demo="funding"]{
  --demo-accent:#5368d8;
  --demo-accent-deep:#384ba9;
  --demo-soft:#e9edff;
  --demo-soft-2:#f4f6ff;
}
#useCasesPage .uc-customer-experience[data-demo="business"]{
  --demo-accent:#cf684f;
  --demo-accent-deep:#a74634;
  --demo-soft:#ffe9e3;
  --demo-soft-2:#fff5f2;
}

#useCasesPage .uc-customer-experience[data-demo="subscription"] .demo-phone-screen,
#useCasesPage .uc-customer-experience[data-demo="booking"] .demo-phone-screen,
#useCasesPage .uc-customer-experience[data-demo="usage"] .demo-phone-screen,
#useCasesPage .uc-customer-experience[data-demo="funding"] .demo-phone-screen,
#useCasesPage .uc-customer-experience[data-demo="business"] .demo-phone-screen{
  background:
    radial-gradient(150px 100px at 82% 12%,color-mix(in srgb,var(--demo-accent) 18%,transparent),transparent 72%),
    linear-gradient(180deg,#fff 0%,var(--demo-soft-2) 100%) !important;
}

#useCasesPage .uc-customer-experience[data-demo="subscription"] .demo-method.selected,
#useCasesPage .uc-customer-experience[data-demo="booking"] .demo-method.selected,
#useCasesPage .uc-customer-experience[data-demo="usage"] .demo-method.selected,
#useCasesPage .uc-customer-experience[data-demo="funding"] .demo-method.selected,
#useCasesPage .uc-customer-experience[data-demo="business"] .demo-method.selected{
  border-color:color-mix(in srgb,var(--demo-accent) 38%,transparent) !important;
  background:var(--demo-soft) !important;
}

#useCasesPage .uc-customer-experience[data-demo="subscription"] .demo-method.selected .demo-method-copy strong,
#useCasesPage .uc-customer-experience[data-demo="booking"] .demo-method.selected .demo-method-copy strong,
#useCasesPage .uc-customer-experience[data-demo="usage"] .demo-method.selected .demo-method-copy strong,
#useCasesPage .uc-customer-experience[data-demo="funding"] .demo-method.selected .demo-method-copy strong,
#useCasesPage .uc-customer-experience[data-demo="business"] .demo-method.selected .demo-method-copy strong{
  color:var(--demo-accent-deep) !important;
}

#useCasesPage .uc-customer-experience[data-demo="subscription"] .demo-action-primary,
#useCasesPage .uc-customer-experience[data-demo="booking"] .demo-action-primary,
#useCasesPage .uc-customer-experience[data-demo="usage"] .demo-action-primary,
#useCasesPage .uc-customer-experience[data-demo="funding"] .demo-action-primary,
#useCasesPage .uc-customer-experience[data-demo="business"] .demo-action-primary{
  background:linear-gradient(135deg,var(--demo-accent-deep),var(--demo-accent)) !important;
  border-color:var(--demo-accent-deep) !important;
}

#useCasesPage .uc-customer-experience[data-demo="subscription"] .demo-action-secondary,
#useCasesPage .uc-customer-experience[data-demo="booking"] .demo-action-secondary,
#useCasesPage .uc-customer-experience[data-demo="usage"] .demo-action-secondary,
#useCasesPage .uc-customer-experience[data-demo="funding"] .demo-action-secondary,
#useCasesPage .uc-customer-experience[data-demo="business"] .demo-action-secondary{
  color:var(--demo-accent-deep) !important;
  border-color:color-mix(in srgb,var(--demo-accent) 45%,transparent) !important;
  background:var(--demo-soft) !important;
}

#useCasesPage .uc-customer-experience[data-demo="subscription"] .demo-pay-head small,
#useCasesPage .uc-customer-experience[data-demo="booking"] .demo-pay-head small,
#useCasesPage .uc-customer-experience[data-demo="usage"] .demo-pay-head small,
#useCasesPage .uc-customer-experience[data-demo="funding"] .demo-pay-head small,
#useCasesPage .uc-customer-experience[data-demo="business"] .demo-pay-head small,
#useCasesPage .uc-customer-experience[data-demo="subscription"] .demo-address em,
#useCasesPage .uc-customer-experience[data-demo="booking"] .demo-address em,
#useCasesPage .uc-customer-experience[data-demo="usage"] .demo-address em,
#useCasesPage .uc-customer-experience[data-demo="funding"] .demo-address em,
#useCasesPage .uc-customer-experience[data-demo="business"] .demo-address em{
  color:var(--demo-accent-deep) !important;
}

#useCasesPage .uc-customer-experience[data-demo="subscription"] .demo-complete-mark,
#useCasesPage .uc-customer-experience[data-demo="booking"] .demo-complete-mark,
#useCasesPage .uc-customer-experience[data-demo="usage"] .demo-complete-mark,
#useCasesPage .uc-customer-experience[data-demo="funding"] .demo-complete-mark,
#useCasesPage .uc-customer-experience[data-demo="business"] .demo-complete-mark{
  background:var(--demo-accent) !important;
}

#useCasesPage .uc-customer-experience[data-demo="subscription"] .demo-result-row.highlight,
#useCasesPage .uc-customer-experience[data-demo="booking"] .demo-result-row.highlight,
#useCasesPage .uc-customer-experience[data-demo="usage"] .demo-result-row.highlight,
#useCasesPage .uc-customer-experience[data-demo="funding"] .demo-result-row.highlight,
#useCasesPage .uc-customer-experience[data-demo="business"] .demo-result-row.highlight{
  background:var(--demo-soft) !important;
}
#useCasesPage .uc-customer-experience[data-demo="subscription"] .demo-result-row.highlight strong,
#useCasesPage .uc-customer-experience[data-demo="booking"] .demo-result-row.highlight strong,
#useCasesPage .uc-customer-experience[data-demo="usage"] .demo-result-row.highlight strong,
#useCasesPage .uc-customer-experience[data-demo="funding"] .demo-result-row.highlight strong,
#useCasesPage .uc-customer-experience[data-demo="business"] .demo-result-row.highlight strong{
  color:var(--demo-accent-deep) !important;
}

#useCasesPage .uc-customer-experience[data-demo="subscription"] .demo-product-art.plan{
  background:linear-gradient(145deg,#372574,#806cff) !important;
}
#useCasesPage .uc-customer-experience[data-demo="subscription"] .demo-product-card{
  border-color:#dcd4ff !important;
  background:#fcfbff !important;
}

#useCasesPage .uc-customer-experience[data-demo="booking"] .booking-flight-card{
  border-color:#bde6f9 !important;
  background:#fbfeff !important;
}
#useCasesPage .uc-customer-experience[data-demo="booking"] .booking-airline-mark{
  background:linear-gradient(145deg,#126d9e,#43bdea) !important;
}
#useCasesPage .uc-customer-experience[data-demo="booking"] .booking-meta-row > div{
  background:#eaf7fd !important;
}
#useCasesPage .uc-customer-experience[data-demo="booking"] .booking-flight-path::after{
  color:#168fc3 !important;
}

#useCasesPage .uc-customer-experience[data-demo="usage"] .usage-summary-card{
  border-color:#f3d39d !important;
  background:#fffdf8 !important;
}
#useCasesPage .uc-customer-experience[data-demo="usage"] .usage-cycle-pill,
#useCasesPage .uc-customer-experience[data-demo="usage"] .usage-breakdown > div{
  background:#fff0d2 !important;
  color:#a96105 !important;
}
#useCasesPage .uc-customer-experience[data-demo="usage"] .usage-meter i{
  background:linear-gradient(90deg,#e79519,#ffbf43) !important;
}

#useCasesPage .uc-customer-experience[data-demo="funding"] .wallet-recipient-avatar{
  background:linear-gradient(145deg,#344ba9,#6b7ff4) !important;
}
#useCasesPage .uc-customer-experience[data-demo="funding"] .wallet-recipient-card,
#useCasesPage .uc-customer-experience[data-demo="funding"] .wallet-amount-card,
#useCasesPage .uc-customer-experience[data-demo="funding"] .wallet-transfer-meta,
#useCasesPage .uc-customer-experience[data-demo="funding"] .wallet-review-card{
  border-color:#cdd5ff !important;
}
#useCasesPage .uc-customer-experience[data-demo="funding"] .wallet-token-pill{
  background:#e8ecff !important;
  color:#4055bd !important;
}
#useCasesPage .uc-customer-experience[data-demo="funding"] .wallet-token-pill i{
  background:#5368d8 !important;
}

#useCasesPage .uc-customer-experience[data-demo="business"] .business-invoice-card{
  border-color:#f1c9bf !important;
  background:#fffdfc !important;
}
#useCasesPage .uc-customer-experience[data-demo="business"] .business-vendor-mark{
  background:linear-gradient(145deg,#914331,#db755d) !important;
}
#useCasesPage .uc-customer-experience[data-demo="business"] .business-meta-grid > div{
  background:#ffebe5 !important;
}

#useCasesPage .uc-customer-experience[data-demo="subscription"] .subscription-native{
  padding-top:34px !important;
}
#useCasesPage .uc-customer-experience[data-demo="subscription"] .demo-product-card{
  grid-template-columns:48px minmax(0,1fr) !important;
}
#useCasesPage .uc-customer-experience[data-demo="subscription"] .demo-product-copy{
  min-width:0 !important;
}
#useCasesPage .uc-customer-experience[data-demo="subscription"] .demo-product-card > b.subscription-price{
  grid-column:2 !important;
  display:grid !important;
  grid-template-columns:auto auto !important;
  justify-content:start !important;
  align-items:baseline !important;
  column-gap:2px !important;
  width:100% !important;
  max-width:100% !important;
  min-width:0 !important;
  overflow:hidden !important;
  white-space:nowrap !important;
  box-sizing:border-box !important;
}
#useCasesPage .uc-customer-experience[data-demo="subscription"] .demo-product-card > b.subscription-price strong{
  min-width:0 !important;
  font:780 11.2px/1 Manrope,sans-serif !important;
  letter-spacing:-.025em !important;
}
#useCasesPage .uc-customer-experience[data-demo="subscription"] .demo-product-card > b.subscription-price small{
  min-width:0 !important;
  max-width:44px !important;
  overflow:hidden !important;
  text-overflow:clip !important;
  font:700 6.6px/1 Manrope,sans-serif !important;
  letter-spacing:-.02em !important;
  color:#756d91 !important;
}

#useCasesPage .uc-customer-experience[data-demo="subscription"] .demo-phone-screen,
#useCasesPage .uc-customer-experience[data-demo="funding"] .demo-phone-screen{
  background:linear-gradient(180deg,#fff 0%,var(--demo-soft-2) 100%) !important;
}

#useCasesPage .uc-flow-switcher button.active{
  transition:background .2s ease, box-shadow .2s ease;
}

#useCasesPage .uc-flow-switcher button[data-experience="checkout"].active{
  background:#edf9f6 !important;
  box-shadow:inset 0 -3px 0 #01b69b !important;
}
#useCasesPage .uc-flow-switcher button[data-experience="checkout"].active .uc-switch-icon{
  background:#dff5ef !important;
  border-color:rgba(1,182,155,.26) !important;
  color:#008b79 !important;
}
#useCasesPage .uc-flow-switcher button[data-experience="checkout"].active .uc-switch-title{
  color:#0e4e43 !important;
}

#useCasesPage .uc-flow-switcher button[data-experience="subscription"].active{
  background:#eeeaff !important;
  box-shadow:inset 0 -3px 0 #6954df !important;
}
#useCasesPage .uc-flow-switcher button[data-experience="subscription"].active .uc-switch-icon{
  background:#ddd5ff !important;
  border-color:rgba(105,84,223,.28) !important;
  color:#5946c7 !important;
}
#useCasesPage .uc-flow-switcher button[data-experience="subscription"].active .uc-switch-title{
  color:#4c3ab3 !important;
}

#useCasesPage .uc-flow-switcher button[data-experience="booking"].active{
  background:#e7f6ff !important;
  box-shadow:inset 0 -3px 0 #168fc3 !important;
}
#useCasesPage .uc-flow-switcher button[data-experience="booking"].active .uc-switch-icon{
  background:#d5f0fc !important;
  border-color:rgba(22,143,195,.28) !important;
  color:#117eae !important;
}
#useCasesPage .uc-flow-switcher button[data-experience="booking"].active .uc-switch-title{
  color:#096f9e !important;
}

#useCasesPage .uc-flow-switcher button[data-experience="usage"].active{
  background:#fff0d2 !important;
  box-shadow:inset 0 -3px 0 #e19521 !important;
}
#useCasesPage .uc-flow-switcher button[data-experience="usage"].active .uc-switch-icon{
  background:#ffe5b4 !important;
  border-color:rgba(225,149,33,.30) !important;
  color:#c5780d !important;
}
#useCasesPage .uc-flow-switcher button[data-experience="usage"].active .uc-switch-title{
  color:#a96105 !important;
}

#useCasesPage .uc-flow-switcher button[data-experience="funding"].active{
  background:#e9edff !important;
  box-shadow:inset 0 -3px 0 #5368d8 !important;
}
#useCasesPage .uc-flow-switcher button[data-experience="funding"].active .uc-switch-icon{
  background:#dce2ff !important;
  border-color:rgba(83,104,216,.28) !important;
  color:#465bc6 !important;
}
#useCasesPage .uc-flow-switcher button[data-experience="funding"].active .uc-switch-title{
  color:#384ba9 !important;
}

#useCasesPage .uc-flow-switcher button[data-experience="business"].active{
  background:#ffe9e3 !important;
  box-shadow:inset 0 -3px 0 #cf684f !important;
}
#useCasesPage .uc-flow-switcher button[data-experience="business"].active .uc-switch-icon{
  background:#ffdcd3 !important;
  border-color:rgba(207,104,79,.28) !important;
  color:#bd5943 !important;
}
#useCasesPage .uc-flow-switcher button[data-experience="business"].active .uc-switch-title{
  color:#a74634 !important;
}

#useCasesPage .uc-stage-transmission{
  z-index:5 !important;
  overflow:visible !important;
}

#useCasesPage .uc-stage-link{
  top:50%;
  height:18px !important;
}

#useCasesPage .uc-link-trail{
  height:2px !important;
  background:linear-gradient(
    90deg,
    rgba(0,140,123,.22),
    rgba(0,169,145,.48),
    rgba(0,140,123,.22)
  ) !important;
  box-shadow:0 0 8px rgba(34,197,169,.10) !important;
}

#useCasesPage .uc-link-dot{
  width:12px !important;
  height:12px !important;
  background:radial-gradient(circle at 34% 32%,#ffffff 0 15%,#b9fff2 22%,#52e4ca 48%,#08af94 78%,#067965 100%) !important;
  box-shadow:
    0 0 0 5px rgba(50,226,196,.15),
    0 0 18px rgba(50,226,196,.85),
    0 0 30px rgba(50,226,196,.34) !important;
  filter:drop-shadow(0 0 5px rgba(70,255,220,.65));
}

#useCasesPage .uc-link-dot::after{
  content:"";
  position:absolute;
  right:7px;
  top:50%;
  width:22px;
  height:4px;
  transform:translateY(-50%);
  border-radius:999px;
  background:linear-gradient(90deg,transparent,rgba(73,232,204,.48));
  filter:blur(.2px);
}

#useCasesPage .uc-stage-link.playing .uc-link-dot{
  animation:ucLinkDotVisible 1.45s cubic-bezier(.22,.62,.32,1) forwards !important;
}
#useCasesPage .uc-stage-link.playing .uc-link-trail::after{
  animation:ucLinkFillVisible 1.45s cubic-bezier(.22,.62,.32,1) forwards !important;
}

@keyframes ucLinkDotVisible{
  0%{left:0%;opacity:0;transform:translate(-50%,-50%) scale(.72)}
  10%{opacity:1;transform:translate(-50%,-50%) scale(1)}
  86%{left:100%;opacity:1;transform:translate(-50%,-50%) scale(1)}
  100%{left:100%;opacity:0;transform:translate(-50%,-50%) scale(.72)}
}
@keyframes ucLinkFillVisible{
  0%{width:0%;opacity:0}
  8%{opacity:1}
  88%{width:100%;opacity:1}
  100%{width:100%;opacity:0}
}

#useCasesPage .uc-link-end{
  width:7px !important;
  height:7px !important;
  background:#08a98f !important;
  box-shadow:0 0 0 3px rgba(8,169,143,.10),0 0 9px rgba(8,169,143,.20) !important;
}
#useCasesPage .uc-experience-stage.v2.is-transmitting .uc-link-end{
  opacity:1 !important;
}

#useCasesPage .uc-engine-panel{
  padding:20px 18px !important;
  border-radius:20px !important;
  background:
    radial-gradient(210px 140px at 50% -2%,rgba(49,226,195,.10),transparent 72%),
    linear-gradient(180deg,rgba(8,29,26,.97),rgba(5,22,20,.98)) !important;
}

#useCasesPage .uc-engine-panel-head{
  align-items:center !important;
  gap:14px !important;
}
#useCasesPage .uc-engine-panel-head > div:first-child{
  min-width:0;
}
#useCasesPage .uc-engine-panel-head strong.uc-engine-title{
  margin-top:0 !important;
  color:#f4fffc !important;
  font:760 15px/1.18 Manrope,sans-serif !important;
  letter-spacing:-.025em !important;
}
#useCasesPage .uc-engine-led{
  flex:0 0 auto;
  padding:6px 8px;
  border:1px solid rgba(78,228,202,.16);
  border-radius:999px;
  background:rgba(53,211,184,.07);
  color:#a8e9dd !important;
  font:750 8.5px/1 "Geist Mono",monospace !important;
  letter-spacing:.07em !important;
}
#useCasesPage .uc-engine-led i{
  width:7px !important;
  height:7px !important;
}

#useCasesPage .uc-engine-flowboard{
  gap:14px !important;
  margin-top:18px !important;
}
#useCasesPage .uc-engine-flow-steps,
#useCasesPage .uc-engine-chainboard{
  border-color:rgba(137,232,215,.085) !important;
  border-radius:15px !important;
  background:rgba(255,255,255,.018) !important;
}
#useCasesPage .uc-engine-flow-steps{
  padding:15px 14px !important;
}

#useCasesPage .uc-bridge-step{
  display:grid !important;
  grid-template-columns:14px minmax(0,1fr) !important;
  align-items:center !important;
  column-gap:10px !important;
  opacity:.42;
}
#useCasesPage .uc-bridge-step.active,
#useCasesPage .uc-bridge-step.complete{
  opacity:1;
}
#useCasesPage .uc-bridge-step.active{
  transform:none !important;
}
#useCasesPage .uc-bridge-step i{
  grid-column:1;
  justify-self:center;
  width:11px !important;
  height:11px !important;
  box-sizing:border-box;
  border:1px solid rgba(112,229,210,.42) !important;
  background:#092722 !important;
  box-shadow:0 0 0 3px rgba(49,219,191,.025);
}
#useCasesPage .uc-bridge-step.active i{
  border-color:#5ce2cb !important;
  background:#173e37 !important;
  box-shadow:0 0 0 3px rgba(49,219,191,.08),0 0 11px rgba(49,219,191,.18);
}
#useCasesPage .uc-bridge-step.complete i{
  border-color:#20b59c !important;
  background:#20b59c !important;
}
#useCasesPage .uc-bridge-step span{
  grid-column:2;
  color:#d8ede8 !important;
  font:680 11.5px/1.28 Manrope,sans-serif !important;
  letter-spacing:-.01em;
}
#useCasesPage .uc-bridge-step.active span{
  color:#ffffff !important;
  font-weight:760 !important;
}

#useCasesPage .uc-bridge-line{
  display:grid !important;
  grid-template-columns:14px minmax(0,1fr) !important;
  height:27px !important;
  margin:0 !important;
}
#useCasesPage .uc-bridge-line b{
  grid-column:1;
  justify-self:center;
  position:relative;
  display:block;
  width:2px !important;
  height:100% !important;
  margin:0 !important;
  background:rgba(112,229,210,.17) !important;
  border-radius:999px;
}
#useCasesPage .uc-bridge-line.active b{
  background:rgba(92,226,203,.28) !important;
}
#useCasesPage .uc-bridge-line.active b::after{
  left:50% !important;
  top:0;
  width:6px !important;
  height:6px !important;
  transform:translateX(-50%);
  background:#6cf0d8 !important;
  box-shadow:0 0 0 3px rgba(92,226,203,.09),0 0 12px rgba(92,226,203,.52) !important;
  animation:ucV118Bridge 1.15s cubic-bezier(.26,.58,.34,1) forwards !important;
}
@keyframes ucV118Bridge{
  from{top:0}
  to{top:calc(100% - 6px)}
}

#useCasesPage .uc-chain-head span{
  color:#9bbeb6 !important;
  font:750 9.5px/1 "Geist Mono",monospace !important;
  letter-spacing:.08em !important;
}
#useCasesPage .uc-chain-head strong{
  margin-top:7px !important;
  color:#f2fbf8 !important;
  font:730 14px/1.18 Manrope,sans-serif !important;
  letter-spacing:-.015em;
}

#useCasesPage .uc-engine-chainboard{
  padding:14px !important;
}
#useCasesPage .uc-chain-lane{
  grid-template-columns:minmax(0,1fr) 20px minmax(0,1fr) 20px minmax(0,1fr) !important;
  margin-top:14px !important;
}
#useCasesPage .uc-chain-node{
  min-height:70px !important;
  padding:9px 8px !important;
  border-radius:11px !important;
}
#useCasesPage .uc-chain-node small{
  color:#8faaa4 !important;
  font:750 8px/1 "Geist Mono",monospace !important;
  letter-spacing:.06em !important;
}
#useCasesPage .uc-chain-node strong{
  margin-top:8px !important;
  color:#e9f8f4 !important;
  font:720 10px/1.18 Manrope,sans-serif !important;
  overflow-wrap:anywhere;
}
#useCasesPage .uc-chain-node.active{
  border-color:rgba(74,222,197,.19) !important;
  background:rgba(53,211,184,.055) !important;
}

#useCasesPage .uc-chain-card{
  gap:8px !important;
  margin-top:13px !important;
}
#useCasesPage .uc-chain-card > div{
  padding:10px !important;
  border-radius:10px !important;
}
#useCasesPage .uc-chain-card small{
  color:#8faaa4 !important;
  font:750 8px/1 "Geist Mono",monospace !important;
  letter-spacing:.06em !important;
}
#useCasesPage .uc-chain-card strong{
  margin-top:7px !important;
  color:#eaf8f5 !important;
  font:690 10px/1.25 Manrope,sans-serif !important;
  word-break:normal !important;
  overflow-wrap:anywhere;
}

#useCasesPage .uc-sync-pulses{
  gap:6px !important;
  margin-top:14px !important;
}
#useCasesPage .uc-sync-pulses span{
  width:30px !important;
  height:5px !important;
}

#useCasesPage .uc-engine-panel.is-processing::after{
  animation-duration:1.65s !important;
}

#useCasesPage .uc-engine-flow-steps{
  position:relative !important;
}

#useCasesPage .uc-bridge-line b{
  opacity:0 !important;
}
#useCasesPage .uc-bridge-line b::after{
  display:none !important;
  animation:none !important;
}

#useCasesPage .uc-flow-rail{
  position:absolute;
  z-index:0;
  left:0;
  top:0;
  width:2px;
  height:0;
  border-radius:999px;
  background:rgba(112,229,210,.17);
  pointer-events:none;
  transform:translateX(-50%);
  opacity:0;
}
#useCasesPage .uc-engine-flow-steps.is-measured .uc-flow-rail{
  opacity:1;
}
#useCasesPage .uc-flow-rail-fill{
  position:absolute;
  left:0;
  top:0;
  width:100%;
  height:0;
  border-radius:inherit;
  background:linear-gradient(180deg,#39c9ae,#65ead4);
  box-shadow:0 0 7px rgba(73,220,195,.18);
  transition:height 1.15s cubic-bezier(.22,.62,.32,1);
}
#useCasesPage .uc-flow-packet{
  display:none !important;
  position:absolute;
  z-index:3;
  left:50%;
  top:0;
  width:6px;
  height:6px;
  border-radius:50%;
  background:#78f4dd;
  box-shadow:
    0 0 0 3px rgba(92,226,203,.10),
    0 0 12px rgba(92,226,203,.58);
  transform:translate(-50%,-50%);
  transition:top 1.15s cubic-bezier(.22,.62,.32,1);
}

#useCasesPage .uc-bridge-step{
  position:relative;
  z-index:2;
}
#useCasesPage .uc-bridge-step i{
  position:relative;
  z-index:2;
}

#useCasesPage .uc-flow-rail{
  width:2px !important;
  margin-left:0 !important;
  transform:translateX(-50%) !important;
}

#useCasesPage .uc-stage-link.playing .uc-link-dot{
  animation-duration:var(--uc-link-duration,1.45s) !important;
}
#useCasesPage .uc-stage-link.playing .uc-link-trail::after{
  animation-duration:var(--uc-link-duration,1.45s) !important;
}
#useCasesPage .uc-flow-rail-fill,
#useCasesPage .uc-flow-packet{
  transition-duration:var(--uc-rail-duration,1.15s) !important;
}

#useCasesPage .uc-customer-experience[data-demo]:not([data-demo="checkout"]) .demo-confirm-ring circle{
  stroke:color-mix(in srgb,var(--demo-accent) 16%,#eef3f1) !important;
}
#useCasesPage .uc-customer-experience[data-demo]:not([data-demo="checkout"]) .demo-confirm-ring path{
  stroke:var(--demo-accent) !important;
}
#useCasesPage .uc-customer-experience[data-demo]:not([data-demo="checkout"]) .demo-confirm-ring::before{
  background:linear-gradient(145deg,#fff,var(--demo-soft)) !important;
  box-shadow:inset 0 0 0 1px color-mix(in srgb,var(--demo-accent) 14%,transparent) !important;
}
#useCasesPage .uc-customer-experience[data-demo]:not([data-demo="checkout"]) .demo-confirm-ring::after{
  background:var(--demo-accent) !important;
  box-shadow:
    0 0 0 7px color-mix(in srgb,var(--demo-accent) 11%,transparent),
    0 0 18px color-mix(in srgb,var(--demo-accent) 32%,transparent) !important;
  animation:demoThemePulse 1.8s ease-in-out infinite !important;
}

#useCasesPage .uc-customer-experience[data-demo]:not([data-demo="checkout"]) .demo-state-row.done i{
  background:var(--demo-soft) !important;
  color:var(--demo-accent-deep) !important;
  box-shadow:inset 0 0 0 1px color-mix(in srgb,var(--demo-accent) 18%,transparent) !important;
}

#useCasesPage .uc-customer-experience[data-demo]:not([data-demo="checkout"]) .demo-state-row.current{
  background:linear-gradient(
    90deg,
    color-mix(in srgb,var(--demo-soft) 52%,#fff),
    var(--demo-soft)
  ) !important;
}
#useCasesPage .uc-customer-experience[data-demo]:not([data-demo="checkout"]) .demo-state-row.current i{
  background:var(--demo-soft) !important;
  box-shadow:inset 0 0 0 1px color-mix(in srgb,var(--demo-accent) 22%,transparent) !important;
}
#useCasesPage .uc-customer-experience[data-demo]:not([data-demo="checkout"]) .demo-state-row.current i::before{
  background:var(--demo-accent) !important;
  box-shadow:0 0 0 4px color-mix(in srgb,var(--demo-accent) 11%,transparent) !important;
  animation:demoThemeStatusPulse 1.7s ease-in-out infinite !important;
}
#useCasesPage .uc-customer-experience[data-demo]:not([data-demo="checkout"]) .demo-state-row.current b{
  color:var(--demo-accent-deep) !important;
}

@keyframes demoThemePulse{
  50%{
    box-shadow:
      0 0 0 10px color-mix(in srgb,var(--demo-accent) 5%,transparent),
      0 0 21px color-mix(in srgb,var(--demo-accent) 38%,transparent);
  }
}
@keyframes demoThemeStatusPulse{
  50%{
    box-shadow:0 0 0 7px color-mix(in srgb,var(--demo-accent) 4%,transparent);
  }
}

#useCasesPage .uc-chain-node.current{
  border-color:rgba(92,226,203,.28) !important;
  background:rgba(53,211,184,.075) !important;
}
#useCasesPage .uc-chain-node.current strong{
  color:#83ead8 !important;
}

#useCasesPage .uc-chain-node{
  opacity:.30 !important;
  border-color:rgba(137,232,215,.055) !important;
  background:rgba(255,255,255,.010) !important;
  box-shadow:none !important;
  transition:
    opacity .28s ease,
    background .28s ease,
    border-color .28s ease,
    box-shadow .28s ease,
    transform .28s ease !important;
}
#useCasesPage .uc-chain-node small{
  color:rgba(166,195,188,.40) !important;
  transition:color .28s ease !important;
}
#useCasesPage .uc-chain-node strong{
  color:rgba(220,239,234,.44) !important;
  transition:color .28s ease !important;
}

#useCasesPage .uc-chain-node.complete{
  opacity:.72 !important;
  border-color:rgba(69,195,173,.16) !important;
  background:rgba(37,143,125,.045) !important;
}
#useCasesPage .uc-chain-node.complete small{
  color:rgba(154,199,190,.68) !important;
}
#useCasesPage .uc-chain-node.complete strong{
  color:#b7d9d2 !important;
}

#useCasesPage .uc-chain-node.current{
  opacity:1 !important;
  transform:translateY(-1px);
  border-color:rgba(92,226,203,.52) !important;
  background:
    radial-gradient(110px 60px at 50% 0%,rgba(92,226,203,.13),transparent 75%),
    rgba(53,211,184,.115) !important;
  box-shadow:
    inset 0 0 0 1px rgba(118,240,219,.055),
    0 0 0 1px rgba(47,191,166,.035),
    0 8px 22px -15px rgba(61,224,196,.55) !important;
}
#useCasesPage .uc-chain-node.current small{
  color:#a9d8cf !important;
}
#useCasesPage .uc-chain-node.current strong{
  color:#72efd8 !important;
  text-shadow:0 0 12px rgba(83,232,207,.18);
}

#useCasesPage .uc-chain-node.future{
  opacity:.26 !important;
  background:rgba(255,255,255,.008) !important;
}
#useCasesPage .uc-chain-node.future small{
  color:rgba(143,170,164,.32) !important;
}
#useCasesPage .uc-chain-node.future strong{
  color:rgba(207,228,222,.32) !important;
}

#useCasesPage .uc-chain-arrow{
  opacity:.18 !important;
  transition:opacity .28s ease, color .28s ease !important;
}
#useCasesPage .uc-chain-node.complete + .uc-chain-arrow,
#useCasesPage .uc-chain-node.current + .uc-chain-arrow{
  opacity:.52 !important;
  color:#48cdb5 !important;
}

#useCasesPage .uc-business-experience[data-demo="checkout"]{
  --merchant-accent:#01a98f;
  --merchant-accent-deep:#007c6d;
  --merchant-soft:#eaf8f4;
}
#useCasesPage .uc-business-experience[data-demo="subscription"]{
  --merchant-accent:#6954df;
  --merchant-accent-deep:#4c3ab3;
  --merchant-soft:#eeeaff;
}
#useCasesPage .uc-business-experience[data-demo="booking"]{
  --merchant-accent:#168fc3;
  --merchant-accent-deep:#096f9e;
  --merchant-soft:#e7f6ff;
}
#useCasesPage .uc-business-experience[data-demo="usage"]{
  --merchant-accent:#e19521;
  --merchant-accent-deep:#a96105;
  --merchant-soft:#fff0d2;
}
#useCasesPage .uc-business-experience[data-demo="funding"]{
  --merchant-accent:#5368d8;
  --merchant-accent-deep:#384ba9;
  --merchant-soft:#e9edff;
}
#useCasesPage .uc-business-experience[data-demo="business"]{
  --merchant-accent:#cf684f;
  --merchant-accent-deep:#a74634;
  --merchant-soft:#ffe9e3;
}

#useCasesPage .uc-business-ui{
  min-height:100% !important;
  padding:17px 17px 15px !important;
  background:
    radial-gradient(220px 150px at 88% 0%,color-mix(in srgb,var(--merchant-accent) 8%,transparent),transparent 76%),
    linear-gradient(180deg,#fcfefd,#f6faf8) !important;
  color:#10201d;
}

#useCasesPage .uc-merchant-topbar{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding-bottom:12px;
  border-bottom:1px solid rgba(7,22,21,.07);
}
#useCasesPage .uc-merchant-brand{
  display:flex;
  align-items:center;
  gap:7px;
}
#useCasesPage .uc-merchant-brand > i{
  width:19px;
  height:19px;
  border-radius:6px;
  background:linear-gradient(145deg,#17342e,#0a8d79);
  box-shadow:inset 0 0 0 1px rgba(255,255,255,.12);
}
#useCasesPage .uc-merchant-brand strong{
  color:#1c302b;
  font:750 10.5px/1 Manrope,sans-serif;
  letter-spacing:-.01em;
}
#useCasesPage .uc-merchant-sync{
  display:flex;
  align-items:center;
  gap:5px;
  color:var(--merchant-accent-deep);
  font:750 8.5px/1 "Geist Mono",monospace;
  letter-spacing:.055em;
}
#useCasesPage .uc-merchant-sync i{
  width:6px;
  height:6px;
  border-radius:50%;
  background:var(--merchant-accent);
  box-shadow:0 0 0 3px color-mix(in srgb,var(--merchant-accent) 11%,transparent);
}

#useCasesPage .uc-merchant-header{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:12px;
  margin-top:15px;
}
#useCasesPage .uc-merchant-header > div{
  min-width:0;
}
#useCasesPage .uc-merchant-header h4{
  margin:0;
  color:#10201d;
  font:780 18px/1.08 Manrope,sans-serif;
  letter-spacing:-.035em;
}
#useCasesPage .uc-merchant-header p{
  margin:6px 0 0;
  color:#71827d;
  font:650 9.5px/1.32 Manrope,sans-serif;
}
#useCasesPage .uc-merchant-state{
  flex:0 0 auto;
  max-width:120px;
  padding:6px 7px;
  border:1px solid color-mix(in srgb,var(--merchant-accent) 22%,transparent);
  border-radius:7px;
  background:var(--merchant-soft);
  color:var(--merchant-accent-deep);
  font:780 7.8px/1 "Geist Mono",monospace;
  letter-spacing:.045em;
  text-align:center;
}

#useCasesPage .uc-merchant-summary{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:8px;
  margin-top:14px;
}
#useCasesPage .uc-merchant-summary > div{
  min-width:0;
  padding:11px;
  border:1px solid rgba(7,22,21,.07);
  border-radius:11px;
  background:rgba(255,255,255,.88);
}
#useCasesPage .uc-merchant-summary .uc-merchant-amount{
  grid-column:1/-1;
  display:flex;
  align-items:baseline;
  justify-content:space-between;
  gap:12px;
  background:
    linear-gradient(90deg,color-mix(in srgb,var(--merchant-soft) 64%,#fff),#fff);
  border-color:color-mix(in srgb,var(--merchant-accent) 16%,rgba(7,22,21,.07));
}
#useCasesPage .uc-merchant-summary small,
#useCasesPage .uc-merchant-section-title{
  display:block;
  color:#718984;
  font:760 8.5px/1 "Geist Mono",monospace;
  letter-spacing:.065em;
}
#useCasesPage .uc-merchant-amount strong{
  flex:0 0 auto;
  color:var(--merchant-accent-deep);
  font:800 14px/1 Manrope,sans-serif;
  letter-spacing:-.025em;
  white-space:nowrap;
}
#useCasesPage .uc-merchant-payment strong,
#useCasesPage .uc-merchant-action strong{
  display:block;
  margin-top:7px;
  color:#203630;
  font:730 10.5px/1.28 Manrope,sans-serif;
}
#useCasesPage .uc-merchant-action{
  border-color:color-mix(in srgb,var(--merchant-accent) 12%,rgba(7,22,21,.07)) !important;
}

#useCasesPage .uc-merchant-workflow{
  margin-top:14px;
  padding:12px;
  border:1px solid rgba(7,22,21,.07);
  border-radius:12px;
  background:#fff;
}
#useCasesPage .uc-merchant-section-title{
  color:#607b74;
  font-size:9px;
}
#useCasesPage .uc-merchant-timeline{
  display:grid;
  gap:5px;
  margin-top:10px;
}
#useCasesPage .uc-merchant-step{
  display:grid;
  grid-template-columns:19px minmax(0,1fr);
  align-items:center;
  gap:8px;
  min-height:31px;
  padding:5px 7px;
  border-radius:8px;
  transition:opacity .25s ease,background .25s ease,color .25s ease;
}
#useCasesPage .uc-merchant-step i{
  width:18px;
  height:18px;
  display:grid;
  place-items:center;
  border-radius:50%;
  font:800 7px/1 Manrope,sans-serif;
  font-style:normal;
}
#useCasesPage .uc-merchant-step span{
  font:670 9.7px/1.28 Manrope,sans-serif;
}
#useCasesPage .uc-merchant-step.future{
  opacity:.32;
  color:#72847f;
}
#useCasesPage .uc-merchant-step.future i{
  border:1px solid #cbd6d3;
  background:#f5f8f7;
  color:#8da09b;
}
#useCasesPage .uc-merchant-step.complete{
  opacity:.72;
  color:#536b65;
}
#useCasesPage .uc-merchant-step.complete i{
  background:color-mix(in srgb,var(--merchant-accent) 14%,#fff);
  color:var(--merchant-accent-deep);
  box-shadow:inset 0 0 0 1px color-mix(in srgb,var(--merchant-accent) 18%,transparent);
}
#useCasesPage .uc-merchant-step.current{
  opacity:1;
  color:#17332d;
  background:var(--merchant-soft);
}
#useCasesPage .uc-merchant-step.current i{
  background:var(--merchant-accent);
  color:#fff;
  box-shadow:0 0 0 3px color-mix(in srgb,var(--merchant-accent) 10%,transparent);
}
#useCasesPage .uc-merchant-step.current span{
  font-weight:760;
}

#useCasesPage .uc-merchant-integrations{
  margin-top:12px;
}
#useCasesPage .uc-merchant-tags{
  display:flex;
  flex-wrap:wrap;
  gap:6px;
  margin-top:8px;
}
#useCasesPage .uc-merchant-tags span{
  padding:5px 7px;
  border:1px solid color-mix(in srgb,var(--merchant-accent) 12%,rgba(7,22,21,.07));
  border-radius:7px;
  background:#fff;
  color:#687d77;
  font:740 7.5px/1 "Geist Mono",monospace;
  letter-spacing:.045em;
}

#useCasesPage .uc-business-ui .uc-tablet-topbar,
#useCasesPage .uc-business-ui .uc-tablet-header,
#useCasesPage .uc-business-ui .uc-tablet-grid,
#useCasesPage .uc-business-ui .uc-tablet-timeline,
#useCasesPage .uc-business-ui .uc-tablet-tags{
  display:none !important;
}

#useCasesPage .uc-business-ui{
  margin-top:0 !important;
  min-height:100% !important;
  padding:12px 17px 15px !important;
  border:0 !important;
  border-radius:0 !important;
  box-shadow:none !important;
}

#useCasesPage .uc-merchant-topbar{
  min-height:34px;
  padding:0 1px 9px !important;
}

#useCasesPage .uc-merchant-workflow{
  margin-bottom:0 !important;
}

#useCasesPage .uc-customer-experience[data-demo="subscription"] .demo-pay-head strong em,
#useCasesPage .uc-customer-experience[data-demo="booking"] .demo-pay-head strong em,
#useCasesPage .uc-customer-experience[data-demo="usage"] .demo-pay-head strong em,
#useCasesPage .uc-customer-experience[data-demo="funding"] .demo-pay-head strong em,
#useCasesPage .uc-customer-experience[data-demo="business"] .demo-pay-head strong em{
  color:var(--demo-accent-deep) !important;
}

#useCasesPage .uc-lab-section .uc-section-heading h2{
  max-width:980px;
}

#useCasesPage .uc-flow-switcher .uc-switch-title{
  font-size:15px !important;
  line-height:1.22 !important;
  letter-spacing:-.01em;
}
#useCasesPage .uc-flow-switcher .uc-switch-head{
  gap:12px !important;
}
#useCasesPage .uc-flow-switcher .uc-switch-icon{
  width:36px !important;
  height:36px !important;
}

#useCasesPage .uc-stage-label{
  min-height:36px !important;
  margin-bottom:8px !important;
}
#useCasesPage .uc-stage-label span{
  display:inline-flex !important;
  align-items:center;
  justify-content:center;
  gap:10px;
}
#useCasesPage .uc-stage-title-icon{
  width:18px;
  height:18px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  flex:0 0 auto;
}
#useCasesPage .uc-stage-title-icon svg{
  width:18px;
  height:18px;
  display:block;
}
#useCasesPage .uc-stage-title-icon svg *{
  stroke:currentColor;
  stroke-width:1.8;
  stroke-linecap:round;
  stroke-linejoin:round;
  fill:none;
}

#useCasesPage .uc-experience-stage.v2 .device-column{
  padding:18px 20px 10px !important;
}
#useCasesPage .uc-experience-stage.v2 .center-column{
  padding:18px 10px 10px !important;
}
#useCasesPage .uc-experience-demo{
  margin-bottom:0 !important;
}
#useCasesPage .uc-lab-section{
  padding-bottom:68px !important;
}

#useCasesPage .uc-experience-stage.v2{
  background:transparent !important;
}
#useCasesPage .uc-experience-stage.v2::before{
  display:none !important;
}

#useCasesPage .uc-customer-experience::before,
#useCasesPage .uc-business-experience::before,
#useCasesPage .uc-hashnut-bridge::before{
  display:none !important;
}

#useCasesPage .uc-experience-stage.v2 .device-column{
  padding:14px 20px 2px !important;
}
#useCasesPage .uc-experience-stage.v2 .center-column{
  padding:14px 10px 2px !important;
}
#useCasesPage .uc-stage-label{
  margin-bottom:6px !important;
}
#useCasesPage .uc-lab-section{
  padding-bottom:42px !important;
}

#useCasesPage .uc-experience-demo{
  margin-top:22px !important;
}

#useCasesPage .uc-experience-stage.v2{
  box-shadow:none !important;
  border:0 !important;
}

#useCasesPage .uc-link-end{
  opacity:0 !important;
}

#useCasesPage .uc-experience-stage.v2::after{
  display:none !important;
}

#useCasesPage .uc-experience-demo{
  margin-top:0 !important;
  border:0 !important;
  border-top:0 !important;
  border-bottom:0 !important;
  background:transparent !important;
  box-shadow:none !important;
  overflow:visible !important;
}

#useCasesPage .uc-experience-demo-top{
  border-bottom:0 !important;
  background:transparent !important;
}

#useCasesPage .uc-experience-stage.v2{
  margin-top:32px !important;
  border:0 !important;
  border-top:0 !important;
  border-bottom:0 !important;
  box-shadow:none !important;
  background:transparent !important;
}

#useCasesPage .uc-link-end{
  display:none !important;
}

#useCasesPage .uc-experience-demo::before,
#useCasesPage .uc-experience-demo::after,
#useCasesPage .uc-experience-stage.v2::before,
#useCasesPage .uc-experience-stage.v2::after{
  display:none !important;
  content:none !important;
}

#useCasesPage .uc-experience-stage.v2 .device-column{
  padding-bottom:0 !important;
}
#useCasesPage .uc-experience-stage.v2 .center-column{
  padding-bottom:0 !important;
}
#useCasesPage .uc-lab-section{
  padding-bottom:34px !important;
}

#useCasesPage .usecases-hero-layout{
  display:block !important;
}
#useCasesPage .usecases-sales-hero .inner-page-hero-copy{
  max-width:860px !important;
}
#useCasesPage .usecases-sales-hero .inner-page-hero-lead{
  max-width:720px;
}
#useCasesPage .usecases-sales-hero::before{
  background:
    radial-gradient(760px 460px at 84% 34%,rgba(67,199,255,.055),transparent 72%),
    radial-gradient(620px 380px at 70% 86%,rgba(39,225,193,.045),transparent 74%) !important;
}

#useCasesPage .usecases-sales-hero .inner-page-hero-copy{
  padding-right:0 !important;
}

#useCasesPage .usecases-sales-hero{
  min-height:auto !important;
}

#useCasesPage .usecases-hero-layout{
  display:block !important;
  position:relative;
  z-index:2;
  padding:112px 0 86px !important;
}

#useCasesPage .usecases-sales-hero .inner-page-hero-copy{
  max-width:760px !important;
  padding:0 !important;
}

#useCasesPage .usecases-sales-hero h1{
  max-width:720px !important;
  font:800 clamp(46px,3.9vw,58px)/.95 Manrope,sans-serif !important;
  letter-spacing:-.058em !important;
}
#useCasesPage .usecases-sales-hero h1 .gradient-line{
  display:block;
  margin:0 0 .14em;
}

#useCasesPage .usecases-sales-hero .inner-page-hero-lead{
  width:min(100%,620px) !important;
  max-width:620px !important;
  margin-top:30px !important;
  font-size:17px !important;
  line-height:1.68 !important;
}

#useCasesPage .usecases-sales-hero .inner-page-actions{
  margin-top:46px !important;
}

#useCasesPage .usecases-sales-hero::before{
  background:
    radial-gradient(720px 500px at 84% 40%,rgba(39,225,193,.10),transparent 66%),
    radial-gradient(540px 400px at 96% 4%,rgba(67,199,255,.065),transparent 64%) !important;
}
#useCasesPage .usecases-sales-hero::after{
  right:-230px !important;
  top:118px !important;
  opacity:.92;
}

@media(max-width:900px){
  #useCasesPage .usecases-hero-layout{
    padding:72px 0 78px !important;
  }
  #useCasesPage .usecases-sales-hero h1{
    font-size:clamp(40px,7vw,54px) !important;
  }
}

@media(max-width:640px){
  #useCasesPage .usecases-hero-layout{
    padding:56px 0 70px !important;
  }
  #useCasesPage .usecases-sales-hero h1{
    font-size:clamp(34px,9.2vw,44px) !important;
    line-height:.99 !important;
  }
  #useCasesPage .usecases-sales-hero .inner-page-hero-lead{
    margin-top:23px !important;
    font-size:15px !important;
  }
  #useCasesPage .usecases-sales-hero .inner-page-actions{
    margin-top:36px !important;
  }
}

#useCasesPage .usecases-hero-layout{
  display:grid !important;
  grid-template-columns:minmax(0,1fr) minmax(430px,520px) !important;
  align-items:center;
  gap:clamp(46px,6vw,96px);
}
#useCasesPage .usecases-sales-hero .inner-page-hero-copy{
  max-width:720px !important;
}
#useCasesPage .usecases-sales-hero h1{
  max-width:700px !important;
}

#useCasesPage .uc-hero-constellation{
  position:relative;
  width:min(100%,520px);
  height:430px;
  justify-self:end;
  isolation:isolate;
}
#useCasesPage .uc-hero-constellation::before{
  content:"";
  position:absolute;
  left:50%;
  top:50%;
  width:330px;
  height:330px;
  transform:translate(-50%,-50%);
  border-radius:50%;
  background:
    radial-gradient(circle,rgba(39,225,193,.085) 0%,rgba(39,225,193,.025) 42%,transparent 70%);
  pointer-events:none;
}

#useCasesPage .uc-hero-constellation-lines{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  overflow:visible;
}
#useCasesPage .uc-hero-constellation-lines line{
  stroke:rgba(144,214,202,.20);
  stroke-width:1.15;
  stroke-dasharray:3 7;
  transition:stroke .45s ease,stroke-width .45s ease,filter .45s ease,opacity .45s ease;
}
#useCasesPage .uc-hero-constellation-lines line.active{
  stroke:var(--node-color,#27dfc1);
  stroke-width:1.7;
  stroke-dasharray:none;
  filter:drop-shadow(0 0 5px color-mix(in srgb,var(--node-color) 55%,transparent));
}
#useCasesPage .uc-hero-constellation-lines line.active{
  stroke-dasharray:220;
  stroke-dashoffset:220;
  animation:ucHeroPath 2.7s cubic-bezier(.24,.6,.3,1) forwards;
}
@keyframes ucHeroPath{
  0%{stroke-dashoffset:220;opacity:.34}
  35%{opacity:1}
  100%{stroke-dashoffset:0;opacity:.92}
}

#useCasesPage .uc-hero-core{
  position:absolute;
  left:50%;
  top:50%;
  width:132px;
  height:132px;
  transform:translate(-50%,-50%);
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  background:
    radial-gradient(circle at 42% 32%,rgba(51,223,194,.15),transparent 38%),
    rgba(4,28,25,.88);
  box-shadow:
    inset 0 0 0 1px rgba(139,240,222,.16),
    0 0 0 12px rgba(30,185,160,.025),
    0 24px 60px -34px rgba(0,0,0,.8);
  backdrop-filter:blur(9px);
}
#useCasesPage .uc-hero-core-logo{
  width:31px;
  height:36px;
  margin-bottom:8px;
}
#useCasesPage .uc-hero-core-logo svg{
  width:100%;
  height:100%;
}
#useCasesPage .uc-hero-core-logo path:nth-child(1){fill:#dffdf7}
#useCasesPage .uc-hero-core-logo path:nth-child(2){fill:#36d9bc}
#useCasesPage .uc-hero-core-logo path:nth-child(3){fill:#8de9d7}
#useCasesPage .uc-hero-core strong{
  color:#f1fffb;
  font:800 12px/1 Manrope,sans-serif;
  letter-spacing:.055em;
}
#useCasesPage .uc-hero-core span{
  margin-top:5px;
  color:#81bdb2;
  font:700 7.2px/1 "Geist Mono",monospace;
  letter-spacing:.075em;
}

#useCasesPage .uc-hero-node{
  --node-color:#27dfc1;
  position:absolute;
  display:flex;
  align-items:center;
  gap:9px;
  min-width:0;
  padding:5px 7px;
  border:0;
  background:transparent;
  color:rgba(222,241,236,.58);
  cursor:pointer;
  opacity:.70;
  transition:opacity .3s ease,transform .3s ease,color .3s ease;
}
#useCasesPage .uc-hero-node:hover,
#useCasesPage .uc-hero-node.active{
  opacity:1;
  color:#f3fffc;
}
#useCasesPage .uc-hero-node:hover{
  transform:translateY(-2px);
}
#useCasesPage .uc-hero-node i{
  width:36px;
  height:36px;
  display:grid;
  place-items:center;
  flex:0 0 auto;
  border-radius:50%;
  color:var(--node-color);
  background:color-mix(in srgb,var(--node-color) 10%,rgba(5,28,25,.82));
  box-shadow:
    inset 0 0 0 1px color-mix(in srgb,var(--node-color) 23%,transparent);
  transition:background .35s ease,box-shadow .35s ease,transform .35s ease;
}
#useCasesPage .uc-hero-node.active i{
  background:color-mix(in srgb,var(--node-color) 19%,rgba(5,28,25,.85));
  box-shadow:
    inset 0 0 0 1px color-mix(in srgb,var(--node-color) 44%,transparent),
    0 0 20px color-mix(in srgb,var(--node-color) 22%,transparent);
  transform:scale(1.08);
}
#useCasesPage .uc-hero-node svg{
  width:18px;
  height:18px;
}
#useCasesPage .uc-hero-node svg *{
  fill:none;
  stroke:currentColor;
  stroke-width:1.7;
  stroke-linecap:round;
  stroke-linejoin:round;
}
#useCasesPage .uc-hero-node span{
  font:720 11.5px/1 Manrope,sans-serif;
  letter-spacing:.01em;
  white-space:nowrap;
}

#useCasesPage .node-checkout{
  --node-color:#01b69b;
  left:20px; top:88px;
}
#useCasesPage .node-subscription{
  --node-color:#806cff;
  left:50%; top:34px;
  transform:translateX(-50%);
}
#useCasesPage .node-subscription:hover{transform:translateX(-50%) translateY(-2px)}
#useCasesPage .node-booking{
  --node-color:#43bdea;
  right:12px; top:94px;
}
#useCasesPage .node-usage{
  --node-color:#f2a62d;
  right:4px; bottom:80px;
}
#useCasesPage .node-business{
  --node-color:#db755d;
  left:50%; bottom:26px;
  transform:translateX(-50%);
}
#useCasesPage .node-business:hover{transform:translateX(-50%) translateY(-2px)}
#useCasesPage .node-funding{
  --node-color:#6b7ff4;
  left:12px; bottom:84px;
}

#useCasesPage .usecases-sales-hero::before{
  background:
    radial-gradient(620px 470px at 82% 48%,rgba(39,225,193,.065),transparent 69%),
    radial-gradient(480px 330px at 97% 5%,rgba(67,199,255,.045),transparent 68%) !important;
}

@media(max-width:1100px){
  #useCasesPage .usecases-hero-layout{
    grid-template-columns:minmax(0,1fr) 400px !important;
    gap:36px;
  }
  #useCasesPage .uc-hero-constellation{
    transform:scale(.88);
    transform-origin:center right;
  }
}

@media(max-width:900px){
  #useCasesPage .usecases-hero-layout{
    display:block !important;
  }
  #useCasesPage .uc-hero-constellation{
    width:500px;
    max-width:100%;
    height:390px;
    margin:54px auto -14px;
    transform:scale(.92);
    transform-origin:center center;
    justify-self:auto;
  }
}

@media(max-width:640px){
  #useCasesPage .uc-hero-constellation{
    height:310px;
    margin:38px auto -8px;
    transform:scale(.76);
    transform-origin:top center;
  }
}

#useCasesPage .usecases-sales-hero{
  min-height:auto !important;
}

#useCasesPage .usecases-hero-layout{
  display:block !important;
  position:relative !important;
  z-index:2;
  padding:112px 0 86px !important;
}

#useCasesPage .usecases-sales-hero .inner-page-hero-copy{
  position:relative;
  z-index:3;
  max-width:760px !important;
  padding:0 !important;
}

#useCasesPage .usecases-sales-hero h1{
  max-width:720px !important;
  font:800 clamp(46px,3.9vw,58px)/.95 Manrope,sans-serif !important;
  letter-spacing:-.058em !important;
}

#useCasesPage .usecases-sales-hero h1 .gradient-line{
  display:block;
  margin:0 0 .14em;
}

#useCasesPage .usecases-sales-hero .inner-page-hero-lead{
  width:min(100%,620px) !important;
  max-width:620px !important;
  margin-top:30px !important;
  font-size:17px !important;
  line-height:1.68 !important;
}

#useCasesPage .usecases-sales-hero .inner-page-actions{
  margin-top:46px !important;
}

#useCasesPage .uc-hero-constellation{
  position:absolute !important;
  right:0 !important;
  top:50% !important;
  width:520px !important;
  height:430px !important;
  margin:0 !important;
  justify-self:auto !important;
  transform:translateY(-50%) !important;
  transform-origin:center center !important;
  z-index:2;
}

#useCasesPage .uc-hero-core-logo{
  width:35px !important;
  height:42px !important;
  margin-bottom:8px !important;
  display:flex;
  align-items:center;
  justify-content:center;
}
#useCasesPage .uc-hero-core-logo img{
  display:block;
  width:100% !important;
  height:100% !important;
  object-fit:contain;
}

#useCasesPage .uc-hero-core-logo svg{
  display:none !important;
}

#useCasesPage .usecases-sales-hero::before{
  background:
    radial-gradient(720px 500px at 84% 40%,rgba(39,225,193,.10),transparent 66%),
    radial-gradient(540px 400px at 96% 4%,rgba(67,199,255,.065),transparent 64%) !important;
}
#useCasesPage .usecases-sales-hero::after{
  right:-230px !important;
  top:118px !important;
  opacity:.92 !important;
}

@media(max-width:1180px) and (min-width:901px){
  #useCasesPage .uc-hero-constellation{
    right:-38px !important;
    transform:translateY(-50%) scale(.82) !important;
    transform-origin:center right !important;
  }
}

@media(max-width:900px){
  #useCasesPage .usecases-hero-layout{
    display:block !important;
    padding:72px 0 78px !important;
  }
  #useCasesPage .usecases-sales-hero h1{
    font-size:clamp(40px,7vw,54px) !important;
  }
  #useCasesPage .uc-hero-constellation{
    position:relative !important;
    right:auto !important;
    top:auto !important;
    width:500px !important;
    max-width:100%;
    height:390px !important;
    margin:54px auto -14px !important;
    transform:scale(.92) !important;
    transform-origin:center center !important;
  }
}

@media(max-width:640px){
  #useCasesPage .usecases-hero-layout{
    padding:56px 0 70px !important;
  }
  #useCasesPage .usecases-sales-hero h1{
    font-size:clamp(34px,9.2vw,44px) !important;
    line-height:.99 !important;
  }
  #useCasesPage .usecases-sales-hero .inner-page-hero-lead{
    margin-top:23px !important;
    font-size:15px !important;
  }
  #useCasesPage .usecases-sales-hero .inner-page-actions{
    margin-top:36px !important;
  }
  #useCasesPage .uc-hero-constellation{
    height:310px !important;
    margin:38px auto -8px !important;
    transform:scale(.76) !important;
    transform-origin:top center !important;
  }
}

#productPage .product-calibration-copy{
  padding-top:36px !important;
}

@media(max-width:900px){
  #productPage .product-calibration-copy{
    padding-top:34px !important;
  }
}
@media(max-width:640px){
  #productPage .product-calibration-copy{
    padding-top:28px !important;
  }
}

#useCasesPage .uc-experience-stage.v2{
  grid-template-columns:
    minmax(300px,1.08fr)
    minmax(190px,.54fr)
    minmax(360px,1.28fr) !important;
  column-gap:26px;
  align-items:start;
  min-height:620px;
}

#useCasesPage .uc-experience-stage.v2 .device-column{
  padding:22px 10px !important;
}
#useCasesPage .uc-customer-experience,
#useCasesPage .uc-business-experience{
  z-index:3;
}
#useCasesPage .uc-customer-experience::before{
  width:310px;
  height:310px;
  background:radial-gradient(circle,rgba(11,172,148,.09) 0%,rgba(11,172,148,.03) 40%,transparent 72%);
}
#useCasesPage .uc-business-experience::before{
  width:370px;
  height:370px;
  background:radial-gradient(circle,rgba(11,172,148,.085) 0%,rgba(11,172,148,.028) 40%,transparent 72%);
}

#useCasesPage .uc-device-phone{
  width:266px;
  height:542px;
}
#useCasesPage .uc-device-tablet{
  width:100%;
  max-width:390px;
  height:520px;
}
#useCasesPage .uc-device-wrap{
  min-height:560px;
}

#useCasesPage .uc-customer-experience .uc-stage-label span,
#useCasesPage .uc-business-experience .uc-stage-label span{
  color:#143732 !important;
  font-size:15px !important;
  letter-spacing:.07em !important;
}
#useCasesPage .uc-customer-experience .uc-stage-title-icon,
#useCasesPage .uc-business-experience .uc-stage-title-icon{
  width:20px;
  height:20px;
  opacity:.84;
}

#useCasesPage .uc-experience-stage.v2 .center-column{
  align-self:center;
  padding:22px 0 !important;
  background:transparent !important;
}
#useCasesPage .uc-hashnut-bridge{
  z-index:2;
}
#useCasesPage .uc-hashnut-bridge::before{
  width:230px;
  height:230px;
  background:radial-gradient(circle,rgba(11,172,148,.07) 0%,rgba(11,172,148,.02) 42%,transparent 72%);
}
#useCasesPage .uc-hashnut-bridge .uc-stage-label{
  min-height:24px;
  margin-bottom:10px;
}
#useCasesPage .uc-hashnut-bridge .uc-stage-label span{
  color:#6f837d !important;
  font:750 10.5px/1.2 "Geist Mono",monospace !important;
  letter-spacing:.09em !important;
  text-shadow:none !important;
}
#useCasesPage .uc-hashnut-bridge .uc-stage-title-icon{
  width:15px;
  height:15px;
  opacity:.55;
}

#useCasesPage .uc-engine-panel{
  min-height:0 !important;
  margin-top:0 !important;
  padding:15px 14px !important;
  overflow:visible !important;
  border:1px solid #cfe0db !important;
  border-radius:16px !important;
  background:rgba(245,250,248,.96) !important;
  box-shadow:0 16px 34px -30px rgba(10,67,57,.28) !important;
  color:var(--hn-ink) !important;
}
#useCasesPage .uc-engine-panel::before,
#useCasesPage .uc-engine-panel::after{
  display:none !important;
}
#useCasesPage .uc-engine-panel-head{
  align-items:center;
}
#useCasesPage .uc-engine-panel-head .uc-engine-role{
  display:block !important;
  margin:0 0 5px !important;
  color:#859690 !important;
  font:700 8.5px/1 "Geist Mono",monospace !important;
  letter-spacing:.1em !important;
}
#useCasesPage .uc-engine-panel-head strong{
  margin:0 !important;
  color:#294840 !important;
  font:800 14px/1.1 Manrope,sans-serif !important;
}
#useCasesPage .uc-engine-led{
  color:#7c9089 !important;
  font-size:7px !important;
}
#useCasesPage .uc-engine-led i{
  background:#0aaa90 !important;
  box-shadow:0 0 8px rgba(10,170,144,.34) !important;
}

#useCasesPage .uc-engine-flowboard{
  display:block !important;
  margin-top:13px !important;
}
#useCasesPage .uc-engine-flow-steps{
  padding:12px !important;
  border:1px solid #dbe7e3 !important;
  border-radius:12px !important;
  background:#fff !important;
}
#useCasesPage .uc-bridge-step{
  gap:8px !important;
}
#useCasesPage .uc-bridge-step span{
  color:#4d665f !important;
  font:700 10px/1.25 Manrope,sans-serif !important;
}
#useCasesPage .uc-bridge-step i{
  width:8px !important;
  height:8px !important;
  border-color:#7ccdbd !important;
  background:#f1faf7 !important;
}
#useCasesPage .uc-bridge-step.complete i{
  background:#18aa91 !important;
}
#useCasesPage .uc-bridge-line{
  height:18px !important;
  margin-left:3px !important;
}
#useCasesPage .uc-bridge-line b{
  background:#cfe2dc !important;
}
#useCasesPage .uc-engine-chainboard{
  display:none !important;
}

#useCasesPage .uc-stage-transmission{
  opacity:.42;
}
#useCasesPage .uc-link-trail{
  height:1px !important;
}
#useCasesPage .uc-link-dot{
  width:7px !important;
  height:7px !important;
  box-shadow:0 0 0 3px rgba(59,226,198,.08),0 0 10px rgba(59,226,198,.32) !important;
}

#useCasesPage .uc-stage-link{
  top:54%;
}
#useCasesPage .uc-stage-link.link-left{
  left:28.0%;
  width:12.0%;
}
#useCasesPage .uc-stage-link.link-right{
  left:58.2%;
  width:12.8%;
}

#useCasesPage .uc-customer-ui{
  padding-left:19px;
  padding-right:19px;
}
#useCasesPage .uc-business-ui{
  font-size:inherit;
}

#useCasesPage .uc-section-heading{
  align-items:end;
}
#useCasesPage .uc-section-heading > p{
  max-width:560px;
}

@media(max-width:1100px){
  #useCasesPage .uc-experience-stage.v2{
    grid-template-columns:1fr !important;
    row-gap:24px;
  }
  #useCasesPage .uc-experience-stage.v2 .center-column{
    width:min(100%,420px);
    justify-self:center;
    order:2;
  }
  #useCasesPage .uc-customer-experience{order:1}
  #useCasesPage .uc-business-experience{order:3}
  #useCasesPage .uc-engine-panel{
    width:100%;
  }
  #useCasesPage .uc-device-phone{
    width:258px;
    height:526px;
  }
  #useCasesPage .uc-device-tablet{
    max-width:430px;
    height:500px;
  }
}

#useCasesPage .uc-experience-stage.v2{
  grid-template-columns:
    minmax(300px,1.05fr)
    minmax(230px,.66fr)
    minmax(360px,1.25fr) !important;
  column-gap:24px;
}

#useCasesPage .uc-experience-stage.v2 .center-column{
  padding:18px 0 !important;
}

#useCasesPage .uc-engine-panel{
  width:100%;
  min-height:370px !important;
  padding:20px 18px 18px !important;
  border:1px solid rgba(90,210,190,.18) !important;
  border-radius:18px !important;
  background:
    radial-gradient(220px 150px at 86% 10%,rgba(58,214,187,.10),transparent 70%),
    linear-gradient(180deg,#0b2722 0%,#071a17 100%) !important;
  box-shadow:
    0 20px 42px -28px rgba(0,0,0,.48),
    inset 0 0 0 1px rgba(255,255,255,.015) !important;
  color:#eefaf6 !important;
}

#useCasesPage .uc-engine-panel-head{
  min-height:56px;
  align-items:center;
}

#useCasesPage .uc-engine-panel-head .uc-engine-role{
  color:rgba(202,232,224,.52) !important;
}

#useCasesPage .uc-engine-panel-head strong{
  color:#f0fbf8 !important;
  font-size:16px !important;
}

#useCasesPage .uc-engine-led{
  color:rgba(213,236,230,.55) !important;
}

#useCasesPage .uc-engine-led i{
  background:#25c4a9 !important;
  box-shadow:0 0 10px rgba(37,196,169,.40) !important;
}

#useCasesPage .uc-engine-flowboard{
  margin-top:16px !important;
}

#useCasesPage .uc-engine-flow-steps{
  padding:16px 15px !important;
  border:1px solid rgba(123,211,195,.14) !important;
  border-radius:14px !important;
  background:rgba(4,18,16,.34) !important;
}

#useCasesPage .uc-bridge-step{
  min-height:46px;
}

#useCasesPage .uc-bridge-step span{
  color:rgba(224,241,236,.82) !important;
  font-size:11px !important;
}

#useCasesPage .uc-bridge-step i{
  border-color:#41cdb4 !important;
  background:#0c2d27 !important;
}

#useCasesPage .uc-bridge-step.complete i{
  background:#24bfa4 !important;
}

#useCasesPage .uc-bridge-line{
  height:20px !important;
}

#useCasesPage .uc-bridge-line b{
  background:linear-gradient(180deg,#39c8b0,#195f52) !important;
}

#useCasesPage .uc-hashnut-bridge .uc-stage-label span{
  color:#6f837d !important;
  font-size:10.5px !important;
}

@media(max-width:1100px){
  #useCasesPage .uc-experience-stage.v2 .center-column{
    width:min(100%,460px);
  }
  #useCasesPage .uc-engine-panel{
    min-height:340px !important;
  }
}

/* Contact */
#contactPage{
  background:#f7fbfa;
  color:#0a211e;
}

#contactPage .contact-opening{
  position:relative;
  overflow:hidden;
  padding:108px 0 104px;
  background:
    radial-gradient(760px 520px at 84% 24%,rgba(39,225,193,.09),transparent 68%),
    linear-gradient(135deg,#031615 0%,#08211e 58%,#0b2a26 100%);
  color:#f4fffc;
}
#contactPage .contact-opening::after{
  content:"";
  position:absolute;
  width:800px;
  height:800px;
  border:1px solid rgba(75,205,182,.08);
  border-radius:50%;
  right:-420px;
  top:40px;
  pointer-events:none;
}

#contactPage .contact-opening-inner{
  position:relative;
  z-index:1;
}

#contactPage .contact-opening-copy{
  max-width:820px;
}

#contactPage .contact-opening-copy h1{
  max-width:760px;
  margin:0;
  color:#f7fffd;
  font:800 clamp(46px,3.9vw,58px)/.95 Manrope,sans-serif;
  letter-spacing:-.058em;
}
#contactPage .contact-opening-copy h1 .contact-grad{
  display:block;
  margin-bottom:.14em;
  color:transparent;
  background:linear-gradient(90deg,#fff 0%,#d8f8f2 46%,#43c7ff 100%);
  -webkit-background-clip:text;
  background-clip:text;
  -webkit-text-fill-color:transparent;
}
#contactPage .contact-opening-copy>p{
  max-width:620px;
  margin:28px 0 0;
  color:rgba(234,250,246,.70);
  font-size:17px;
  line-height:1.68;
}

#contactPage .contact-role-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:16px;
  margin-top:68px;
}

#contactPage .contact-role-card{
  position:relative;
  overflow:hidden;
  min-height:340px;
  padding:34px 32px 30px;
  border:1px solid rgba(141,222,207,.17);
  border-radius:18px;
  background:rgba(255,255,255,.022);
  color:#fff;
  text-align:left;
  cursor:pointer;
  transition:transform .3s ease,border-color .3s ease,background .3s ease;
}
#contactPage .contact-role-card:hover,
#contactPage .contact-role-card.active{
  transform:translateY(-4px);
  border-color:rgba(76,230,204,.44);
  background:rgba(39,225,193,.045);
}
#contactPage .contact-role-card.active{
  box-shadow:inset 0 0 0 1px rgba(39,225,193,.08);
}

#contactPage .role-number{
  display:block;
  color:#52dcca;
  font:700 9px/1 "Geist Mono",monospace;
  letter-spacing:.09em;
}

#contactPage .contact-role-card h2{
  margin:23px 0 0;
  color:#f5fffc;
  font:800 clamp(24px,2vw,31px)/1 Manrope,sans-serif;
  letter-spacing:-.045em;
}
#contactPage .contact-role-card h3{
  max-width:310px;
  margin:20px 0 0;
  color:#99eee0;
  font:720 17px/1.2 Manrope,sans-serif;
  letter-spacing:-.02em;
}
#contactPage .contact-role-card p{
  max-width:330px;
  margin:14px 0 0;
  color:rgba(230,245,241,.65);
  font-size:13.2px;
  line-height:1.66;
}

#contactPage .role-card-action{
  position:absolute;
  left:32px;
  bottom:30px;
  display:flex;
  align-items:center;
  gap:7px;
  color:#effbf8;
  font:700 11.5px/1 Manrope,sans-serif;
}
#contactPage .role-card-action b{
  color:#3ee1c7;
  font-size:15px;
}
#contactPage .role-arc{
  position:absolute;
  width:170px;
  height:170px;
  border:1px solid rgba(39,225,193,.12);
  border-radius:50%;
  right:-72px;
  bottom:-80px;
}

#contactPage .contact-form-section{
  padding:112px 0 118px;
  background:#f7fbfa;
}
#contactPage .contact-form-layout{
  display:grid;
  grid-template-columns:minmax(300px,.68fr) minmax(0,1.32fr);
  gap:84px;
  align-items:start;
}

#contactPage .contact-section-index{
  color:#0a9783;
  font:700 10px/1 "Geist Mono",monospace;
  letter-spacing:.09em;
}
#contactPage .contact-form-intro h2{
  max-width:480px;
  margin:17px 0 0;
  color:#081c19;
  font:800 clamp(40px,4.2vw,58px)/1 Manrope,sans-serif;
  letter-spacing:-.055em;
}
#contactPage .contact-form-intro>p{
  max-width:470px;
  margin:20px 0 0;
  color:#61736f;
  font-size:15px;
  line-height:1.7;
}

#contactPage .contact-simple{
  display:flex;
  flex-direction:column;
  margin-top:40px;
  border-top:1px solid #dbe5e2;
}
#contactPage .contact-simple>a,
#contactPage .contact-simple>div{
  display:grid;
  grid-template-columns:72px minmax(0,1fr) auto;
  gap:14px;
  align-items:center;
  min-height:58px;
  padding:11px 0;
  border-bottom:1px solid #dbe5e2;
  color:#0b221e;
  text-decoration:none;
}
#contactPage .contact-simple small{
  color:#81908d;
  font:700 8.5px/1 "Geist Mono",monospace;
  letter-spacing:.08em;
}
#contactPage .contact-simple strong{
  color:#0b221e;
  font:680 12.8px/1.4 Manrope,sans-serif;
}
#contactPage .contact-simple a:hover strong{
  color:#078f7c;
}
#contactPage .contact-simple b{
  color:#8aa09b;
  font:600 14px/1 Manrope,sans-serif;
}

#contactPage .contact-office{
  margin-top:28px;
}
#contactPage .contact-office small{
  color:#879693;
  font:700 8.5px/1 "Geist Mono",monospace;
  letter-spacing:.09em;
}
#contactPage .contact-office p{
  margin:9px 0 0;
  color:#334844;
  font-size:12.5px;
  line-height:1.55;
}

#contactPage .contact-form-panel{
  padding:36px;
  border:1px solid #dce8e5;
  border-radius:20px;
  background:#fff;
  box-shadow:0 28px 70px -54px rgba(5,44,37,.35);
}
#contactPage .contact-form-top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
  padding-bottom:27px;
  border-bottom:1px solid #e4ecea;
}
#contactPage .contact-form-top>span{
  color:#627470;
  font:700 10px/1 "Geist Mono",monospace;
  letter-spacing:.07em;
  text-transform:uppercase;
}
#contactPage .contact-form-roles{
  display:flex;
  gap:7px;
  flex-wrap:wrap;
  justify-content:flex-end;
}
#contactPage .contact-form-roles button{
  height:34px;
  padding:0 12px;
  border:1px solid #d9e5e2;
  border-radius:8px;
  background:#fff;
  color:#4f625e;
  font:650 10.5px/1 Manrope,sans-serif;
  cursor:pointer;
  transition:.25s ease;
}
#contactPage .contact-form-roles button:hover,
#contactPage .contact-form-roles button.active{
  border-color:#0cb89e;
  background:#eaf9f6;
  color:#087d6d;
}

#contactPage .contact-field-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:22px 18px;
  margin-top:28px;
}
#contactPage .contact-field{
  display:flex;
  flex-direction:column;
  gap:9px;
}
#contactPage .contact-field-wide{
  grid-column:1/-1;
}
#contactPage .contact-field>span{
  color:#314945;
  font:650 11px/1.2 Manrope,sans-serif;
}
#contactPage .contact-field input,
#contactPage .contact-field select,
#contactPage .contact-field textarea{
  width:100%;
  box-sizing:border-box;
  border:1px solid #dce6e3;
  border-radius:9px;
  background:#fbfdfc;
  color:#0d2723;
  font:500 13px/1.35 Manrope,sans-serif;
  outline:none;
  transition:border-color .2s ease,box-shadow .2s ease,background .2s ease;
}
#contactPage .contact-field input,
#contactPage .contact-field select{
  height:46px;
  padding:0 13px;
}
#contactPage .contact-field textarea{
  min-height:142px;
  resize:vertical;
  padding:13px;
}
#contactPage .contact-field input:focus,
#contactPage .contact-field select:focus,
#contactPage .contact-field textarea:focus{
  border-color:#18bda5;
  background:#fff;
  box-shadow:0 0 0 3px rgba(24,189,165,.08);
}
#contactPage .contact-field input::placeholder,
#contactPage .contact-field textarea::placeholder{
  color:#9aa8a5;
}
#contactPage .contact-field.is-invalid input,
#contactPage .contact-field.is-invalid textarea{
  border-color:#c9685e;
  box-shadow:0 0 0 3px rgba(201,104,94,.07);
}

#contactPage .contact-form-submit-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
  margin-top:30px;
  padding-top:24px;
  border-top:1px solid #e4ecea;
}
#contactPage .contact-form-submit-row p{
  max-width:360px;
  margin:0;
  color:#81908d;
  font-size:10.8px;
  line-height:1.5;
}
#contactPage .contact-submit{
  flex:0 0 auto;
  border:0;
  cursor:pointer;
}
#contactPage .contact-form-status{
  min-height:18px;
  margin-top:12px;
  color:#0a8876;
  font-size:11px;
  line-height:1.4;
}
#contactPage .contact-form-status.is-sending{
  color:#6b7a86;
}
#contactPage .contact-form-status.is-error{
  color:#c0392b;
}
#contactPage .contact-submit[disabled]{
  opacity:.6;
  cursor:progress;
}
#contactPage .contact-gotcha{
  display:none;
}

@media(max-width:980px){
  #contactPage .contact-opening{
    padding:76px 0 82px;
  }
  #contactPage .contact-role-grid{
    grid-template-columns:1fr;
    margin-top:52px;
  }
  #contactPage .contact-role-card{
    min-height:270px;
  }
  #contactPage .contact-form-layout{
    grid-template-columns:1fr;
    gap:58px;
  }
}
@media(max-width:640px){
  #contactPage .contact-opening{
    padding:58px 0 68px;
  }
  #contactPage .contact-opening-copy h1{
    font-size:clamp(34px,9.2vw,44px);
    line-height:.99;
  }
  #contactPage .contact-opening-copy>p{
    margin-top:23px;
    font-size:15px;
  }
  #contactPage .contact-role-grid{
    margin-top:42px;
  }
  #contactPage .contact-role-card{
    min-height:300px;
    padding:29px 25px 26px;
  }
  #contactPage .contact-role-card h2{
    font-size:27px;
  }
  #contactPage .role-card-action{
    left:25px;
    bottom:26px;
  }
  #contactPage .contact-form-section{
    padding:78px 0 86px;
  }
  #contactPage .contact-form-intro h2{
    font-size:clamp(36px,10vw,48px);
  }
  #contactPage .contact-form-panel{
    padding:24px 18px;
    border-radius:16px;
  }
  #contactPage .contact-form-top{
    align-items:flex-start;
    flex-direction:column;
    gap:14px;
  }
  #contactPage .contact-form-roles{
    justify-content:flex-start;
  }
  #contactPage .contact-field-grid{
    grid-template-columns:1fr;
  }
  #contactPage .contact-field-wide{
    grid-column:auto;
  }
  #contactPage .contact-form-submit-row{
    align-items:flex-start;
    flex-direction:column;
  }
  #contactPage .contact-simple>a,
  #contactPage .contact-simple>div{
    grid-template-columns:64px minmax(0,1fr) auto;
  }
}

@media(min-width:981px){
  #contactPage .contact-opening{
    height:var(--hashnut-desktop-hero-height,684px) !important;
    min-height:var(--hashnut-desktop-hero-height,684px) !important;
    max-height:var(--hashnut-desktop-hero-height,684px) !important;
    padding:0 !important;
  }

  #contactPage .contact-opening-inner{
    height:100% !important;
    display:flex !important;
    flex-direction:column;
    justify-content:flex-start;
    box-sizing:border-box;
    padding-top:92px !important;
    padding-bottom:46px !important;
  }

  #contactPage .contact-opening-copy>p{
    margin-top:22px !important;
  }

  #contactPage .contact-role-grid{
    margin-top:40px !important;
    gap:15px !important;
  }

  #contactPage .contact-role-card{
    min-height:0 !important;
    height:258px !important;
    padding:29px 30px 26px !important;
  }

  #contactPage .contact-role-card h2{
    margin-top:0 !important;
    font-size:clamp(25px,1.85vw,30px) !important;
    line-height:1 !important;
  }

  #contactPage .contact-role-card h3{
    margin-top:17px !important;
    font-size:16px !important;
  }

  #contactPage .contact-role-card p{
    margin-top:11px !important;
    font-size:12.7px !important;
    line-height:1.58 !important;
  }

  #contactPage .role-card-action{
    left:30px !important;
    bottom:25px !important;
  }
}

#contactPage .role-number{
  display:none !important;
}

#contactPage .contact-simple{
  display:none !important;
}

#contactPage .contact-compact-direct{
  margin-top:34px;
  padding-top:19px;
  border-top:1px solid #dbe5e2;
}
#contactPage .contact-compact-direct p{
  margin:0;
  color:#667a75;
  font-size:12.5px;
  line-height:1.65;
}
#contactPage .contact-compact-direct p:first-child{
  color:#435a55;
}
#contactPage .contact-compact-direct a{
  color:#0a8d79;
  font-weight:700;
  text-decoration:none;
}
#contactPage .contact-compact-direct a:hover{
  text-decoration:underline;
}
#contactPage .contact-compact-direct span{
  margin:0 7px;
  color:#a2afac;
}

#contactPage .contact-office-plain{
  margin-top:24px !important;
}

@media(max-width:980px){
  #contactPage .contact-opening{
    height:auto !important;
    min-height:auto !important;
    max-height:none !important;
  }
}

#contactPage .contact-form-intro > .contact-section-index,
#contactPage .contact-form-intro > h2,
#contactPage .contact-form-intro > p{
  display:none !important;
}

#contactPage .contact-compact-direct{
  display:none !important;
}

#contactPage .contact-direct-list{
  display:flex !important;
  flex-direction:column;
  gap:0;
  margin-top:0 !important;
  border-top:1px solid #dbe5e2;
}

#contactPage .contact-direct-item{
  min-height:74px;
  display:grid !important;
  grid-template-columns:42px minmax(0,1fr) auto;
  gap:14px;
  align-items:center;
  padding:13px 0;
  border-bottom:1px solid #dbe5e2;
  color:#0b221e;
  text-decoration:none;
}

#contactPage a.contact-direct-item:hover strong{
  color:#078f7c;
}

#contactPage .contact-direct-icon{
  width:36px;
  height:36px;
  display:grid;
  place-items:center;
  border-radius:50%;
  background:#eaf5f2;
  color:#0b9b86;
}

#contactPage .contact-direct-icon svg{
  width:18px;
  height:18px;
  fill:none;
  stroke:currentColor;
  stroke-width:1.7;
  stroke-linecap:round;
  stroke-linejoin:round;
}

#contactPage .contact-x-icon{
  font:700 16px/1 Manrope,sans-serif;
}

#contactPage .contact-direct-item span:nth-child(2){
  display:flex;
  flex-direction:column;
  gap:5px;
}

#contactPage .contact-direct-item small{
  color:#81908d;
  font:700 8.5px/1 "Geist Mono",monospace;
  letter-spacing:.08em;
}

#contactPage .contact-direct-item strong{
  font:700 13px/1.25 Manrope,sans-serif;
  color:#0b221e;
  transition:color .25s ease;
}

#contactPage .contact-direct-item>b{
  color:#8aa09b;
  font:600 15px/1 Manrope,sans-serif;
}

#contactPage .contact-direct-static{
  cursor:default;
}

#contactPage .contact-office{
  margin-top:30px !important;
}

@media(max-width:640px){
  #contactPage .contact-direct-item{
    grid-template-columns:42px minmax(0,1fr) auto;
  }
}

#contactPage .contact-form-layout{
  grid-template-columns:minmax(0,1.32fr) minmax(300px,.68fr) !important;
  gap:84px !important;
}

#contactPage .contact-form-intro{
  align-self:start;
}

#contactPage .contact-form-submit-row{
  display:flex !important;
  align-items:center !important;
  justify-content:center !important;
  margin-top:30px !important;
  padding-top:24px !important;
  border-top:1px solid #e4ecea !important;
}

#contactPage .contact-form-submit-row > p{
  display:none !important;
}

#contactPage .contact-submit{
  margin:0 auto !important;
}

@media(max-width:980px){
  #contactPage .contact-form-layout{
    grid-template-columns:1fr !important;
    gap:58px !important;
  }
}

@media(min-width:981px){
  #contactPage .contact-opening-inner{
    position:relative !important;
  }

  #contactPage .contact-opening-copy{
    max-width:720px !important;
    padding-right:0 !important;
  }

  #contactPage .contact-hero-direct{
    position:absolute;
    top:94px;
    right:0;
    width:300px;
    display:flex;
    flex-direction:column;
    border-top:1px solid rgba(153,225,212,.18);
  }

  #contactPage .contact-hero-direct > a,
  #contactPage .contact-hero-office{
    display:grid;
    grid-template-columns:64px minmax(0,1fr) auto;
    gap:12px;
    align-items:center;
    min-height:58px;
    padding:12px 0;
    border-bottom:1px solid rgba(153,225,212,.16);
    text-decoration:none;
  }

  #contactPage .contact-hero-office{
    grid-template-columns:94px minmax(0,1fr);
    align-items:start;
    padding-top:15px;
    padding-bottom:15px;
  }

  #contactPage .contact-hero-direct small{
    color:rgba(174,218,210,.58);
    font:700 8.5px/1 "Geist Mono",monospace;
    letter-spacing:.08em;
  }

  #contactPage .contact-hero-direct strong{
    color:#edf9f6;
    font:650 12px/1.45 Manrope,sans-serif;
  }

  #contactPage .contact-hero-direct > a b{
    color:rgba(183,225,218,.55);
    font:600 14px/1 Manrope,sans-serif;
  }

  #contactPage .contact-hero-direct > a:hover strong{
    color:#65e7d3;
  }

  #contactPage .contact-role-grid{
    margin-top:42px !important;
  }
}

#contactPage .contact-form-section{
  padding:96px 0 108px !important;
}

#contactPage .contact-form-layout{
  display:block !important;
  max-width:920px !important;
  margin:0 auto !important;
}

#contactPage .contact-form-panel{
  width:100% !important;
  max-width:none !important;
  margin:0 auto !important;
  padding:42px 46px !important;
  box-sizing:border-box;
}

#contactPage .contact-field-grid{
  gap:24px 20px !important;
}

#contactPage .contact-form-submit-row{
  justify-content:center !important;
}

@media(max-width:980px){
  #contactPage .contact-hero-direct{
    position:relative;
    width:100%;
    max-width:520px;
    margin-top:34px;
    border-top:1px solid rgba(153,225,212,.18);
  }

  #contactPage .contact-hero-direct > a,
  #contactPage .contact-hero-office{
    display:grid;
    grid-template-columns:64px minmax(0,1fr) auto;
    gap:12px;
    align-items:center;
    min-height:58px;
    padding:12px 0;
    border-bottom:1px solid rgba(153,225,212,.16);
    text-decoration:none;
  }

  #contactPage .contact-hero-office{
    grid-template-columns:94px minmax(0,1fr);
    align-items:start;
    padding-top:15px;
    padding-bottom:15px;
  }

  #contactPage .contact-hero-direct small{
    color:rgba(174,218,210,.58);
    font:700 8.5px/1 "Geist Mono",monospace;
    letter-spacing:.08em;
  }

  #contactPage .contact-hero-direct strong{
    color:#edf9f6;
    font:650 12px/1.45 Manrope,sans-serif;
  }

  #contactPage .contact-form-layout{
    max-width:820px !important;
  }
}

@media(max-width:640px){
  #contactPage .contact-form-panel{
    padding:26px 20px !important;
  }
}

#homePage .home-industry-overview{
  margin-top:34px;
}
#homePage .home-industry-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:14px;
}
#homePage .home-industry-card{
  min-height:196px;
  padding:24px 24px 22px;
  border:1px solid rgba(18,73,63,.11);
  border-radius:16px;
  background:rgba(255,255,255,.62);
  transition:transform .22s ease,border-color .22s ease,box-shadow .22s ease;
}
#homePage .home-industry-card:hover{
  transform:translateY(-3px);
  border-color:rgba(10,137,116,.24);
  box-shadow:0 14px 32px rgba(18,74,63,.06);
}
#homePage .home-industry-card .item-glyph{
  width:34px;
  height:34px;
  display:grid;
  place-items:center;
  color:#078f79;
}
#homePage .home-industry-card .item-glyph svg{
  width:27px;
  height:27px;
  fill:none;
  stroke:currentColor;
  stroke-width:1.55;
  stroke-linecap:round;
  stroke-linejoin:round;
}
#homePage .home-industry-card>span{
  display:block;
  margin-top:18px;
  color:#078f79;
  font:700 11.5px/1 "Geist Mono",monospace;
  letter-spacing:.045em;
  text-transform:uppercase;
}
#homePage .home-industry-card h3{
  max-width:330px;
  margin:11px 0 0;
  color:#17352f;
  font:750 17px/1.35 Manrope,sans-serif;
  letter-spacing:-.018em;
}
#homePage .home-industry-more{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:34px;
  margin-top:22px;
  padding-top:22px;
  border-top:1px solid rgba(18,73,63,.12);
}
#homePage .home-industry-more p{
  max-width:620px;
  margin:0;
  color:#647a74;
  font-size:14px;
  line-height:1.55;
}
#homePage .home-industry-more a{
  display:inline-flex;
  align-items:center;
  gap:9px;
  flex:0 0 auto;
  color:#087d6b;
  font:750 13.5px/1 Manrope,sans-serif;
  text-decoration:none;
}
#homePage .home-industry-more a span{
  transition:transform .18s ease;
}
#homePage .home-industry-more a:hover span{
  transform:translateX(3px);
}
@media(max-width:980px){
  #homePage .home-industry-grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }
}
@media(max-width:640px){
  #homePage .home-industry-grid{
    grid-template-columns:1fr;
  }
  #homePage .home-industry-card{
    min-height:0;
  }
  #homePage .home-industry-more{
    align-items:flex-start;
    flex-direction:column;
    gap:14px;
  }
}

#getStartedPage .gs4-preview-output>div{
  justify-content:flex-end;
}
#getStartedPage .gs4-preview-output>div strong{
  max-width:100%;
}

#contactPage .contact-role-card{
  padding-bottom:28px;
}

/* Documentation */
#documentationPage{background:#fff;color:#16312b;min-height:100vh;}
#documentationPage[hidden]{display:none!important}
#documentationPage .docs-shell{display:grid;grid-template-columns:276px minmax(0,1fr) 210px;max-width:1540px;margin:0 auto;min-height:calc(100vh - 76px);}
#documentationPage .docs-sidebar{border-right:1px solid #e1e9e6;background:#f8faf9;}
#documentationPage .docs-sidebar-inner{position:sticky;top:76px;height:calc(100vh - 76px);overflow:auto;padding:30px 20px 28px;scrollbar-width:thin;}
#documentationPage .docs-brand{display:flex;align-items:center;justify-content:space-between;gap:10px;padding:0 8px 20px;border-bottom:1px solid #e0e8e5;}
#documentationPage .docs-brand strong{font:800 18px/1 Manrope,sans-serif;letter-spacing:-.02em;color:#15332c}
#documentationPage .docs-brand span{padding:5px 7px;border-radius:5px;background:#e5f6f1;color:#078872;font:700 10px/1 "Geist Mono",monospace}
#documentationPage .docs-search{height:40px;margin:18px 4px 22px;padding:0 10px;display:flex;align-items:center;gap:8px;border:1px solid #dce6e3;border-radius:8px;background:#fff;}
#documentationPage .docs-search>span{color:#70847e;font-size:17px}
#documentationPage .docs-search input{min-width:0;flex:1;border:0;outline:0;background:none;color:#29453e;font:500 12.5px/1 Manrope,sans-serif}
#documentationPage .docs-search input::placeholder{color:#92a19d}
#documentationPage .docs-search kbd{padding:3px 5px;border:1px solid #e0e7e5;border-radius:4px;background:#f7f9f8;color:#8a9995;font:600 9px/1 "Geist Mono",monospace}
#documentationPage .docs-nav-group{margin:0 0 22px}
#documentationPage .docs-nav-group h3{margin:0 8px 8px;color:#99a6a2;font:700 10px/1 "Geist Mono",monospace;letter-spacing:.085em;text-transform:uppercase}
#documentationPage .docs-nav-group a{display:block;margin:1px 0;padding:7px 9px;border-radius:6px;color:#657a74;font:550 12.5px/1.3 Manrope,sans-serif;text-decoration:none;transition:.14s ease}
#documentationPage .docs-nav-group a:hover{background:#eef5f2;color:#245148}
#documentationPage .docs-nav-group a.active{background:#e1f4ef;color:#077f6c;font-weight:750}
#documentationPage .docs-nav-group a.search-hidden{display:none}
#documentationPage .docs-sidebar-actions{display:grid;grid-template-columns:1fr 1fr;gap:7px;padding:18px 4px 0;border-top:1px solid #e0e8e5}
#documentationPage .docs-sidebar-actions a{min-height:36px;display:flex;align-items:center;justify-content:center;border:1px solid #d8e5e1;border-radius:7px;background:#fff;color:#3d6259;font:700 10.5px/1 Manrope,sans-serif;text-decoration:none}
#documentationPage .docs-content-column{min-width:0;background:#fff;}
#documentationPage .docs-content{width:min(820px,calc(100% - 72px));margin:0 auto;padding:68px 0 100px;}
#documentationPage .docs-article[hidden]{display:none!important}
#documentationPage .docs-article-head{padding-bottom:34px;border-bottom:1px solid #e1e8e6;margin-bottom:42px}
#documentationPage .docs-article-kicker{margin:0 0 14px;color:#078b75;font:700 10.5px/1 "Geist Mono",monospace;letter-spacing:.09em;text-transform:uppercase}
#documentationPage .docs-title-row{display:flex;align-items:center;justify-content:space-between;gap:22px}
#documentationPage .docs-title-row h1{margin:0;color:#132f29;font:800 clamp(38px,4.1vw,54px)/.98 Manrope,sans-serif;letter-spacing:-.055em}
#documentationPage .docs-role{flex:0 0 auto;padding:7px 9px;border:1px solid #cce4de;border-radius:999px;background:#f2faf7;color:#397067;font:700 10px/1 "Geist Mono",monospace;white-space:nowrap}
#documentationPage .docs-article-head>p{max-width:730px;margin:18px 0 0;color:#667b75;font-size:15.5px;line-height:1.7}
#documentationPage .docs-article-body>section{margin:0 0 48px;scroll-margin-top:110px}
#documentationPage .docs-article-body>section:last-child{margin-bottom:0}
#documentationPage .docs-article-body h2{margin:0 0 15px;color:#17342e;font:800 27px/1.08 Manrope,sans-serif;letter-spacing:-.035em}
#documentationPage .docs-article-body h3{margin:0 0 10px;color:#21443c;font:750 19px/1.15 Manrope,sans-serif}
#documentationPage .docs-article-body p,#documentationPage .docs-article-body li{color:#5f756f;font-size:14.5px;line-height:1.72}
#documentationPage .docs-article-body p{margin:11px 0}
#documentationPage .docs-article-body ul{padding-left:22px;margin:12px 0}
#documentationPage .docs-article-body li{margin:6px 0}
#documentationPage code{font-family:"Geist Mono",monospace;font-size:.9em;background:#eef3f1;color:#244a41;padding:2px 5px;border-radius:4px}
#documentationPage .docs-table-wrap{overflow:auto;margin:17px 0 0;border:1px solid #dce6e3;border-radius:10px}
#documentationPage table{width:100%;border-collapse:collapse;min-width:560px;background:#fff}
#documentationPage th{padding:11px 13px;background:#f4f8f6;border-bottom:1px solid #dce6e3;color:#5c756e;font:700 10.5px/1.2 "Geist Mono",monospace;text-transform:uppercase;letter-spacing:.05em;text-align:left}
#documentationPage td{padding:12px 13px;border-bottom:1px solid #e5ece9;color:#5c716b;font-size:13.5px;line-height:1.55;vertical-align:top}
#documentationPage tr:last-child td{border-bottom:0}
#documentationPage .docs-callout{margin:20px 0;padding:16px 18px;border-left:3px solid #19a68d;border-radius:8px;background:#f0f9f6}
#documentationPage .docs-callout strong{display:block;color:#285048;font-size:13px}
#documentationPage .docs-callout p{margin:5px 0 0;font-size:13.5px;line-height:1.58}
#documentationPage .docs-callout.warning{border-left-color:#d79b30;background:#fff8e9}
#documentationPage .docs-callout.warning strong{color:#805a17}
#documentationPage .docs-callout.danger{border-left-color:#c96b63;background:#fff1ef}
#documentationPage .docs-callout.danger strong{color:#8c423c}
#documentationPage .docs-callout.success{border-left-color:#0a9a80;background:#edf9f5}
#documentationPage .docs-code{margin:18px 0;border:1px solid #1d302c;border-radius:10px;overflow:hidden;background:#0c1715;box-shadow:0 14px 30px rgba(13,35,30,.08)}
#documentationPage .docs-code-head{height:40px;display:flex;align-items:center;justify-content:space-between;padding:0 12px 0 15px;border-bottom:1px solid rgba(255,255,255,.08);background:#101f1c}
#documentationPage .docs-code-head span{color:#91a8a2;font:650 10px/1 "Geist Mono",monospace;text-transform:uppercase;letter-spacing:.06em}
#documentationPage .docs-code-head button{padding:5px 8px;border:1px solid rgba(255,255,255,.13);border-radius:5px;background:transparent;color:#a9bcb7;font:650 10px/1 Manrope,sans-serif;cursor:pointer}
#documentationPage .docs-code pre{margin:0;padding:18px 20px;overflow:auto;color:#d7e8e3;font:500 12.5px/1.65 "Geist Mono",monospace}
#documentationPage .docs-code code{padding:0;background:none;color:inherit;font-size:inherit}
#documentationPage .docs-caption{font-size:12.5px!important;color:#82948f!important}
#documentationPage .docs-steps{list-style:none;padding:0;margin:18px 0 0;border-top:1px solid #dfe8e5}
#documentationPage .docs-steps li{display:grid;grid-template-columns:34px minmax(0,1fr);gap:14px;padding:17px 0;border-bottom:1px solid #e5ece9;margin:0}
#documentationPage .docs-steps li>span{width:30px;height:30px;display:grid;place-items:center;border:1px solid #c8dcd6;border-radius:50%;color:#078b75;font:700 10px/1 "Geist Mono",monospace}
#documentationPage .docs-steps strong{display:block;color:#28483f;font-size:14px}
#documentationPage .docs-steps p{margin:5px 0 0;font-size:13.5px;line-height:1.55}
#documentationPage .docs-screen-guide{max-width:680px;margin:20px 0 18px;border:1px solid #d5e1de;border-radius:13px;overflow:hidden;background:#fff;box-shadow:0 20px 50px rgba(21,67,57,.08)}
#documentationPage .docs-screen-bar{height:38px;display:flex;align-items:center;gap:6px;padding:0 13px;background:#f4f7f6;border-bottom:1px solid #dee7e4}
#documentationPage .docs-screen-bar i{width:7px;height:7px;border-radius:50%;background:#c8d2cf}
#documentationPage .docs-screen-bar span{margin-left:6px;color:#697e78;font:600 11px/1 Manrope,sans-serif}
#documentationPage .docs-screen-inner{padding:22px 24px 24px}
#documentationPage .docs-screen-title{display:flex;align-items:center;justify-content:space-between;gap:15px;padding-bottom:17px;border-bottom:1px solid #e4ebe9}
#documentationPage .docs-screen-title strong{color:#24443c;font:800 17px/1 Manrope,sans-serif}
#documentationPage .docs-screen-title em{font-style:normal;color:#098c77;font:700 9.5px/1 "Geist Mono",monospace;letter-spacing:.06em}
#documentationPage .docs-screen-field{min-height:50px;display:flex;align-items:center;justify-content:space-between;gap:20px;border-bottom:1px solid #e7eeec}
#documentationPage .docs-screen-field span{color:#71847e;font-size:12px}
#documentationPage .docs-screen-field strong{max-width:60%;text-align:right;color:#36554d;font:600 11.5px/1.35 "Geist Mono",monospace;overflow-wrap:anywhere}
#documentationPage .docs-screen-inner>button{margin-top:18px;min-height:40px;padding:0 16px;border:0;border-radius:7px;background:#07927c;color:#fff;font:700 12px/1 Manrope,sans-serif}
#documentationPage .docs-screen-status{margin-top:15px;padding:12px;border:1px solid #cce4de;border-radius:7px;background:#f1faf7;color:#078872;font-size:12px}
#documentationPage .docs-screen-status span{margin-left:6px;color:#476a61}
#documentationPage .docs-download-row{display:flex;flex-wrap:wrap;gap:8px;margin:18px 0}
#documentationPage .docs-download-row span{padding:9px 12px;border:1px solid #d4e2de;border-radius:7px;background:#fff;color:#496960;font:700 11.5px/1 Manrope,sans-serif}
#documentationPage .docs-home-path{display:grid;grid-template-columns:repeat(4,1fr);gap:10px;margin-top:20px}
#documentationPage .docs-home-path a{min-height:138px;padding:18px;border:1px solid #dce6e3;border-radius:11px;background:#fbfdfc;text-decoration:none}
#documentationPage .docs-home-path a:hover{border-color:#a9d8ce;background:#f4faf8}
#documentationPage .docs-home-path span{display:grid;place-items:center;width:28px;height:28px;border-radius:50%;background:#e6f5f1;color:#078a75;font:700 9.5px/1 "Geist Mono",monospace}
#documentationPage .docs-home-path strong{display:block;margin-top:22px;color:#264b42;font:800 15px/1 Manrope,sans-serif}
#documentationPage .docs-home-path small{display:block;margin-top:7px;color:#71847f;font-size:11.5px;line-height:1.4}
#documentationPage .docs-tool-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:11px;margin-top:18px}
#documentationPage .docs-tool-grid a{padding:20px;border:1px solid #dce6e3;border-radius:11px;background:#fff;text-decoration:none}
#documentationPage .docs-tool-grid span{color:#0a8a75;font:700 9.5px/1 "Geist Mono",monospace;letter-spacing:.07em}
#documentationPage .docs-tool-grid strong{display:block;margin-top:13px;color:#284a42;font-size:14px}
#documentationPage .docs-tool-grid p{margin:8px 0 0;font-size:12.5px;line-height:1.5}
#documentationPage .docs-flow-line{display:flex;align-items:center;gap:10px;overflow:auto;padding:7px 0 4px}
#documentationPage .docs-flow-line>div{min-width:112px;padding:14px;border:1px solid #d9e5e1;border-radius:9px;background:#fbfdfc;text-align:center}
#documentationPage .docs-flow-line>div span{display:grid;place-items:center;width:24px;height:24px;margin:0 auto 10px;border-radius:50%;background:#e6f5f1;color:#078a75;font:700 9px/1 "Geist Mono",monospace}
#documentationPage .docs-flow-line strong{display:block;color:#33574e;font-size:12.5px}
#documentationPage .docs-flow-line small{display:block;margin-top:5px;color:#81928d;font-size:10.5px}
#documentationPage .docs-flow-line>b{color:#90a29d;font-weight:500}
#documentationPage .docs-state-line{display:flex;align-items:center;gap:8px;flex-wrap:wrap;margin:18px 0}
#documentationPage .docs-state-line span{padding:10px 12px;border:1px solid #d9e4e1;border-radius:7px;background:#f9fbfa;color:#4e6962;font:700 11px/1 "Geist Mono",monospace}
#documentationPage .docs-state-line span.success{border-color:#8fd0c3;background:#edf9f5;color:#087d69}
#documentationPage .docs-state-line b{margin-left:6px;color:#84958f;font-weight:600}
#documentationPage .docs-state-line i{font-style:normal;color:#a6b3af}
#documentationPage .docs-proof-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:10px;margin-top:17px}
#documentationPage .docs-proof-grid>div{padding:18px;border:1px solid #dce6e3;border-radius:9px;background:#fbfdfc}
#documentationPage .docs-proof-grid strong{display:block;color:#2d5148;font-size:13px}
#documentationPage .docs-proof-grid span{display:block;margin-top:7px;color:#71857f;font-size:12px;line-height:1.5}
#documentationPage .docs-payment-card{max-width:390px;margin:20px 0;padding:22px;border:1px solid #d8e5e1;border-radius:13px;background:#fff;box-shadow:0 18px 44px rgba(17,61,52,.07)}
#documentationPage .docs-payment-card>span{color:#078b75;font:700 9.5px/1 "Geist Mono",monospace;letter-spacing:.07em}
#documentationPage .docs-payment-card>strong{display:block;margin:13px 0 18px;color:#17382f;font:800 29px/1 Manrope,sans-serif}
#documentationPage .docs-payment-card>div{display:flex;justify-content:space-between;gap:20px;padding:10px 0;border-top:1px solid #e6ecea;color:#687c76;font-size:11.5px}
#documentationPage .docs-payment-card .paid{margin-top:12px;justify-content:center;border:0;border-radius:7px;background:#ecf9f5;color:#078b75;font-weight:750}
#documentationPage .docs-demo-shop{max-width:660px;margin-top:18px;display:grid;grid-template-columns:1.1fr .9fr;gap:0;border:1px solid #d9e5e1;border-radius:13px;overflow:hidden;background:#fff}
#documentationPage .docs-demo-shop>div:first-child{padding:25px;background:#f6faf8}
#documentationPage .docs-demo-shop>div:first-child span{color:#078a75;font:700 9.5px/1 "Geist Mono",monospace;letter-spacing:.07em}
#documentationPage .docs-demo-shop h3{margin:18px 0 0!important;font-size:22px!important}
#documentationPage .docs-demo-shop>div:first-child strong{display:block;margin-top:18px;color:#17372f;font:800 24px/1 Manrope,sans-serif}
#documentationPage .docs-demo-shop>div:nth-child(2){display:grid;grid-template-columns:28px 1fr;align-content:center;gap:11px;padding:22px}
#documentationPage .docs-demo-shop>div:nth-child(2) small{width:24px;height:24px;display:grid;place-items:center;border:1px solid #caddd7;border-radius:50%;color:#078b75;font:700 9px/1 "Geist Mono",monospace}
#documentationPage .docs-demo-shop>div:nth-child(2) b{align-self:center;color:#536f67;font-size:12px}
#documentationPage .docs-demo-shop>a{grid-column:1/-1;min-height:42px;display:flex;align-items:center;justify-content:center;background:#0c332b;color:#fff;font:750 12px/1 Manrope,sans-serif;text-decoration:none}
#documentationPage .docs-inline-cta{display:inline-flex;min-height:42px;align-items:center;padding:0 15px;margin-top:10px;border-radius:7px;background:#0a8f79;color:#fff;font:750 12px/1 Manrope,sans-serif;text-decoration:none}
#documentationPage .docs-checklist{display:grid;gap:0;margin-top:15px;border-top:1px solid #dfe8e5}
#documentationPage .docs-checklist label{display:flex;align-items:flex-start;gap:10px;padding:13px 3px;border-bottom:1px solid #e5ece9;color:#5e746e;font-size:13.5px;line-height:1.45}
#documentationPage .docs-checklist input{margin-top:2px;accent-color:#0a917b}
#documentationPage .docs-order-map{display:grid;grid-template-columns:1fr auto 1fr;gap:15px;align-items:center;margin-top:18px}
#documentationPage .docs-order-map>div{padding:20px;border:1px solid #d9e5e1;border-radius:10px;background:#fbfdfc}
#documentationPage .docs-order-map span{color:#078a75;font:700 9.5px/1 "Geist Mono",monospace;letter-spacing:.07em}
#documentationPage .docs-order-map strong{display:block;margin:13px 0;color:#2c5047;font-size:15px}
#documentationPage .docs-order-map>b{color:#83958f;font-size:11px;font-weight:650}
#documentationPage .docs-ops-loop{display:flex;gap:6px;align-items:center;overflow:auto;margin-top:18px}
#documentationPage .docs-ops-loop span{padding:10px 12px;border:1px solid #d7e4e0;border-radius:7px;background:#f9fbfa;color:#49675f;font:700 11px/1 Manrope,sans-serif;white-space:nowrap}
#documentationPage .docs-ops-loop i{font-style:normal;color:#a2b0ac}
#documentationPage .docs-architecture{display:grid;justify-items:center;gap:13px;margin-top:18px;padding:28px;border:1px solid #d8e4e0;border-radius:12px;background:#fafcfb}
#documentationPage .docs-architecture>div:not(.pair){min-width:240px;padding:14px 18px;border:1px solid #cadfd9;border-radius:8px;background:#fff;text-align:center}
#documentationPage .docs-architecture strong{display:block;color:#31534b;font-size:13px}
#documentationPage .docs-architecture small{display:block;margin-top:5px;color:#83938f;font-size:10.5px}
#documentationPage .docs-architecture>i{font-style:normal;color:#95a8a2}
#documentationPage .docs-architecture .pair{display:flex;align-items:center;gap:13px}
#documentationPage .docs-architecture .pair span{min-width:205px;padding:14px;border:1px solid #cadfd9;border-radius:8px;background:#fff;text-align:center}
#documentationPage .docs-architecture .pair b{color:#0a907a}
#documentationPage .docs-prev-next{display:grid;grid-template-columns:1fr 1fr;gap:12px;margin-top:70px;padding-top:26px;border-top:1px solid #dfe8e5}
#documentationPage .docs-prev-next a{min-height:72px;padding:14px 16px;border:1px solid #dbe6e2;border-radius:9px;background:#fbfdfc;text-decoration:none}
#documentationPage .docs-prev-next a.next{text-align:right}
#documentationPage .docs-prev-next small{display:block;color:#8b9a96;font:650 9.5px/1 "Geist Mono",monospace;text-transform:uppercase;letter-spacing:.06em}
#documentationPage .docs-prev-next strong{display:block;margin-top:8px;color:#3c6259;font:750 12.5px/1.3 Manrope,sans-serif}
#documentationPage .docs-toc{border-left:1px solid #edf1f0;background:#fff}
#documentationPage .docs-toc-inner{position:sticky;top:76px;padding:68px 24px 30px}
#documentationPage .docs-toc-inner>span{display:block;margin-bottom:13px;color:#99a6a2;font:700 9.5px/1 "Geist Mono",monospace;letter-spacing:.08em}
#documentationPage #docsToc a{display:block;padding:5px 0;color:#879792;font-size:11.5px;line-height:1.35;text-decoration:none}
#documentationPage #docsToc a:hover,#documentationPage #docsToc a.active{color:#078a75}
#documentationPage .docs-mobile-bar{display:none}
#documentationPage .docs-drawer-backdrop{display:none}
#documentationPage button:focus-visible,#documentationPage a:focus-visible,#documentationPage input:focus-visible{outline:2px solid #2fc3aa;outline-offset:2px}
@media(max-width:1180px){#documentationPage .docs-shell{grid-template-columns:250px minmax(0,1fr)}#documentationPage .docs-toc{display:none}}
@media(max-width:820px){
 #documentationPage .docs-mobile-bar{position:sticky;top:72px;z-index:34;min-height:48px;display:flex;align-items:center;justify-content:space-between;gap:15px;padding:0 18px;border-bottom:1px solid #dfe8e5;background:rgba(250,252,251,.96);backdrop-filter:blur(10px)}
 #documentationPage .docs-mobile-bar button{border:0;background:none;color:#255147;font:750 12px/1 Manrope,sans-serif;padding:8px 0}
 #documentationPage .docs-mobile-bar span{overflow:hidden;text-overflow:ellipsis;white-space:nowrap;color:#758882;font-size:11.5px}
 #documentationPage .docs-shell{display:block}
 #documentationPage .docs-sidebar{position:fixed;z-index:60;top:72px;left:0;bottom:0;width:min(330px,88vw);transform:translateX(-105%);transition:transform .24s ease;border-right:1px solid #dce5e2;box-shadow:16px 0 40px rgba(12,41,35,.12)}
 #documentationPage.docs-nav-open .docs-sidebar{transform:translateX(0)}
 #documentationPage .docs-sidebar-inner{position:static;top:auto;height:100%;padding-top:24px}
 #documentationPage .docs-drawer-backdrop{position:fixed;z-index:59;inset:72px 0 0;display:block;background:rgba(5,28,24,.3);opacity:0;pointer-events:none;transition:opacity .2s ease}
 #documentationPage.docs-nav-open .docs-drawer-backdrop{opacity:1;pointer-events:auto}
 #documentationPage .docs-content{width:min(100% - 36px,760px);padding:52px 0 80px}
 #documentationPage .docs-title-row{display:block}
 #documentationPage .docs-role{display:inline-flex;margin-top:14px}
 #documentationPage .docs-home-path{grid-template-columns:1fr 1fr}
 #documentationPage .docs-tool-grid{grid-template-columns:1fr}
 #documentationPage .docs-proof-grid{grid-template-columns:1fr}
 #documentationPage .docs-order-map{grid-template-columns:1fr}
 #documentationPage .docs-order-map>b{text-align:center}
}
@media(max-width:560px){
 #documentationPage .docs-content{width:calc(100% - 30px);padding-top:42px}
 #documentationPage .docs-title-row h1{font-size:38px}
 #documentationPage .docs-article-head>p{font-size:14.5px}
 #documentationPage .docs-article-body h2{font-size:24px}
 #documentationPage .docs-home-path{grid-template-columns:1fr}
 #documentationPage .docs-demo-shop{grid-template-columns:1fr}
 #documentationPage .docs-demo-shop>a{grid-column:1}
 #documentationPage .docs-prev-next{grid-template-columns:1fr}
 #documentationPage .docs-prev-next a.next{text-align:left}
 #documentationPage .docs-architecture{padding:20px 14px}
 #documentationPage .docs-architecture .pair{flex-direction:column}
 #documentationPage .docs-architecture .pair b{transform:rotate(90deg)}
}

#documentationPage .docs-nav-group.search-empty{display:none}
#documentationPage .docs-title-row h1:focus{outline:none}
#documentationPage .docs-search:focus-within{border-color:#9acfc4;box-shadow:0 0 0 3px rgba(26,169,145,.07)}

#documentationPage .docs-nav-subgroup{
  margin:17px 10px 5px;
  color:#84958f;
  font:700 10px/1.2 "Geist Mono",monospace;
  letter-spacing:.07em;
  text-transform:uppercase;
}
#documentationPage .docs-compare{
  display:grid;grid-template-columns:1fr 1fr;gap:12px;margin:18px 0;
}
#documentationPage .docs-compare>div{
  padding:18px;border:1px solid #dbe6e2;border-radius:12px;background:#f8fbfa;
}
#documentationPage .docs-compare strong{color:#24463e;font-size:14px}
#documentationPage .docs-compare p{margin:7px 0 0!important;font-size:13.5px!important}
#documentationPage .docs-state-mini{
  display:flex;align-items:center;flex-wrap:wrap;gap:9px;margin:20px 0;
  padding:15px 17px;border:1px solid #d8e5e1;border-radius:12px;background:#f8fbfa;
}
#documentationPage .docs-state-mini span,
#documentationPage .docs-state-mini strong{
  padding:7px 10px;border:1px solid #d3dfdc;border-radius:7px;background:#fff;
  color:#3e5b54;font:700 11.5px/1 "Geist Mono",monospace;
}
#documentationPage .docs-state-mini strong{
  border-color:#8fd1c4;color:#087b69;background:#eef9f6;
}
#documentationPage .docs-state-mini i{
  color:#8aa098;font-style:normal;
}
#documentationPage .docs-direction{
  display:grid;grid-template-columns:1fr auto 1fr auto 1fr;gap:11px;align-items:center;
  margin:20px 0;padding:18px;border:1px solid #d9e5e1;border-radius:14px;background:#f8fbfa;
}
#documentationPage .docs-direction>div{
  min-height:74px;display:flex;flex-direction:column;justify-content:center;gap:6px;
  padding:12px;border:1px solid #dce7e3;border-radius:9px;background:#fff;
}
#documentationPage .docs-direction strong{color:#294840;font-size:13px}
#documentationPage .docs-direction small{color:#71857f;font-size:11.5px}
#documentationPage .docs-direction>i{color:#7c9990;font-style:normal}
#documentationPage .docs-quick-links{
  display:grid;grid-template-columns:1fr 1fr;gap:10px;margin-top:16px;
}
#documentationPage .docs-quick-links a{
  display:flex;flex-direction:column;gap:6px;padding:17px 18px;
  border:1px solid #d9e5e1;border-radius:12px;background:#fff;text-decoration:none;
}
#documentationPage .docs-quick-links a:hover{border-color:#89cdbf;background:#f5fbf9}
#documentationPage .docs-quick-links strong{color:#24463e;font-size:13.5px}
#documentationPage .docs-quick-links span{color:#71857f;font-size:12.5px;line-height:1.45}
@media(max-width:700px){
  #documentationPage .docs-compare,
  #documentationPage .docs-quick-links{grid-template-columns:1fr}
  #documentationPage .docs-direction{
    grid-template-columns:1fr;gap:8px;
  }
  #documentationPage .docs-direction>i{transform:rotate(90deg);justify-self:center}
}

#documentationPage .docs-search{
  position:relative;
}
#documentationPage .docs-search-clear{
  width:24px;height:24px;display:grid;place-items:center;
  flex:0 0 auto;border:0;border-radius:6px;background:transparent;
  color:#7d8e89;font-size:17px;line-height:1;cursor:pointer;
}
#documentationPage .docs-search-clear[hidden]{display:none}
#documentationPage .docs-search-clear:hover{
  background:#edf5f2;color:#31544b;
}
#documentationPage .docs-search-status{
  min-height:17px;margin:-4px 9px 7px;
  color:#91a09c;font-size:10.5px;line-height:1.3;
}
#documentationPage .docs-search:focus-within{
  border-color:#8fcfc3;
  box-shadow:0 0 0 3px rgba(20,154,132,.07);
}
#documentationPage .docs-nav a:focus-visible,
#documentationPage .docs-prev-next a:focus-visible,
#documentationPage .docs-sidebar-actions a:focus-visible,
#documentationPage .docs-mobile-nav-button:focus-visible,
#documentationPage .docs-search-clear:focus-visible{
  outline:2px solid #2dbda5;
  outline-offset:2px;
}

#documentationPage .docs-brand span{
  font-size:11.5px !important;
}
#documentationPage .docs-search input{
  font-size:13.5px !important;
}
#documentationPage .docs-search kbd{
  font-size:10.5px !important;
}
#documentationPage .docs-nav-group h3,
#documentationPage .docs-nav-subgroup{
  font-size:11px !important;
  line-height:1.25 !important;
}
#documentationPage .docs-nav-group a{
  padding-top:8px !important;
  padding-bottom:8px !important;
  font-size:13.5px !important;
  line-height:1.35 !important;
}
#documentationPage .docs-sidebar-actions a{
  min-height:38px !important;
  font-size:12px !important;
}
#documentationPage .docs-search-status{
  font-size:11.5px !important;
}
#documentationPage .docs-mobile-bar span,
#documentationPage .docs-mobile-bar button{
  font-size:12.5px !important;
}

#documentationPage .docs-article-kicker{
  font-size:11.5px !important;
}
#documentationPage .docs-role{
  font-size:11px !important;
}
#documentationPage .docs-article-head>p{
  max-width:750px !important;
  font-size:16px !important;
  line-height:1.72 !important;
}
#documentationPage .docs-article-body h2{
  max-width:760px;
}
#documentationPage .docs-article-body p,
#documentationPage .docs-article-body li{
  font-size:15px !important;
  line-height:1.74 !important;
}
#documentationPage .docs-article-body>section>p{
  max-width:760px;
}

#documentationPage th{
  font-size:11.5px !important;
  line-height:1.3 !important;
}
#documentationPage td{
  font-size:14px !important;
  line-height:1.6 !important;
}

#documentationPage .docs-code-head span,
#documentationPage .docs-code-head button{
  font-size:11.5px !important;
}
#documentationPage .docs-code pre{
  font-size:13.5px !important;
  line-height:1.68 !important;
}

#documentationPage .docs-steps li>span{
  font-size:10.5px !important;
}
#documentationPage .docs-caption{
  font-size:13px !important;
}
#documentationPage .docs-screen-bar span{
  font-size:11.5px !important;
}
#documentationPage .docs-screen-title em{
  font-size:10.5px !important;
}
#documentationPage .docs-screen-field span,
#documentationPage .docs-screen-status{
  font-size:12.5px !important;
}
#documentationPage .docs-screen-field strong{
  font-size:12px !important;
}
#documentationPage .docs-screen-inner>button,
#documentationPage .docs-download-row span,
#documentationPage .docs-demo-shop>a,
#documentationPage .docs-inline-cta{
  font-size:12.5px !important;
}
#documentationPage .docs-flow-line small,
#documentationPage .docs-architecture small,
#documentationPage .docs-direction small{
  font-size:11.5px !important;
}

#documentationPage .docs-prev-next small{
  font-size:11px !important;
}
#documentationPage .docs-prev-next strong{
  font-size:13.5px !important;
}
#documentationPage .docs-toc-inner>span{
  font-size:11px !important;
}
#documentationPage #docsToc a{
  padding:6px 0 !important;
  font-size:12.5px !important;
  line-height:1.45 !important;
}

@media(max-width:700px){
  #documentationPage .docs-article-head>p{
    font-size:15px !important;
  }
  #documentationPage .docs-article-body p,
  #documentationPage .docs-article-body li{
    font-size:15px !important;
    line-height:1.72 !important;
  }
  #documentationPage .docs-nav-group a{
    font-size:14px !important;
  }
}

#documentationPage .docs-visual-section{
  margin-bottom:52px;
}

#documentationPage .docs-route-map{
  margin:22px 0 0;
  overflow:hidden;
  border:1px solid #d9e5e1;
  border-radius:16px;
  background:#fbfdfc;
}
#documentationPage .docs-route-row{
  display:grid;
  grid-template-columns:126px minmax(0,1fr) 24px minmax(0,1fr) 24px minmax(0,1fr);
  gap:10px;
  align-items:center;
  padding:18px;
  border-bottom:1px solid #e2ebe8;
}
#documentationPage .docs-route-row:last-child{border-bottom:0}
#documentationPage .docs-route-label{
  display:flex;flex-direction:column;gap:5px;
}
#documentationPage .docs-route-label span{
  color:#087f6c;font:700 10.5px/1.1 "Geist Mono",monospace;letter-spacing:.055em;
}
#documentationPage .docs-route-label small{
  color:#8a9995;font-size:11.5px;
}
#documentationPage .docs-route-node{
  min-height:76px;
  display:flex;flex-direction:column;justify-content:center;gap:6px;
  padding:13px 14px;
  border:1px solid #d8e4e0;border-radius:10px;background:#fff;
}
#documentationPage .docs-route-node strong{color:#294840;font-size:13px}
#documentationPage .docs-route-node small{color:#71847e;font-size:11.5px;line-height:1.4}
#documentationPage .docs-route-node.hashnut,
#documentationPage .docs-route-node.detect{
  border-color:#9bd2c6;background:#f0faf7;
}
#documentationPage .docs-route-node.receipt{
  border-style:dashed;border-color:#93bdb3;
}
#documentationPage .docs-route-row>i{
  color:#809790;font-style:normal;text-align:center;
}
#documentationPage .docs-route-note{
  display:grid;grid-template-columns:230px minmax(0,1fr);gap:18px;
  margin-top:12px;padding:15px 17px;border-left:3px solid #1aaf95;background:#f0f9f6;
}
#documentationPage .docs-route-note strong{color:#2b4a43;font-size:13px}
#documentationPage .docs-route-note span{color:#688078;font-size:13px;line-height:1.55}

#documentationPage .docs-handoff-board{
  display:grid;grid-template-columns:minmax(0,1fr) 180px minmax(0,1fr);
  gap:14px;align-items:stretch;margin:22px 0 0;
}
#documentationPage .docs-handoff-card{
  padding:22px;border:1px solid #d8e4e0;border-radius:14px;background:#fff;
}
#documentationPage .docs-handoff-card>span{
  color:#0a8974;font:700 10.5px/1 "Geist Mono",monospace;letter-spacing:.06em;
}
#documentationPage .docs-handoff-card.developer>span{color:#406c9e}
#documentationPage .docs-handoff-card h3{
  margin:10px 0 16px!important;color:#29483f!important;font-size:19px!important;
}
#documentationPage .docs-handoff-card>div{
  min-height:42px;display:flex;align-items:center;justify-content:space-between;gap:14px;
  border-top:1px solid #e6edeb;
}
#documentationPage .docs-handoff-card small{color:#768a83;font-size:11.5px}
#documentationPage .docs-handoff-card code,
#documentationPage .docs-handoff-card strong{font-size:11.5px}
#documentationPage .docs-handoff-transfer{
  display:flex;flex-direction:column;align-items:center;justify-content:center;gap:8px;
  padding:18px;border:1px dashed #b9d2cc;border-radius:14px;background:#f8fbfa;
}
#documentationPage .docs-handoff-transfer>b{color:#0a9079;font-size:26px}
#documentationPage .docs-handoff-transfer>span{
  color:#7d918a;font:700 9.5px/1 "Geist Mono",monospace;letter-spacing:.07em;
}
#documentationPage .docs-handoff-transfer code{
  width:100%;padding:6px 8px;text-align:center;border:1px solid #dfe8e5;border-radius:6px;background:#fff;font-size:10.5px;
}
#documentationPage .docs-boundary-bar{
  display:flex;flex-wrap:wrap;gap:8px;align-items:center;
  margin-top:12px;padding:14px 15px;border:1px solid #e1e8e6;border-radius:10px;background:#fbfcfc;
}
#documentationPage .docs-boundary-bar strong{margin-right:4px;color:#3b5951;font-size:12px}
#documentationPage .docs-boundary-bar span{
  padding:5px 8px;border-radius:999px;background:#edf3f1;color:#61756f;font-size:11.5px;
}
#documentationPage .docs-boundary-bar em{
  flex-basis:100%;margin-top:3px;color:#7a6860;font-size:11.5px;font-style:normal;
}

#documentationPage .docs-backup-board{
  display:grid;grid-template-columns:1fr 1fr;gap:14px;margin-top:22px;
}
#documentationPage .docs-backup-card{
  padding:23px;border:1px solid #d9e5e1;border-radius:15px;background:#fff;
}
#documentationPage .docs-backup-card.local{
  background:linear-gradient(180deg,#fbfdfc,#f5faf8);
}
#documentationPage .docs-backup-icon{
  display:inline-flex;padding:6px 8px;border-radius:6px;background:#e9f6f2;
  color:#07866f;font:700 9.5px/1 "Geist Mono",monospace;letter-spacing:.06em;
}
#documentationPage .docs-backup-card h3{
  margin:13px 0 0!important;font-size:21px!important;
}
#documentationPage .docs-backup-card>p{font-size:13.5px!important}
#documentationPage .docs-backup-list{margin-top:16px;border-top:1px solid #e2ebe8}
#documentationPage .docs-backup-list span{
  display:block;padding:10px 0;border-bottom:1px solid #e8efed;color:#647a73;font-size:12.5px;line-height:1.5;
}
#documentationPage .docs-backup-list b{color:#3c5b53}
#documentationPage .docs-account-info{margin-top:16px;border-top:1px solid #e2ebe8}
#documentationPage .docs-account-info>div{
  min-height:43px;display:flex;align-items:center;justify-content:space-between;gap:12px;border-bottom:1px solid #e7eeec;
}
#documentationPage .docs-account-info span{color:#70847e;font-size:11.5px}
#documentationPage .docs-account-info code,
#documentationPage .docs-account-info strong{font-size:11.5px}
#documentationPage .docs-account-info .sensitive{
  margin-top:7px;padding:0 10px;border:1px solid #ecd9c9;border-radius:7px;background:#fff8f1;
}
#documentationPage .docs-account-info .sensitive span{color:#9a704e}
#documentationPage .docs-separation-note{
  display:grid;grid-template-columns:1fr auto 1fr;gap:14px;align-items:center;
  margin-top:14px;padding:16px;border:1px solid #dbe6e2;border-radius:12px;background:#f8fbfa;
}
#documentationPage .docs-separation-note>div{display:flex;flex-direction:column;gap:5px}
#documentationPage .docs-separation-note strong{color:#35564e;font-size:12.5px}
#documentationPage .docs-separation-note span{color:#71857e;font-size:11.5px;line-height:1.45}
#documentationPage .docs-separation-note i{color:#9aaaa5;font-style:normal}

#documentationPage .docs-demo-journey{
  margin-top:22px;overflow:hidden;border:1px solid #d8e4e0;border-radius:16px;background:#fbfdfc;
}
#documentationPage .docs-demo-tabs{
  display:grid;grid-template-columns:repeat(5,1fr);border-bottom:1px solid #dde7e4;background:#f4f8f6;
}
#documentationPage .docs-demo-tabs button{
  min-height:58px;display:flex;align-items:center;justify-content:center;gap:8px;
  border:0;border-right:1px solid #e0e8e5;background:transparent;color:#71857f;
  font:700 11.5px/1 Manrope,sans-serif;cursor:pointer;
}
#documentationPage .docs-demo-tabs button:last-child{border-right:0}
#documentationPage .docs-demo-tabs button span{
  width:22px;height:22px;display:grid;place-items:center;border:1px solid #cbdad6;border-radius:50%;
  font:700 8.5px/1 "Geist Mono",monospace;
}
#documentationPage .docs-demo-tabs button.active{
  background:#fff;color:#087f6c;box-shadow:inset 0 -2px 0 #0b9f87;
}
#documentationPage .docs-demo-tabs button.active span{border-color:#55b9a8}
#documentationPage .docs-demo-stage{
  display:grid;grid-template-columns:300px minmax(0,1fr);gap:40px;padding:34px 38px;
}
#documentationPage .docs-demo-phone{
  overflow:hidden;border:1px solid #cfded9;border-radius:25px;background:#fff;box-shadow:0 18px 42px rgba(17,63,53,.09);
}
#documentationPage .docs-demo-phonebar{
  height:36px;display:flex;align-items:center;justify-content:space-between;padding:0 14px;border-bottom:1px solid #e5ecea;background:#f6f9f8;
}
#documentationPage .docs-demo-phonebar i{width:7px;height:7px;border-radius:50%;background:#2eb59d}
#documentationPage .docs-demo-phonebar span{color:#61766f;font-size:10.5px;font-weight:700}
#documentationPage .docs-demo-phonebar b{color:#9aa8a4;font-size:10px}
#documentationPage .docs-demo-screen{min-height:365px;padding:20px}
#documentationPage .docs-demo-product{
  height:165px;display:grid;place-items:center;border-radius:15px;background:linear-gradient(145deg,#e4f2ee,#f7faf9);
}
#documentationPage .docs-demo-product-mark{
  width:84px;height:84px;display:grid;place-items:center;border:1px solid #b9d6cf;border-radius:50%;color:#168f79;font:800 16px/1 Manrope,sans-serif;
}
#documentationPage .docs-demo-screen h4{margin:18px 0 6px;color:#29463f;font-size:17px}
#documentationPage .docs-demo-screen p{margin:0!important;color:#788a85!important;font-size:12.5px!important;line-height:1.5!important}
#documentationPage .docs-demo-price{display:flex;align-items:end;justify-content:space-between;margin-top:18px}
#documentationPage .docs-demo-price strong{color:#153a32;font-size:24px}
#documentationPage .docs-demo-price button{
  min-height:36px;padding:0 12px;border:0;border-radius:7px;background:#0a927b;color:#fff;font-size:11px;font-weight:700;
}
#documentationPage .docs-demo-summary,
#documentationPage .docs-demo-paycard,
#documentationPage .docs-demo-confirm{
  padding:15px;border:1px solid #dae5e2;border-radius:12px;background:#f8fbfa;
}
#documentationPage .docs-demo-summary>div,
#documentationPage .docs-demo-paycard>div{
  min-height:37px;display:flex;align-items:center;justify-content:space-between;gap:12px;border-bottom:1px solid #e4ebe9;
}
#documentationPage .docs-demo-summary>div:last-child,
#documentationPage .docs-demo-paycard>div:last-child{border-bottom:0}
#documentationPage .docs-demo-summary span,
#documentationPage .docs-demo-paycard span{color:#71847e;font-size:11px}
#documentationPage .docs-demo-summary strong,
#documentationPage .docs-demo-paycard strong{color:#35554d;font-size:11.5px}
#documentationPage .docs-demo-qr{
  width:110px;height:110px;margin:18px auto;border:8px solid #fff;
  background:
    linear-gradient(90deg,#163c34 12%,transparent 12% 24%,#163c34 24% 36%,transparent 36% 52%,#163c34 52% 65%,transparent 65% 75%,#163c34 75%),
    linear-gradient(#163c34 10%,transparent 10% 28%,#163c34 28% 40%,transparent 40% 54%,#163c34 54% 72%,transparent 72% 84%,#163c34 84%);
  background-color:#edf5f2;box-shadow:0 0 0 1px #d9e4e1;
}
#documentationPage .docs-demo-success{
  padding-top:62px;text-align:center;
}
#documentationPage .docs-demo-success i{
  width:54px;height:54px;display:grid;place-items:center;margin:0 auto;border-radius:50%;background:#0aa087;color:#fff;font-style:normal;font-size:22px;
}
#documentationPage .docs-demo-success strong{display:block;margin-top:16px;color:#25453d;font-size:18px}
#documentationPage .docs-demo-success span{display:block;margin-top:7px;color:#748781;font-size:12px}
#documentationPage .docs-demo-explain{align-self:center}
#documentationPage .docs-demo-explain>span{
  color:#078972;font:700 10.5px/1 "Geist Mono",monospace;letter-spacing:.07em;
}
#documentationPage .docs-demo-explain h3{margin:12px 0 0!important;color:#24473f!important;font-size:26px!important}
#documentationPage .docs-demo-explain>p{max-width:560px;font-size:14px!important}
#documentationPage .docs-demo-system{
  margin-top:20px;padding:15px 16px;border-left:3px solid #2aaf99;background:#eff8f5;
}
#documentationPage .docs-demo-system strong{display:block;color:#35554d;font-size:12.5px}
#documentationPage .docs-demo-system span{display:block;margin-top:5px;color:#6f837c;font-size:12px;line-height:1.5}
#documentationPage .docs-demo-controls{display:flex;gap:8px;margin-top:20px}
#documentationPage .docs-demo-controls button{
  min-height:38px;padding:0 13px;border:1px solid #d3e1dd;border-radius:7px;background:#fff;color:#3e665d;font-size:11.5px;font-weight:700;cursor:pointer;
}
#documentationPage .docs-demo-controls button:disabled{opacity:.35;cursor:default}

#documentationPage .docs-verify-widget{
  margin-top:22px;overflow:hidden;border:1px solid #d8e4e0;border-radius:16px;background:#fff;
}
#documentationPage .docs-verify-tabs{
  display:flex;align-items:center;justify-content:center;gap:10px;padding:17px;border-bottom:1px solid #e1e9e6;background:#f7faf9;
}
#documentationPage .docs-verify-tabs button{
  min-width:100px;min-height:38px;border:1px solid #d5e2de;border-radius:999px;background:#fff;color:#6e837c;font-size:11.5px;font-weight:700;cursor:pointer;
}
#documentationPage .docs-verify-tabs button.active{border-color:#4bb7a4;background:#eaf7f3;color:#087e6b}
#documentationPage .docs-verify-tabs i{color:#99a9a4;font-style:normal}
#documentationPage .docs-verify-panel{
  display:grid;grid-template-columns:minmax(0,1.15fr) minmax(270px,.85fr);gap:34px;padding:32px 34px;
}
#documentationPage .docs-fund-movement{
  min-height:280px;display:flex;align-items:center;justify-content:center;padding:24px;border:1px solid #e0e9e6;border-radius:13px;background:#fafcfb;
}
#documentationPage .docs-move-line{
  width:100%;display:grid;grid-template-columns:1fr 100px 1fr;gap:12px;align-items:center;
}
#documentationPage .docs-move-box{
  min-height:110px;display:flex;flex-direction:column;justify-content:center;gap:7px;padding:17px;border:1px solid #cfe0db;border-radius:12px;background:#fff;text-align:center;
}
#documentationPage .docs-move-box strong{color:#2c4b43;font-size:13px}
#documentationPage .docs-move-box span,
#documentationPage .docs-move-box code{color:#768983;font-size:11px}
#documentationPage .docs-move-arrow{text-align:center;color:#0a8f79;font-size:24px}
#documentationPage .docs-move-arrow small{display:block;margin-bottom:8px;color:#799087;font:700 9.5px/1 "Geist Mono",monospace}
#documentationPage .docs-verified-state{text-align:center}
#documentationPage .docs-verified-state>i{
  width:58px;height:58px;display:grid;place-items:center;margin:0 auto;border-radius:50%;background:#099a82;color:#fff;font-style:normal;font-size:24px;
}
#documentationPage .docs-verified-state strong{display:block;margin-top:14px;color:#29473f;font-size:17px}
#documentationPage .docs-verify-copy{align-self:center}
#documentationPage .docs-verify-copy>span{color:#078972;font:700 10.5px/1 "Geist Mono",monospace;letter-spacing:.07em}
#documentationPage .docs-verify-copy h3{margin:10px 0 0!important;font-size:24px!important}
#documentationPage .docs-verify-copy>p{font-size:13.5px!important}
#documentationPage .docs-verify-checks{margin-top:16px;border-top:1px solid #e2eae7}
#documentationPage .docs-verify-checks span{
  display:block;padding:9px 0;border-bottom:1px solid #e8efed;color:#60766f;font-size:12px;
}
#documentationPage .docs-verify-checks span::before{content:"✓";margin-right:8px;color:#07977f;font-weight:800}

#documentationPage .docs-ops-picture{
  display:grid;grid-template-columns:1fr 1fr;gap:12px;margin-top:22px;
}
#documentationPage .docs-ops-card{
  min-height:150px;padding:20px;border:1px solid #d9e5e1;border-radius:13px;background:#fff;
}
#documentationPage .docs-ops-card>span{
  color:#078972;font:700 10px/1 "Geist Mono",monospace;
}
#documentationPage .docs-ops-card>strong{display:block;margin-top:12px;color:#29473f;font-size:17px}
#documentationPage .docs-ops-card>p{margin:6px 0 0!important;color:#60766f!important;font-size:13px!important}
#documentationPage .docs-ops-card>small{display:block;margin-top:15px;color:#82938e;font-size:11.5px;line-height:1.5}
#documentationPage .docs-ops-card.funds{background:#f2faf7}
#documentationPage .docs-ops-card.exceptions{background:#fffaf4}
#documentationPage .docs-ops-cycle{
  display:flex;align-items:center;justify-content:center;flex-wrap:wrap;gap:8px;
  margin-top:14px;padding:16px;border:1px solid #dbe6e2;border-radius:12px;background:#f8fbfa;
}
#documentationPage .docs-ops-cycle span{
  padding:7px 9px;border-radius:7px;background:#fff;color:#4e6962;font-size:11.5px;font-weight:700;
}
#documentationPage .docs-ops-cycle i{color:#8ca19a;font-style:normal}

#documentationPage .docs-demo-tabs button:focus-visible,
#documentationPage .docs-demo-controls button:focus-visible,
#documentationPage .docs-verify-tabs button:focus-visible{
  outline:2px solid #2dbda5;outline-offset:2px;
}

@media(max-width:900px){
  #documentationPage .docs-route-row{
    grid-template-columns:1fr;
  }
  #documentationPage .docs-route-label{padding-bottom:3px}
  #documentationPage .docs-route-row>i{transform:rotate(90deg)}
  #documentationPage .docs-handoff-board{grid-template-columns:1fr}
  #documentationPage .docs-handoff-transfer>b{transform:rotate(90deg)}
  #documentationPage .docs-backup-board{grid-template-columns:1fr}
  #documentationPage .docs-demo-stage{grid-template-columns:260px minmax(0,1fr);gap:24px;padding:28px 26px}
  #documentationPage .docs-verify-panel{grid-template-columns:1fr}
}
@media(max-width:700px){
  #documentationPage .docs-route-note{grid-template-columns:1fr;gap:6px}
  #documentationPage .docs-separation-note{grid-template-columns:1fr}
  #documentationPage .docs-separation-note i{justify-self:start}
  #documentationPage .docs-demo-tabs{grid-template-columns:1fr 1fr 1fr}
  #documentationPage .docs-demo-tabs button:nth-child(4),
  #documentationPage .docs-demo-tabs button:nth-child(5){border-top:1px solid #e0e8e5}
  #documentationPage .docs-demo-stage{grid-template-columns:1fr;padding:24px 18px}
  #documentationPage .docs-demo-phone{max-width:310px;width:100%;margin:0 auto}
  #documentationPage .docs-verify-tabs{overflow-x:auto;justify-content:flex-start}
  #documentationPage .docs-verify-tabs button{min-width:92px}
  #documentationPage .docs-verify-panel{padding:24px 18px}
  #documentationPage .docs-move-line{grid-template-columns:1fr}
  #documentationPage .docs-move-arrow{transform:rotate(90deg)}
  #documentationPage .docs-ops-picture{grid-template-columns:1fr}
}

/* Secondary Products */
#productPage .product-secondary-products{
  padding:104px 0 112px;
  border-top:1px solid var(--hn-line);
  background:#f4f8f6;
}
#productPage .product-secondary-head{
  display:grid;
  grid-template-columns:minmax(0,1.15fr) minmax(320px,.85fr);
  gap:72px;
  align-items:end;
  margin-bottom:42px;
}
#productPage .product-secondary-head h2{
  max-width:720px;
  margin:0;
  color:var(--hn-ink);
  font:800 clamp(44px,4.35vw,58px)/.98 Manrope,sans-serif;
  letter-spacing:-.052em;
}
#productPage .product-secondary-head p{
  max-width:560px;
  margin:0;
  color:var(--hn-body);
  font-size:15px;
  line-height:1.7;
}

#productPage .product-secondary-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:16px;
}
#productPage .product-secondary-card{
  min-height:500px;
  display:grid;
  grid-template-rows:auto 1fr;
  overflow:hidden;
  border:1px solid #d6e3df;
  border-radius:18px;
  background:#fff;
  box-shadow:0 18px 48px rgba(14,57,49,.055);
}
#productPage .product-secondary-copy{
  padding:30px 30px 22px;
}
#productPage .product-secondary-title{
  display:flex;
  align-items:baseline;
  justify-content:space-between;
  gap:20px;
  padding-bottom:18px;
  border-bottom:1px solid #e1e9e6;
}
#productPage .product-secondary-title strong{
  color:#23463e;
  font:800 25px/1 Manrope,sans-serif;
  letter-spacing:-.03em;
}
#productPage .product-secondary-title span{
  color:#71857e;
  font-size:12.5px;
}
#productPage .product-secondary-copy>p{
  max-width:540px;
  min-height:69px;
  margin:20px 0 0;
  color:var(--hn-body);
  font-size:14px;
  line-height:1.65;
}
#productPage .product-secondary-copy>a{
  display:inline-flex;
  align-items:center;
  margin-top:20px;
  color:#078873;
  font-size:13px;
  font-weight:800;
  text-decoration:none;
}
#productPage .product-secondary-copy>a:hover{
  color:#006e5e;
}

#productPage .product-secondary-visual{
  position:relative;
  min-height:270px;
  margin:0 14px 14px;
  overflow:hidden;
  border-radius:14px;
  background:
    radial-gradient(360px 220px at 70% 15%,rgba(55,214,186,.13),transparent 72%),
    linear-gradient(145deg,#0b2822,#071814);
}

#productPage .personal-visual{
  display:grid;
  place-items:center;
  padding:24px;
}
#productPage .ps-wallet-shell{
  width:min(100%,380px);
  padding:18px;
  border:1px solid rgba(126,222,205,.19);
  border-radius:16px;
  background:rgba(7,33,28,.86);
  box-shadow:0 24px 48px rgba(0,0,0,.22);
}
#productPage .ps-wallet-top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  padding-bottom:14px;
  border-bottom:1px solid rgba(224,243,237,.08);
}
#productPage .ps-wallet-top span{
  color:#effaf7;
  font-size:13px;
  font-weight:800;
}
#productPage .ps-wallet-top small{
  color:#61d8c3;
  font:700 9px/1 "Geist Mono",monospace;
}
#productPage .ps-wallet-balance{
  padding:22px 0 16px;
}
#productPage .ps-wallet-balance small{
  display:block;
  color:rgba(222,240,235,.42);
  font:700 9px/1 "Geist Mono",monospace;
}
#productPage .ps-wallet-balance strong{
  display:block;
  margin-top:8px;
  color:#f0faf7;
  font:800 25px/1 Manrope,sans-serif;
}
#productPage .ps-wallet-row{
  min-height:40px;
  display:grid;
  grid-template-columns:8px minmax(0,1fr) auto;
  gap:9px;
  align-items:center;
  border-top:1px solid rgba(222,240,235,.07);
}
#productPage .ps-wallet-row i{
  width:6px;
  height:6px;
  border-radius:50%;
  background:#46cdb5;
}
#productPage .ps-wallet-row span{
  color:rgba(222,240,235,.58);
  font-size:11px;
}
#productPage .ps-wallet-row b{
  color:#dff6f0;
  font-size:11px;
}

#productPage .card-visual{
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  gap:14px;
  padding:22px;
}
#productPage .ps-card-networks{
  width:min(100%,390px);
  display:flex;
  justify-content:flex-end;
  gap:6px;
}
#productPage .ps-card-networks span{
  padding:6px 8px;
  border:1px solid rgba(128,218,202,.17);
  border-radius:6px;
  color:#64d9c4;
  background:rgba(7,34,29,.56);
  font:700 8.5px/1 "Geist Mono",monospace;
}
#productPage .ps-card-object{
  width:min(100%,390px);
  min-height:220px;
  padding:23px;
  border:1px solid rgba(255,255,255,.14);
  border-radius:19px;
  background:
    radial-gradient(240px 140px at 78% 10%,rgba(71,218,191,.17),transparent 74%),
    linear-gradient(145deg,#103028,#071713);
  box-shadow:0 28px 52px rgba(0,0,0,.28);
  transform:rotate(2.2deg);
}
#productPage .ps-card-head,
#productPage .ps-card-foot{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
}
#productPage .ps-card-head strong{
  color:#f2fbf8;
  font-size:15px;
}
#productPage .ps-card-head small{
  color:#64d9c4;
  font:700 9px/1 "Geist Mono",monospace;
}
#productPage .ps-card-chip{
  width:42px;
  height:30px;
  margin-top:34px;
  border:1px solid rgba(218,238,232,.23);
  border-radius:8px;
  background:linear-gradient(135deg,rgba(216,238,232,.15),rgba(97,190,172,.11));
}
#productPage .ps-card-number{
  margin-top:24px;
  color:#d8eee7;
  font:600 12px/1 "Geist Mono",monospace;
  letter-spacing:.07em;
}
#productPage .ps-card-foot{
  margin-top:28px;
}
#productPage .ps-card-foot span{
  color:#bcd6cf;
  font:700 9px/1 "Geist Mono",monospace;
}
#productPage .ps-card-foot b{
  color:#5fd4bf;
  font:700 8.5px/1 "Geist Mono",monospace;
}

@media(max-width:900px){
  #productPage .product-secondary-head{
    grid-template-columns:1fr;
    gap:20px;
  }
  #productPage .product-secondary-grid{
    grid-template-columns:1fr;
  }
  #productPage .product-secondary-card{
    min-height:470px;
  }
}
@media(max-width:640px){
  #productPage .product-secondary-products{
    padding:78px 0 82px;
  }
  #productPage .product-secondary-head{
    margin-bottom:30px;
  }
  #productPage .product-secondary-head h2{
    font-size:clamp(36px,10vw,45px);
  }
  #productPage .product-secondary-title{
    align-items:flex-start;
    flex-direction:column;
    gap:7px;
  }
  #productPage .product-secondary-copy{
    padding:24px 22px 20px;
  }
  #productPage .product-secondary-copy>p{
    min-height:0;
  }
  #productPage .product-secondary-visual{
    min-height:250px;
    margin:0 10px 10px;
  }
  #productPage .ps-card-object{
    min-height:195px;
    padding:20px;
  }
}

#productPage .product-secondary-head{
  grid-template-columns:1fr;
  gap:0;
  margin-bottom:34px;
}
#productPage .product-secondary-head p{
  display:none !important;
}

#productPage .ps-acorn-logo{
  display:block;
  width:28px;
  height:32px;
  object-fit:contain;
  object-position:center;
  flex:0 0 auto;
}

#productPage .ps-card-object{
  transform:none !important;
  rotate:none !important;
  scale:none !important;
  translate:none !important;
}
#productPage .card-visual{
  perspective:none !important;
}
#productPage .ps-card-head{
  align-items:center;
}

#nutPersonalPage .np-hero-product{
  width:100%;
  max-width:510px;
  justify-self:end;
  align-self:center;
}
#nutPersonalPage .np-hero-frame{
  overflow:hidden;
  border:1px solid rgba(125,221,204,.20);
  border-radius:20px;
  background:rgba(6,29,25,.78);
  box-shadow:0 28px 70px rgba(0,0,0,.26);
}
#nutPersonalPage .np-hero-framebar{
  min-height:55px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  padding:0 17px;
  border-bottom:1px solid rgba(221,242,236,.08);
}
#nutPersonalPage .np-hero-framebar strong{color:#effbf7;font-size:13px}
#nutPersonalPage .np-hero-framebar span{color:#5ed9c3;font:700 9.5px/1 "Geist Mono",monospace}
#nutPersonalPage .np-hero-frame img{
  display:block;
  width:100%;
  height:355px;
  object-fit:cover;
  object-position:50% 12%;
}
#nutPersonalPage .np-hero-facts{
  display:flex;
  justify-content:flex-end;
  gap:9px;
  margin-top:12px;
}
#nutPersonalPage .np-hero-facts span{
  padding:8px 10px;
  border:1px solid rgba(131,214,199,.15);
  border-radius:8px;
  background:rgba(6,30,25,.66);
  color:rgba(218,239,233,.58);
  font-size:11.5px;
}
#nutPersonalPage .np-hero-facts b{color:#66dec9}
#nutPersonalPage .np-store-actions{align-items:center}

#nutPersonalPage .np-section-head,
#nutCardPage .nc-section-head{
  display:grid;
  grid-template-columns:minmax(0,1.2fr) minmax(320px,.8fr);
  gap:72px;
  align-items:end;
}
#nutPersonalPage .np-section-head .section-lead,
#nutCardPage .nc-section-head .section-lead{margin:0}

#nutPersonalPage .np-capability-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  margin-top:42px;
  border-top:1px solid var(--hn-line);
  border-left:1px solid var(--hn-line);
}
#nutPersonalPage .np-capability{
  min-height:190px;
  padding:25px 26px;
  border-right:1px solid var(--hn-line);
  border-bottom:1px solid var(--hn-line);
  background:#fff;
}
#nutPersonalPage .np-capability>span,
#nutPersonalPage .np-business-grid article>span{
  color:#078a75;
  font:700 10.5px/1 "Geist Mono",monospace;
  letter-spacing:.06em;
}
#nutPersonalPage .np-capability h3,
#nutPersonalPage .np-business-grid h3{
  margin:15px 0 0;
  color:#294840;
  font:800 20px/1.08 Manrope,sans-serif;
  letter-spacing:-.025em;
}
#nutPersonalPage .np-capability p,
#nutPersonalPage .np-business-grid p{
  margin:10px 0 0;
  color:var(--hn-body);
  font-size:14px;
  line-height:1.62;
}

#nutPersonalPage .np-dual-features{
  margin-top:28px;
  border-top:1px solid #d8e4e0;
}
#nutPersonalPage .np-dual-features>div{padding:18px 0;border-bottom:1px solid #d8e4e0}
#nutPersonalPage .np-dual-features strong{color:#28473f;font-size:15px}
#nutPersonalPage .np-dual-features p{
  max-width:620px;
  margin:7px 0 0;
  color:var(--hn-body);
  font-size:13.5px;
  line-height:1.6;
}
#nutPersonalPage .np-image-card{
  overflow:hidden;
  border:1px solid #d6e3df;
  border-radius:var(--hn-radius-panel);
  background:#fff;
  box-shadow:var(--hn-shadow-card);
}
#nutPersonalPage .np-image-card>span{
  display:block;
  padding:14px 17px;
  border-bottom:1px solid #e2eae7;
  color:#078873;
  font:700 10.5px/1 "Geist Mono",monospace;
  letter-spacing:.07em;
}
#nutPersonalPage .np-image-card img{
  display:block;
  width:100%;
  height:430px;
  object-fit:cover;
  object-position:50% 15%;
}

#nutPersonalPage .np-business-grid{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:0;
  margin-top:42px;
  border-top:1px solid var(--hn-line);
  border-left:1px solid var(--hn-line);
}
#nutPersonalPage .np-business-grid article{
  min-height:220px;
  padding:23px;
  border-right:1px solid var(--hn-line);
  border-bottom:1px solid var(--hn-line);
}
#nutPersonalPage .np-business-grid h3{font-size:18px}
#nutPersonalPage .np-business-grid p{font-size:13.5px}
#nutPersonalPage .np-business-visuals{
  display:grid;
  grid-template-columns:1fr 1fr 1fr;
  gap:12px;
  margin-top:18px;
}
#nutPersonalPage .np-business-visuals figure{
  overflow:hidden;
  margin:0;
  border:1px solid #d9e5e1;
  border-radius:14px;
  background:#f7faf9;
}
#nutPersonalPage .np-business-visuals img{
  display:block;
  width:100%;
  height:250px;
  object-fit:cover;
  object-position:center top;
}
#nutPersonalPage .np-business-visuals figcaption{
  padding:11px 13px;
  color:#62766f;
  font-size:12px;
}

#nutCardPage .nc-hero-product{
  width:100%;
  max-width:520px;
  justify-self:end;
  align-self:center;
}
#nutCardPage .nc-network-rail{
  display:flex;
  justify-content:flex-end;
  gap:8px;
  margin-bottom:14px;
}
#nutCardPage .nc-network-rail span,
#nutCardPage .nc-network-copy span{
  padding:7px 9px;
  border:1px solid rgba(123,215,198,.17);
  border-radius:7px;
  color:#62dbc5;
  background:rgba(8,35,30,.58);
  font:700 9.5px/1 "Geist Mono",monospace;
}
#nutCardPage .nc-card-stack{
  position:relative;
  height:370px;
  perspective:1100px;
}
#nutCardPage .nc-product-card{
  position:absolute;
  width:350px;
  height:220px;
  padding:24px;
  border:1px solid rgba(255,255,255,.13);
  border-radius:20px;
  box-shadow:0 28px 66px rgba(0,0,0,.28);
}
#nutCardPage .nc-product-card.rear{
  left:30px;
  top:24px;
  transform:rotate(-7deg);
  background:linear-gradient(145deg,#17352e,#0b201c);
  opacity:.73;
}
#nutCardPage .nc-product-card.front{
  right:0;
  bottom:25px;
  transform:rotate(6deg);
  background:
    radial-gradient(220px 130px at 78% 15%,rgba(77,219,193,.16),transparent 72%),
    linear-gradient(145deg,#0b2821,#071511);
}
#nutCardPage .nc-card-head,
#nutCardPage .nc-card-bottom{display:flex;align-items:center;justify-content:space-between}
#nutCardPage .nc-card-head strong{color:#f2fbf8;font-size:15px}
#nutCardPage .nc-card-head span{color:#62d9c3;font:700 9px/1 "Geist Mono",monospace}
#nutCardPage .nc-chip{
  width:43px;height:31px;margin-top:35px;border:1px solid rgba(219,239,233,.23);border-radius:8px;
  background:linear-gradient(135deg,rgba(211,235,228,.15),rgba(91,187,168,.11));
}
#nutCardPage .nc-number{margin-top:26px;color:#d8eee7;font:600 13px/1 "Geist Mono",monospace;letter-spacing:.075em}
#nutCardPage .nc-card-bottom{margin-top:28px}
#nutCardPage .nc-card-bottom span{color:#bdd8d1;font:700 10px/1 "Geist Mono",monospace}
#nutCardPage .nc-card-bottom b{color:#5dd4be;font:700 9px/1 "Geist Mono",monospace}

#nutCardPage .nc-network-copy{
  display:flex;
  justify-content:flex-end;
  flex-wrap:wrap;
  gap:7px;
}
#nutCardPage .nc-network-copy span{
  color:#087e6a;
  border-color:#cce3de;
  background:#f3faf8;
}
#nutCardPage .nc-benefit-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  margin-top:42px;
  border-top:1px solid var(--hn-line);
  border-left:1px solid var(--hn-line);
}
#nutCardPage .nc-benefit-grid article{
  min-height:210px;
  padding:26px;
  border-right:1px solid var(--hn-line);
  border-bottom:1px solid var(--hn-line);
}
#nutCardPage .nc-benefit-grid span,
#nutCardPage .nc-partner-grid span{
  color:#078a75;
  font:700 10.5px/1 "Geist Mono",monospace;
}
#nutCardPage .nc-benefit-grid h3,
#nutCardPage .nc-partner-grid h3{
  margin:15px 0 0;
  color:#29483f;
  font:800 20px/1.08 Manrope,sans-serif;
  letter-spacing:-.025em;
}
#nutCardPage .nc-benefit-grid p,
#nutCardPage .nc-partner-grid p{
  margin:10px 0 0;
  color:var(--hn-body);
  font-size:14px;
  line-height:1.62;
}

#nutCardPage .nc-partner-layout{
  display:grid;
  grid-template-columns:minmax(0,.85fr) minmax(520px,1.15fr);
  gap:72px;
  align-items:start;
}
#nutCardPage .nc-partner-copy{
  position:sticky;
  top:110px;
}
#nutCardPage .nc-inline-cta{margin-top:28px}
#nutCardPage .nc-partner-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  border-top:1px solid #d7e3df;
  border-left:1px solid #d7e3df;
}
#nutCardPage .nc-partner-grid article{
  min-height:205px;
  padding:24px;
  border-right:1px solid #d7e3df;
  border-bottom:1px solid #d7e3df;
  background:#fff;
}

@media(max-width:980px){
  #nutPersonalPage .np-hero-product,
  #nutCardPage .nc-hero-product{
    justify-self:start;
    max-width:620px;
  }
  #nutPersonalPage .np-section-head,
  #nutCardPage .nc-section-head{
    grid-template-columns:1fr;
    gap:22px;
  }
  #nutPersonalPage .np-section-head .section-lead,
  #nutCardPage .nc-section-head .section-lead{margin-top:0}
  #nutPersonalPage .np-business-grid{grid-template-columns:1fr 1fr}
  #nutCardPage .nc-partner-layout{
    grid-template-columns:1fr;
    gap:42px;
  }
  #nutCardPage .nc-partner-copy{position:static}
}

@media(max-width:700px){
  #productPage .product-secondary-row{
    grid-template-columns:1fr auto;
    gap:8px 18px;
    padding:18px 2px;
  }
  #productPage .product-secondary-row p{grid-column:1/-1}
  #nutPersonalPage .np-capability-grid,
  #nutPersonalPage .np-business-grid,
  #nutPersonalPage .np-business-visuals,
  #nutCardPage .nc-benefit-grid,
  #nutCardPage .nc-partner-grid{
    grid-template-columns:1fr;
  }
  #nutPersonalPage .np-hero-frame img{height:320px}
  #nutPersonalPage .np-image-card img{height:360px}
  #nutPersonalPage .np-business-visuals img{height:280px}
  #nutCardPage .nc-card-stack{height:330px}
  #nutCardPage .nc-product-card{width:min(315px,82vw);height:198px;padding:20px}
  #nutCardPage .nc-product-card.rear{left:2px;top:25px}
  #nutCardPage .nc-product-card.front{right:0;bottom:24px}
}

@media(max-width:520px){
  #nutPersonalPage .np-store-actions{
    align-items:flex-start;
    flex-direction:column;
  }
  #nutPersonalPage .np-hero-facts{justify-content:flex-start;flex-wrap:wrap}
  #nutCardPage .nc-network-rail{justify-content:flex-start;flex-wrap:wrap}
}

#productPage .card-visual{
  display:grid;
  place-items:center;
  padding:24px;
  background:
    radial-gradient(300px 180px at 72% 12%,rgba(67,216,189,.18),transparent 70%),
    linear-gradient(145deg,#0b2822,#071814);
}
#productPage .ps-card-stage{
  width:min(100%,400px);
  display:grid;
  gap:14px;
}
#productPage .ps-card-networks{
  width:100%;
  display:flex;
  justify-content:flex-end;
  gap:6px;
}
#productPage .ps-card-networks span{
  padding:6px 8px;
  border:1px solid rgba(128,218,202,.17);
  border-radius:6px;
  color:#64d9c4;
  background:rgba(7,34,29,.56);
  font:700 8.5px/1 "Geist Mono",monospace;
}
#productPage .ps-card-object-v2{
  position:relative;
  width:100%;
  min-height:230px;
  padding:22px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.14);
  border-radius:20px;
  background:
    linear-gradient(135deg,#10342c 0%, #0a1f1b 46%, #081613 100%);
  box-shadow:0 28px 52px rgba(0,0,0,.28);
  transform:none !important;
}
#productPage .ps-card-object-v2::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(120deg,transparent 0 35%, rgba(255,255,255,.05) 48%, transparent 60%),
    radial-gradient(180px 90px at 92% 6%, rgba(82,220,194,.16), transparent 70%);
  pointer-events:none;
}
#productPage .ps-card-head{
  position:relative;
  z-index:1;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
}
#productPage .ps-card-head .ps-acorn-logo{
  width:24px;
  height:30px;
  object-fit:contain;
}
#productPage .ps-card-head small{
  color:#64d9c4;
  font:700 9px/1 "Geist Mono",monospace;
  letter-spacing:.12em;
}
#productPage .ps-card-chip{
  position:relative;
  z-index:1;
  width:42px;
  height:30px;
  margin-top:34px;
  border:1px solid rgba(218,238,232,.24);
  border-radius:8px;
  background:linear-gradient(135deg,rgba(216,238,232,.18),rgba(97,190,172,.1));
}
#productPage .ps-card-band{
  position:relative;
  z-index:1;
  width:100%;
  height:54px;
  margin-top:18px;
  border-radius:12px;
  background:linear-gradient(90deg, rgba(255,255,255,.04), rgba(98,218,196,.18), rgba(255,255,255,.04));
  opacity:.9;
}
#productPage .ps-card-number{
  position:relative;
  z-index:1;
  margin-top:18px;
  color:#d8eee7;
  font:600 12px/1 "Geist Mono",monospace;
  letter-spacing:.07em;
}
#productPage .ps-card-foot-v2{
  position:relative;
  z-index:1;
  margin-top:18px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
}
#productPage .ps-card-foot-v2 span{
  color:#bcd6cf;
  font:700 9px/1 "Geist Mono",monospace;
  letter-spacing:.08em;
}
#productPage .ps-card-foot-v2 b{
  color:#5fd4bf;
  font:700 8.5px/1 "Geist Mono",monospace;
  letter-spacing:.1em;
}
@media(max-width:640px){
  #productPage .ps-card-stage{width:min(100%,360px)}
  #productPage .ps-card-object-v2{min-height:210px;padding:20px}
}

#productPage .card-visual{
  display:grid;
  place-items:center;
  padding:24px 20px;
  background:
    radial-gradient(300px 180px at 72% 12%,rgba(67,216,189,.18),transparent 70%),
    linear-gradient(145deg,#0b2822,#071814);
}
#productPage .ps-card-stage{
  width:min(100%,420px);
  display:grid;
  gap:12px;
}
#productPage .ps-card-networks{
  width:100%;
  display:flex;
  justify-content:flex-end;
  gap:6px;
}
#productPage .ps-card-object-v2{
  position:relative;
  width:100%;
  max-width:420px;
  aspect-ratio:1.586 / 1;
  min-height:unset;
  height:auto;
  padding:18px 20px 18px;
  overflow:hidden;
  display:flex;
  flex-direction:column;
  justify-content:flex-start;
  border:1px solid rgba(255,255,255,.14);
  border-radius:20px;
  background:linear-gradient(135deg,#10342c 0%, #0a1f1b 46%, #081613 100%);
  box-shadow:0 24px 44px rgba(0,0,0,.24);
  transform:none !important;
}
#productPage .ps-card-object-v2::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(120deg,transparent 0 32%, rgba(255,255,255,.05) 47%, transparent 58%),
    radial-gradient(180px 90px at 92% 6%, rgba(82,220,194,.16), transparent 70%);
  pointer-events:none;
}
#productPage .ps-card-head{
  position:relative;
  z-index:1;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
}
#productPage .ps-card-head .ps-acorn-logo{
  width:24px;
  height:28px;
  object-fit:contain;
}
#productPage .ps-card-head small{
  color:#64d9c4;
  font:700 9px/1 "Geist Mono",monospace;
  letter-spacing:.12em;
}
#productPage .ps-card-chip{
  position:relative;
  z-index:1;
  width:42px;
  height:28px;
  margin-top:22px;
  border:1px solid rgba(218,238,232,.24);
  border-radius:8px;
  background:linear-gradient(135deg,rgba(216,238,232,.18),rgba(97,190,172,.1));
}
#productPage .ps-card-band{
  position:relative;
  z-index:1;
  width:100%;
  height:36px;
  margin-top:14px;
  border-radius:10px;
  background:linear-gradient(90deg, rgba(255,255,255,.03), rgba(98,218,196,.16), rgba(255,255,255,.03));
  opacity:.92;
}
#productPage .ps-card-number{
  position:relative;
  z-index:1;
  margin-top:14px;
  color:#d8eee7;
  font:600 12px/1 "Geist Mono",monospace;
  letter-spacing:.07em;
}
#productPage .ps-card-foot-v2{
  position:relative;
  z-index:1;
  margin-top:auto;
  padding-top:16px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
}
#productPage .ps-card-foot-v2 span{
  color:#bcd6cf;
  font:700 9px/1 "Geist Mono",monospace;
  letter-spacing:.08em;
}
#productPage .ps-card-foot-v2 b{
  color:#5fd4bf;
  font:700 8.5px/1 "Geist Mono",monospace;
  letter-spacing:.1em;
}
@media(max-width:640px){
  #productPage .ps-card-stage{width:min(100%,360px)}
  #productPage .ps-card-object-v2{
    max-width:360px;
    padding:16px 18px;
    border-radius:18px;
  }
  #productPage .ps-card-chip{margin-top:18px}
  #productPage .ps-card-band{height:32px;margin-top:12px}
  #productPage .ps-card-number{margin-top:12px;font-size:11px}
  #productPage .ps-card-foot-v2{padding-top:12px}
}

#productPage .card-visual{
  padding:28px 24px 32px;
}
#productPage .ps-card-stage{
  width:min(100%,560px);
  gap:16px;
}
#productPage .ps-card-networks{
  justify-content:center;
  gap:10px;
}
#productPage .ps-card-networks span{
  padding:8px 14px;
  border-radius:10px;
  font-size:10px;
}
#productPage .ps-card-logo{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  height:34px;
  padding:0 12px;
  border-radius:10px;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.12);
  box-shadow:inset 0 1px 0 rgba(255,255,255,.06);
}
#productPage .ps-card-logo svg{
  display:block;
  width:auto;
  height:16px;
}
#productPage .ps-card-logo.unionpay svg{
  height:18px;
}
#productPage .ps-card-logo.mastercard svg{
  height:18px;
}
#productPage .ps-card-object-v2{
  max-width:560px;
  padding:24px 28px 22px;
  border-radius:26px;
  box-shadow:0 28px 52px rgba(0,0,0,.26);
}
#productPage .ps-card-head .ps-acorn-logo{
  width:30px;
  height:36px;
}
#productPage .ps-card-head small{
  font-size:12px;
}
#productPage .ps-card-chip{
  width:52px;
  height:34px;
  margin-top:28px;
}
#productPage .ps-card-band{
  height:44px;
  margin-top:18px;
  border-radius:12px;
}
#productPage .ps-card-number{
  margin-top:18px;
  font-size:15px;
}
#productPage .ps-card-foot-v2{
  padding-top:20px;
}
#productPage .ps-card-foot-v2 span{
  font-size:11px;
}
#productPage .ps-card-foot-v2 b{
  font-size:11px;
}
@media(max-width:640px){
  #productPage .ps-card-stage{width:min(100%,420px)}
  #productPage .ps-card-object-v2{max-width:420px;padding:18px 20px 18px;border-radius:20px}
  #productPage .ps-card-networks span{padding:7px 10px;font-size:9px}
  #productPage .ps-card-head .ps-acorn-logo{width:24px;height:30px}
  #productPage .ps-card-head small{font-size:10px}
  #productPage .ps-card-chip{width:42px;height:28px;margin-top:20px}
  #productPage .ps-card-band{height:34px;margin-top:14px}
  #productPage .ps-card-number{margin-top:14px;font-size:12px}
  #productPage .ps-card-foot-v2 span,#productPage .ps-card-foot-v2 b{font-size:9.5px}
}

#nutPersonalPage .np-capability-section .section-heading,
#nutPersonalPage .np-business-section .section-heading,
#nutCardPage .nc-core-v178 .section-heading{
  margin-top:0;
}

/* Design Foundation */
:root{
  --hn-container:1280px;
  --hn-hero-height:684px;
  --hn-section-y:116px;
  --hn-section-y-tablet:92px;
  --hn-section-y-mobile:78px;

  --hn-dark:#071615;
  --hn-dark-2:#091e1c;
  --hn-ink:#15352e;
  --hn-body:#5f756f;
  --hn-muted:#70847e;
  --hn-line:#dce6e3;
  --hn-soft:#f4f8f6;
  --hn-action:#009b84;
  --hn-aqua:#63ead3;
  --hn-cyan:#43c7ff;

  --hn-body-size:15px;
  --hn-body-line:1.70;
  --hn-lead-size:17px;
  --hn-label-size:12.5px;
  --hn-micro-size:11.5px;

  --hn-radius-button:9px;
  --hn-radius-card:16px;
  --hn-radius-panel:20px;

  --hn-shadow-card:0 20px 52px rgba(15,61,52,.07);
  --hn-ease:cubic-bezier(.22,.8,.22,1);
}

.wrap{
  width:min(var(--hn-container),calc(100% - 72px));
  margin-inline:auto;
}

.inner-page-hero{
  position:relative;
  overflow:hidden;
  color:#fff;
  padding:0;
  background:
    radial-gradient(760px 560px at 82% 38%,rgba(39,225,193,.14),transparent 62%),
    radial-gradient(560px 400px at 96% 8%,rgba(67,199,255,.075),transparent 64%),
    linear-gradient(180deg,var(--hn-dark) 0%,var(--hn-dark-2) 100%);
}
.inner-page-hero-grid{
  position:relative;
  z-index:2;
  display:grid;
  grid-template-columns:7fr 5fr;
  gap:56px;
  align-items:start;
  padding:112px 0 52px;
}
.inner-page-hero-copy{
  position:relative;
  z-index:3;
  max-width:720px;
  padding:0;
}
.inner-page-hero h1{
  max-width:640px;
  margin:0;
  font:800 clamp(46px,3.9vw,58px)/.95 Manrope,sans-serif;
  letter-spacing:-.058em;
}
.secondary-product-page .inner-page-hero h1{
  max-width:720px;
}
.inner-page-hero h1 .gradient-line{
  display:block;
  color:transparent;
  background:linear-gradient(90deg,#fff 0%,#d8f8f2 46%,var(--hn-cyan) 100%);
  -webkit-background-clip:text;
  background-clip:text;
}
.inner-page-hero-lead{
  width:min(100%,620px);
  max-width:620px;
  margin:30px 0 0;
  color:rgba(244,252,250,.82);
  font-size:var(--hn-lead-size);
  line-height:1.68;
}
.inner-page-actions{
  display:flex;
  align-items:center;
  gap:22px;
  margin-top:46px;
}

@media(min-width:981px){
  #homePage .hero,
  #productPage .product-calibration-hero,
  #useCasesPage .usecases-sales-hero,
  #technologyPage .technology-hero,
  #companyPage .company-hero,
  #contactPage .contact-opening,
  #getStartedPage .gs6-hero,
  #nutPersonalPage .secondary-product-hero,
  #nutCardPage .secondary-product-hero{
    height:var(--hn-hero-height) !important;
    min-height:var(--hn-hero-height) !important;
    max-height:var(--hn-hero-height) !important;
    box-sizing:border-box;
  }

  #homePage .hero-inner,
  #productPage .product-calibration-inner,
  #useCasesPage .usecases-hero-layout,
  #technologyPage .inner-page-hero-grid,
  #companyPage .inner-page-hero-grid,
  #getStartedPage .inner-page-hero-grid,
  #nutPersonalPage .inner-page-hero-grid,
  #nutCardPage .inner-page-hero-grid{
    height:100%;
    min-height:0;
    box-sizing:border-box;
  }

  #productPage .product-calibration-inner,
  #useCasesPage .usecases-hero-layout,
  #technologyPage .inner-page-hero-grid,
  #companyPage .inner-page-hero-grid,
  #getStartedPage .inner-page-hero-grid,
  #nutPersonalPage .inner-page-hero-grid,
  #nutCardPage .inner-page-hero-grid{
    padding-top:112px;
    padding-bottom:52px;
  }

  #homePage .hero-inner{
    height:100%;
    padding-top:112px;
    padding-bottom:52px;
    box-sizing:border-box;
  }

  #productPage .product-calibration-copy h1{
    max-width:640px;
    font:800 clamp(46px,3.9vw,58px)/.95 Manrope,sans-serif;
    letter-spacing:-.058em;
  }

  #technologyPage .technology-hero .tech-hero-visual{
    top:-28px;
  }
  #companyPage .company-hero-visual{
    min-height:520px;
  }
  #companyPage .company-id-card{
    transform:scale(.88);
    transform-origin:top right;
  }
}

.section-eyebrow,
.content-eyebrow{
  display:flex;
  align-items:center;
  gap:10px;
  margin:0 0 18px;
  color:#006f62;
  font:750 var(--hn-label-size)/1.25 "Geist Mono",monospace;
  letter-spacing:.095em;
  text-transform:uppercase;
}
.section-eyebrow::before,
.content-eyebrow::before{
  content:"";
  width:5px;
  height:5px;
  flex:0 0 auto;
  border-radius:50%;
  background:currentColor;
}
.section-heading{
  max-width:820px;
  margin:0;
  color:var(--hn-ink);
  font:800 clamp(44px,4.45vw,60px)/.98 Manrope,sans-serif;
  letter-spacing:-.052em;
}
.section-lead{
  max-width:720px;
  margin:20px 0 0;
  color:var(--hn-body);
  font-size:var(--hn-body-size);
  line-height:var(--hn-body-line);
}
.content-section{
  padding:var(--hn-section-y) 0;
}
.content-section.soft{background:var(--hn-soft)}
.content-section.white{background:#fff}
.content-section.dark{background:var(--hn-dark);color:#fff}
.content-section.dark .section-eyebrow{color:var(--hn-aqua)}
.content-section.dark .section-heading{color:#f4fbf9}
.content-section.dark .section-lead{color:rgba(237,250,246,.70)}

.content-grid-2{
  display:grid;
  grid-template-columns:minmax(0,1fr) minmax(0,1fr);
  gap:72px;
  align-items:center;
}
.content-card{
  border:1px solid var(--hn-line);
  border-radius:var(--hn-radius-card);
  background:#fff;
  box-shadow:var(--hn-shadow-card);
}

.site-page .body-copy{
  color:var(--hn-body);
  font-size:var(--hn-body-size);
  line-height:var(--hn-body-line);
}
.site-page .helper-copy{
  color:var(--hn-muted);
  font-size:13px;
  line-height:1.58;
}
.site-page .functional-label{
  font-size:12px;
  line-height:1.3;
}
.site-page .micro-label{
  font-size:var(--hn-micro-size);
  line-height:1.3;
}

.btn-primary{
  min-height:44px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:0 20px;
  border:0;
  border-radius:var(--hn-radius-button);
  background:var(--hn-action);
  color:#fff;
  font-size:13.5px;
  font-weight:800;
  text-decoration:none;
  cursor:pointer;
  box-shadow:inset 0 0 0 1px rgba(255,255,255,.07),0 14px 26px -22px rgba(0,124,109,.80);
  transition:background .18s ease,transform .18s var(--hn-ease),box-shadow .18s ease;
}
.btn-primary:hover{
  background:#008a78;
  transform:translateY(-2px);
}
.inner-page-secondary{
  position:relative;
  padding:10px 1px;
  color:rgba(255,255,255,.82);
  font-size:13px;
  font-weight:700;
  text-decoration:none;
}
.inner-page-secondary::after{
  content:"";
  position:absolute;
  left:1px;right:1px;bottom:6px;height:1px;
  background:linear-gradient(90deg,var(--hn-aqua),var(--hn-cyan));
  transform:scaleX(.36);
  transform-origin:left;
  opacity:.55;
  transition:transform .22s var(--hn-ease),opacity .18s ease;
}
.inner-page-secondary:hover::after{transform:scaleX(1);opacity:1}

.eyebrow,
#productPage .product-section-tag,
#technologyPage .inner-section-tag,
#companyPage .inner-section-tag,
#useCasesPage .inner-section-tag{
  font-size:var(--hn-label-size) !important;
  line-height:1.25 !important;
  letter-spacing:.095em !important;
  font-weight:750 !important;
}
#productPage .product-section-tag,
#technologyPage .inner-section-tag,
#companyPage .inner-section-tag,
#useCasesPage .inner-section-tag{color:#006f62}
#productPage .product-section.dark .product-section-tag,
#technologyPage .inner-section.dark .inner-section-tag,
#companyPage .inner-section.dark .inner-section-tag,
#useCasesPage .inner-section.dark .inner-section-tag{color:var(--hn-aqua)}

.inner-closing-cta{
  position:relative;
  overflow:hidden;
  padding:82px 0;
  background:var(--hn-dark);
}
.inner-closing-cta::before{
  content:"";
  position:absolute;
  inset:auto -12% -75% 38%;
  height:430px;
  background:radial-gradient(ellipse at center,rgba(39,225,193,.12),transparent 67%);
  pointer-events:none;
}
.inner-closing-cta-card{
  position:relative;
  z-index:1;
  display:grid;
  grid-template-columns:minmax(0,1fr) auto;
  gap:64px;
  align-items:end;
}
.inner-closing-cta-copy h2{
  max-width:820px;
  margin:0;
  color:#f4fbf9;
  font:800 clamp(40px,4.6vw,64px)/.98 Manrope,sans-serif;
  letter-spacing:-.055em;
}
.inner-closing-cta-copy p{
  max-width:620px;
  margin:19px 0 0;
  color:rgba(237,250,246,.66);
  font-size:15px;
  line-height:1.7;
}
.inner-closing-cta-actions{
  display:flex;
  align-items:center;
  gap:24px;
  padding-bottom:4px;
  white-space:nowrap;
}

#contactPage .contact-form-top>span{font-size:11.5px}
#contactPage .contact-form-roles button{min-height:38px;height:38px;padding:0 14px;font-size:12px}
#contactPage .contact-field>span{font-size:12.5px;line-height:1.25}
#contactPage .contact-field input,
#contactPage .contact-field select,
#contactPage .contact-field textarea{font-size:14px}
#contactPage .contact-form-status{font-size:12.5px}

#technologyPage .tech-capability-top span,
#technologyPage .tech-proof-ip-lattice span,
#technologyPage .tech-runtime-meta > span,
#technologyPage .tech-runtime-meta small,
#technologyPage .tech-runtime-ring span,
#technologyPage .tech-runtime-incident span{
  font-size:12px;
  line-height:1.4;
}
#companyPage .company-team-summary-top span,
#companyPage .company-leadership-label span,
#companyPage .company-monolith-reviewed .company-monolith-note span{
  font-size:11.5px;
  line-height:1.25;
}

#contactPage .contact-role-card{border-radius:16px}
#contactPage .contact-form-panel{border-radius:18px}
#technologyPage .tech-capability-board,
#technologyPage .tech-runtime-console{border-radius:18px}
#companyPage .company-market-panel,
#companyPage .company-team-summary-card{border-radius:20px}
#companyPage .company-vision-copy h2{font-size:clamp(46px,4.6vw,64px);line-height:.98}

.footer{padding-top:72px}
.footer-main{
  display:grid;
  grid-template-columns:minmax(300px,5fr) minmax(0,7fr);
  gap:90px;
  align-items:start;
  padding-top:0;
  padding-bottom:52px;
}
.footer-nav{
  display:grid;
  grid-template-columns:minmax(118px,1fr) minmax(118px,1fr) minmax(92px,.78fr) minmax(220px,1.45fr);
  gap:34px;
  align-items:start;
}
.footer-col{min-width:0}
.footer-col-contact a{width:auto;max-width:100%;overflow-wrap:anywhere}
.footer-col-contact .footer-contact-item{display:flex;align-items:center;gap:8px;width:max-content;max-width:100%;}
.footer-col-contact .footer-contact-item svg{width:14px;height:14px;flex:0 0 14px;fill:none;stroke:currentColor;stroke-width:1.7;stroke-linecap:round;stroke-linejoin:round;}
.footer-col-contact .footer-contact-item svg.brand-fill{fill:currentColor;stroke:none;}
.footer-col-contact p{
  max-width:240px;margin:10px 0 0;color:rgba(255,255,255,.74);font-size:12px;line-height:1.55;
}
.footer-col-contact p.footer-contact-item{display:flex;align-items:flex-start;gap:8px;}
.footer-col-contact p.footer-contact-item svg{margin-top:2px;}
.footer-contact-compact{display:none !important}

.site-page a:focus-visible,
.site-page button:focus-visible,
.site-page input:focus-visible,
.site-page select:focus-visible,
.site-page textarea:focus-visible,
.site-header a:focus-visible,
.site-header button:focus-visible,
.footer a:focus-visible{
  outline:2px solid #2dbda5;
  outline-offset:3px;
}

@media(max-width:1120px){
  .footer-main{grid-template-columns:minmax(250px,.8fr) minmax(0,1.2fr);gap:54px}
  .footer-nav{grid-template-columns:repeat(2,minmax(0,1fr));gap:34px 42px}
}

@media(min-width:621px) and (max-width:1100px){
  #companyPage .company-hero-visual{min-height:530px}
  #companyPage .company-id-card{
    transform:scale(.90);
    transform-origin:top center;
  }
}

@media(max-width:980px){
  .wrap{width:min(var(--hn-container),calc(100% - 52px))}
  #homePage .hero,
  #productPage .product-calibration-hero,
  #useCasesPage .usecases-sales-hero,
  #technologyPage .technology-hero,
  #companyPage .company-hero,
  #contactPage .contact-opening,
  #getStartedPage .gs6-hero,
  #nutPersonalPage .secondary-product-hero,
  #nutCardPage .secondary-product-hero{
    height:auto !important;
    min-height:auto !important;
    max-height:none !important;
  }
  .inner-page-hero-grid{
    height:auto;
    grid-template-columns:1fr;
    gap:58px;
    padding:72px 0 96px;
  }
  .inner-page-hero-copy{max-width:800px}
  .inner-page-hero h1{
    max-width:760px;
    font-size:clamp(42px,6.2vw,56px);
  }
  #technologyPage .technology-hero .tech-hero-visual{top:-10px}
  .content-section{padding:var(--hn-section-y-tablet) 0}
  .content-grid-2{grid-template-columns:1fr;gap:48px}
}

@media(max-width:760px){
  .footer-main{grid-template-columns:1fr;gap:44px}
  .footer-nav{grid-template-columns:repeat(2,minmax(0,1fr));gap:32px 28px}
}

@media(max-width:640px){
  .wrap{width:calc(100% - 28px)}
  .inner-page-hero-grid{gap:46px;padding:56px 0 82px}
  .inner-page-hero h1{font-size:clamp(34px,9.2vw,44px);line-height:.99}
  .inner-page-hero-lead{margin-top:23px;font-size:15px}
  .inner-page-actions{gap:18px;margin-top:36px}
  .content-section{padding:var(--hn-section-y-mobile) 0}
  .section-heading{font-size:clamp(36px,10vw,46px)}
  .section-lead{font-size:15px}
  .inner-closing-cta{padding:58px 0}
  .inner-closing-cta-card{grid-template-columns:1fr;gap:34px;align-items:start}
  .inner-closing-cta-copy h2{font-size:clamp(36px,10.5vw,48px)}
  .inner-closing-cta-actions{flex-wrap:wrap;gap:20px;padding-bottom:0}

  #productPage .product-calibration-inner{gap:32px;padding-top:68px;padding-bottom:58px}
  #productPage .product-calibration-actions{margin-top:30px}
  #productPage .product-calibration-visual{width:100%;max-width:360px}
  #productPage .demo-premium-shell{padding:11px}
  #productPage .demo-premium-stage{gap:8px;padding-top:6px}
  #productPage .demo-phone{zoom:.86}
  #productPage .demo-premium-caption{display:none}

  #contactPage .contact-opening{padding:58px 0}
  #contactPage .contact-role-grid{margin-top:30px;gap:10px}
  #contactPage .contact-role-card{min-height:0;height:auto;padding:20px 20px 19px}
  #contactPage .contact-role-card h2{margin-top:0;font-size:21px;line-height:1.05}
  #contactPage .contact-role-card h3{margin-top:10px;font-size:15px;line-height:1.25}
  #contactPage .contact-role-card p{max-width:none;margin-top:8px;font-size:13.2px;line-height:1.52}
}

@media(max-width:440px){
  .footer{padding-top:56px}
  .footer-nav{grid-template-columns:1fr;gap:28px}
  .footer-col-contact p{max-width:280px}
}

@media(prefers-reduced-motion:reduce){
  *,*::before,*::after{
    scroll-behavior:auto !important;
    animation-duration:.01ms !important;
    animation-iteration-count:1 !important;
    transition-duration:.01ms !important;
  }
}

/* Get Started */
#getStartedPage{background:#fff;color:var(--ink)}
#getStartedPage .gs-intro{padding:68px 0 30px;background:linear-gradient(180deg,var(--paper) 0%,#fff 100%)}
#getStartedPage .gs-intro-inner{display:flex;align-items:flex-end;justify-content:space-between;gap:48px}
#getStartedPage .gs-intro-copy{max-width:760px}
#getStartedPage .gs-intro h1{margin:0;color:var(--ink);font:800 clamp(44px,4.1vw,58px)/.95 Manrope,sans-serif;letter-spacing:-.058em}
#getStartedPage .gs-intro p{max-width:690px;margin:20px 0 0;color:var(--muted);font-size:16px;line-height:1.68}
#getStartedPage .gs-facts{display:flex;flex-wrap:wrap;justify-content:flex-end;gap:8px 18px;padding-bottom:4px;color:#748680;font:650 11px/1.4 "Geist Mono",monospace}
#getStartedPage .gs-facts span{position:relative;white-space:nowrap}
#getStartedPage .gs-facts span+span::before{content:"";position:absolute;left:-10px;top:50%;width:3px;height:3px;border-radius:50%;background:#9badA7;transform:translateY(-50%)}

#getStartedPage .gs-experience{padding:0 0 118px;background:#fff}
#getStartedPage .gs-app{position:relative;overflow:hidden;min-height:0;border:1px solid var(--line);border-radius:24px;background:#fff;box-shadow:var(--shadow-soft)}
#getStartedPage .gs-app-status{height:38px;padding:0 22px;display:flex;align-items:center;justify-content:space-between;gap:20px;border-bottom:1px solid rgba(7,22,21,.07);background:#fbfdfc;color:#71837e;font:650 10px/1 "Geist Mono",monospace;letter-spacing:.04em}
#getStartedPage .gs-app-status strong{color:var(--action);font-weight:700}
#getStartedPage .gs-progress{width:122px;height:2px;border-radius:999px;background:#e5eeeb;overflow:hidden}
#getStartedPage .gs-progress i{display:block;height:100%;background:linear-gradient(90deg,var(--teal),var(--aqua));transform-origin:left;transition:transform .5s var(--ease)}
#getStartedPage .gs-view{min-height:0}

#getStartedPage .store-top{height:70px;padding:0 30px;display:grid;grid-template-columns:auto 1fr auto;align-items:center;gap:34px;border-bottom:1px solid #e4ebe8;background:#fff}
#getStartedPage .store-brand{display:flex;align-items:center;gap:10px;color:#14231f;font:800 16px/1 Manrope,sans-serif;letter-spacing:-.025em}
#getStartedPage .store-brand-mark{width:27px;height:27px;border-radius:50%;display:grid;place-items:center;background:#102b25;color:#fff;font:800 10px/1 Manrope,sans-serif}
#getStartedPage .store-nav{justify-self:center;display:flex;align-items:center;gap:28px;color:#5f716c;font-size:11.5px;font-weight:650}
#getStartedPage .store-nav span.active{color:#10231f}
#getStartedPage .store-bag{display:flex;align-items:center;gap:9px;color:#354b45;font-size:11px;font-weight:700}
#getStartedPage .store-bag b{width:22px;height:22px;border-radius:50%;display:grid;place-items:center;background:#102b25;color:#fff;font:700 9px/1 Manrope,sans-serif}

#getStartedPage .store-product{display:grid;grid-template-columns:minmax(0,1.08fr) minmax(380px,.92fr);min-height:0}
#getStartedPage .store-gallery{padding:26px 30px 22px;background:#f2f6f4;display:grid;grid-template-rows:1fr auto;gap:12px}
#getStartedPage .store-art{position:relative;min-height:360px;border-radius:18px;overflow:hidden;background:#fff}
#getStartedPage .store-product-image{position:absolute;inset:0;width:100%;height:100%;object-fit:contain;object-position:center;padding:14px}
#getStartedPage .store-photo-note{position:absolute;left:20px;bottom:17px;color:#7e8f8a;font:650 8.5px/1 "Geist Mono",monospace;letter-spacing:.06em}
#getStartedPage .store-thumbs{display:flex;gap:8px}
#getStartedPage .store-thumb{width:48px;height:48px;padding:0;overflow:hidden;border:1px solid #dae5e1;border-radius:9px;background:#fff;cursor:pointer}
#getStartedPage .store-thumb img{display:block;width:100%;height:100%;object-fit:cover}
#getStartedPage .store-thumb.active{border-color:#88cbbf;box-shadow:0 0 0 2px rgba(1,182,155,.08)}

#getStartedPage .store-detail{padding:34px 42px 28px;display:flex;flex-direction:column;background:#fff}
#getStartedPage .store-breadcrumb{color:#879690;font-size:10.5px;font-weight:600}
#getStartedPage .store-detail h2{margin:18px 0 0;color:#13241f;font:800 clamp(31px,2.7vw,40px)/1 Manrope,sans-serif;letter-spacing:-.045em}
#getStartedPage .store-rating{display:flex;align-items:center;gap:9px;margin-top:10px;color:#73837e;font-size:10px}
#getStartedPage .store-rating b{color:#0a8c76;letter-spacing:.08em}
#getStartedPage .store-price{margin-top:22px;display:flex;align-items:flex-end;gap:10px}
#getStartedPage .store-price strong{color:#10231f;font:800 29px/1 Manrope,sans-serif;letter-spacing:-.04em}
#getStartedPage .store-price span{padding-bottom:3px;color:#81918c;font-size:11px}
#getStartedPage .store-desc{margin:22px 0 0;color:#60736d;font-size:13px;line-height:1.72}
#getStartedPage .store-option{margin-top:20px;padding-top:17px;border-top:1px solid #e4ebe8}
#getStartedPage .store-option label{display:block;color:#344d46;font-size:11px;font-weight:750}
#getStartedPage .store-swatches{display:flex;gap:9px;margin-top:9px}
#getStartedPage .store-swatch{width:27px;height:27px;border-radius:50%;border:5px solid #fff;box-shadow:0 0 0 1px #ccd9d5;background:#d8ddd9}
#getStartedPage .store-swatch:nth-child(2){background:#172824}#getStartedPage .store-swatch:nth-child(3){background:#8f7e67}
#getStartedPage .store-swatch.active{box-shadow:0 0 0 2px #1b6f60}
#getStartedPage .store-buy{margin-top:22px;width:100%;min-height:46px}
#getStartedPage .store-assurance{display:grid;grid-template-columns:1fr 1fr;gap:12px;margin-top:13px;color:#71837d;font-size:10px;line-height:1.4}
#getStartedPage .store-assurance strong{display:block;margin-bottom:3px;color:#39544d;font-size:10.5px}

#getStartedPage .checkout-page{min-height:468px;background:#f7faf9}
#getStartedPage .checkout-head{height:64px;padding:0 30px;display:flex;align-items:center;justify-content:space-between;border-bottom:1px solid #e0e9e6;background:#fff}
#getStartedPage .checkout-head #getStartedPage .store-brand{font-size:15px}
#getStartedPage .checkout-head>span{color:#80918c;font-size:10.5px}
#getStartedPage .checkout-body{width:min(980px,calc(100% - 64px));margin:0 auto;padding:24px 0 26px;display:grid;grid-template-columns:minmax(0,1.08fr) minmax(330px,.72fr);gap:54px}
#getStartedPage .checkout-main h2{margin:0;color:#18362f;font:800 31px/1 Manrope,sans-serif;letter-spacing:-.04em}
#getStartedPage .checkout-main>p{margin:10px 0 0;color:#71827d;font-size:12px}
#getStartedPage .checkout-section{margin-top:30px;padding-top:24px;border-top:1px solid #dde7e4}
#getStartedPage .checkout-section h3{margin:0;color:#2b4a42;font:750 14px/1.2 Manrope,sans-serif;letter-spacing:-.01em}
#getStartedPage .checkout-input{margin-top:14px;height:45px;padding:0 13px;display:flex;align-items:center;border:1px solid #d7e3df;border-radius:9px;background:#fff;color:#6f817b;font-size:11.5px}
#getStartedPage .pay-method{margin-top:14px;padding:15px;border:1px solid #9dcfc4;border-radius:11px;background:#f2faf7;display:flex;align-items:center;justify-content:space-between;gap:15px}
#getStartedPage .pay-method-main{display:flex;align-items:center;gap:12px}
#getStartedPage .pay-method-logo{width:34px;height:34px;display:grid;place-items:center}#getStartedPage .pay-method-logo img{display:block;width:28px;height:28px;object-fit:contain}
#getStartedPage .pay-method strong{display:block;color:#21463d;font-size:12px}#getStartedPage .pay-method small{display:block;margin-top:3px;color:#758983;font-size:9.5px}
#getStartedPage .pay-method>i{width:14px;height:14px;border:4px solid #fff;border-radius:50%;background:#0a9a82;box-shadow:0 0 0 1px #8ccabe}
#getStartedPage .wallet-row{margin-top:18px;padding:16px;border:1px solid #d8e4e0;border-radius:11px;background:#fff;display:flex;align-items:center;justify-content:space-between;gap:18px}
#getStartedPage .wallet-row small{display:block;color:#899893;font:650 8px/1 "Geist Mono",monospace;letter-spacing:.06em}
#getStartedPage .wallet-row strong{display:block;margin-top:6px;color:#36564e;font:700 10.5px/1 "Geist Mono",monospace;overflow-wrap:anywhere}
#getStartedPage .wallet-row button{min-height:38px;padding:0 14px;flex:0 0 auto}
#getStartedPage .checkout-continue{width:100%;min-height:46px;margin-top:18px}
#getStartedPage .order-summary{align-self:start;padding:23px;border:1px solid #dce6e3;border-radius:14px;background:#fff}
#getStartedPage .order-summary h3{margin:0;color:#2a4a42;font:750 14px/1.2 Manrope,sans-serif}
#getStartedPage .summary-product{display:grid;grid-template-columns:60px 1fr auto;gap:12px;align-items:center;margin-top:18px;padding-bottom:18px;border-bottom:1px solid #e5ecea}
#getStartedPage .summary-thumb{height:60px;border-radius:10px;background:#fff;overflow:hidden}
#getStartedPage .summary-thumb img{display:block;width:100%;height:100%;object-fit:cover}
#getStartedPage .summary-product strong{color:#2c4942;font-size:11px}#getStartedPage .summary-product small{display:block;margin-top:4px;color:#899793;font-size:9px}#getStartedPage .summary-product b{color:#19372f;font-size:11px}
#getStartedPage .summary-lines{margin-top:14px}#getStartedPage .summary-lines div{display:flex;justify-content:space-between;gap:20px;padding:7px 0;color:#71837d;font-size:10.5px}#getStartedPage .summary-lines div.total{margin-top:6px;padding-top:13px;border-top:1px solid #e5ecea;color:#23443b;font-weight:750;font-size:12px}

#getStartedPage .payment-page{min-height:628px;background:#f7faf9}
#getStartedPage .payment-wrap{width:min(900px,calc(100% - 64px));margin:0 auto;padding:38px 0 48px}
#getStartedPage .payment-back{color:#738781;font-size:10.5px}
#getStartedPage .payment-layout{margin-top:18px;display:grid;grid-template-columns:minmax(0,1fr) 310px;gap:30px;align-items:start}
#getStartedPage .payment-panel{padding:30px;border:1px solid #d9e5e1;border-radius:15px;background:#fff}
#getStartedPage .payment-panel h2{margin:0;color:#173a32;font:800 29px/1 Manrope,sans-serif;letter-spacing:-.04em}
#getStartedPage .payment-amount{margin-top:22px;color:#10231f;font:800 36px/1 Manrope,sans-serif;letter-spacing:-.04em}#getStartedPage .payment-amount span{margin-left:7px;color:#0a8c76;font-size:15px}
#getStartedPage .payment-meta{display:grid;grid-template-columns:1fr 1fr;gap:10px;margin-top:22px}#getStartedPage .payment-meta div{padding:12px;border:1px solid #e0e9e6;border-radius:9px;background:#fbfdfc}#getStartedPage .payment-meta small{display:block;color:#8a9995;font:650 7.5px/1 "Geist Mono",monospace;letter-spacing:.06em}#getStartedPage .payment-meta strong{display:block;margin-top:6px;color:#385850;font-size:10.5px;overflow-wrap:anywhere}
#getStartedPage .receipt{margin-top:14px;padding:13px;border:1px solid #dce6e3;border-radius:9px;background:#f6f9f8}#getStartedPage .receipt small{display:block;color:#8a9995;font:650 7.5px/1 "Geist Mono",monospace}#getStartedPage .receipt code{display:block;margin-top:7px;color:#385850;font:600 10px/1.5 "Geist Mono",monospace;overflow-wrap:anywhere}
#getStartedPage .payment-send{width:100%;min-height:46px;margin-top:18px}
#getStartedPage .payment-side{padding:23px;border-radius:15px;background:#0b2421;color:#fff;box-shadow:var(--shadow-dark)}
#getStartedPage .payment-side small{color:#79aa9f;font:650 8px/1 "Geist Mono",monospace;letter-spacing:.07em}#getStartedPage .payment-side h3{margin:12px 0 0;color:#fff;font:750 18px/1.2 Manrope,sans-serif}#getStartedPage .payment-side p{margin:10px 0 0;color:#9db5af;font-size:10.5px;line-height:1.6}
#getStartedPage .wallet-mini{margin-top:22px;padding-top:18px;border-top:1px solid rgba(255,255,255,.09)}#getStartedPage .wallet-mini span{display:block;color:#6fa094;font-size:8.5px}#getStartedPage .wallet-mini strong{display:block;margin-top:6px;color:#d7e9e4;font:650 9.5px/1.45 "Geist Mono",monospace;overflow-wrap:anywhere}

#getStartedPage .confirm-page{min-height:628px;background:#f7faf9;display:grid;place-items:center;padding:46px}
#getStartedPage .confirm-card{width:min(650px,100%);text-align:center}
#getStartedPage .confirm-icon{width:62px;height:62px;margin:0 auto;border-radius:50%;display:grid;place-items:center;background:#e7f7f3;color:#078c76;font-size:26px;font-weight:700}
#getStartedPage .confirm-card h2{margin:22px 0 0;color:#173b33;font:800 36px/1 Manrope,sans-serif;letter-spacing:-.04em}
#getStartedPage .confirm-card>p{max-width:520px;margin:13px auto 0;color:#6d807a;font-size:12.5px;line-height:1.65}
#getStartedPage .confirm-details{margin:26px auto 0;max-width:500px;border-top:1px solid #dae5e1}#getStartedPage .confirm-details div{display:flex;justify-content:space-between;gap:22px;padding:13px 2px;border-bottom:1px solid #e4ebe9;color:#7a8b86;font-size:10.5px}#getStartedPage .confirm-details strong{color:#36564e;text-align:right;font-weight:700;overflow-wrap:anywhere}
#getStartedPage .merchant-reveal{margin-top:28px;padding:22px;border-radius:13px;background:#0b2b25;text-align:left;display:flex;align-items:center;justify-content:space-between;gap:24px}#getStartedPage .merchant-reveal small{display:block;color:#72a69a;font:650 8px/1 "Geist Mono",monospace;letter-spacing:.07em}#getStartedPage .merchant-reveal strong{display:block;margin-top:7px;color:#f0faf7;font-size:14px}#getStartedPage .merchant-reveal button{flex:0 0 auto;min-height:42px;padding:0 16px;border:0;border-radius:9px;background:#fff;color:#143c33;font-size:11px;font-weight:800;cursor:pointer}

#getStartedPage .merchant-app{min-height:628px;background:#f5f8f7}
#getStartedPage .merchant-top{height:68px;padding:0 28px;display:flex;align-items:center;justify-content:space-between;border-bottom:1px solid #163b34;background:#0b2421;color:#fff}
#getStartedPage .merchant-brand{display:flex;align-items:center;gap:10px;font-weight:800;font-size:15px}#getStartedPage .merchant-brand i{width:27px;height:27px;border-radius:8px;background:#0aa088;display:grid;place-items:center;font-style:normal;font-size:10px}#getStartedPage .merchant-top span{color:#87aaa2;font:650 9px/1 "Geist Mono",monospace}
#getStartedPage .merchant-body{display:grid;grid-template-columns:190px 1fr;min-height:560px}
#getStartedPage .merchant-side{padding:26px 18px;border-right:1px solid #dce6e3;background:#fff}#getStartedPage .merchant-side nav{display:grid;gap:5px}#getStartedPage .merchant-side nav span{padding:10px 11px;border-radius:8px;color:#758681;font-size:10.5px;font-weight:650}#getStartedPage .merchant-side nav span.active{background:#eaf7f3;color:#087c69}#getStartedPage .merchant-side .merchant-wallet{margin-top:28px;padding-top:20px;border-top:1px solid #e3ebe8}#getStartedPage .merchant-wallet small{display:block;color:#9aa6a2;font:650 7.5px/1 "Geist Mono",monospace}#getStartedPage .merchant-wallet strong{display:block;margin-top:6px;color:#5b716a;font:650 8.5px/1.45 "Geist Mono",monospace;overflow-wrap:anywhere}
#getStartedPage .merchant-main{padding:30px 34px 38px}#getStartedPage .merchant-main-head{display:flex;align-items:flex-end;justify-content:space-between;gap:25px}#getStartedPage .merchant-main-head h2{margin:0;color:#173a32;font:800 28px/1 Manrope,sans-serif;letter-spacing:-.035em}#getStartedPage .merchant-main-head p{margin:8px 0 0;color:#7a8c86;font-size:10.5px}#getStartedPage .merchant-state{padding:7px 9px;border-radius:999px;background:#e4f6f1;color:#087e69;font:700 8px/1 "Geist Mono",monospace}
#getStartedPage .merchant-table{margin-top:24px;border:1px solid #dce6e3;border-radius:12px;overflow:hidden;background:#fff}#getStartedPage .merchant-table-head,#getStartedPage .merchant-table-row{display:grid;grid-template-columns:1.1fr .9fr .8fr .7fr;gap:12px;align-items:center;padding:13px 16px}#getStartedPage .merchant-table-head{background:#f6f9f8;color:#899893;font:650 8px/1 "Geist Mono",monospace;letter-spacing:.05em}#getStartedPage .merchant-table-row{border-top:1px solid #e7eeec;color:#526a63;font-size:10.5px}#getStartedPage .merchant-table-row strong{color:#2d4e45;font-size:10.5px}#getStartedPage .merchant-table-row code{font:600 9px/1.4 "Geist Mono",monospace;color:#617a72}
#getStartedPage .merchant-order{margin-top:22px;display:grid;grid-template-columns:minmax(0,1fr) 310px;gap:20px}#getStartedPage .order-details{padding:21px;border:1px solid #dce6e3;border-radius:12px;background:#fff}#getStartedPage .order-details h3{margin:0;color:#2c4c44;font:750 14px/1.2 Manrope,sans-serif}#getStartedPage .order-detail-grid{margin-top:15px;display:grid;grid-template-columns:1fr 1fr;gap:0 28px}#getStartedPage .order-detail-grid div{padding:10px 0;border-bottom:1px solid #edf1ef}#getStartedPage .order-detail-grid small{display:block;color:#929f9b;font-size:8px}#getStartedPage .order-detail-grid strong{display:block;margin-top:4px;color:#516b63;font-size:10px;overflow-wrap:anywhere}
#getStartedPage .settlement-action{padding:21px;border-radius:12px;background:#0c2b25;color:#fff}#getStartedPage .settlement-action small{display:block;color:#76a79b;font:650 8px/1 "Geist Mono",monospace;letter-spacing:.06em}#getStartedPage .settlement-action h3{margin:10px 0 0;color:#fff;font:750 19px/1.15 Manrope,sans-serif}#getStartedPage .settlement-action p{margin:10px 0 0;color:#9db5af;font-size:10.5px;line-height:1.55}#getStartedPage .settlement-action .settle-dest{margin-top:16px;padding:12px;border:1px solid rgba(255,255,255,.09);border-radius:9px;background:rgba(255,255,255,.03)}#getStartedPage .settlement-action .settle-dest span{display:block;color:#73a095;font-size:8px}#getStartedPage .settlement-action .settle-dest strong{display:block;margin-top:5px;color:#d7e9e4;font:650 8.5px/1.45 "Geist Mono",monospace;overflow-wrap:anywhere}#getStartedPage .settlement-action button{width:100%;min-height:42px;margin-top:17px;border:0;border-radius:9px;background:#fff;color:#123a31;font-size:10.5px;font-weight:800;cursor:pointer}#getStartedPage .settlement-action button:disabled{opacity:.55;cursor:default}
#getStartedPage .merchant-complete{margin-top:20px;padding:17px;border:1px solid #b9ddd4;border-radius:11px;background:#edf9f5;color:#477168;font-size:10.5px}#getStartedPage .merchant-complete strong{display:block;margin-bottom:5px;color:#087b68;font-size:12px}

#getStartedPage .done-page{min-height:628px;display:grid;place-items:center;padding:48px;background:linear-gradient(180deg,#f7faf9,#fff)}
#getStartedPage .done-inner{width:min(760px,100%);text-align:center}#getStartedPage .done-inner .confirm-icon{background:#0a8f79;color:#fff}#getStartedPage .done-inner h2{margin:22px 0 0;color:#173a32;font:800 38px/1 Manrope,sans-serif;letter-spacing:-.045em}#getStartedPage .done-inner>p{max-width:580px;margin:14px auto 0;color:#687d76;font-size:12.5px;line-height:1.65}
#getStartedPage .loop-summary{margin:28px auto 0;max-width:650px;display:flex;align-items:center;justify-content:center;gap:11px;color:#78908a}#getStartedPage .loop-summary div{min-width:150px;padding:16px;border:1px solid #d8e5e1;border-radius:11px;background:#fff}#getStartedPage .loop-summary small{display:block;color:#91a09c;font:650 7.5px/1 "Geist Mono",monospace}#getStartedPage .loop-summary strong{display:block;margin-top:7px;color:#31534a;font:700 9px/1.4 "Geist Mono",monospace;overflow-wrap:anywhere}#getStartedPage .loop-summary b{color:#0a927b;font-size:16px}#getStartedPage .done-actions{display:flex;justify-content:center;gap:10px;margin-top:25px}#getStartedPage .done-actions button,#getStartedPage .done-actions a{min-height:42px;padding:0 16px;border-radius:9px;display:inline-flex;align-items:center;justify-content:center;font-size:10.5px;font-weight:800;cursor:pointer}#getStartedPage .done-actions button{border:1px solid #cfded9;background:#fff;color:#526d65}#getStartedPage .done-actions a{background:var(--action);color:#fff}

@media(max-width:1040px){
  #getStartedPage .gs-intro-inner{align-items:flex-start;flex-direction:column;gap:20px}#getStartedPage .gs-facts{justify-content:flex-start}
  #getStartedPage .store-product{grid-template-columns:1fr}#getStartedPage .store-gallery{min-height:470px}#getStartedPage .store-art{min-height:360px}
  #getStartedPage .checkout-body{grid-template-columns:1fr;gap:28px}#getStartedPage .order-summary{order:-1}
  #getStartedPage .payment-layout{grid-template-columns:1fr}#getStartedPage .payment-side{order:-1}
  #getStartedPage .merchant-body{grid-template-columns:1fr}#getStartedPage .merchant-side{display:none}#getStartedPage .merchant-order{grid-template-columns:1fr}
}
@media(max-width:760px){
  #getStartedPage .gs-intro{padding:50px 0 24px}#getStartedPage .gs-intro p{font-size:14.5px}#getStartedPage .gs-facts{gap:7px 14px;font-size:9.5px}
  #getStartedPage .gs-experience{padding-bottom:82px}#getStartedPage .gs-app{border-radius:16px}#getStartedPage .gs-app-status{padding:0 14px}#getStartedPage .gs-progress{width:84px}
  #getStartedPage .store-top{height:60px;padding:0 16px;grid-template-columns:auto auto}#getStartedPage .store-nav{display:none}#getStartedPage .store-brand{font-size:14px}
  #getStartedPage .store-gallery{padding:20px;min-height:390px}#getStartedPage .store-art{min-height:320px}
  #getStartedPage .store-detail{padding:30px 22px}#getStartedPage .store-detail h2{font-size:32px}#getStartedPage .store-assurance{grid-template-columns:1fr}
  #getStartedPage .checkout-head{padding:0 18px}#getStartedPage .checkout-body,#getStartedPage .payment-wrap{width:calc(100% - 30px);padding-top:26px}#getStartedPage .checkout-body{gap:20px}#getStartedPage .order-summary{padding:18px}
  #getStartedPage .payment-panel{padding:22px}#getStartedPage .payment-meta{grid-template-columns:1fr}#getStartedPage .payment-side{padding:20px}
  #getStartedPage .confirm-page,#getStartedPage .done-page{padding:30px 20px}#getStartedPage .merchant-reveal{align-items:flex-start;flex-direction:column}#getStartedPage .merchant-reveal button{width:100%}
  #getStartedPage .merchant-main{padding:24px 16px 30px}#getStartedPage .merchant-main-head{align-items:flex-start;flex-direction:column}#getStartedPage .merchant-table{overflow:auto}#getStartedPage .merchant-table-head,#getStartedPage .merchant-table-row{min-width:620px}#getStartedPage .order-detail-grid{grid-template-columns:1fr}
  #getStartedPage .loop-summary{align-items:stretch;flex-direction:column}#getStartedPage .loop-summary b{transform:rotate(90deg)}#getStartedPage .done-actions{flex-direction:column}#getStartedPage .done-actions>*{width:100%}
}

/* Company Awards */
#companyPage .company-awards-section{
  position:relative;
  overflow:hidden;
  background:
    radial-gradient(700px 420px at 10% 18%,rgba(39,225,193,.055),transparent 70%),
    radial-gradient(760px 440px at 90% 74%,rgba(1,169,144,.045),transparent 72%),
    #071615;
}
#companyPage .company-awards-section::after{
  content:"";
  position:absolute;
  inset:auto -10% 8% 36%;
  height:1px;
  background:linear-gradient(90deg,transparent,rgba(39,225,193,.18),transparent);
  transform:rotate(-8deg);
  pointer-events:none;
}
#companyPage .company-recognition-layout{
  display:block;
  margin-top:64px;
}
#companyPage .company-recognition-awards{padding-right:0;}
#companyPage .company-recognition-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  column-gap:clamp(32px,4vw,62px);
  align-items:stretch;
}
#companyPage .company-recognition-item{
  position:relative;
  display:grid;
  grid-template-columns:22px minmax(0,1fr);
  gap:16px;
  min-height:154px;
  padding:24px 0 28px;
  border-top:1px solid rgba(255,255,255,.10);
  transition:transform .28s ease,border-color .28s ease;
}
#companyPage .company-recognition-item::after{
  content:"";
  position:absolute;
  left:38px;
  top:-1px;
  width:0;
  height:1px;
  background:var(--aqua);
  transition:width .32s ease;
}
#companyPage .company-recognition-item:hover{
  transform:translateY(-3px);
  border-top-color:rgba(39,225,193,.24);
}
#companyPage .company-recognition-item:hover::after{width:46px;}
#companyPage .company-recognition-item h3{
  margin:0;
  color:#f4fbf9;
  font:740 17px/1.25 Manrope,sans-serif;
  letter-spacing:-.025em;
}
#companyPage .company-recognition-item p{
  margin:9px 0 0;
  color:rgba(235,249,245,.53);
  font-size:11.5px;
  line-height:1.55;
}
#companyPage .company-recognition-item:not(:has(p)){align-content:start;}
#companyPage .company-recognition-icon{
  width:18px;
  height:18px;
  margin-top:2px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  color:rgba(39,225,193,.9);
}
#companyPage .company-recognition-icon svg{
  width:18px;
  height:18px;
  display:block;
}
@media(max-width:900px){
  #companyPage .company-recognition-layout{margin-top:48px;}
  #companyPage .company-recognition-grid{column-gap:34px;}
}
@media(max-width:620px){
  #companyPage .company-recognition-grid{grid-template-columns:1fr;}
  #companyPage .company-recognition-item{min-height:auto;padding:22px 0 24px;}
}

/* Legal Pages */
#privacyPage,#termsPage{background:#f5f8f6;color:#10201d;}
.legal-page .legal-hero{padding:clamp(132px,15vw,184px) 0 clamp(58px,7vw,88px);background:#071615;color:#f4fbf9;position:relative;overflow:hidden;}
.legal-page .legal-hero::after{content:"";position:absolute;width:520px;height:520px;right:-180px;top:-245px;border:1px solid rgba(39,225,193,.12);border-radius:50%;box-shadow:0 0 0 86px rgba(39,225,193,.025),0 0 0 172px rgba(39,225,193,.018);pointer-events:none;}
.legal-page .legal-kicker{display:block;margin:0 0 18px;color:var(--aqua);font:700 11px/1.2 "Geist Mono",monospace;letter-spacing:.13em;text-transform:uppercase;}
.legal-page .legal-hero h1{margin:0;max-width:850px;font:760 clamp(48px,6vw,78px)/.98 Manrope,sans-serif;letter-spacing:-.055em;}
.legal-page .legal-hero p{margin:24px 0 0;max-width:690px;color:rgba(235,249,245,.62);font-size:15px;line-height:1.7;}
.legal-page .legal-shell{display:grid;grid-template-columns:minmax(190px,245px) minmax(0,820px);gap:clamp(46px,7vw,96px);align-items:start;padding:clamp(62px,7vw,92px) 0 clamp(96px,11vw,150px);}
.legal-page .legal-toc{position:sticky;top:112px;max-height:calc(100vh - 144px);overflow:auto;padding-right:18px;scrollbar-width:thin;}
.legal-page .legal-toc-label{display:block;margin-bottom:18px;color:#6a7c77;font:700 10px/1.2 "Geist Mono",monospace;letter-spacing:.12em;text-transform:uppercase;}
.legal-page .legal-toc a{display:block;padding:8px 0;color:#70817c;font-size:11px;line-height:1.4;text-decoration:none;transition:color .2s ease,transform .2s ease;}
.legal-page .legal-toc a:hover{color:#146f61;transform:translateX(3px);}
.legal-page .legal-body{min-width:0;}
.legal-page .legal-loading{padding:28px 0;color:#63736f;font-size:14px;}
.legal-page .legal-body h2{margin:58px 0 18px;padding-top:26px;border-top:1px solid #dbe4e1;color:#10201d;font:750 clamp(23px,2.4vw,31px)/1.15 Manrope,sans-serif;letter-spacing:-.035em;scroll-margin-top:115px;}
.legal-page .legal-body h2:first-child{margin-top:0;}
.legal-page .legal-body h3{margin:34px 0 12px;color:#18312c;font:720 18px/1.25 Manrope,sans-serif;letter-spacing:-.02em;scroll-margin-top:115px;}
.legal-page .legal-body p{margin:0 0 18px;color:#52635f;font-size:15px;line-height:1.82;}
.legal-page .legal-body strong,.legal-page .legal-body b{color:#213b35;font-weight:700;}
.legal-page .legal-body em,.legal-page .legal-body i{font-style:italic;}
.legal-page .legal-body ul{margin:6px 0 24px;padding-left:21px;color:#52635f;}
.legal-page .legal-body li{margin:0 0 10px;padding-left:5px;font-size:15px;line-height:1.75;}
.legal-page .legal-body li::marker{color:#1a8f7b;}
.legal-page .legal-body a{color:#126f60;text-decoration:underline;text-decoration-color:rgba(18,111,96,.3);text-underline-offset:3px;}
.legal-page .legal-body a:hover{text-decoration-color:currentColor;}
.legal-page .legal-error{padding:22px 0;color:#52635f;font-size:14px;line-height:1.7;}
.legal-page .legal-error a{color:#126f60;}
.legal-page .legal-fallback-notice{margin:0 0 30px;padding:14px 16px;border:1px solid #d4e1dd;border-radius:10px;background:#f3f8f6;color:#52635f;font-size:13px;line-height:1.65;}
@media(max-width:820px){
  .legal-page .legal-shell{grid-template-columns:1fr;gap:34px;}
  .legal-page .legal-toc{position:relative;top:auto;max-height:none;padding:0 0 24px;border-bottom:1px solid #dbe4e1;display:grid;grid-template-columns:repeat(2,minmax(0,1fr));column-gap:22px;}
  .legal-page .legal-toc-label{grid-column:1/-1;}
}
@media(max-width:560px){
  .legal-page .legal-hero{padding-top:120px;}
  .legal-page .legal-shell{padding-top:48px;}
  .legal-page .legal-toc{grid-template-columns:1fr;}
  .legal-page .legal-body p,.legal-page .legal-body li{font-size:14px;line-height:1.78;}
}


/* zh-CN heading refinement v227 */
html[lang="zh-CN"] .hero h1,
html[lang="zh-CN"] .inner-page-hero h1,
html[lang="zh-CN"] .product-calibration-copy h1,
html[lang="zh-CN"] .contact-opening-copy h1,
html[lang="zh-CN"] .legal-page .legal-hero h1{
  word-break:keep-all;
  overflow-wrap:normal;
}
html[lang="zh-CN"] .zh-title-line{display:block;}
html[lang="zh-CN"] .zh-title-keep{display:inline-block;white-space:nowrap;}
html[lang="zh-CN"] .hero h1 .zh-title-line + .zh-title-line,
html[lang="zh-CN"] .inner-page-hero h1 .zh-title-line + .zh-title-line,
html[lang="zh-CN"] .product-calibration-copy h1 .zh-title-line + .zh-title-line{margin-top:.08em;}
html[lang="zh-CN"] #contactPage .contact-opening-copy h1 .contact-grad.zh-title-keep{margin-bottom:0;}

/* zh-CN hero vertical breathing refinement v228 */
html[lang="zh-CN"] .hero h1,
html[lang="zh-CN"] .inner-page-hero h1,
html[lang="zh-CN"] .product-calibration-copy h1,
html[lang="zh-CN"] .contact-opening-copy h1,
html[lang="zh-CN"] .legal-page .legal-hero h1{
  line-height:1.045;
  padding-bottom:.08em;
  overflow:visible;
}
html[lang="zh-CN"] .hero h1 span,
html[lang="zh-CN"] .inner-page-hero h1 span,
html[lang="zh-CN"] .product-calibration-copy h1 span,
html[lang="zh-CN"] .contact-opening-copy h1 span{
  overflow:visible;
}
@media(max-width:640px){
  html[lang="zh-CN"] .hero h1,
  html[lang="zh-CN"] .inner-page-hero h1,
  html[lang="zh-CN"] .product-calibration-copy h1,
  html[lang="zh-CN"] .contact-opening-copy h1,
  html[lang="zh-CN"] .legal-page .legal-hero h1{
    line-height:1.07;
    padding-bottom:.10em;
  }
}

/* zh-Hant localization typography */
html[lang="zh-Hant"] body{
  font-family:"Noto Sans TC","PingFang TC","Microsoft JhengHei",Manrope,Arial,sans-serif;
  line-break:strict;
}
html[lang="zh-Hant"] h1,
html[lang="zh-Hant"] h2,
html[lang="zh-Hant"] h3,
html[lang="zh-Hant"] h4,
html[lang="zh-Hant"] h5,
html[lang="zh-Hant"] h6,
html[lang="zh-Hant"] button,
html[lang="zh-Hant"] input,
html[lang="zh-Hant"] textarea,
html[lang="zh-Hant"] select{
  font-family:"Noto Sans TC","PingFang TC","Microsoft JhengHei",Manrope,Arial,sans-serif;
}
html[lang="zh-Hant"] .eyebrow,
html[lang="zh-Hant"] .inner-section-tag,
html[lang="zh-Hant"] .product-section-tag,
html[lang="zh-Hant"] [class*="kicker"],
html[lang="zh-Hant"] [class*="section-tag"]{letter-spacing:.08em;}
html[lang="zh-Hant"] .hero h1,
html[lang="zh-Hant"] .inner-page-hero h1,
html[lang="zh-Hant"] .product-calibration-copy h1,
html[lang="zh-Hant"] .contact-opening-copy h1{
  letter-spacing:-.035em;
  word-break:keep-all;
  overflow-wrap:normal;
  line-height:1.045;
  padding-bottom:.08em;
  overflow:visible;
}
html[lang="zh-Hant"] .zh-title-line{display:block;}
html[lang="zh-Hant"] .zh-title-keep{display:inline-block;white-space:nowrap;}
html[lang="zh-Hant"] .hero h1 span,
html[lang="zh-Hant"] .inner-page-hero h1 span,
html[lang="zh-Hant"] .product-calibration-copy h1 span,
html[lang="zh-Hant"] .contact-opening-copy h1 span{overflow:visible;}

/* Japanese localization typography */
html[lang="ja"] body{
  font-family:"Hiragino Sans","Yu Gothic UI","Yu Gothic","Meiryo",Manrope,Arial,sans-serif;
  line-break:strict;
  word-break:normal;
}
html[lang="ja"] h1,
html[lang="ja"] h2,
html[lang="ja"] h3,
html[lang="ja"] h4,
html[lang="ja"] h5,
html[lang="ja"] h6,
html[lang="ja"] button,
html[lang="ja"] input,
html[lang="ja"] textarea,
html[lang="ja"] select{
  font-family:"Hiragino Sans","Yu Gothic UI","Yu Gothic","Meiryo",Manrope,Arial,sans-serif;
}
html[lang="ja"] .hero h1,
html[lang="ja"] .inner-page-hero h1,
html[lang="ja"] .product-calibration-copy h1,
html[lang="ja"] .contact-opening-copy h1{
  letter-spacing:-.035em;
  line-height:1.08;
  padding-bottom:.08em;
  overflow:visible;
  word-break:keep-all;
  overflow-wrap:normal;
}
html[lang="ja"] .ja-title-line{display:block;}
html[lang="ja"] .ja-title-keep{display:inline-block;white-space:nowrap;}
html[lang="ja"] .hero h1 span,
html[lang="ja"] .inner-page-hero h1 span,
html[lang="ja"] .product-calibration-copy h1 span,
html[lang="ja"] .contact-opening-copy h1 span{overflow:visible;}
html[lang="ja"] .eyebrow,
html[lang="ja"] .inner-section-tag,
html[lang="ja"] .product-section-tag,
html[lang="ja"] [class*="kicker"],
html[lang="ja"] [class*="section-tag"]{letter-spacing:.06em;}
@media(max-width:640px){
  html[lang="zh-Hant"] .hero h1,
  html[lang="zh-Hant"] .inner-page-hero h1,
  html[lang="zh-Hant"] .product-calibration-copy h1,
  html[lang="zh-Hant"] .contact-opening-copy h1{line-height:1.07;padding-bottom:.10em;}
  html[lang="ja"] .hero h1,
  html[lang="ja"] .inner-page-hero h1,
  html[lang="ja"] .product-calibration-copy h1,
  html[lang="ja"] .contact-opening-copy h1{line-height:1.12;padding-bottom:.10em;}
}

/* Mobile locale picker */
.mobile-language-wrap{position:relative;min-width:0;}
.mobile-language-wrap>.mobile-language{width:100%;height:48px;border:1px solid var(--line);border-radius:10px;background:#fff;color:#53625E;display:flex;align-items:center;justify-content:center;gap:10px;}
.mobile-language-menu{position:absolute;left:0;bottom:56px;z-index:20;width:168px;padding:7px;border:1px solid var(--line);border-radius:12px;background:#fff;box-shadow:0 16px 40px rgba(4,35,30,.14);opacity:0;visibility:hidden;transform:translateY(6px);transition:opacity .18s ease,transform .18s ease,visibility .18s ease;}
.mobile-language-wrap.open .mobile-language-menu{opacity:1;visibility:visible;transform:none;}
.mobile-language-menu button{display:block;width:100%;padding:10px 11px;border:0;border-radius:8px;background:transparent;text-align:left;color:#53625E;font:650 12px/1.2 Manrope,sans-serif;cursor:pointer;}
.mobile-language-menu button:hover{background:var(--ice);color:var(--action);}


/* CJK static-content readability review v231
   Scope: Simplified/Traditional Chinese static content only.
   Interactive demos, phone UIs, documentation demos and established motion modules are intentionally excluded. */

/* 1. Eyebrows and section identifiers */
html[lang="zh-CN"] .eyebrow,
html[lang="zh-CN"] .inner-page-eyebrow,
html[lang="zh-CN"] #productPage .product-calibration-eyebrow,
html[lang="zh-Hant"] .eyebrow,
html[lang="zh-Hant"] .inner-page-eyebrow,
html[lang="zh-Hant"] #productPage .product-calibration-eyebrow{
  font-size:13px;
  line-height:1.35;
  letter-spacing:.045em;
  font-weight:700;
  text-transform:none;
}
html[lang="zh-CN"] .eyebrow,
html[lang="zh-CN"] .inner-page-eyebrow,
html[lang="zh-CN"] #productPage .product-calibration-eyebrow{
  font-family:"Noto Sans SC","PingFang SC","Microsoft YaHei",Arial,sans-serif;
}
html[lang="zh-Hant"] .eyebrow,
html[lang="zh-Hant"] .inner-page-eyebrow,
html[lang="zh-Hant"] #productPage .product-calibration-eyebrow{
  font-family:"Noto Sans TC","PingFang TC","Microsoft JhengHei",Arial,sans-serif;
}
html[lang="zh-CN"] .inner-section-tag,
html[lang="zh-CN"] #productPage .product-section-tag,
html[lang="zh-Hant"] .inner-section-tag,
html[lang="zh-Hant"] #productPage .product-section-tag{
  font-size:12px;
  line-height:1.35;
  letter-spacing:.045em;
  font-weight:700;
  text-transform:none;
}
html[lang="zh-CN"] .inner-section-tag,
html[lang="zh-CN"] #productPage .product-section-tag{
  font-family:"Noto Sans SC","PingFang SC","Microsoft YaHei",Arial,sans-serif;
}
html[lang="zh-Hant"] .inner-section-tag,
html[lang="zh-Hant"] #productPage .product-section-tag{
  font-family:"Noto Sans TC","PingFang TC","Microsoft JhengHei",Arial,sans-serif;
}
@media(max-width:640px){
  html[lang="zh-CN"] #productPage .product-calibration-eyebrow,
  html[lang="zh-CN"] #technologyPage .inner-page-eyebrow,
  html[lang="zh-CN"] #companyPage .inner-page-eyebrow,
  html[lang="zh-CN"] #useCasesPage .inner-page-eyebrow,
  html[lang="zh-Hant"] #productPage .product-calibration-eyebrow,
  html[lang="zh-Hant"] #technologyPage .inner-page-eyebrow,
  html[lang="zh-Hant"] #companyPage .inner-page-eyebrow,
  html[lang="zh-Hant"] #useCasesPage .inner-page-eyebrow{
    font-size:11.5px;
    line-height:1.35;
  }
}

/* 2. Homepage static proof / architecture labels */
html[lang="zh-CN"] .trust-proof-kicker,
html[lang="zh-CN"] .trust-proof-card-cap,
html[lang="zh-CN"] .trust-proof-stat-label,
html[lang="zh-CN"] .trust-proof-premium-label,
html[lang="zh-CN"] .sales-core-index,
html[lang="zh-CN"] .sales-model-kicker,
html[lang="zh-CN"] .sales-architecture-topline,
html[lang="zh-CN"] .sales-support-line,
html[lang="zh-Hant"] .trust-proof-kicker,
html[lang="zh-Hant"] .trust-proof-card-cap,
html[lang="zh-Hant"] .trust-proof-stat-label,
html[lang="zh-Hant"] .trust-proof-premium-label,
html[lang="zh-Hant"] .sales-core-index,
html[lang="zh-Hant"] .sales-model-kicker,
html[lang="zh-Hant"] .sales-architecture-topline,
html[lang="zh-Hant"] .sales-support-line{
  font-size:11px;
  line-height:1.35;
  letter-spacing:.035em;
}
html[lang="zh-CN"] .sales-node small,
html[lang="zh-CN"] .sales-benefit-grid article > small,
html[lang="zh-CN"] .sales-benefit-grid article > span,
html[lang="zh-CN"] .sales-core-tags span,
html[lang="zh-Hant"] .sales-node small,
html[lang="zh-Hant"] .sales-benefit-grid article > small,
html[lang="zh-Hant"] .sales-benefit-grid article > span,
html[lang="zh-Hant"] .sales-core-tags span{
  font-size:10.5px;
  line-height:1.4;
  letter-spacing:.025em;
}
html[lang="zh-CN"] .sales-core-tags span,
html[lang="zh-Hant"] .sales-core-tags span{padding:8px 11px;}
html[lang="zh-CN"] .sales-core-value > p,
html[lang="zh-Hant"] .sales-core-value > p{
  font-size:14px;
  line-height:1.68;
}
html[lang="zh-CN"] #homePage .home-industry-card > span,
html[lang="zh-Hant"] #homePage .home-industry-card > span{
  font-size:12px;
  line-height:1.3;
  letter-spacing:.025em;
  text-transform:none;
}

/* 3. Technology static architecture and proof copy.
   Only typographic labels are adjusted; geometry and motion remain unchanged. */
html[lang="zh-CN"] #technologyPage .tech-orbit-node small,
html[lang="zh-Hant"] #technologyPage .tech-orbit-node small{
  font-size:9.5px;
  line-height:1.25;
  letter-spacing:.025em;
}
html[lang="zh-CN"] #technologyPage .tech-orbit-node strong,
html[lang="zh-Hant"] #technologyPage .tech-orbit-node strong{
  font-size:14.5px;
  line-height:1.28;
}
html[lang="zh-CN"] .tech-fund-node small,
html[lang="zh-CN"] .tech-control-fact span,
html[lang="zh-Hant"] .tech-fund-node small,
html[lang="zh-Hant"] .tech-control-fact span{
  font-size:10.5px;
  line-height:1.3;
  letter-spacing:.025em;
}
html[lang="zh-CN"] .tech-fund-node p,
html[lang="zh-Hant"] .tech-fund-node p{
  font-size:14px;
  line-height:1.66;
}
html[lang="zh-CN"] #technologyPage .tech-diff-facts span,
html[lang="zh-Hant"] #technologyPage .tech-diff-facts span{
  font-size:10.5px;
  line-height:1.35;
  letter-spacing:.025em;
}
html[lang="zh-CN"] #technologyPage .tech-capability-top span,
html[lang="zh-CN"] #technologyPage .tech-proof-ip-lattice span,
html[lang="zh-Hant"] #technologyPage .tech-capability-top span,
html[lang="zh-Hant"] #technologyPage .tech-proof-ip-lattice span{
  font-size:10.5px;
  line-height:1.35;
  letter-spacing:.025em;
}
html[lang="zh-CN"] #technologyPage .tech-proof-ip-lattice small,
html[lang="zh-CN"] #technologyPage .tech-proof-runtime-item small,
html[lang="zh-Hant"] #technologyPage .tech-proof-ip-lattice small,
html[lang="zh-Hant"] #technologyPage .tech-proof-runtime-item small{
  font-size:12px;
  line-height:1.55;
}

/* 4. Company static data visualization and recognition */
html[lang="zh-CN"] #companyPage .company-market-primary span,
html[lang="zh-CN"] #companyPage .company-market-secondary span,
html[lang="zh-Hant"] #companyPage .company-market-primary span,
html[lang="zh-Hant"] #companyPage .company-market-secondary span{
  font-size:11.5px;
  line-height:1.35;
  letter-spacing:.025em;
}
html[lang="zh-CN"] #companyPage .company-market-primary small,
html[lang="zh-CN"] #companyPage .company-market-secondary small,
html[lang="zh-Hant"] #companyPage .company-market-primary small,
html[lang="zh-Hant"] #companyPage .company-market-secondary small{
  font-size:11px;
  line-height:1.3;
  letter-spacing:.025em;
}
html[lang="zh-CN"] #companyPage .company-market-years,
html[lang="zh-Hant"] #companyPage .company-market-years{
  font-size:10px;
  line-height:1.2;
  letter-spacing:.02em;
}
html[lang="zh-CN"] #companyPage .company-id-positioning span,
html[lang="zh-Hant"] #companyPage .company-id-positioning span{
  font-size:12px;
  line-height:1.5;
  letter-spacing:.025em;
}
html[lang="zh-CN"] #companyPage .company-id-meta small,
html[lang="zh-CN"] #companyPage .company-id-tags,
html[lang="zh-Hant"] #companyPage .company-id-meta small,
html[lang="zh-Hant"] #companyPage .company-id-tags{
  font-size:10.5px;
  line-height:1.3;
  letter-spacing:.025em;
}
html[lang="zh-CN"] #companyPage .company-team-summary-top span,
html[lang="zh-CN"] #companyPage .company-leadership-label span,
html[lang="zh-CN"] #companyPage .company-leader-head span,
html[lang="zh-CN"] #companyPage .company-leader small,
html[lang="zh-Hant"] #companyPage .company-team-summary-top span,
html[lang="zh-Hant"] #companyPage .company-leadership-label span,
html[lang="zh-Hant"] #companyPage .company-leader-head span,
html[lang="zh-Hant"] #companyPage .company-leader small{
  font-size:11.5px;
  line-height:1.35;
  letter-spacing:.025em;
}
html[lang="zh-CN"] #companyPage .company-recognition-item p,
html[lang="zh-Hant"] #companyPage .company-recognition-item p{
  font-size:13px;
  line-height:1.6;
}

/* 5. Product static coverage labels, outside the payment demos */
html[lang="zh-CN"] #productPage .coverage-zone > span,
html[lang="zh-Hant"] #productPage .coverage-zone > span{
  font-size:12px;
  line-height:1.3;
  letter-spacing:.035em;
}
html[lang="zh-CN"] #productPage .coverage-chips span,
html[lang="zh-Hant"] #productPage .coverage-chips span{
  font-size:10.5px;
  line-height:1.3;
  letter-spacing:.02em;
}
html[lang="zh-CN"] #productPage .coverage-metric > span,
html[lang="zh-CN"] #productPage .wallet-coverage-metric > span,
html[lang="zh-CN"] #productPage .coverage-support-line span,
html[lang="zh-Hant"] #productPage .coverage-metric > span,
html[lang="zh-Hant"] #productPage .wallet-coverage-metric > span,
html[lang="zh-Hant"] #productPage .coverage-support-line span{
  font-size:11.5px;
  line-height:1.35;
  letter-spacing:.025em;
}

/* 6. Contact and footer static auxiliary text */
html[lang="zh-CN"] #contactPage .contact-simple small,
html[lang="zh-CN"] #contactPage .contact-office small,
html[lang="zh-CN"] #contactPage .contact-direct-item small,
html[lang="zh-CN"] #contactPage .contact-hero-direct small,
html[lang="zh-Hant"] #contactPage .contact-simple small,
html[lang="zh-Hant"] #contactPage .contact-office small,
html[lang="zh-Hant"] #contactPage .contact-direct-item small,
html[lang="zh-Hant"] #contactPage .contact-hero-direct small{
  font-size:10.5px;
  line-height:1.35;
  letter-spacing:.025em;
}
html[lang="zh-CN"] #contactPage .contact-section-index,
html[lang="zh-CN"] #contactPage .contact-form-top > span,
html[lang="zh-CN"] #contactPage .contact-field > span,
html[lang="zh-Hant"] #contactPage .contact-section-index,
html[lang="zh-Hant"] #contactPage .contact-form-top > span,
html[lang="zh-Hant"] #contactPage .contact-field > span{
  font-size:11.5px;
  line-height:1.35;
  letter-spacing:.025em;
}
html[lang="zh-CN"] .footer-bottom,
html[lang="zh-Hant"] .footer-bottom{
  font-size:12px;
  line-height:1.5;
}

/* zh-CN / zh-Hant static readability pass v232
   Refines only static website typography. Interactive demos, phone UIs,
   documentation demos, progress/status systems and Get Started remain untouched. */

/* Shared CJK label treatment */
html[lang="zh-CN"] .inner-section-tag,
html[lang="zh-CN"] #productPage .product-section-tag,
html[lang="zh-Hant"] .inner-section-tag,
html[lang="zh-Hant"] #productPage .product-section-tag{
  font-size:13px;
  line-height:1.4;
  letter-spacing:.03em;
}
@media(max-width:640px){
  html[lang="zh-CN"] .inner-section-tag,
  html[lang="zh-CN"] #productPage .product-section-tag,
  html[lang="zh-Hant"] .inner-section-tag,
  html[lang="zh-Hant"] #productPage .product-section-tag{
    font-size:12px;
  }
}

/* Homepage static proof and architecture */
html[lang="zh-CN"] .trust-proof-kicker,
html[lang="zh-CN"] .trust-proof-card-cap,
html[lang="zh-CN"] .trust-proof-stat-label,
html[lang="zh-CN"] .trust-proof-premium-label,
html[lang="zh-CN"] .sales-core-index,
html[lang="zh-CN"] .sales-model-kicker,
html[lang="zh-CN"] .sales-architecture-topline,
html[lang="zh-CN"] .sales-support-line,
html[lang="zh-Hant"] .trust-proof-kicker,
html[lang="zh-Hant"] .trust-proof-card-cap,
html[lang="zh-Hant"] .trust-proof-stat-label,
html[lang="zh-Hant"] .trust-proof-premium-label,
html[lang="zh-Hant"] .sales-core-index,
html[lang="zh-Hant"] .sales-model-kicker,
html[lang="zh-Hant"] .sales-architecture-topline,
html[lang="zh-Hant"] .sales-support-line{
  font-size:12px;
  line-height:1.4;
  letter-spacing:.025em;
}
html[lang="zh-CN"] .sales-node small,
html[lang="zh-CN"] .sales-benefit-grid article > small,
html[lang="zh-CN"] .sales-benefit-grid article > span,
html[lang="zh-CN"] .sales-core-tags span,
html[lang="zh-Hant"] .sales-node small,
html[lang="zh-Hant"] .sales-benefit-grid article > small,
html[lang="zh-Hant"] .sales-benefit-grid article > span,
html[lang="zh-Hant"] .sales-core-tags span{
  font-size:11.5px;
  line-height:1.45;
  letter-spacing:.015em;
}
html[lang="zh-CN"] .sales-node small,
html[lang="zh-Hant"] .sales-node small{color:#6f827c;}
html[lang="zh-CN"] .sales-node strong,
html[lang="zh-Hant"] .sales-node strong{
  font-size:14px;
  line-height:1.32;
}
html[lang="zh-CN"] .sales-model > p,
html[lang="zh-Hant"] .sales-model > p{
  font-size:13.5px;
  line-height:1.62;
}
html[lang="zh-CN"] .sales-core-tags span,
html[lang="zh-Hant"] .sales-core-tags span{padding:8px 12px;}

/* Product static coverage, excluding payment demos */
html[lang="zh-CN"] #productPage .coverage-zone > span,
html[lang="zh-Hant"] #productPage .coverage-zone > span{
  font-size:12.5px;
  line-height:1.35;
  letter-spacing:.025em;
}
html[lang="zh-CN"] #productPage .coverage-chips span,
html[lang="zh-Hant"] #productPage .coverage-chips span{
  font-size:11.5px;
  line-height:1.35;
  letter-spacing:.01em;
  color:rgba(245,253,250,.82);
}
html[lang="zh-CN"] #productPage .coverage-metric > span,
html[lang="zh-CN"] #productPage .wallet-coverage-metric > span,
html[lang="zh-CN"] #productPage .coverage-support-line span,
html[lang="zh-Hant"] #productPage .coverage-metric > span,
html[lang="zh-Hant"] #productPage .wallet-coverage-metric > span,
html[lang="zh-Hant"] #productPage .coverage-support-line span{
  font-size:12px;
  line-height:1.4;
  letter-spacing:.015em;
}

/* Secondary product static product visuals */
html[lang="zh-CN"] #productPage .ps-wallet-top small,
html[lang="zh-CN"] #productPage .ps-wallet-balance small,
html[lang="zh-CN"] #productPage .ps-card-head small,
html[lang="zh-CN"] #productPage .ps-card-networks span,
html[lang="zh-CN"] #productPage .ps-card-foot-v2 span,
html[lang="zh-CN"] #productPage .ps-card-foot-v2 b,
html[lang="zh-CN"] #nutPersonalPage .np-hero-framebar span,
html[lang="zh-CN"] #nutCardPage .nc-network-rail span,
html[lang="zh-CN"] #nutCardPage .nc-network-copy span,
html[lang="zh-CN"] #nutCardPage .nc-card-head span,
html[lang="zh-CN"] #nutCardPage .nc-card-bottom span,
html[lang="zh-CN"] #nutCardPage .nc-card-bottom b,
html[lang="zh-Hant"] #productPage .ps-wallet-top small,
html[lang="zh-Hant"] #productPage .ps-wallet-balance small,
html[lang="zh-Hant"] #productPage .ps-card-head small,
html[lang="zh-Hant"] #productPage .ps-card-networks span,
html[lang="zh-Hant"] #productPage .ps-card-foot-v2 span,
html[lang="zh-Hant"] #productPage .ps-card-foot-v2 b,
html[lang="zh-Hant"] #nutPersonalPage .np-hero-framebar span,
html[lang="zh-Hant"] #nutCardPage .nc-network-rail span,
html[lang="zh-Hant"] #nutCardPage .nc-network-copy span,
html[lang="zh-Hant"] #nutCardPage .nc-card-head span,
html[lang="zh-Hant"] #nutCardPage .nc-card-bottom span,
html[lang="zh-Hant"] #nutCardPage .nc-card-bottom b{
  font-size:10.5px;
  line-height:1.35;
  letter-spacing:.015em;
}

/* Use Cases static content outside interactive demo */
html[lang="zh-CN"] #useCasesPage .industry-detail-card > span,
html[lang="zh-Hant"] #useCasesPage .industry-detail-card > span{
  font-size:11.5px;
  line-height:1.4;
  letter-spacing:.02em;
}

/* Technology static architecture/proof typography only. No geometry/motion changes. */
html[lang="zh-CN"] #technologyPage .tech-orbit-node small,
html[lang="zh-Hant"] #technologyPage .tech-orbit-node small{
  font-size:10.5px;
  line-height:1.3;
  letter-spacing:.015em;
  color:rgba(237,250,246,.62);
}
html[lang="zh-CN"] #technologyPage .tech-orbit-node strong,
html[lang="zh-Hant"] #technologyPage .tech-orbit-node strong{
  font-size:15px;
  line-height:1.3;
}
html[lang="zh-CN"] .tech-fund-node small,
html[lang="zh-CN"] .tech-control-fact span,
html[lang="zh-CN"] #technologyPage .tech-diff-facts span,
html[lang="zh-CN"] #technologyPage .tech-capability-top span,
html[lang="zh-Hant"] .tech-fund-node small,
html[lang="zh-Hant"] .tech-control-fact span,
html[lang="zh-Hant"] #technologyPage .tech-diff-facts span,
html[lang="zh-Hant"] #technologyPage .tech-capability-top span{
  font-size:11.5px;
  line-height:1.4;
  letter-spacing:.015em;
}
html[lang="zh-CN"] #technologyPage .tech-proof-ip-lattice small,
html[lang="zh-CN"] #technologyPage .tech-proof-runtime-item small,
html[lang="zh-Hant"] #technologyPage .tech-proof-ip-lattice small,
html[lang="zh-Hant"] #technologyPage .tech-proof-runtime-item small{
  font-size:12.5px;
  line-height:1.58;
}

/* Company data visualization and recognition */
html[lang="zh-CN"] #companyPage .company-market-primary span,
html[lang="zh-CN"] #companyPage .company-market-secondary span,
html[lang="zh-Hant"] #companyPage .company-market-primary span,
html[lang="zh-Hant"] #companyPage .company-market-secondary span{
  font-size:12px;
  line-height:1.4;
  letter-spacing:.015em;
  color:#60746e;
}
html[lang="zh-CN"] #companyPage .company-market-primary small,
html[lang="zh-CN"] #companyPage .company-market-secondary small,
html[lang="zh-Hant"] #companyPage .company-market-primary small,
html[lang="zh-Hant"] #companyPage .company-market-secondary small{
  font-size:11.5px;
  line-height:1.35;
  letter-spacing:.015em;
  color:#6f827c;
}
html[lang="zh-CN"] #companyPage .company-market-years,
html[lang="zh-Hant"] #companyPage .company-market-years{
  font-size:11px;
  line-height:1.25;
  letter-spacing:.01em;
  color:#71837d;
}
html[lang="zh-CN"] #companyPage .company-id-positioning span,
html[lang="zh-Hant"] #companyPage .company-id-positioning span{
  font-size:12.5px;
  line-height:1.5;
}
html[lang="zh-CN"] #companyPage .company-id-meta small,
html[lang="zh-CN"] #companyPage .company-id-tags,
html[lang="zh-Hant"] #companyPage .company-id-meta small,
html[lang="zh-Hant"] #companyPage .company-id-tags{
  font-size:11.5px;
  line-height:1.35;
  letter-spacing:.015em;
}
html[lang="zh-CN"] #companyPage .company-team-summary-top span,
html[lang="zh-CN"] #companyPage .company-leadership-label span,
html[lang="zh-CN"] #companyPage .company-leader-head span,
html[lang="zh-CN"] #companyPage .company-leader small,
html[lang="zh-Hant"] #companyPage .company-team-summary-top span,
html[lang="zh-Hant"] #companyPage .company-leadership-label span,
html[lang="zh-Hant"] #companyPage .company-leader-head span,
html[lang="zh-Hant"] #companyPage .company-leader small{
  font-size:12px;
  line-height:1.4;
  letter-spacing:.015em;
}
html[lang="zh-CN"] #companyPage .company-recognition-item p,
html[lang="zh-Hant"] #companyPage .company-recognition-item p{
  font-size:13.5px;
  line-height:1.65;
}

/* Contact and footer auxiliary copy */
html[lang="zh-CN"] #contactPage .contact-simple small,
html[lang="zh-CN"] #contactPage .contact-office small,
html[lang="zh-CN"] #contactPage .contact-direct-item small,
html[lang="zh-CN"] #contactPage .contact-hero-direct small,
html[lang="zh-Hant"] #contactPage .contact-simple small,
html[lang="zh-Hant"] #contactPage .contact-office small,
html[lang="zh-Hant"] #contactPage .contact-direct-item small,
html[lang="zh-Hant"] #contactPage .contact-hero-direct small{
  font-size:11.5px;
  line-height:1.4;
  letter-spacing:.015em;
  color:#6f817b;
}
html[lang="zh-CN"] #contactPage .contact-section-index,
html[lang="zh-CN"] #contactPage .contact-form-top > span,
html[lang="zh-CN"] #contactPage .contact-field > span,
html[lang="zh-Hant"] #contactPage .contact-section-index,
html[lang="zh-Hant"] #contactPage .contact-form-top > span,
html[lang="zh-Hant"] #contactPage .contact-field > span{
  font-size:12px;
  line-height:1.4;
  letter-spacing:.015em;
}
html[lang="zh-CN"] .footer-bottom,
html[lang="zh-Hant"] .footer-bottom{
  font-size:12.5px;
  line-height:1.55;
}


/* v234: homepage hero adaptation for FR / DE / ES */
@media(min-width:981px){
  html[lang="fr"] #homePage .hero-copy,
  html[lang="de"] #homePage .hero-copy,
  html[lang="es"] #homePage .hero-copy{
    max-width:680px;
  }
  html[lang="fr"] #homePage .hero h1,
  html[lang="de"] #homePage .hero h1,
  html[lang="es"] #homePage .hero h1{
    max-width:700px;
    font-size:clamp(42px,4.05vw,56px);
    line-height:.94;
    letter-spacing:-.052em;
    margin-bottom:28px;
  }
  html[lang="fr"] #homePage .hero h1 span:last-child,
  html[lang="de"] #homePage .hero h1 span:last-child,
  html[lang="es"] #homePage .hero h1 span:last-child{
    max-width:700px;
  }
  html[lang="fr"] #homePage .hero-lead,
  html[lang="de"] #homePage .hero-lead,
  html[lang="es"] #homePage .hero-lead{
    max-width:640px;
  }
}


/* v235: force more natural second-line wrap for FR / DE homepage hero */
@media(min-width:981px){
  html[lang="fr"] #homePage .hero h1 span:last-child{
    display:block;
    max-width:540px;
  }
  html[lang="de"] #homePage .hero h1 span:last-child{
    display:block;
    max-width:610px;
  }
}


/* v239: footer multi-location layout */
.footer-locations{
  display:grid;
  grid-template-columns:minmax(150px,1.2fr) minmax(0,4.8fr);
  gap:44px;
  align-items:start;
  padding:28px 0 30px;
  border-top:1px solid rgba(255,255,255,.07);
}
.footer-locations-label{
  padding-top:2px;
  color:rgba(255,255,255,.36);
  font:700 9px "Geist Mono",monospace;
  letter-spacing:.12em;
  text-transform:uppercase;
}
.footer-location-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:34px;
}
.footer-location-item{min-width:0}
.footer-location-city{
  display:flex;
  align-items:center;
  gap:8px;
  color:rgba(255,255,255,.88);
  font:700 10px "Geist Mono",monospace;
  letter-spacing:.08em;
  text-transform:uppercase;
}
.footer-location-city i{
  width:5px;
  height:5px;
  flex:0 0 5px;
  border-radius:50%;
  background:var(--aqua);
  box-shadow:0 0 10px rgba(39,225,193,.36);
}
.footer-location-item p{
  margin:8px 0 0;
  color:rgba(255,255,255,.58);
  font-size:12.5px;
  line-height:1.55;
}
.footer-locations + .footer-bottom{padding-top:24px}
@media(max-width:980px){
  .footer-locations{grid-template-columns:1fr;gap:18px}
  .footer-location-grid{grid-template-columns:repeat(3,minmax(0,1fr));gap:24px}
}
@media(max-width:620px){
  .footer-location-grid{grid-template-columns:1fr;gap:20px}
  .footer-location-item{padding-bottom:18px;border-bottom:1px solid rgba(255,255,255,.055)}
  .footer-location-item:last-child{padding-bottom:0;border-bottom:0}
}
