:root {
  --mint: #d5fad3;
  --ink: #0f0e0b;
  --cream: #f9f9f0;
  --stone: #3d3b34;
  --muted: #5f5c51;
  --mint-2: #c6efc4;
  --line: rgba(15, 14, 11, 0.16);
  --line-strong: rgba(15, 14, 11, 0.32);
  --line-dark: rgba(249, 249, 240, 0.18);
  --dark-soft: rgba(249, 249, 240, 0.72);
  --radius: 18px;
  --radius-lg: 26px;
  --max: 1160px;
  color-scheme: light;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--mint);
  color: var(--ink);
  font-family: Aptos, Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  text-rendering: geometricPrecision;
}
body.aw-menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; }
img, svg { display: block; max-width: 100%; }

.aw-wrap {
  width: min(var(--max), calc(100% - 40px));
  margin-inline: auto;
}
.aw-sec { padding: clamp(46px, 5.5vw, 62px) 0; }
section[id] { scroll-margin-top: 96px; }
.aw-sec-hero { padding: clamp(122px, 14vw, 162px) 0 clamp(56px, 6vw, 76px); }

.aw-hdr {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  padding: 12px 16px 0;
}
.aw-hshell {
  width: min(1280px, 100%);
  min-height: 60px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 9px 11px 9px 16px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: rgba(213, 250, 211, 0.72);
  backdrop-filter: blur(18px);
  transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}
.aw-hdr.aw-is-scroll .aw-hshell,
.aw-hdr.aw-menu-on .aw-hshell {
  background: rgba(249, 249, 240, 0.92);
  border-color: var(--line);
}
.aw-brand {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-weight: 780;
  letter-spacing: -0.035em;
  white-space: nowrap;
}
.aw-brandmark {
  position: relative;
  width: 37px;
  height: 37px;
  display: grid;
  place-items: center;
  border: 2px solid var(--cream);
  border-radius: 50%;
  color: var(--mint);
  overflow: hidden;
  flex: none;
}
.aw-brandmark span {
  position: absolute;
  height: 2px;
  border-radius: 99px;
  background: currentColor;
}
.aw-brandmark span:nth-child(1) { width: 18px; transform: translateY(-6px); }
.aw-brandmark span:nth-child(2) { width: 12px; transform: translateY(0); }
.aw-brandmark span:nth-child(3) { width: 18px; transform: translateY(6px); }
.aw-brandmark.aw-logomark {
  background: var(--cream);
  color: var(--ink);
}
.aw-brandmark.aw-logomark img {
  width: 37px;
  height: 37px;
  object-fit: contain;
  background-color: var(--mint);
}

.aw-dnav,
.aw-hact {
  display: flex;
  align-items: center;
}
.aw-dnav { gap: clamp(12px, 1.25vw, 20px); font-size: 14px; font-weight: 680; }
.aw-hact { gap: 10px; }
.aw-dnav > a,
.aw-navtrg,
.aw-hlink {
  color: rgba(15, 14, 11, 0.74);
  transition: color 160ms ease;
}
.aw-dnav > a:hover,
.aw-navtrg:hover,
.aw-hlink:hover { color: var(--ink); }
.aw-hlink { font-size: 14px; font-weight: 680; }

.aw-navgrp { position: relative; }
.aw-navtrg {
  display: inline-flex;
  gap: 7px;
  align-items: center;
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
  font-weight: 680;
}
.aw-navtrg::after {
  content: "";
  width: 7px;
  height: 7px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
}
.aw-navdd {
  position: absolute;
  top: calc(100% + 17px);
  left: 50%;
  width: 250px;
  transform: translate(-50%, 7px);
  opacity: 0;
  pointer-events: none;
  padding: 9px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(249, 249, 240, 0.97);
  box-shadow: 0 20px 58px rgba(15, 14, 11, 0.14);
  transition: opacity 160ms ease, transform 160ms ease;
}
.aw-navgrp:hover .aw-navdd,
.aw-navgrp:focus-within .aw-navdd {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}
.aw-navdd a {
  display: block;
  padding: 10px 11px;
  border-radius: 12px;
  font-size: 14px;
  color: var(--ink);
}
.aw-navdd a:hover { background: var(--mint); }

.aw-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 17px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 760;
  letter-spacing: -0.018em;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease, color 160ms ease;
}
.aw-btn-dk { background: var(--ink); color: var(--cream); border-color: var(--ink); }
.aw-btn-dk:hover { background: var(--stone); border-color: var(--stone); }
.aw-btn-ln { border-color: rgba(15, 14, 11, 0.34); background: rgba(249, 249, 240, 0.25); color: var(--ink); }
.aw-btn-ln:hover { border-color: var(--ink); background: rgba(249, 249, 240, 0.25); }

.aw-menubtn {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(249, 249, 240, 0.56);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}
.aw-menubtn span {
  width: 17px;
  height: 2px;
  border-radius: 99px;
  background: currentColor;
  transition: transform 160ms ease;
}
.aw-hdr.aw-menu-on .aw-menubtn span:first-child { transform: translateY(3.5px) rotate(45deg); }
.aw-hdr.aw-menu-on .aw-menubtn span:last-child { transform: translateY(-3.5px) rotate(-45deg); }
.aw-mpanel {
  display: none;
  width: min(1280px, calc(100% - 32px));
  margin: 8px auto 0;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(249, 249, 240, 0.96);
  box-shadow: 0 20px 56px rgba(15, 14, 11, 0.14);
  overflow: hidden;
}
.aw-mpanel nav { display: grid; padding: 10px; }
.aw-mpanel a {
  padding: 13px 14px;
  border-radius: 14px;
  font-weight: 720;
}
.aw-mpanel a:hover { background: var(--mint); }

.aw-hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.aw-hero-grid {
  position: absolute;
  inset: 78px 0 0;
  z-index: -2;
  background-image: linear-gradient(rgba(15,14,11,0.055) 1px, transparent 1px), linear-gradient(90deg, rgba(15,14,11,0.055) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,0.65), transparent 70%);
}
.aw-hero-cuts {
  position: absolute;
  width: min(760px, 74vw);
  height: 220px;
  left: 50%;
  top: 96px;
  transform: translateX(-50%);
  z-index: -1;
  opacity: 0.85;
}
.aw-hero-cuts span {
  position: absolute;
  border: 1px solid rgba(15, 14, 11, 0.12);
  background: rgba(249, 249, 240, 0.18);
}
.aw-hero-cuts span:nth-child(1) { width: 44%; height: 68px; left: 2%; top: 56px; transform: skewX(-18deg); }
.aw-hero-cuts span:nth-child(2) { width: 36%; height: 94px; right: 4%; top: 28px; transform: skewX(15deg); }
.aw-hero-cuts span:nth-child(3) { width: 58%; height: 52px; left: 21%; bottom: 16px; transform: skewX(-12deg); background: rgba(15, 14, 11, 0.04); }
.aw-hero-cnt {
  text-align: center;
  max-width: 880px;
}
.aw-eyebrow {
  margin: 0 0 12px;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  font-size: 12px;
  line-height: 1;
  font-weight: 820;
  color: rgba(15, 14, 11, 0.62);
}
.aw-eyebrow-dk { color: rgba(249, 249, 240, 0.62); }
h1, h2, h3, p { margin-top: 0; }
h1 {
  max-width: 950px;
  margin: 0 auto;
  font-size: clamp(43px, 5.8vw, 64px);
  line-height: 0.98;
  letter-spacing: -0.073em;
  font-weight: 830;
}
.aw-hero-copy {
  max-width: 660px;
  margin: 20px auto 0;
  font-size: clamp(17px, 1.65vw, 20px);
  line-height: 1.42;
  letter-spacing: -0.028em;
  color: rgba(15, 14, 11, 0.72);
}
.aw-hero-act {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}
.aw-prod-note {
  width: fit-content;
  margin: 22px auto 0;
  max-width: 720px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 36px;
  padding: 6px 13px 6px 7px;
  border: 1px solid rgba(15, 14, 11, 0.24);
  border-radius: 999px;
  background: rgba(249, 249, 240, 0.48);
  color: rgba(15, 14, 11, 0.72);
  font-size: 14px;
  font-weight: 720;
}
.aw-prod-note span {
  display: inline-flex;
  align-items: center;
  min-height: 22px;
  padding: 0 8px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--mint);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.aw-inst-layout {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 24px;
  align-items: stretch;
}
.aw-inst-copy {
  padding: 28px;
  border-radius: var(--radius-lg);
  background: rgba(249, 249, 240, 0.35);
}
.aw-inst-copy h2,
.aw-sec-head h2,
.aw-res-head h2,
.aw-apt-left h2,
.aw-page-hero h1 {
  margin-bottom: 10px;
  font-size: clamp(31px, 3.8vw, 48px);
  line-height: 0.98;
  letter-spacing: -0.058em;
  font-weight: 830;
}
.aw-inst-copy p:not(.aw-eyebrow),
.aw-sec-head p,
.aw-res-head p,
.aw-apt-left p,
.aw-page-hero p {
  margin-bottom: 0;
  color: rgba(15, 14, 11, 0.66);
  line-height: 1.45;
  letter-spacing: -0.02em;
}
.aw-inst-panel {
  border: 1px solid var(--ink);
  border-radius: var(--radius-lg);
  background: var(--cream);
  overflow: hidden;
  box-shadow: 0 18px 48px rgba(15, 14, 11, 0.09);
}
.aw-inst-row,
.aw-rel-mx,
.aw-verify { border-top: 1px solid var(--line); }
.aw-inst-row:first-child { border-top: 0; }
.aw-inst-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  align-items: center;
}
.aw-inst-row-head {
  background: var(--ink);
  color: var(--cream);
}
.aw-inst-row span,
.aw-rel-mx span,
.aw-verify span {
  color: inherit;
  opacity: 0.72;
  font-size: 13px;
  font-weight: 760;
  text-transform: uppercase;
  letter-spacing: 0.095em;
}
.aw-inst-row strong,
.aw-rel-mx strong { font-size: 15px; letter-spacing: -0.02em; }
.aw-rel-mx {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.aw-rel-mx div {
  min-height: 96px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 18px 18px;
  border-left: 1px solid var(--line);
}
.aw-rel-mx div:first-child { border-left: 0; }
.aw-inst-row-muted { background: rgba(213, 250, 211, 0.62); }
.aw-verify {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  padding: 13px 18px;
  background: rgba(15, 14, 11, 0.035);
}
.aw-verify a {
  font-size: 13px;
  font-weight: 760;
  text-decoration: underline;
  text-underline-offset: 4px;
}
.aw-verify a:hover { text-decoration-thickness: 2px; }

.aw-sec-head,
.aw-res-head {
  display: flex;
  justify-content: space-between;
  gap: 26px;
  align-items: end;
  margin-bottom: 22px;
}
.aw-sec-head { max-width: 1000px; }
.aw-sec-head p:not(.aw-eyebrow) { max-width: 370px; }
.aw-prod-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}
.aw-prod-card {
  display: flex;
  flex-direction: column;
  grid-column: span 2;
  padding: 16px;
  border: 1px solid var(--ink);
  border-radius: var(--radius);
  background: var(--cream);
  color: var(--ink);
  box-shadow: inset 0 -30px 0 rgba(213, 250, 211, 0.45);
  transition: transform 160ms ease, box-shadow 160ms ease;
}
.aw-prod-card:hover {
  transform: translateY(-3px);
  box-shadow: inset 0 -64px 0 rgba(213, 250, 211, 0.68), 0 16px 36px rgba(15, 14, 11, 0.08);
}
.aw-prod-card h3 {
  margin: auto 0 14px;
  font-size: 22px;
  line-height: 1;
  letter-spacing: -0.035em;
}
.aw-prod-card p {
  margin: 0;
  color: rgba(15, 14, 11, 0.68);
  line-height: 1.38;
  letter-spacing: -0.015em;
}
.aw-micro {
  position: relative;
  isolation: isolate;
  height: 116px;
  border: 1px solid var(--line-strong);
  border-radius: 15px;
  background:
    linear-gradient(rgba(15,14,11,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15,14,11,0.03) 1px, transparent 1px),
    var(--mint);
  background-size: 28px 28px;
  overflow: hidden;
  margin-bottom: 18px;
  -webkit-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
}
.aw-micro::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  visibility: hidden;
  opacity: 0;
  scale: .8;
  background: rgba(15, 14, 11, 0.08);
  transition:
    opacity 150ms ease,
    scale 150ms ease,
    visibility 150ms ease;
}
.aw-micro * {
  -webkit-user-select: none;
  user-select: none;
  -webkit-user-drag: none;
}
.aw-micro::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 54px;
  z-index: 3;
  background: linear-gradient(to top, rgba(213,250,211,0.95), rgba(213,250,211,0));
  pointer-events: none;
}
.aw-micro span, .aw-micro i, .aw-micro b { position: absolute; display: block; }
.aw-micro > span {
  --micro-final-opacity: .80;
  z-index: 2;
  opacity: var(--micro-final-opacity);
  transition:
    transform 180ms var(--aptos-ease-mask),
    opacity 150ms ease,
    background-color 150ms ease,
    border-color 150ms ease,
    color 150ms ease;
}
.aw-micro b,
.aw-micro i,
.aw-micro em {
  transition:
    transform 180ms var(--aptos-ease-mask),
    opacity 150ms ease,
    background-color 150ms ease,
    color 150ms ease,
    border-color 150ms ease;
}
.aw-micro-acct .aw-addr {
  left: 14px;
  top: 14px;
  padding: 7px 9px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  background: var(--cream);
  font-size: 12px;
  font-weight: 780;
}
.aw-micro-acct .aw-bal { left: 14px; height: 8px; border-radius: 99px; background: var(--ink); }
.aw-micro-acct .aw-wide { width: 62%; top: 62px; }
.aw-micro-acct .aw-short { width: 42%; top: 80px; --micro-final-opacity: .58; opacity: var(--micro-final-opacity); }
.aw-micro-acct .aw-chip { right: 14px; bottom: 14px; padding: 6px 8px; border-radius: 8px; background: var(--ink); color: var(--mint); font-size: 11px; font-weight: 800; text-transform: uppercase; }
.aw-micro-apt .aw-amt {
  left: 14px;
  top: 14px;
  width: 94px;
  height: 54px;
  display: grid;
  align-content: center;
  padding: 0 12px;
  border: 1px solid var(--ink);
  border-radius: 13px;
  background: var(--ink);
  color: var(--mint);
}
.aw-micro-apt .aw-to {
  left: 120px;
  right: 14px;
  top: 14px;
  height: 54px;
  display: grid;
  align-content: center;
  padding: 0 11px;
  border: 1px solid var(--ink);
  border-radius: 13px;
  background: var(--cream);
}
.aw-micro-apt .aw-net,
.aw-micro-apt .aw-fee {
  bottom: 13px;
  width: calc((100% - 42px) / 2);
  height: 27px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 0 9px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  background: var(--cream);
}
.aw-micro-apt .aw-net {
  left: 14px;
  background: rgba(15,14,11,0.62);
  color: var(--mint);
}
.aw-micro-apt .aw-fee { right: 14px; }
.aw-micro-apt .aw-amt b,
.aw-micro-apt .aw-amt i,
.aw-micro-apt .aw-to b,
.aw-micro-apt .aw-to i,
.aw-micro-apt .aw-net b,
.aw-micro-apt .aw-net i,
.aw-micro-apt .aw-fee b,
.aw-micro-apt .aw-fee i {
  position: static;
  display: block;
  font-style: normal;
  line-height: 1.05;
}
.aw-micro-apt .aw-amt b {
  font-size: 18px;
  font-weight: 850;
  letter-spacing: 0;
}
.aw-micro-apt .aw-amt i,
.aw-micro-apt .aw-to b {
  font-size: 10px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.aw-micro-apt .aw-amt i { margin-top: 4px; }
.aw-micro-apt .aw-to i {
  margin-top: 5px;
  font-size: 12px;
  font-weight: 780;
}
.aw-micro-apt .aw-net b,
.aw-micro-apt .aw-fee b,
.aw-micro-apt .aw-net i,
.aw-micro-apt .aw-fee i {
  font-size: 10px;
  font-weight: 850;
}
.aw-micro-apt .aw-net b,
.aw-micro-apt .aw-fee b {
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.aw-micro-apt .aw-net i,
.aw-micro-apt .aw-fee i {
  opacity: 0.72;
}
.aw-micro-assets .aw-asset-row {
  left: 14px;
  width: 58%;
  height: 27px;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0 8px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  background: var(--cream);
}
.aw-micro-assets .aw-row-apt { top: 16px; }
.aw-micro-assets .aw-row-fa { top: 50px; --micro-final-opacity: .78; opacity: var(--micro-final-opacity); }
.aw-micro-assets .aw-asset-row i {
  position: static;
  flex: none;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--ink);
}
.aw-micro-assets .aw-row-fa i {
  background: var(--cream);
  border: 1px solid var(--ink);
}
.aw-micro-assets .aw-asset-row b,
.aw-micro-assets .aw-asset-row em {
  position: static;
  font-size: 11px;
  line-height: 1;
  font-style: normal;
  font-weight: 850;
}
.aw-micro-assets .aw-asset-row em {
  margin-left: auto;
  color: rgba(15,14,11,0.58);
}
.aw-micro-assets .aw-asset-tile {
  right: 16px;
  top: 21px;
  width: 62px;
  height: 62px;
  border: 1px solid var(--ink);
  border-radius: 14px;
  background: var(--cream);
}
.aw-micro-assets .aw-asset-tile i {
  inset: 8px;
  border-radius: 11px;
  background: linear-gradient(145deg, var(--ink), rgba(15,14,11,0.50));
}
.aw-micro-assets .aw-asset-tile b {
  right: 7px;
  bottom: 7px;
  padding: 4px 5px;
  border: 1px solid var(--ink);
  border-radius: 7px;
  background: var(--mint);
  font-size: 10px;
  font-weight: 850;
}
.aw-micro-assets .aw-asset-lbl {
  left: 16px;
  bottom: 13px;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.08em;
}
.aw-micro-apps .aw-dapp-panel,
.aw-micro-apps .aw-wallet-panel {
  width: 105px;
  height: 52px;
  padding: 9px 10px;
  border: 1px solid var(--ink);
  border-radius: 13px;
  background: var(--cream);
  z-index: 2;
}
.aw-micro-apps .aw-dapp-panel {
  left: 14px;
  top: 16px;
}
.aw-micro-apps .aw-wallet-panel {
  right: 14px;
  top: 38px;
  background: var(--ink);
  color: var(--mint);
}
.aw-micro-apps .aw-dapp-panel b,
.aw-micro-apps .aw-dapp-panel i,
.aw-micro-apps .aw-wallet-panel b,
.aw-micro-apps .aw-wallet-panel i {
  position: static;
  display: block;
  font-size: 11px;
  line-height: 1.15;
  font-style: normal;
}
.aw-micro-apps .aw-dapp-panel b,
.aw-micro-apps .aw-wallet-panel b {
  margin-bottom: 5px;
  font-weight: 850;
}
.aw-micro-apps .aw-dapp-panel i,
.aw-micro-apps .aw-wallet-panel i {
  opacity: 0.62;
  font-weight: 760;
}
.aw-micro-apps .aw-conn {
  left: 112px;
  right: 126px;
  top: 54px;
  height: 2px;
  background: var(--ink);
  z-index: 1;
}
.aw-micro-apps .aw-conn::after {
  content: "";
  position: absolute;
  right: -4px;
  top: -4px;
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--ink);
  border-top: 2px solid var(--ink);
  transform: rotate(45deg);
}
.aw-micro-apps .aw-adapt {
  left: 14px;
  bottom: 13px;
  padding: 6px 8px;
  border-radius: 999px;
  background: rgba(15,14,11,0.62);
  color: var(--mint);
  font-size: 10px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}
.aw-micro-review { padding: 12px; display: grid; gap: 8px; }
.aw-micro-review span { position: relative; display: flex; justify-content: space-between; align-items: center; height: 25px; padding: 0 9px; border: 1px solid var(--ink); border-radius: 999px; background: var(--cream); }
.aw-micro-review b, .aw-micro-review i { position: static; font-size: 11px; font-style: normal; font-weight: 800; }
.aw-micro-review i { opacity: 0.62; }
.aw-micro-explorer .aw-hash { left: 13px; top: 17px; width: calc(100% - 26px); padding: 9px 10px; border: 1px solid var(--ink); border-radius: 12px; background: var(--cream); font-size: 12px; font-weight: 780; }
.aw-micro-explorer .aw-status { left: 13px; bottom: 17px; padding: 7px 9px; border-radius: 999px; background: var(--ink); color: var(--mint); font-size: 11px; font-weight: 820; text-transform: uppercase; }
.aw-micro-explorer .aw-arr { right: 15px; bottom: 14px; width: 38px; height: 38px; display: grid; place-items: center; border: 1px solid var(--ink); border-radius: 50%; background: var(--cream); font-size: 19px; font-weight: 800; }

.aw-sec-apt {
  padding-block: clamp(38px, 5vw, 62px);
}
.aw-apt-panel {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 24px;
  align-items: stretch;
  padding: clamp(24px, 3vw, 34px);
  border-radius: 30px;
  background: var(--ink);
  color: var(--cream);
  overflow: hidden;
  position: relative;
}
.aw-apt-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(249,249,240,0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(249,249,240,0.05) 1px, transparent 1px);
  background-size: 34px 34px;
  opacity: 0.9;
  pointer-events: none;
  display: none;
}
.aw-apt-left,
.aw-apt-ledger { position: relative; z-index: 1; }
.aw-apt-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 310px;
}
.aw-apt-left p:not(.aw-eyebrow) { color: var(--dark-soft); }
.aw-txt-link {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  gap: 9px;
  margin-top: 22px;
  font-weight: 800;
  color: var(--mint);
}
.aw-txt-link::after { content: "↗"; transition: transform 160ms ease; }
.aw-txt-link:hover::after { transform: translate(2px, -2px); }
.aw-apt-ledger {
  align-self: center;
  border: 1px solid var(--line-dark);
  border-radius: 22px;
  overflow: hidden;
  background: rgba(249,249,240,0.045);
}
.aw-apt-ledger div {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 18px;
  padding: 16px 18px;
  border-top: 1px solid var(--line-dark);
}
.aw-apt-ledger div:first-child { border-top: 0; }
.aw-apt-ledger span {
  color: rgba(249,249,240,0.58);
  font-size: 13px;
  font-weight: 820;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.aw-apt-ledger strong {
  font-size: 15px;
  letter-spacing: -0.02em;
}

.aw-res-head { align-items: start; }
.aw-res-head p { max-width: 420px; }
.aw-sec-res {
  background: #ccf0ca;
  margin-top: 40px;
}
.aw-res-braid {
  position: relative;
  padding: 20px 0 12px;
}
.aw-res-braid::before {
  content: "";
  position: absolute;
  left: 10%; right: 14%; top: 50%;
  height: 1px;
  background: var(--line-strong);
}
.aw-res-row {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 10px;
}
.aw-top-row { grid-template-columns: 1.1fr 1fr 1fr 1.1fr; margin-right: 6%; }
.aw-bot-row { grid-template-columns: repeat(4, 1fr); margin-left: 13%; margin-top: 20px; }
.aw-res-row a {
  min-height: 96px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 12px;
  padding: 14px;
  border: 1px solid var(--ink);
  border-radius: 16px;
  background: var(--mint);
  font-size: 18px;
  font-weight: 820;
  letter-spacing: -0.035em;
  box-shadow: inset 0 -12px 0 rgba(15, 14, 11, 0.06);
  transition: transform 160ms ease, background 160ms ease, color 160ms ease, border-color 160ms ease;
}
.aw-res-row a:hover {
  transform: none;
  background: var(--cream);
  color: var(--ink);
  border-color: var(--ink);
}
.aw-res-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  min-height: 40px;
}
.aw-res-kick {
  padding-top: 2px;
  font-size: 11px;
  color: rgba(15,14,11,0.58);
  letter-spacing: 0.11em;
  text-transform: uppercase;
  font-weight: 850;
}
.aw-res-ico {
  width: 72px;
  height: 72px;
  flex: 0 0 72px;
  object-fit: contain;
  padding: 5px;
  border-radius: 12px;
}
.aw-res-row strong {
  display: block;
  max-width: 10ch;
  font: inherit;
  line-height: 1;
}
.aw-res-row a:hover .aw-res-kick {
  color: rgba(15,14,11,0.58);
}

.aw-page-main { padding-top: 104px; }
.aw-page-hero { padding: 52px 0 24px; }
.aw-page-hero .aw-wrap { max-width: 880px; }
.aw-page-shell {
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 24px;
  padding: 20px 0 66px;
}
.aw-side-nav {
  position: sticky;
  top: 96px;
  height: fit-content;
  display: grid;
  gap: 7px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(249,249,240,0.34);
}
.aw-side-nav a { padding: 10px 11px; border-radius: 12px; font-weight: 730; color: rgba(15,14,11,0.70); }
.aw-side-nav a:hover { background: var(--cream); color: var(--ink); }
.aw-content-stack { display: grid; gap: 12px; }
.aw-content-card {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--cream);
}
.aw-content-card h2 { margin-bottom: 12px; font-size: 26px; letter-spacing: -0.045em; }
.aw-content-card p, .aw-content-card li { color: rgba(15,14,11,0.68); line-height: 1.52; }
.aw-content-card ul { margin: 0; padding-left: 18px; }
.aw-content-card a { font-weight: 780; text-decoration: underline; text-underline-offset: 4px; }
.aw-status-list { display: grid; gap: 8px; margin-top: 16px; }
.aw-status-list div { display: flex; justify-content: space-between; gap: 12px; padding: 12px 14px; border: 1px solid var(--line); border-radius: 14px; background: rgba(213,250,211,0.52); }
.aw-status-list span { color: rgba(15,14,11,0.58); font-weight: 760; text-transform: uppercase; font-size: 12px; letter-spacing: 0.08em; }

@media (max-width: 1040px) {
  .aw-dnav { display: none; }
  .aw-hlink { display: none; }
  .aw-menubtn { display: inline-flex; }
  .aw-hdr.aw-menu-on .aw-mpanel { display: block; }
  .aw-inst-layout,
  .aw-apt-panel { grid-template-columns: 1fr; }
  .aw-apt-left { min-height: 0; }
  .aw-prod-card { grid-column: span 3; }
}

@media (max-width: 760px) {
  .aw-wrap { width: min(100% - 28px, var(--max)); }
  .aw-hdr { padding: 10px 10px 0; }
  .aw-hshell { min-height: 56px; padding-left: 12px; }
  .aw-btn { min-height: 40px; padding: 0 14px; }
  .aw-sec { padding: 38px 0; }
  section[id] { scroll-margin-top: 84px; }
  .aw-sec-hero { padding: 112px 0 46px; }
  h1 { font-size: clamp(39px, 11vw, 54px); }
  .aw-hero-copy { margin-top: 16px; }
  .aw-prod-note {
    flex-wrap: wrap;
    justify-content: center;
    border-radius: 18px;
  }
  .aw-inst-copy { padding: 22px; }
  .aw-rel-mx { grid-template-columns: 1fr; }
  .aw-rel-mx div { min-height: 74px; border-left: 0; border-top: 1px solid var(--line); }
  .aw-sec-head,
  .aw-res-head { display: block; margin-bottom: 18px; }
  .aw-sec-head p:not(.aw-eyebrow), .aw-res-head p { margin-top: 8px; }
  .aw-prod-grid { grid-template-columns: 1fr; }
  .aw-prod-card { grid-column: auto; }
  .aw-micro { height: 104px; }
  .aw-apt-panel { padding: 22px; border-radius: 24px; }
  .aw-apt-ledger div { grid-template-columns: 1fr; gap: 5px; padding: 14px; }
  .aw-res-braid { padding-top: 4px; }
  .aw-res-braid::before { display: none; }
  .aw-top-row, .aw-bot-row { grid-template-columns: 1fr; margin: 0; }
  .aw-bot-row { margin-top: 10px; }
  .aw-res-row a { min-height: 92px; }
  .aw-res-ico {
    width: 38px;
    height: 38px;
    flex-basis: 38px;
  }
  .aw-page-shell { grid-template-columns: 1fr; padding-top: 8px; }
  .aw-side-nav { position: static; grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 460px) {
  .aw-hero-act { display: grid; grid-template-columns: 1fr; }
  .aw-hero-act .aw-btn { width: 100%; }
  .aw-inst-row { display: grid; }
  .aw-verify { gap: 9px; }
  .aw-side-nav { grid-template-columns: 1fr; }
}

.aw-hdr {
  padding-top: 10px;
}
.aw-hshell {
  min-height: 58px;
  border-color: rgba(15, 14, 11, 0.28);
  border-radius: 22px;
  background: rgba(249, 249, 240, 0.58);
  box-shadow: inset 0 -1px 0 rgba(15, 14, 11, 0.08);
}
.aw-hdr.aw-is-scroll .aw-hshell,
.aw-hdr.aw-menu-on .aw-hshell {
  background: rgba(249, 249, 240, 0.94);
  border-color: var(--ink);
}

.aw-dnav {
  gap: 5px;
  padding: 4px;
  border: 1px solid rgba(15, 14, 11, 0.10);
  border-radius: 16px;
  background: rgba(213, 250, 211, 0.38);
  transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.aw-hdr.aw-is-scroll .aw-dnav {
  border: 1px solid var(--ink);
}

.aw-dnav > a,
.aw-navtrg {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 0 10px;
  border: 1px solid transparent;
  border-radius: 12px;
  color: var(--ink);
}
.aw-dnav > a:hover,
.aw-navtrg:hover {
  color: var(--ink);
  border-color: rgba(15, 14, 11, 0.20);
  background: var(--cream);
}
.aw-navdd {
  left: 0;
  width: 278px;
  transform: translate(0, 7px);
  border-color: var(--ink);
  border-radius: 18px;
  background: var(--cream);
  box-shadow: 0 24px 46px rgba(15, 14, 11, 0.14);
}
.aw-navgrp:hover .aw-navdd,
.aw-navgrp:focus-within .aw-navdd {
  transform: translate(0, 0);
}
.aw-navdd a {
  border: 1px solid transparent;
  border-radius: 12px;
}
.aw-navdd a:hover {
  border-color: rgba(15, 14, 11, 0.18);
  background: var(--mint);
}
.aw-hlink {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  padding: 0 13px;
  border: 1px solid var(--ink);
  border-radius: 14px;
  background: var(--mint);
  color: var(--ink);
  box-shadow: inset 0 -12px 0 rgba(15, 14, 11, 0.06);
}
.aw-hlink:hover {
  background: var(--cream);
}
.aw-hact .aw-btn-dk {
  border-radius: 14px;
}

.aw-sec-dl {
  --download-bg: #ccf0ca;
  --download-panel: rgba(249, 249, 240, 0.42);
  --download-panel-strong: rgba(249, 249, 240, 0.58);
  --download-line: rgba(15, 14, 11, 0.18);
  padding-top: calc(clamp(46px, 5.5vw, 72px) + 24px);
}

.aw-dl-surf {
  position: relative;
  display: grid;
  grid-template-columns: minmax(220px, 0.74fr) minmax(0, 1.26fr);
  gap: 14px;
  padding: 12px;
  padding-top: 48px;
  border: 1px solid var(--ink);
  border-radius: 28px;
  background:
    linear-gradient(rgba(15, 14, 11, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 14, 11, 0.035) 1px, transparent 1px),
    var(--download-bg);
  background-size: 32px 32px;
  box-shadow:
    inset 0 0 0 1px rgba(249, 249, 240, 0.26),
    0 18px 46px rgba(15, 14, 11, 0.07);
  overflow: hidden;
}

.aw-dl-surf::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(204, 240, 202, 0.88), transparent 32%, transparent 68%, rgba(204, 240, 202, 0.82)),
    linear-gradient(180deg, rgba(204, 240, 202, 0.76), transparent 42%, rgba(204, 240, 202, 0.58));
  opacity: 0.72;
}

.aw-rel-corner {
  position: absolute;
  top: 0;
  left: 28px;
  z-index: 2;
  display: grid;
  gap: 4px;
  min-width: 168px;
  padding: 10px 14px 11px;
  border: 1px solid var(--ink);
  border-top: 0;
  border-radius: 0 0 15px 15px;
  background: var(--ink);
  color: var(--cream);
  box-shadow: 0 12px 28px rgba(15, 14, 11, 0.13);
}

.aw-rel-corner span {
  color: rgba(249, 249, 240, 0.62);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.aw-rel-corner strong {
  font-size: 19px;
  line-height: 0.95;
  letter-spacing: -0.055em;
}

.aw-dl-footrow,
.aw-dl-head,
.aw-dl-plats {
  position: relative;
  z-index: 1;
}
.aw-dl-footrow {
  grid-column: 1 / -1;
  position: relative;
  z-index: 1;
  display: grid;
  justify-content: center;
  gap: 0;
  min-height: 54px;

  width: calc(100% + 24px);
  margin: 0 -12px -12px;

  border: 0;
  border-top: 1px solid rgba(15, 14, 11, 0.22);
  border-radius: 0 0 27px 27px;

  background: rgba(249, 249, 240, 0.2);
  box-shadow: inset 0 -18px 0 rgba(213, 250, 211, 0.28);
  overflow: hidden;
}

.aw-dl-head {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 12px;
  padding: 22px;  border-radius: 20px;
}

.aw-dl-head h2 {
  max-width: 360px;
  margin: 0;
  font-size: clamp(29px, 3.4vw, 43px);
  line-height: 0.98;
  letter-spacing: -0.058em;
  font-weight: 830;
}

.aw-dl-head p {
  max-width: 350px;
  margin: 0;
  color: rgba(15, 14, 11, 0.64);
  line-height: 1.42;
  letter-spacing: -0.02em;
}

.aw-dl-plats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.aw-dl-card {
  min-height: 186px;
  display: grid;
  grid-template-rows: 1fr auto;
  align-items: center;
  justify-items: center;
  gap: 18px;
  padding: 20px 16px 16px;
  border: 1px solid var(--ink);
  border-radius: 20px;
  background: rgb(249, 249, 240, 0.94);
  color: var(--ink);
  text-decoration: none;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease;
}

.aw-dl-card:hover {
  background: rgba(249, 249, 240, 0.52);
}

.aw-os-ico {
  width: 92px;
  height: 92px;
  display: block;
  background: var(--os-icon) center / contain no-repeat;
  mask: none;
  -webkit-mask: none;
}

.aw-os-mac {
  --os-icon: url("/assets/macos.svg");
}

.aw-os-win {
  --os-icon: url("/assets/windows.svg");
}

.aw-os-linux {
  --os-icon: url("/assets/linux.svg");
}

.aw-dl-card strong {
  width: 100%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid var(--ink);
  border-radius: 12px;
  background: var(--mint);
  box-shadow: inset 0 -12px 0 rgba(15, 14, 11, 0.06);
  color: var(--ink);
  font-weight: 850;
  font-size: 14px;
  line-height: 1;
  letter-spacing: -0.03em;
}

.aw-dl-mob-status,
.aw-dl-verify {
  min-height: 54px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 16px;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.aw-dl-mob-status {
  justify-content: space-between;
  border-right: 1px solid rgba(15, 14, 11, 0.18);
}

.aw-dl-mob-status span,
.aw-dl-verify span {
  color: rgba(15, 14, 11, 0.56);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.aw-dl-mob-status strong {
  padding: 7px 9px;
  border: 1px solid rgba(15, 14, 11, 0.2);
  border-radius: 9px;
  background: rgba(204, 240, 202, 0.52);
  font-size: 13px;
  line-height: 1;
  letter-spacing: -0.02em;
}

.aw-dl-verify {
  flex-wrap: wrap;
  justify-content: flex-end;
}

.aw-dl-verify a {
  color: var(--ink);
  font-size: 13px;
  font-weight: 780;
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-thickness: 1px;
}

.aw-dl-verify a:hover {
  text-decoration-thickness: 2px;
}


@media (max-width: 1040px) {
  .aw-dl-surf {
    grid-template-columns: 1fr;
  }

  .aw-dl-head {
    min-height: 150px;
  }
}

@media (max-width: 760px) {
  .aw-sec-dl {
    padding-top: 62px;
  }

  .aw-dl-surf {
    padding: 10px;
    padding-top: 48px;
    border-radius: 24px;
  }

  .aw-rel-corner {
    left: 20px;
  }

  .aw-dl-head {
    min-height: 0;
    padding: 19px;
    border-radius: 18px;
  }

  .aw-dl-plats {
    grid-template-columns: 1fr;
  }

  .aw-dl-card {
    min-height: 116px;
    grid-template-columns: 86px 1fr;
    grid-template-rows: 1fr;
    justify-items: stretch;
    gap: 16px;
    padding: 16px;
  }

  .aw-os-ico {
    width: 72px;
    height: 72px;
    align-self: center;
    justify-self: center;
  }

  .aw-dl-card strong {
    align-self: center;
  }

  .aw-dl-verify {
    justify-content: flex-start;
  }
}

@media (max-width: 460px) {
  .aw-dl-surf {
    padding-top: 56px;
  }

  .aw-rel-corner {
    left: 16px;
    min-width: 154px;
  }

  .aw-rel-corner strong {
    font-size: 18px;
  }

  .aw-dl-card {
    grid-template-columns: 76px 1fr;
  }

  .aw-os-ico {
    width: 64px;
    height: 64px;
  }

  .aw-dl-card strong {
    font-size: 12px;
  }
}
.aw-apt-panel {
  grid-template-columns: 0.86fr 1.14fr;
  gap: 14px;
  padding: 10px;
  border: 1px solid var(--ink);
  border-radius: 30px;
  isolation: isolate;
}
.aw-apt-panel::before {
  opacity: 0.65;
  border-radius: inherit;
}
.aw-apt-left {
  min-height: 300px;
  padding: 20px;
  border: 1px solid var(--line-dark);
  border-radius: 22px;
  background: rgba(249, 249, 240, 0.035);
}
.aw-apt-sys {
  --aptos-system-radius: 22px;
  position: relative;
  z-index: 1;
  isolation: isolate;
  display: grid;
  grid-template-rows: auto 1fr auto;
  min-height: 300px;
  border: 1px solid var(--line-dark);
  border-radius: var(--aptos-system-radius);
  background: var(--mint);
  background-clip: padding-box;
  color: var(--ink);
  overflow: hidden;
  clip-path: inset(0 round var(--aptos-system-radius));
  contain: paint;
}
.aw-apt-sys-head,
.aw-apt-sys-foot {
  position: relative;
  z-index: 2;
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 13px 15px;
  border-bottom: 1px solid rgba(15, 14, 11, 0.16);
  background: rgba(249, 249, 240, 0.46);
  background-clip: padding-box;
  overflow: hidden;
}
.aw-apt-sys-head {
  border-radius: calc(var(--aptos-system-radius) - 1px) calc(var(--aptos-system-radius) - 1px) 0 0;
}
.aw-apt-sys-foot {
  border-top: 1px solid rgba(15, 14, 11, 0.16);
  border-bottom: 0;
  border-radius: 0 0 calc(var(--aptos-system-radius) - 1px) calc(var(--aptos-system-radius) - 1px);
}
.aw-apt-sys-head span,
.aw-apt-sys-foot span {
  color: rgba(15, 14, 11, 0.58);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.aw-apt-sys-head strong,
.aw-apt-sys-foot a {
  font-size: 13px;
  font-weight: 840;
  letter-spacing: -0.02em;
}
.aw-apt-sys-foot a {
  padding: 7px 9px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  background: var(--ink);
  color: var(--mint);
}
.aw-apt-sys-foot a:hover {
  background: var(--cream);
  color: var(--ink);
}
.aw-apt-plate {
  position: relative;
  z-index: 1;
  isolation: isolate;
  min-height: 210px;
  overflow: hidden;
  background-image:
    linear-gradient(rgba(15,14,11,0.065) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15,14,11,0.065) 1px, transparent 1px);
  background-size: 30px 30px;
}
.aw-apt-core {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 154px;
  height: 154px;
  transform: translate(-50%, -50%);
  display: grid;
  place-items: center;
  border: 1px solid var(--ink);
  border-radius: 50%;
  background: var(--ink);
  color: var(--mint);
  box-shadow: 0 0 0 12px rgba(249, 249, 240, 0.30);
}
.aw-apt-core img {
  width: 92px;
  height: 92px;
  object-fit: contain;
  filter: invert(93%) sepia(14%) saturate(698%) hue-rotate(54deg) brightness(103%) contrast(96%);
}
.aw-apt-chip {
  position: absolute;
  display: grid;
  gap: 4px;
  min-width: 128px;
  padding: 10px 11px;
  border: 1px solid var(--ink);
  border-radius: 10px;
  background: var(--cream);
  transition: transform 160ms ease, background 160ms ease, box-shadow 160ms ease;
}
.aw-apt-chip:hover {
  transform: translateY(-2px);
  background: var(--mint);
}
.aw-apt-chip span {
  color: rgba(15, 14, 11, 0.35);
  font-size: 10px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.aw-apt-chip strong {
  font-size: 14px;
  opacity: 0.75;
  line-height: 1;
  letter-spacing: -0.032em;
}
.aw-chip-addr { left: 22px; top: 22px; }
.aw-chip-move { right: 24px; top: 26px; }
.aw-chip-assets { left: 38px; bottom: 26px; }
.aw-chip-apps { right: 40px; bottom: 26px; }
.aw-chip-explorer {
  left: 50%;
  bottom: 8px;
  transform: translateX(-50%);
  min-width: 142px;
}
.aw-chip-explorer:hover {
  transform: translate(-50%, -2px);
}

@media (max-width: 1040px) {
  .aw-hshell {
    border-radius: 20px;
  }
  .aw-inst-shell,
  .aw-apt-panel {
    grid-template-columns: 1fr;
  }
  .aw-apt-left,
  .aw-apt-sys {
    min-height: 0;
  }
}

@media (max-width: 760px) {
  .aw-inst-shell,
  .aw-apt-panel {
    padding: 8px;
    border-radius: 24px;
  }
  .aw-rel-copy,
  .aw-inst-panel,
  .aw-apt-left,
  .aw-apt-sys {
    border-radius: 18px;
  }
  .aw-apt-sys {
    --aptos-system-radius: 18px;
  }
  .aw-dl-mx {
    grid-template-columns: 1fr;
  }
  .aw-dl-tile {
    min-height: 82px;
    border-left: 0;
    border-top: 1px solid var(--line);
  }
  .aw-dl-tile:first-child {
    border-top: 0;
  }
  .aw-apt-sys-head,
  .aw-apt-sys-foot {
    display: grid;
    justify-content: stretch;
  }
  .aw-apt-sys-foot a {
    width: fit-content;
  }
  .aw-apt-plate {
    min-height: 360px;
  }
  .aw-apt-core {
    width: 92px;
    height: 92px;
  }
  .aw-apt-core img {
    width: 50px;
    height: 50px;
  }
  .aw-apt-chip {
    min-width: min(156px, calc(100% - 36px));
  }
  .aw-chip-addr { left: 16px; top: 18px; }
  .aw-chip-move { right: 16px; top: 88px; }
  .aw-chip-assets { left: 16px; bottom: 92px; }
  .aw-chip-apps { right: 16px; bottom: 22px; }
  .aw-chip-explorer { left: 16px; bottom: 158px; transform: none; }
  .aw-chip-explorer:hover { transform: translateY(-2px); }
}

@media (max-width: 460px) {
  .aw-hact .aw-btn-dk {
    display: none;
  }
  .aw-rel-stamp strong {
    font-size: 22px;
  }
}

.aw-hshell {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}
.aw-brand { justify-self: start; }
.aw-dnav { justify-self: center; }
.aw-hact { justify-self: end; }

.aw-inst-panel {
  display: flex;
  flex-direction: column;
}
.aw-verify {
  margin-top: auto;
}
.aw-dl-tile {
  min-height: 152px;
  display: grid;
  place-items: center;
  align-content: center;
  justify-items: center;
  justify-content: center;
  gap: 18px;
  text-align: center;
}
.aw-os-ico {
  width: 92px;
  height: 92px;
  display: block;
  background: var(--os-icon, none) center / contain no-repeat;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  mask: none;
  -webkit-mask: none;
}
.aw-dl-tile strong { margin-inline: auto; }
.aw-dl-tile:hover { transform: none; }


.aw-prod-card,
.aw-prod-card:hover {
  transform: none;
  box-shadow: inset 0 -64px 0 rgba(213, 250, 211, 0.45), 0 16px 36px rgba(15, 14, 11, 0.08);
}
.aw-prod-card { transition: none; }

.aw-apt-sys { min-height: 390px; }
.aw-apt-plate {
  min-height: 286px;
  background-image:
    linear-gradient(rgba(15,14,11,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15,14,11,0.035) 1px, transparent 1px);
  background-size: 32px 32px;
  box-shadow: inset 0 26px 42px rgba(249,249,240,0.42), inset 0 -32px 50px rgba(213,250,211,0.82);
}
.aw-apt-plate::before,
.aw-apt-plate::after {
  position: absolute;
  pointer-events: none;
  z-index: 0;
}
.aw-apt-plate::before {
  inset: 0;
  background:
    radial-gradient(circle at 50% 50%, rgba(213,250,211,0.06) 0 22%, rgba(213,250,211,0.56) 48%, rgba(213,250,211,0.92) 100%),
    linear-gradient(90deg, rgba(213,250,211,0.86), rgba(213,250,211,0.08) 30%, rgba(213,250,211,0.08) 70%, rgba(213,250,211,0.86));
}
.aw-apt-plate::after {
  inset: 18px;
  border: 1px solid rgba(15,14,11,0.11);
  border-radius: 22px;
  box-shadow: inset 0 0 0 1px rgba(249,249,240,0.32);
}
.aw-apt-core,
.aw-apt-chip { z-index: 1; }
.aw-apt-chip,
.aw-apt-chip:hover,
.aw-chip-explorer:hover {
  transform: none;
  background: var(--cream);
  transition: none;
}
.aw-chip-addr { left: 26px; top: 34px; }
.aw-chip-move { right: 28px; top: 38px; }
.aw-chip-assets { left: 42px; bottom: 44px; }
.aw-chip-apps { right: 44px; bottom: 44px; }
.aw-chip-explorer { bottom: 30px; min-width: 150px; }

.aw-res-braid::before { display: none; }
.aw-res-row a { transition: none; }
.aw-res-row a:hover {
  transform: none;
  background: var(--cream);
  color: var(--ink);
}

@media (max-width: 1040px) {
  .aw-hshell {
    display: flex;
  }
}

@media (max-width: 760px) {
  .aw-dl-tile {
    min-height: 116px;
  }

  .aw-os-ico {
    width: 72px;
    height: 72px;
  }

  .aw-apt-sys {
    min-height: 460px;
  }

  .aw-apt-plate {
    min-height: 380px;
  }

  .aw-apt-chip,
  .aw-apt-chip:hover,
  .aw-chip-explorer:hover {
    transform: none;
  }

  .aw-chip-addr {
    left: 16px;
    top: 22px;
  }

  .aw-chip-move {
    right: 16px;
    top: 102px;
  }

  .aw-chip-explorer {
    left: 16px;
    bottom: 176px;
  }

  .aw-chip-assets {
    left: 16px;
    bottom: 96px;
  }

  .aw-chip-apps {
    right: 16px;
    bottom: 22px;
  }

}

.aw-os-ico {
  border: 0;
  box-shadow: none;
}

.aw-stats-ban {
  padding: 0;
  background: var(--ink);
  color: var(--cream);
}

.aw-stats-ban-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  min-height: 138px;
  border-left: 1px solid rgba(249, 249, 240, 0.18);
  border-right: 1px solid rgba(249, 249, 240, 0.18);
}

.aw-ban-stat {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 138px;
  padding: 18px 20px;
  border-right: 1px solid rgba(249, 249, 240, 0.18);
}

.aw-ban-stat:last-child {
  border-right: 0;
}

.aw-ban-stat span {
  margin-bottom: auto;
  color: rgba(249, 249, 240, 0.52);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.aw-ban-stat strong {
  margin-bottom: 7px;
  color: var(--mint);
  font-size: clamp(40px, 5.4vw, 70px);
  line-height: 0.86;
  letter-spacing: -0.085em;
  font-weight: 850;
}

.aw-ban-stat p {
  margin: 0;
  color: rgba(249, 249, 240, 0.68);
  font-size: 13px;
  line-height: 1.25;
  letter-spacing: -0.01em;
}

@media (max-width: 760px) {
  .aw-stats-ban-inner {
    grid-template-columns: 1fr;
  }

  .aw-ban-stat {
    min-height: 112px;
    border-right: 0;
    border-top: 1px solid rgba(249, 249, 240, 0.18);
  }

  .aw-ban-stat:first-child {
    border-top: 0;
  }

  .aw-ban-stat strong {
    font-size: 48px;
  }
}




.aw-sec-faq {
  background: var(--ink);
  color: var(--cream);
}

.aw-faq-simple {
  max-width: 980px;
}

.aw-faq-head {
  max-width: 720px;
  margin: 0 auto 34px;
  text-align: center;
}

.aw-faq-head h2 {
  margin-bottom: 12px;
  font-size: clamp(31px, 3.8vw, 48px);
  line-height: 0.94;
  letter-spacing: -0.07em;
  font-weight: 850;
}

.aw-faq-head p:not(.aw-eyebrow) {
  max-width: 560px;
  margin: 0 auto;
  color: var(--dark-soft);
  line-height: 1.45;
  letter-spacing: -0.02em;
}

.aw-faq-list {
  width: 100%;
  border-top: 1px solid var(--line-dark);
}

.aw-faq-list details {
  border-bottom: 1px solid var(--line-dark);
}

.aw-faq-list summary {
  cursor: pointer;
  list-style: none;
  position: relative;
  padding: 22px 42px 22px 0;
  color: var(--cream);
  font-size: clamp(18px, 1.7vw, 19px);
  line-height: 1.1;
  font-weight: 600;
  letter-spacing: -0.035em;
}

.aw-faq-list summary::-webkit-details-marker {
  display: none;
}

.aw-faq-list summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 22px;
  color: var(--mint);
  font-size: 21px;
  line-height: 1;
  font-weight: 520;
}

.aw-faq-list details[open] summary::after {
  content: "−";
}

.aw-faq-list p {
  max-width: 720px;
  margin: -6px 0 22px;
  color: var(--dark-soft);
  line-height: 1.48;
  letter-spacing: -0.015em;
}

@media (max-width: 760px) {
  .aw-faq-head {
    margin-bottom: 24px;
  }

  .aw-faq-list summary {
    padding: 18px 34px 18px 0;
  }

  .aw-faq-list summary::after {
    top: 18px;
  }
}



.aw-ftr {
  padding: 28px 0 24px;
  background: var(--mint);
  color: var(--ink);
}

.aw-ftr-simple {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  min-height: 244px;
  padding: 0;
  border-radius: 30px;
  overflow: hidden;
  font-weight: 600;
}

.aw-ftr-top {
  min-height: 82px;
  display: grid;
  place-items: center;
  padding: 18px 22px 10px;
}

.aw-ftr-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: 280px;
}

.aw-ftr-logo img {
  width: min(230px, 48vw);
  height: auto;
  object-fit: contain;
}

.aw-ftr-map.aw-ftr-nav {
  min-height: 104px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  padding: 12px 22px 28px;
}

.aw-ftr-nav a {
  position: relative;
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  border: 1px solid transparent;
  border-radius: 12px;
  background: transparent;
  color: rgba(15, 14, 11, 0.82);
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.025em;
  text-decoration: none;
  transition:
    color 150ms ease,
    background 150ms ease,
    border-color 150ms ease,
    box-shadow 150ms ease;
}

.aw-ftr-nav a + a {
  margin-left: 28px;
}

.aw-ftr-nav a + a::before {
  content: "";
  position: absolute;
  left: -17px;
  top: 50%;
  width: 5px;
  height: 5px;
  border: 2px solid var(--ink);
  opacity: 0.6;
  border-radius: 999px;
  transform: translateY(-50%);
  background: transparent;
}

.aw-ftr-nav a:hover,
.aw-ftr-nav a:focus-visible {
  color: var(--ink);
  box-shadow: inset 0 -8px 0 rgba(213, 250, 211, 0.42);
  text-decoration: none;
  outline: none;
}

.aw-ftr-nav a:active {
  background: rgba(249, 249, 240, 0.72);
  box-shadow: inset 0 -5px 0 rgba(213, 250, 211, 0.34);
}

.aw-ftr-simple .aw-ftr-bottom {
  min-height: 58px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 18px;
  margin-top: 0;
  padding: 14px 20px;
  border-top: 1px solid var(--ink);
  color: rgba(15, 14, 11, 0.70);
  font-size: 13.5px;
}

.aw-ftr-support {
  justify-self: start;
  color: rgba(15, 14, 11, 0.74);
  font-weight: 780;
  letter-spacing: -0.02em;
  text-decoration: none;
  transition: opacity 160ms ease;
}

.aw-ftr-support:hover,
.aw-ftr-support:focus-visible {
  opacity: 0.58;
  text-decoration: none;
  outline: none;
}

.aw-ftr-legal {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.aw-ftr-legal a {
  color: rgba(15, 14, 11, 0.74);
  font-weight: 600;
  text-decoration: none;
  transition: opacity 160ms ease;
}

.aw-ftr-legal a:hover,
.aw-ftr-legal a:focus-visible {
  opacity: 0.58;
  text-decoration: none;
  outline: none;
}

@media (max-width: 1040px) {
  .aw-ftr-nav a {
    font-size: 15px;
  }

  .aw-ftr-nav a + a {
    margin-left: 24px;
  }

  .aw-ftr-nav a + a::before {
    left: -15px;
  }
}

@media (max-width: 760px) {
  .aw-ftr {
    padding: 24px 0 22px;
  }

  .aw-ftr-simple {
    min-height: 0;
    border-radius: 24px;
  }

  .aw-ftr-top {
    min-height: 76px;
    padding: 18px 18px 8px;
  }

  .aw-ftr-map.aw-ftr-nav {
    min-height: 0;
    gap: 10px 0;
    padding: 12px 18px 22px;
  }

  .aw-ftr-nav a {
    min-height: 36px;
    font-size: 15px;
  }

  .aw-ftr-nav a + a {
    margin-left: 22px;
  }

  .aw-ftr-nav a + a::before {
    left: -14px;
    width: 6px;
    height: 6px;
  }

  .aw-ftr-simple .aw-ftr-bottom {
    min-height: 0;
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    padding: 14px 18px;
  }

  .aw-ftr-support,
  .aw-ftr-legal {
    justify-self: center;
  }
}

@media (max-width: 460px) {
  .aw-ftr-logo img {
    width: min(190px, 70vw);
  }

  .aw-ftr-nav a + a {
    margin-left: 18px;
  }

  .aw-ftr-nav a + a::before {
    left: -12px;
  }

  .aw-ftr-legal {
    gap: 10px;
  }
}

:root {
  --aptos-ease-mask: cubic-bezier(.76, 0, .24, 1);
  --aptos-hover-tint: rgba(15, 14, 11, 0.055);
  --aptos-hover-tint-dark: rgba(249, 249, 240, 0.10);
}

@keyframes text-mask-out-light {
  0% { clip-path: polygon(0 0, 110% 0, 110% 200%, 0 200%); translate: 0; }
  to { clip-path: polygon(110% 0, 110% 0, 110% 200%, 110% 200%); translate: 50px; }
}

@keyframes text-mask-in-light {
  0% { clip-path: polygon(0 0, 0 0, 0 200%, 0 200%); translate: 0; }
  50% { clip-path: polygon(0 0, 110% 0, 110% 200%, 0 200%); translate: 50px; }
  to { clip-path: polygon(0 0, 110% 0, 110% 200%, 0 200%); translate: 0; }
}

@keyframes text-mask-out {
  0% { clip-path: polygon(0 0, 110% 0, 110% 200%, 0 200%); translate: 0; }
  to { clip-path: polygon(110% 0, 110% 0, 110% 200%, 110% 200%); translate: 50px; }
}

@keyframes text-mask-in {
  0% { clip-path: polygon(0 0, 0 0, 0 200%, 0 200%); translate: 0; }
  50% { clip-path: polygon(0 0, 110% 0, 110% 200%, 0 200%); translate: 50px; }
  to { clip-path: polygon(0 0, 110% 0, 110% 200%, 0 200%); translate: 0; }
}

@keyframes text-line-out {
  0% { clip-path: none; opacity: 1; translate: 0; }
  to { clip-path: none; opacity: 0; translate: 0 18px; }
}

@keyframes text-line-in {
  0% { clip-path: none; opacity: 0; translate: 0 -18px; }
  to { clip-path: none; opacity: 1; translate: 0; }
}

@keyframes text-hero-mask-out {
  0% { clip-path: polygon(0 0, 110% 0, 110% 200%, 0 200%); translate: 0; }
  to { clip-path: polygon(110% 0, 110% 0, 110% 200%, 110% 200%); translate: 50px; }
}

@keyframes text-hero-mask-in {
  0% { clip-path: polygon(0 0, 0 0, 0 200%, 0 200%); translate: 50px; }
  50% { clip-path: polygon(0 0, 110% 0, 110% 200%, 0 200%); translate: 50px; }
  to { clip-path: polygon(0 0, 110% 0, 110% 200%, 0 200%); translate: 0; }
}

@keyframes appear-mask-in-from-right {
  0% { clip-path: polygon(100% 0, 100% 0, 100% 200%, 100% 200%); translate: 0; }
  14% { clip-path: polygon(0 0, 100% 0, 100% 200%, 0 200%); translate: 0; }
  42% { clip-path: polygon(0 0, 100% 0, 100% 200%, 0 200%); translate: var(--appear-shift, 46px); }
  99% { clip-path: polygon(0 0, 100% 0, 100% 200%, 0 200%); translate: 0; }
  to { clip-path: none; translate: 0; }
}

@keyframes fade-in-soft {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes appear-fade-soft {
  0% {
    opacity: 0;
    transform: scale(.92);
    filter: blur(5px);
  }

  62% {
    opacity: .86;
    transform: scale(.985);
    filter: blur(.8px);
  }

  to {
    opacity: 1;
    transform: scale(1);
    filter: blur(0);
  }
}

@keyframes appear-mask-in-from-left {
  0% { clip-path: polygon(0 0, 0 0, 0 200%, 0 200%); translate: 0; }
  14% { clip-path: polygon(0 0, 100% 0, 100% 200%, 0 200%); translate: 0; }
  42% { clip-path: polygon(0 0, 100% 0, 100% 200%, 0 200%); translate: var(--appear-shift-left, -46px); }
  99% { clip-path: polygon(0 0, 100% 0, 100% 200%, 0 200%); translate: 0; }
  to { clip-path: none; translate: 0; }
}

@keyframes appear-mask-in-from-bottom {
  0% { clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0 100%); translate: 0; }
  14% { clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%); translate: 0; }
  42% { clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%); translate: 0 var(--appear-shift-y, 30px); }
  99% { clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%); translate: 0; }
  to { clip-path: none; translate: 0; }
}

@keyframes appear-mask-in-from-right-compact {
  0% { clip-path: polygon(100% 0, 100% 0, 100% 200%, 100% 200%); translate: 0; }
  14% { clip-path: polygon(0 0, 100% 0, 100% 200%, 0 200%); translate: 0; }
  42% { clip-path: polygon(0 0, 100% 0, 100% 200%, 0 200%); translate: 28px; }
  99% { clip-path: polygon(0 0, 100% 0, 100% 200%, 0 200%); translate: 0; }
  to { clip-path: none; translate: 0; }
}

@keyframes micro-field-pulse {
  0% {
    visibility: visible;
    opacity: 0;
    scale: .8;
  }

  32% {
    visibility: visible;
    opacity: 1;
    scale: 1;
  }

  70% {
    visibility: visible;
    opacity: .38;
    scale: 1.03;
  }

  to {
    visibility: hidden;
    opacity: 0;
    scale: 1.08;
  }
}

@keyframes micro-shift-pulse {
  0%, to {
    transform: translate3d(0, 0, 0) scale(1);
  }

  38% {
    transform: translate3d(var(--micro-pulse-x, 0), var(--micro-pulse-y, 0), 0) scale(var(--micro-pulse-scale, 1));
  }

  68% {
    transform: translate3d(var(--micro-rebound-x, 0), var(--micro-rebound-y, 0), 0) scale(1);
  }
}

@keyframes micro-line-pulse {
  0%, to {
    transform: translateX(0) scaleX(1);
  }

  38% {
    transform: translateX(var(--micro-pulse-x, 0)) scaleX(var(--micro-pulse-scale-x, 1));
  }

  68% {
    transform: translateX(var(--micro-rebound-x, 0)) scaleX(1);
  }
}

@keyframes micro-arrow-pulse {
  0%, to {
    transform: translate3d(0, 0, 0);
    background: var(--cream);
    color: var(--ink);
  }

  38% {
    transform: translate3d(-8px, -8px, 0);
    background: var(--ink);
    color: var(--mint);
  }

  68% {
    transform: translate3d(2px, 2px, 0);
    background: var(--cream);
    color: var(--ink);
  }
}

@keyframes parallax-out {
  0% { transform: translateY(0); }
  to { transform: translateY(50%); }
}

@keyframes parallax-in {
  0% { transform: translateY(20%); }
  to { transform: translateY(0); }
}

.aw-js [data-aw-appear-mask] {
  clip-path: polygon(100% 0, 100% 0, 100% 200%, 100% 200%);
  will-change: clip-path, translate;
}

.aw-js [data-aw-appear-dir="left"] [data-aw-appear-mask] {
  clip-path: polygon(0 0, 0 0, 0 200%, 0 200%);
}

.aw-js [data-aw-appear-dir="up"] [data-aw-appear-mask] {
  clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0 100%);
}

.aw-js [data-aw-appear-lines] [data-aw-appear-mask] {
  display: block;
}

.aw-js [data-aw-fade] {
  opacity: 0;
  transform: scale(.94);
  filter: blur(4px);
  will-change: opacity, transform, filter;
}

.aw-js [data-aw-appear-fade] {
  display: block;
  opacity: 0;
  transform: scale(.92);
  transform-origin: left center;
  filter: blur(5px);
  will-change: opacity, transform, filter;
}

.aw-js #aw-hero-ttl [data-aw-appear-fade] {
  transform-origin: center;
}

.aw-js [data-aw-appear-lines] h2 [data-aw-appear-mask] {
  --appear-shift: 34px;
  --appear-shift-left: -34px;
}

.aw-js [data-aw-appear-lines] h2 [data-aw-appear-mask]:nth-child(2) {
  --appear-shift: 54px;
  --appear-shift-left: -54px;
}

.aw-js #aw-hero-ttl [data-aw-appear-mask] {
  --appear-shift: 42px;
}

.aw-anim-mask-r {
  animation: 1600ms appear-mask-in-from-right forwards var(--aptos-ease-mask);
}

.aw-anim-mask-l {
  animation: 1600ms appear-mask-in-from-left forwards var(--aptos-ease-mask);
}

.aw-anim-mask-b {
  animation: 1400ms appear-mask-in-from-bottom forwards var(--aptos-ease-mask);
}

.aw-txt-mask-out-lite {
  animation: 1s text-mask-out-light forwards var(--aptos-ease-mask);
}

.aw-txt-mask-in-lite {
  animation: 2s text-mask-in-light forwards var(--aptos-ease-mask);
}

.aw-txt-mask-out {
  animation: 1s text-mask-out forwards var(--aptos-ease-mask);
}

.aw-txt-mask-in {
  animation: 2s text-mask-in forwards var(--aptos-ease-mask);
}

.aw-txt-line-out {
  animation: 420ms text-line-out forwards var(--aptos-ease-mask);
}

.aw-txt-line-in {
  animation: 650ms text-line-in forwards var(--aptos-ease-mask);
}

.aw-txt-hero-out {
  animation: 650ms text-hero-mask-out forwards var(--aptos-ease-mask);
}

.aw-txt-hero-in {
  animation: 1200ms text-hero-mask-in forwards var(--aptos-ease-mask);
}

.aw-fade-in {
  animation: 1150ms appear-fade-soft forwards cubic-bezier(.16, 1, .3, 1);
}

.aw-anim-fade {
  animation: 1150ms appear-fade-soft forwards cubic-bezier(.16, 1, .3, 1);
}

.aw-d80 {
  animation-delay: 80ms;
}

.aw-d120 {
  animation-delay: 120ms;
}

.aw-d160 {
  animation-delay: 160ms;
}

.aw-d200 {
  animation-delay: 200ms;
}

.aw-d240 {
  animation-delay: 240ms;
}

.aw-js [data-aw-appear-lines] .aw-d80 {
  animation-delay: 100ms;
}

.aw-js [data-aw-appear-lines] .aw-d120 {
  animation-delay: 180ms;
}

.aw-js [data-aw-appear-lines] .aw-d160 {
  animation-delay: 360ms;
}

.aw-js [data-aw-appear-lines] .aw-d200 {
  animation-delay: 440ms;
}

.aw-js [data-aw-appear-lines] .aw-d240 {
  animation-delay: 520ms;
}

.aw-txt-hide {
  visibility: hidden;
  pointer-events: none;
}

.aw-txt-abs {
  position: absolute;
  inset: 0;
}

[data-aw-txt] {
  position: relative;
  display: inline-block;
  vertical-align: baseline;
}

[data-aw-txt-opt] {
  display: block;
  transform: translateZ(0);
  will-change: clip-path, translate;
}

.aw-head-ln {
  display: block;
}

[data-aw-scr-text] {
  display: inline;
}

.aw-btn [data-aw-scr-text],
.aw-dl-card strong [data-aw-scr-text] {
  display: inline-block;
  inline-size: var(--scramble-text-width, auto);
  max-inline-size: 100%;
  overflow: hidden;
  text-align: center;
  white-space: nowrap;
}

.aw-anim-title-opt {
  color: var(--ink);
  font-weight: 500;
}

#aw-hero-ttl [data-aw-txt] {
  display: block;
  width: 100%;
}

#aw-hero-ttl [data-aw-txt-opt] {
  font-variation-settings: inherit;
  font-weight: inherit;
}

.aw-btn[data-aw-scr] {
  min-inline-size: min(var(--scramble-root-width, 0px), 100%);
}

.aw-sec-head > [data-aw-appear-mask],
.aw-res-head > [data-aw-appear-mask] {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 26px;
  align-items: inherit;
}

.aw-dl-head > [data-aw-appear-mask],
.aw-sec-head [data-aw-appear-mask],
.aw-res-head [data-aw-appear-mask],
.aw-apt-left [data-aw-appear-mask] {
  display: block;
}

.aw-prod-card > [data-aw-appear-mask] {
  display: flex;
  flex: 1;
  min-height: 100%;
  flex-direction: column;
}

.aw-ban-stat-lines {
  display: flex;
  flex: 1;
  min-height: 100%;
  flex-direction: column;
  margin: 0;
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  letter-spacing: normal;
  text-transform: none;
}

.aw-ban-stat-lines > [data-aw-appear-mask] {
  display: block;
}

.aw-ban-stat-lines > .aw-stat-kick {
  margin-bottom: auto;
  color: rgba(249, 249, 240, 0.52);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.aw-prod-card.aw-micro-run .aw-micro::before,
.aw-prod-card:hover .aw-micro::before,
.aw-prod-card:focus-within .aw-micro::before {
  animation: 920ms micro-field-pulse both var(--aptos-ease-mask);
}

.aw-prod-card.aw-micro-run .aw-micro-acct .aw-addr,
.aw-prod-card:hover .aw-micro-acct .aw-addr,
.aw-prod-card:focus-within .aw-micro-acct .aw-addr {
  --micro-pulse-x: 14px;
  --micro-rebound-x: -3px;
  animation: 1020ms micro-shift-pulse var(--aptos-ease-mask);
}

.aw-prod-card.aw-micro-run .aw-micro-acct .aw-wide,
.aw-prod-card:hover .aw-micro-acct .aw-wide,
.aw-prod-card:focus-within .aw-micro-acct .aw-wide {
  --micro-pulse-x: 11px;
  --micro-rebound-x: -2px;
  --micro-pulse-scale-x: .74;
  transform-origin: left;
  animation: 1020ms micro-line-pulse var(--aptos-ease-mask);
}

.aw-prod-card.aw-micro-run .aw-micro-acct .aw-short,
.aw-prod-card:hover .aw-micro-acct .aw-short,
.aw-prod-card:focus-within .aw-micro-acct .aw-short {
  --micro-pulse-x: 11px;
  --micro-rebound-x: -2px;
  --micro-pulse-scale-x: 1.38;
  transform-origin: left;
  animation: 1080ms micro-line-pulse var(--aptos-ease-mask);
}

.aw-prod-card.aw-micro-run .aw-micro-acct .aw-chip,
.aw-prod-card:hover .aw-micro-acct .aw-chip,
.aw-prod-card:focus-within .aw-micro-acct .aw-chip {
  --micro-pulse-x: -14px;
  --micro-rebound-x: 3px;
  animation: 1020ms micro-shift-pulse var(--aptos-ease-mask);
}

.aw-prod-card.aw-micro-run .aw-micro-apt .aw-amt,
.aw-prod-card:hover .aw-micro-apt .aw-amt,
.aw-prod-card:focus-within .aw-micro-apt .aw-amt {
  --micro-pulse-x: 12px;
  --micro-rebound-x: -3px;
  --micro-pulse-scale: .97;
  animation: 1050ms micro-shift-pulse var(--aptos-ease-mask);
}

.aw-prod-card.aw-micro-run .aw-micro-apt .aw-to,
.aw-prod-card:hover .aw-micro-apt .aw-to,
.aw-prod-card:focus-within .aw-micro-apt .aw-to {
  --micro-pulse-x: -12px;
  --micro-rebound-x: 3px;
  animation: 1050ms micro-shift-pulse var(--aptos-ease-mask);
}

.aw-prod-card.aw-micro-run .aw-micro-apt .aw-net,
.aw-prod-card:hover .aw-micro-apt .aw-net,
.aw-prod-card:focus-within .aw-micro-apt .aw-net {
  --micro-pulse-x: 9px;
  --micro-rebound-x: -2px;
  animation: 960ms micro-shift-pulse var(--aptos-ease-mask);
}

.aw-prod-card.aw-micro-run .aw-micro-apt .aw-fee,
.aw-prod-card:hover .aw-micro-apt .aw-fee,
.aw-prod-card:focus-within .aw-micro-apt .aw-fee {
  --micro-pulse-x: -9px;
  --micro-rebound-x: 2px;
  animation: 960ms micro-shift-pulse var(--aptos-ease-mask);
}

.aw-prod-card.aw-micro-run .aw-micro-assets .aw-row-apt,
.aw-prod-card:hover .aw-micro-assets .aw-row-apt,
.aw-prod-card:focus-within .aw-micro-assets .aw-row-apt {
  --micro-pulse-x: 10px;
  --micro-rebound-x: -2px;
  --micro-pulse-scale-x: 1.24;
  transform-origin: left;
  animation: 1020ms micro-line-pulse var(--aptos-ease-mask);
}

.aw-prod-card.aw-micro-run .aw-micro-assets .aw-row-fa,
.aw-prod-card:hover .aw-micro-assets .aw-row-fa,
.aw-prod-card:focus-within .aw-micro-assets .aw-row-fa {
  --micro-pulse-x: 16px;
  --micro-rebound-x: -3px;
  --micro-pulse-scale-x: .88;
  transform-origin: left;
  animation: 1080ms micro-line-pulse var(--aptos-ease-mask);
}

.aw-prod-card.aw-micro-run .aw-micro-assets .aw-asset-tile,
.aw-prod-card:hover .aw-micro-assets .aw-asset-tile,
.aw-prod-card:focus-within .aw-micro-assets .aw-asset-tile {
  --micro-pulse-x: -12px;
  --micro-pulse-y: 9px;
  --micro-rebound-x: 3px;
  --micro-rebound-y: -2px;
  --micro-pulse-scale: .9;
  animation: 1120ms micro-shift-pulse var(--aptos-ease-mask);
}

.aw-prod-card.aw-micro-run .aw-micro-assets .aw-asset-lbl,
.aw-prod-card:hover .aw-micro-assets .aw-asset-lbl,
.aw-prod-card:focus-within .aw-micro-assets .aw-asset-lbl {
  --micro-pulse-x: 12px;
  --micro-rebound-x: -2px;
  animation: 980ms micro-shift-pulse var(--aptos-ease-mask);
}

.aw-prod-card.aw-micro-run .aw-micro-apps .aw-dapp-panel,
.aw-prod-card:hover .aw-micro-apps .aw-dapp-panel,
.aw-prod-card:focus-within .aw-micro-apps .aw-dapp-panel {
  --micro-pulse-x: 12px;
  --micro-pulse-y: 7px;
  --micro-rebound-x: -3px;
  --micro-rebound-y: -1px;
  animation: 1080ms micro-shift-pulse var(--aptos-ease-mask);
}

.aw-prod-card.aw-micro-run .aw-micro-apps .aw-wallet-panel,
.aw-prod-card:hover .aw-micro-apps .aw-wallet-panel,
.aw-prod-card:focus-within .aw-micro-apps .aw-wallet-panel {
  --micro-pulse-x: -12px;
  --micro-pulse-y: -7px;
  --micro-rebound-x: 3px;
  --micro-rebound-y: 1px;
  animation: 1080ms micro-shift-pulse var(--aptos-ease-mask);
}

.aw-prod-card.aw-micro-run .aw-micro-apps .aw-conn,
.aw-prod-card:hover .aw-micro-apps .aw-conn,
.aw-prod-card:focus-within .aw-micro-apps .aw-conn {
  --micro-pulse-scale-x: 1.42;
  transform-origin: left;
  animation: 1080ms micro-line-pulse var(--aptos-ease-mask);
}

.aw-prod-card.aw-micro-run .aw-micro-apps .aw-adapt,
.aw-prod-card:hover .aw-micro-apps .aw-adapt,
.aw-prod-card:focus-within .aw-micro-apps .aw-adapt {
  --micro-pulse-x: 14px;
  --micro-rebound-x: -3px;
  animation: 980ms micro-shift-pulse var(--aptos-ease-mask);
}

.aw-prod-card.aw-micro-run .aw-micro-review span:nth-child(1),
.aw-prod-card:hover .aw-micro-review span:nth-child(1),
.aw-prod-card:focus-within .aw-micro-review span:nth-child(1) {
  --micro-pulse-x: 14px;
  --micro-rebound-x: -3px;
  animation: 980ms micro-shift-pulse var(--aptos-ease-mask);
}

.aw-prod-card.aw-micro-run .aw-micro-review span:nth-child(2),
.aw-prod-card:hover .aw-micro-review span:nth-child(2),
.aw-prod-card:focus-within .aw-micro-review span:nth-child(2) {
  --micro-pulse-x: -10px;
  --micro-rebound-x: 2px;
  animation: 1080ms micro-shift-pulse var(--aptos-ease-mask);
}

.aw-prod-card.aw-micro-run .aw-micro-review span:nth-child(3),
.aw-prod-card:hover .aw-micro-review span:nth-child(3),
.aw-prod-card:focus-within .aw-micro-review span:nth-child(3) {
  --micro-pulse-x: 10px;
  --micro-rebound-x: -2px;
  animation: 1050ms micro-shift-pulse var(--aptos-ease-mask);
}

.aw-prod-card.aw-micro-run .aw-micro-explorer .aw-hash,
.aw-prod-card:hover .aw-micro-explorer .aw-hash,
.aw-prod-card:focus-within .aw-micro-explorer .aw-hash {
  --micro-pulse-x: 12px;
  --micro-rebound-x: -3px;
  animation: 1050ms micro-shift-pulse var(--aptos-ease-mask);
}

.aw-prod-card.aw-micro-run .aw-micro-explorer .aw-status,
.aw-prod-card:hover .aw-micro-explorer .aw-status,
.aw-prod-card:focus-within .aw-micro-explorer .aw-status {
  --micro-pulse-x: 10px;
  --micro-rebound-x: -2px;
  animation: 980ms micro-shift-pulse var(--aptos-ease-mask);
}

.aw-prod-card.aw-micro-run .aw-micro-explorer .aw-arr,
.aw-prod-card:hover .aw-micro-explorer .aw-arr,
.aw-prod-card:focus-within .aw-micro-explorer .aw-arr {
  animation: 1150ms micro-arrow-pulse var(--aptos-ease-mask);
}

.aw-btn {
  --button-hover-fill: var(--stone);
  position: relative;
  isolation: isolate;
  overflow: clip;
  transform: translateZ(0);
  transition:
    border-color 150ms ease,
    color 150ms ease,
    background-color 150ms ease;
}

.aw-btn > span {
  position: relative;
  z-index: 1;
}

.aw-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: inherit;
  background: var(--button-hover-fill);
  scale: 0% 100%;
  transform-origin: right;
  transition:
    scale 300ms var(--aptos-ease-mask),
    transform-origin 0s linear 300ms;
}

.aw-btn:hover::before,
.aw-btn:focus-visible::before {
  scale: 100% 100%;
  transform-origin: left;
  transition:
    scale 300ms var(--aptos-ease-mask),
    transform-origin 0s;
}

.aw-btn-dk {
  --button-hover-fill: var(--stone);
}

.aw-btn-dk:hover,
.aw-btn-dk:focus-visible {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--cream);
}

.aw-btn-ln {
  --button-hover-fill: transparent;
}

.aw-btn-ln::before {
  display: none;
}

.aw-btn-ln:hover,
.aw-btn-ln:focus-visible {
  background: rgba(249, 249, 240, 0.25);
  border-color: var(--ink);
  color: var(--ink);
}

.aw-navgrp::after {
  content: "";
  position: absolute;
  top: 100%;
  left: -24px;
  right: -24px;
  height: 24px;
}

.aw-navdd {
  visibility: hidden;
  transform: translate(-50%, 0) scale(.95);
  transform-origin: top center;
  transition:
    opacity 150ms ease,
    transform 150ms ease,
    visibility 150ms ease;
}

.aw-navgrp:hover .aw-navdd,
.aw-navgrp:focus-within .aw-navdd {
  visibility: visible;
  transform: translate(-50%, 0) scale(1);
}

.aw-navdd a,
.aw-mpanel a,
.aw-res-row a,
.aw-prod-card,
.aw-dl-card {
  position: relative;
  isolation: isolate;
  overflow: clip;
}

.aw-navdd a::after,
.aw-mpanel a::after,
.aw-res-row a::after,
.aw-prod-card::after,
.aw-dl-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  visibility: hidden;
  opacity: 0;
  scale: .8;
  background: var(--aptos-hover-tint);
  transition:
    opacity 150ms ease,
    scale 150ms ease,
    visibility 150ms ease;
}

.aw-apt-panel .aw-prod-card::after {
  background: var(--aptos-hover-tint-dark);
}

.aw-navdd a:hover::after,
.aw-navdd a:focus-visible::after,
.aw-mpanel a:hover::after,
.aw-mpanel a:focus-visible::after,
.aw-res-row a:hover::after,
.aw-res-row a:focus-visible::after,
.aw-prod-card:hover::after,
.aw-dl-card:hover::after,
.aw-dl-card:focus-visible::after {
  visibility: visible;
  opacity: 1;
  scale: 1;
}

.aw-navdd a,
.aw-mpanel a,
.aw-res-row a,
.aw-prod-card > *,
.aw-dl-card > * {
  position: relative;
  z-index: 1;
}

.aw-navdd a:hover,
.aw-mpanel a:hover {
  background: transparent;
}

.aw-prod-card {
  transition:
    border-color 150ms ease,
    background-color 150ms ease,
    box-shadow 150ms ease;
}

.aw-prod-card:hover {
  border-color: var(--ink);
  background: var(--cream);
  box-shadow:
    inset 0 -64px 0 rgba(213, 250, 211, 0.68),
    0 16px 36px rgba(15, 14, 11, 0.08);
}

.aw-dl-card {
  transition:
    border-color 150ms ease,
    background-color 150ms ease,
    box-shadow 150ms ease;
}

.aw-dl-card strong {
  position: relative;
  isolation: isolate;
  overflow: clip;
}

.aw-dl-card strong span {
  position: relative;
  z-index: 1;
}

.aw-dl-card strong::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: inherit;
  background: var(--ink);
  scale: 0% 100%;
  transform-origin: right;
  transition: scale 300ms var(--aptos-ease-mask);
}

.aw-dl-card strong::before {
  display: none;
}

.aw-dl-card:hover strong,
.aw-dl-card:focus-visible strong {
  color: var(--ink);
}

.aw-dl-card:hover strong::before,
.aw-dl-card:focus-visible strong::before {
  scale: 0% 100%;
  transform-origin: left;
}

.aw-res-row a {
  transition:
    border-color 150ms ease,
    background-color 150ms ease,
    color 150ms ease;
}

.aw-res-row a:hover {
  background: var(--mint);
}

.aw-apt-chip {
  transition:
    border-color 150ms ease,
    background-color 150ms ease,
    box-shadow 150ms ease;
}

.aw-apt-chip:hover {
  background: var(--mint);
  box-shadow: inset 0 -10px 0 rgba(15, 14, 11, 0.05);
}

.aw-hero-grid,
.aw-hero-cuts {
  animation: linear forwards parallax-out;
  animation-timeline: view();
  animation-range: exit;
}

@media (max-width: 760px) {
  #aw-hero-ttl .aw-anim-title-opt {
    font-size: clamp(23px, 6.6vw, 34px);
    line-height: 1.04;
    letter-spacing: -0.045em;
  }

  #aw-hero-ttl [data-aw-txt] {
    min-height: 1.08em;
  }

  #aw-hero-ttl .aw-anim-mask-r {
    animation-name: appear-mask-in-from-right-compact;
  }

  .aw-sec-head > [data-aw-appear-mask],
  .aw-res-head > [data-aw-appear-mask] {
    display: block;
  }
}

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

  .aw-js [data-aw-appear-mask] {
    clip-path: none;
  }

  .aw-js [data-aw-fade] {
    opacity: 1;
    transform: none;
    filter: none;
  }

  .aw-js [data-aw-appear-fade] {
    opacity: 1;
    transform: none;
    filter: none;
  }

  [data-aw-txt-opt] {
    clip-path: none !important;
    translate: 0 !important;
  }
}
