:root {
  --bg: #f4f6f8;
  --bg-deep: #e9edf1;
  --line: rgba(10, 22, 34, 0.14);
  --text: #09111d;
  --muted: #566171;
  --soft: #7a8492;
  --cyan: #00d0ff;
  --green: #26e3a2;
  --blue: #1d66ff;
  --violet: #6f3bff;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--bg);
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--text);
  font-family:
    "Space Grotesk", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  background: #f4f6f8;
  overflow-x: hidden;
}

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

.site-shell {
  position: relative;
  min-height: 100vh;
  overflow-x: hidden;
}

.site-shell::before,
.site-shell::after {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  content: "";
}

.site-shell::before {
  display: none;
}

.site-shell::after {
  display: none;
}

.site-header,
.hero {
  z-index: 1;
}

.site-header {
  position: fixed;
  top: 0;
  left: 50%;
  z-index: 10;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(28px, 4.6vw, 70px);
  width: min(1280px, calc(100% - 64px));
  height: 88px;
  margin: 0 auto;
  padding: 0 0;
  transform: translateX(-50%);
  transition:
    background 180ms ease,
    box-shadow 180ms ease,
    backdrop-filter 180ms ease,
    padding 180ms ease,
    width 180ms ease;
}

.site-header::after {
  position: absolute;
  right: 104px;
  bottom: 0;
  left: 104px;
  height: 1px;
  background: rgba(9, 17, 29, 0.12);
  opacity: 0.7;
  content: "";
}

.site-header--scrolled {
  width: min(1280px, calc(100% - 32px));
  height: 72px;
  padding: 0 18px 0 20px;
  border: 1px solid rgba(9, 17, 29, 0.08);
  border-top: 0;
  border-radius: 0 0 14px 14px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 18px 50px rgba(20, 31, 43, 0.12);
  backdrop-filter: blur(18px);
}

.site-header--scrolled::after {
  opacity: 0;
}

.brand,
.main-nav,
.header-actions {
  display: flex;
  align-items: center;
}

.brand {
  position: relative;
  gap: 13px;
  min-width: max-content;
  padding-right: 34px;
  font-size: 20px;
  font-weight: 900;
  letter-spacing: 0;
}

.brand::after {
  position: absolute;
  top: 5px;
  right: 0;
  bottom: 5px;
  width: 1px;
  background: rgba(9, 17, 29, 0.16);
  content: "";
}

.brand-mark {
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  filter: drop-shadow(0 12px 24px rgba(0, 168, 117, 0.2));
}

.brand span {
  display: inline-flex;
  align-items: baseline;
  gap: 5px;
  text-transform: uppercase;
}

.brand strong,
.brand em {
  font: inherit;
  font-style: normal;
}

.brand em {
  color: rgba(9, 17, 29, 0.54);
}

.main-nav {
  gap: clamp(26px, 3.2vw, 48px);
  justify-content: flex-start;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.main-nav a {
  position: relative;
  display: block;
  padding: 10px 0;
  color: rgba(9, 17, 29, 0.62);
  transition:
    color 160ms ease,
    opacity 160ms ease;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: 3px;
  left: 0;
  height: 1px;
  background: #09111d;
  opacity: 0;
  transform: scaleX(0.3);
  transform-origin: left;
  transition:
    opacity 160ms ease,
    transform 160ms ease;
  content: "";
}

.main-nav a:hover {
  color: #09111d;
}

.main-nav a:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

.header-actions {
  gap: 0;
  justify-content: flex-end;
  min-width: max-content;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.header-github {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  gap: 8px;
  color: rgba(9, 17, 29, 0.62);
  white-space: nowrap;
  transition: color 160ms ease;
}

.header-github svg {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
  opacity: 0.76;
}

.header-github:hover {
  color: #09111d;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
}

.btn--ghost {
  border-color: rgba(9, 17, 29, 0.18);
  background: rgba(255, 255, 255, 0.2);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.44),
    0 10px 24px rgba(9, 17, 29, 0.06);
  transition:
    border-color 160ms ease,
    background 160ms ease,
    box-shadow 160ms ease;
}

.btn--ghost:hover {
  border-color: rgba(9, 17, 29, 0.32);
  background: rgba(255, 255, 255, 0.3);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.54),
    0 14px 30px rgba(9, 17, 29, 0.08);
}

.btn--primary {
  background: linear-gradient(135deg, #00a875, #1375ff);
  box-shadow: 0 14px 34px rgba(0, 132, 255, 0.24);
}

.hero {
  position: relative;
  display: flex;
  min-height: 800px;
  flex-direction: column;
  justify-content: center;
  padding: 118px 0 48px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.68), rgba(255, 255, 255, 0.54)),
    url("assets/background/hero-fallback.jpg");
  background-position: center bottom;
  background-size: cover;
  overflow: hidden;
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(180deg, rgba(247, 250, 252, 0.38), rgba(247, 250, 252, 0.52)),
    radial-gradient(circle at 50% 30%, rgba(38, 227, 162, 0.08), transparent 34%);
  pointer-events: none;
  content: "";
}

.hero-video {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.92;
  pointer-events: none;
}

.header-dot-grid {
  position: absolute;
  top: 104px;
  left: 50%;
  z-index: 1;
  display: none;
  width: 384px;
  flex-wrap: wrap;
  align-content: center;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
  opacity: 0.18;
  pointer-events: none;
  transform: translateX(calc(-50% + 28px));
}

.header-dot-grid span {
  width: 4px;
  height: 4px;
  flex: 0 0 auto;
  background: #64748b;
  transform: rotate(45deg);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  width: min(1168px, calc(100% - 64px));
  min-height: 512px;
  margin: 0 auto;
  border: 1px solid rgba(10, 22, 34, 0.13);
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.86), rgba(248, 251, 253, 0.74) 56%, rgba(232, 238, 244, 0.58));
  box-shadow: 0 28px 90px rgba(27, 39, 52, 0.12);
  grid-template-columns: minmax(560px, 1.38fr) minmax(330px, 0.82fr);
  isolation: isolate;
}

.hero-grid::before {
  position: relative;
  z-index: 0;
  min-width: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.48)),
    url("assets/background/hero-card.jpg");
  background-position: center;
  background-size: cover;
  content: "";
  grid-column: 1;
  grid-row: 1;
}

.hero-copy,
.hero-visual,
.hero-panels {
  position: relative;
}

.hero-copy {
  z-index: 3;
  grid-column: 1;
  grid-row: 1;
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
  padding: clamp(30px, 5vw, 52px) clamp(220px, 21vw, 292px) clamp(30px, 5vw, 52px)
    clamp(32px, 5vw, 56px);
  background: transparent;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--green);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1 {
  max-width: 560px;
  margin: 0;
  font-size: clamp(44px, 4.2vw, 60px);
  font-weight: 850;
  line-height: 0.98;
  letter-spacing: 0;
}

h1 span {
  display: block;
  white-space: nowrap;
}

.hero-text {
  max-width: 390px;
  margin: 20px 0 0;
  color: #3f4b5b;
  font-size: 17px;
  line-height: 1.55;
}

.download-options {
  display: grid;
  width: min(100%, 470px);
  margin-top: 22px;
  gap: 0;
  grid-template-columns: 1fr 1.34fr 1fr;
  border: 1px solid rgba(9, 17, 29, 0.14);
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(244, 247, 250, 0.56)),
    rgba(255, 255, 255, 0.58);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 18px 44px rgba(31, 43, 56, 0.12);
  overflow: hidden;
}

.download-btn {
  display: flex;
  min-width: 0;
  min-height: 64px;
  align-items: center;
  gap: 10px;
  padding: 0 16px;
  border: 0;
  background: transparent;
}

.download-btn + .download-btn {
  border-left: 1px solid rgba(9, 17, 29, 0.1);
}

.download-icon {
  display: flex;
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
}

.download-icon img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.download-icon--windows img {
  width: 19px;
  height: 19px;
}

.download-btn strong,
.download-btn small {
  display: block;
  min-width: 0;
}

.download-btn strong {
  color: #09111d;
  font-size: 12px;
  font-weight: 900;
  line-height: 1.1;
  white-space: nowrap;
}

.download-btn small {
  margin-top: 4px;
  color: rgba(62, 76, 92, 0.72);
  font-size: 11px;
  font-weight: 750;
  line-height: 1;
}

.hero-visual {
  z-index: 2;
  grid-column: 1;
  grid-row: 1;
  justify-self: end;
  display: grid;
  width: min(48%, 400px);
  height: 100%;
  min-width: 0;
  place-items: center;
  overflow: visible;
  background: radial-gradient(circle at 48% 78%, rgba(29, 102, 255, 0.1), transparent 38%);
  transform: translateX(74px);
}

.glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(22px);
  opacity: 0.82;
}

.glow--cyan {
  right: -68px;
  top: 142px;
  width: 170px;
  height: 92px;
  background: rgba(0, 175, 225, 0.32);
}

.glow--green {
  bottom: 82px;
  left: 12px;
  width: 190px;
  height: 116px;
  background: rgba(38, 227, 162, 0.2);
}

.wallet-screen {
  position: relative;
  width: min(390px, 92%);
  aspect-ratio: 0.78;
  transform: perspective(1100px) rotateY(-18deg) rotateZ(-4deg);
  filter: drop-shadow(0 38px 40px rgba(0, 0, 0, 0.52));
}

.wallet-screen__panel {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 22px;
  border: 1px solid rgba(191, 249, 255, 0.24);
  border-radius: 30px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.15), transparent 22%),
    linear-gradient(155deg, rgba(5, 30, 43, 0.98), rgba(13, 43, 101, 0.98) 54%, rgba(37, 18, 83, 0.98));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.22),
    inset -20px -24px 48px rgba(0, 0, 0, 0.28);
  overflow: hidden;
}

.wallet-screen__panel::before {
  position: absolute;
  inset: -80px -80px auto auto;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  background: rgba(38, 227, 162, 0.18);
  filter: blur(3px);
  content: "";
}

.screen-topbar,
.balance-card,
.screen-actions,
.asset-row {
  position: relative;
  z-index: 1;
}

.screen-topbar {
  display: flex;
  gap: 7px;
}

.screen-topbar span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.34);
}

.balance-card,
.asset-row {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(2, 7, 18, 0.38);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.balance-card {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  min-height: 130px;
  padding: 18px;
  border-radius: 20px;
  overflow: hidden;
  background:
    radial-gradient(circle at 84% 20%, rgba(38, 227, 162, 0.16), transparent 34%),
    rgba(2, 7, 18, 0.42);
}

.screen-label {
  display: block;
  margin-bottom: 8px;
  color: rgba(226, 242, 250, 0.62);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.balance-card strong {
  color: white;
  font-size: 30px;
  line-height: 1;
  letter-spacing: 0;
}

.balance-trend {
  display: inline-flex;
  margin-top: 10px;
  color: #78ffd9;
  font-size: 12px;
  font-weight: 850;
}

.ticker-pill {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(38, 227, 162, 0.18);
  color: #78ffd9;
  font-size: 12px;
  font-weight: 900;
}

.screen-actions {
  display: grid;
  gap: 10px;
  grid-template-columns: 1fr 1fr;
}

.screen-actions span {
  display: grid;
  min-height: 42px;
  place-items: center;
  border-radius: 13px;
  background: linear-gradient(135deg, rgba(38, 227, 162, 0.9), rgba(19, 117, 255, 0.86));
  color: white;
  font-size: 13px;
  font-weight: 900;
}

.asset-row {
  display: grid;
  align-items: center;
  gap: 12px;
  grid-template-columns: 38px 1fr auto;
  padding: 12px;
  border-radius: 16px;
}

.asset-row--muted {
  opacity: 0.72;
}

.asset-icon {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(145deg, #b8fff0, #26e3a2 48%, #079b72);
  color: #06251f;
  font-size: 22px;
  font-weight: 950;
}

.asset-icon--blue {
  background: linear-gradient(145deg, #bbdbff, #3d7cff 48%, #4932bb);
  color: #071631;
}

.asset-row strong,
.asset-row small {
  display: block;
}

.asset-row strong,
.asset-row b {
  color: rgba(255, 255, 255, 0.92);
  font-size: 13px;
}

.asset-row small {
  margin-top: 2px;
  color: rgba(226, 242, 250, 0.5);
  font-size: 11px;
}

.asset-row b {
  font-weight: 900;
}

.hero-panels {
  z-index: 4;
  grid-column: 2;
  grid-row: 1;
  display: grid;
  min-width: 0;
  border-left: 1px solid rgba(10, 22, 34, 0.13);
  background:
    radial-gradient(circle at 100% 9%, rgba(38, 227, 162, 0.16), transparent 30%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.62), rgba(234, 240, 247, 0.42));
  backdrop-filter: blur(12px);
}

.feature-panel {
  position: relative;
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
  padding: clamp(36px, 5vw, 60px);
  background: rgba(255, 255, 255, 0.16);
  overflow: hidden;
  transition:
    background 180ms ease,
    box-shadow 180ms ease;
}

.feature-panel + .feature-panel {
  border-top: 1px solid rgba(10, 22, 34, 0.13);
}

.feature-panel::before {
  position: absolute;
  inset: 0;
  background: rgba(38, 227, 162, 0.1);
  opacity: 0;
  transition: opacity 180ms ease;
  content: "";
}

.feature-panel::after {
  position: absolute;
  inset: 0 auto 0 0;
  width: 2px;
  background: linear-gradient(180deg, transparent, #26e3a2, transparent);
  opacity: 0;
  transition: opacity 180ms ease;
  content: "";
}

.feature-panel:hover {
  background: rgba(255, 255, 255, 0.32);
  box-shadow:
    inset 0 0 0 1px rgba(38, 227, 162, 0.16),
    0 18px 38px rgba(36, 57, 75, 0.08);
}

.feature-panel:hover::before,
.feature-panel:hover::after {
  opacity: 1;
}

.panel-tag {
  position: relative;
  z-index: 1;
  align-self: flex-start;
  margin-bottom: 18px;
  padding: 6px 30px 6px 10px;
  background: rgba(9, 17, 29, 0.08);
  color: rgba(9, 17, 29, 0.72);
  font-size: 12px;
  line-height: 1;
  transition:
    background 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease;
}

.panel-tag::after {
  position: absolute;
  top: 0;
  right: 0;
  width: 0;
  height: 0;
  border-top: 10px solid rgba(9, 17, 29, 0.72);
  border-left: 10px solid transparent;
  content: "";
}

.feature-panel p {
  position: relative;
  z-index: 1;
  max-width: 430px;
  margin: 0;
  color: rgba(44, 57, 72, 0.76);
  font-size: 16px;
  line-height: 1.55;
  transition: color 180ms ease;
}

.feature-panel:hover .panel-tag {
  background: rgba(38, 227, 162, 0.16);
  color: #095f48;
  box-shadow: 0 0 22px rgba(38, 227, 162, 0.1);
}

.feature-panel:hover p {
  color: rgba(20, 32, 45, 0.9);
}

.compatibility-strip {
  position: relative;
  z-index: 2;
  display: flex;
  width: min(920px, calc(100% - 64px));
  margin: 58px auto 0;
  align-items: center;
  justify-content: center;
  gap: 18px;
  color: rgba(9, 17, 29, 0.78);
}

.compatibility-label {
  color: rgba(62, 76, 92, 0.62);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  white-space: nowrap;
}

.compatibility-item {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}

.compatibility-item + .compatibility-item {
  padding-left: 18px;
  border-left: 1px solid rgba(9, 17, 29, 0.14);
}

.compatibility-item img {
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  border-radius: 50%;
}

.compatibility-item strong {
  color: #09111d;
  font-weight: 950;
}

.features-section {
  position: relative;
  padding: 96px 0 108px;
  background:
    radial-gradient(circle at 16% 8%, rgba(38, 227, 162, 0.18), transparent 26%),
    radial-gradient(circle at 82% 18%, rgba(105, 62, 255, 0.3), transparent 30%),
    radial-gradient(circle at 50% 88%, rgba(32, 124, 255, 0.14), transparent 34%),
    linear-gradient(180deg, #030610 0%, #070516 52%, #02030a 100%);
  color: white;
  overflow: hidden;
}

.features-section::before {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.13) 1px, transparent 1px);
  background-position: 0 0;
  background-size: 22px 22px;
  mask-image: linear-gradient(90deg, transparent, #000 24% 76%, transparent);
  opacity: 0.14;
  content: "";
}

.features-shell {
  position: relative;
  z-index: 1;
  width: min(1268px, calc(100% - 64px));
  margin: 0 auto;
}

.features-heading {
  max-width: 620px;
  margin-bottom: 34px;
}

.features-heading span {
  display: block;
  margin-bottom: 12px;
  color: #26e3a2;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.features-heading h2 {
  margin: 0;
  color: #f7fbff;
  font-size: clamp(34px, 4vw, 58px);
  line-height: 0.98;
  letter-spacing: 0;
}

.features-grid {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(6, 1fr);
}

.feature-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 306px;
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.075);
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(24, 17, 45, 0.96), rgba(6, 7, 18, 0.97));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 22px 80px rgba(0, 0, 0, 0.22);
  grid-column: span 3;
  overflow: hidden;
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.feature-card:hover {
  border-color: rgba(38, 227, 162, 0.18);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.09),
    0 22px 80px rgba(0, 0, 0, 0.28),
    0 0 80px rgba(38, 227, 162, 0.04);
}

.feature-card::before {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.045), transparent 42%);
  pointer-events: none;
  content: "";
}

.feature-card::after {
  position: absolute;
  inset: 0;
  border-radius: 10px;
  background: radial-gradient(ellipse at 50% 0%, rgba(38, 227, 162, 0.1), transparent 62%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
  content: "";
  z-index: 1;
}

.feature-card:hover::after {
  opacity: 1;
}

.feature-card--wide {
  min-height: 360px;
  grid-column: span 4;
}

.feature-card--fees {
  min-height: 360px;
  grid-column: span 2;
}

.feature-card__copy {
  position: relative;
  z-index: 3;
  max-width: 330px;
}

.feature-card__label {
  display: block;
  margin-bottom: 18px;
  color: #26e3a2;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.16em;
}

.feature-card h3 {
  margin: 0 0 8px;
  color: white;
  font-size: clamp(25px, 2vw, 31px);
  line-height: 1.05;
}

.feature-card p {
  margin: 0;
  color: rgba(235, 239, 255, 0.78);
  font-size: 17px;
  line-height: 1.45;
}

.feature-note {
  position: absolute;
  z-index: 3;
  left: 34px;
  bottom: 32px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.feature-card--network .feature-note {
  max-width: 160px;
  line-height: 1.35;
}

/* ---- Card decorations ---- */

.card-deco {
  position: relative;
  z-index: 2;
  margin-top: auto;
  padding-top: 22px;
}

/* MULTISIG — approval panel, absolute right side of wide card */
.card-deco--multisig {
  position: absolute;
  right: 34px;
  top: 34px;
  bottom: 34px;
  width: 296px;
  display: flex;
  align-items: center;
  padding-top: 0;
}

.msig-panel {
  width: 100%;
  padding: 16px;
  border-radius: 10px;
  background: rgba(4, 6, 18, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06), 0 20px 60px rgba(0, 0, 0, 0.4);
}

.msig-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.msig-chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 3px 8px 3px 5px;
  border-radius: 999px;
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid rgba(245, 158, 11, 0.2);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.1em;
  color: rgba(245, 158, 11, 0.85);
}

.msig-chip-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #f59e0b;
  animation: msig-blink 1.5s ease-in-out infinite;
}

@keyframes msig-blink {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}

.msig-panel-net {
  font-size: 10px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.25);
  letter-spacing: 0.08em;
}

.msig-panel-amount {
  font-size: 28px;
  font-weight: 900;
  color: white;
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 5px;
}

.msig-panel-amount em {
  font-style: normal;
  font-size: 14px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.38);
  margin-left: 3px;
  letter-spacing: 0;
}

.msig-panel-to {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 12px;
  font-size: 11.5px;
  color: rgba(255, 255, 255, 0.38);
  font-family: monospace;
}

.msig-to-label {
  font-family: inherit;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.2);
  padding: 2px 5px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 3px;
}

.msig-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.06);
  margin-bottom: 10px;
}

.msig-rows {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 12px;
}

.msig-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 9px;
  border-radius: 6px;
  font-size: 11px;
}

.msig-row--ok  { background: rgba(38, 227, 162, 0.06); border: 1px solid rgba(38, 227, 162, 0.12); }
.msig-row--wait { background: rgba(255, 255, 255, 0.03); border: 1px solid rgba(255, 255, 255, 0.06); }

.msig-row-avatar {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  font-weight: 900;
  flex-shrink: 0;
  letter-spacing: 0;
}

.msig-row--ok .msig-row-avatar  { background: rgba(38, 227, 162, 0.15); color: #26e3a2; border: 1px solid rgba(38, 227, 162, 0.3); }
.msig-row--wait .msig-row-avatar { background: rgba(255, 255, 255, 0.05); color: rgba(255, 255, 255, 0.22); border: 1px solid rgba(255, 255, 255, 0.08); }

.msig-row-addr {
  flex: 1;
  font-family: monospace;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.msig-row--ok .msig-row-addr   { color: rgba(255, 255, 255, 0.5); }
.msig-row--wait .msig-row-addr { color: rgba(255, 255, 255, 0.22); }

.msig-row-badge {
  padding: 2px 7px;
  border-radius: 4px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.msig-row--ok .msig-row-badge   { background: rgba(38, 227, 162, 0.13); color: #26e3a2; }
.msig-row--wait .msig-row-badge { background: rgba(255, 255, 255, 0.05); color: rgba(255, 255, 255, 0.28); }

.msig-panel-footer {
  display: flex;
  align-items: center;
  gap: 10px;
}

.msig-threshold {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1;
  font-size: 10px;
  font-weight: 700;
  color: rgba(38, 227, 162, 0.6);
  letter-spacing: 0.04em;
}

.msig-threshold-bar {
  width: 44px;
  height: 3px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.06);
  overflow: hidden;
  display: block;
}

.msig-threshold-bar span {
  display: block;
  width: 66.67%;
  height: 100%;
  background: #26e3a2;
  border-radius: 2px;
}

.msig-btn {
  padding: 6px 12px;
  border-radius: 6px;
  background: rgba(38, 227, 162, 0.13);
  border: 1px solid rgba(38, 227, 162, 0.28);
  color: #26e3a2;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.06em;
  cursor: default;
  white-space: nowrap;
}

/* NETWORKS — selector list with fees */
.card-deco--networks {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.net-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 11px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(255, 255, 255, 0.02);
}

.net-item--active {
  border-color: rgba(38, 227, 162, 0.18);
  background: rgba(38, 227, 162, 0.05);
}

.net-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  flex-shrink: 0;
}

.net-dot--trc { background: #ef4444; box-shadow: 0 0 7px rgba(239, 68, 68, 0.6); }
.net-dot--erc { background: #818cf8; box-shadow: 0 0 7px rgba(129, 140, 248, 0.45); }
.net-dot--bep { background: #f59e0b; box-shadow: 0 0 7px rgba(245, 158, 11, 0.5); }

.net-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.net-name {
  font-size: 13px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.75);
  letter-spacing: 0.05em;
}

.net-item--active .net-name { color: white; }

.net-sub {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.26);
  letter-spacing: 0.02em;
}

.net-fee {
  font-size: 10px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.28);
  white-space: nowrap;
}

.net-item--active .net-fee { color: rgba(38, 227, 162, 0.6); }

.net-check {
  width: 14px;
  height: 14px;
  color: #26e3a2;
  flex-shrink: 0;
}

/* VAULT — macOS-style terminal window */
.vault-terminal {
  border-radius: 9px;
  background: rgba(2, 4, 14, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
  font-family: 'Courier New', Courier, monospace;
}

.vault-terminal-bar {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 8px 11px;
  background: rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.vtb-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}

.vtb-r { background: #ff5f57; }
.vtb-y { background: #ffbd2e; }
.vtb-g { background: #28c840; }

.vtb-title {
  flex: 1;
  text-align: center;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.28);
  font-family: monospace;
  letter-spacing: 0.04em;
  margin-right: 22px;
}

.vault-terminal-body {
  padding: 11px 13px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.vt-line {
  font-size: 11.5px;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.42);
  white-space: nowrap;
  overflow: hidden;
}

.vt-prompt { color: #26e3a2; margin-right: 6px; }
.vt-line--ok  { color: rgba(38, 227, 162, 0.9); }
.vt-line--hex { color: rgba(129, 140, 248, 0.75); letter-spacing: 0.04em; }
.vt-line--dim { color: rgba(255, 255, 255, 0.2); font-size: 10.5px; }

.vt-cursor {
  color: #26e3a2;
  animation: cursor-blink 1.1s step-end infinite;
}

@keyframes cursor-blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

/* MONITOR — chart + transaction list */
.card-deco--monitor {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mon-chart {
  height: 48px;
  border-radius: 7px;
  overflow: hidden;
  background: rgba(38, 227, 162, 0.03);
  border: 1px solid rgba(38, 227, 162, 0.08);
}

.mon-chart svg {
  width: 100%;
  height: 100%;
}

.mon-txs {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.mon-tx {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 7px 10px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 11px;
}

.mon-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
}

.mon-dot--ok   { background: #26e3a2; }
.mon-dot--warn { background: #f59e0b; }
.mon-dot--spin { background: #818cf8; animation: dot-blink 1.3s ease-in-out infinite; }

@keyframes dot-blink {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}

.mon-addr {
  flex: 1;
  font-family: monospace;
  color: rgba(255, 255, 255, 0.38);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.mon-amt {
  font-weight: 700;
  color: rgba(255, 255, 255, 0.72);
  white-space: nowrap;
}

.mon-badge {
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 10px;
  font-weight: 800;
  white-space: nowrap;
  letter-spacing: 0.02em;
}

.mon-badge--ok   { background: rgba(38, 227, 162, 0.12); color: #26e3a2; }
.mon-badge--wait { background: rgba(129, 140, 248, 0.12); color: #a5b4fc; }
.mon-badge--warn { background: rgba(245, 158, 11, 0.12); color: #f59e0b; }

/* RECOVERY — 12-word seed grid + progress */
.card-deco--recovery {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.seed-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 5px;
}

.seed-word {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 6px 7px;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  font-size: 11px;
  color: rgba(255, 255, 255, 0.6);
  white-space: nowrap;
  overflow: hidden;
}

.seed-word em {
  font-style: normal;
  font-size: 9px;
  color: rgba(255, 255, 255, 0.2);
  min-width: 12px;
  flex-shrink: 0;
}

.seed-word--ok {
  border-color: rgba(38, 227, 162, 0.15);
  color: rgba(255, 255, 255, 0.82);
}

.seed-word--ok em { color: rgba(38, 227, 162, 0.5); }

.seed-word--blur {
  color: rgba(255, 255, 255, 0.1);
  filter: blur(3.5px);
  user-select: none;
}

.seed-footer {
  display: flex;
  align-items: center;
  gap: 10px;
}

.seed-progress-bar-track {
  flex: 1;
  height: 3px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.06);
  overflow: hidden;
}

.seed-progress-bar-fill {
  height: 100%;
  border-radius: 2px;
  background: linear-gradient(90deg, #26e3a2, #1bbf84);
}

.seed-progress-label {
  font-size: 11px;
  font-weight: 700;
  color: rgba(38, 227, 162, 0.6);
  white-space: nowrap;
  letter-spacing: 0.03em;
}

/* SECURITY — arc score gauge + item list */
.card-deco--security {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sec-gauge-wrap {
  display: flex;
  justify-content: center;
}

.sec-gauge {
  position: relative;
  width: 120px;
  height: 72px;
}

.sec-gauge svg {
  width: 120px;
  height: 72px;
  display: block;
}

.sec-score-inner {
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  line-height: 1;
}

.sec-score-num {
  display: block;
  font-size: 30px;
  font-weight: 900;
  color: white;
  letter-spacing: -0.03em;
  line-height: 1;
}

.sec-score-sub {
  display: block;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.28);
  font-weight: 600;
  letter-spacing: 0.03em;
  margin-top: 1px;
}

.sec-items {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.sec-item {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 7px 11px;
  border-radius: 7px;
  font-size: 12px;
  font-weight: 600;
}

.sec-item--ok {
  background: rgba(38, 227, 162, 0.07);
  border: 1px solid rgba(38, 227, 162, 0.13);
  color: rgba(38, 227, 162, 0.82);
}

.sec-item--warn {
  background: rgba(245, 158, 11, 0.07);
  border: 1px solid rgba(245, 158, 11, 0.16);
  color: rgba(245, 158, 11, 0.82);
}

.sec-icon {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.section-kicker {
  display: block;
  margin-bottom: 14px;
  color: #26e3a2;
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.download-section {
  position: relative;
  padding: 96px 0 108px;
  background:
    linear-gradient(90deg, rgba(246, 249, 251, 0.9), rgba(246, 249, 251, 0.58) 48%, rgba(238, 243, 246, 0.8)),
    url("assets/background/download-geometric.jpg");
  background-position: center;
  background-size: cover;
  color: #09111d;
  overflow: hidden;
}

.download-section::before {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 24%, rgba(38, 227, 162, 0.12), transparent 30%),
    radial-gradient(circle at 82% 72%, rgba(29, 102, 255, 0.08), transparent 34%);
  opacity: 1;
  content: "";
}

.download-lead {
  max-width: 680px;
  margin-bottom: 42px;
}

.download-lead h2 {
  max-width: 760px;
  margin: 0;
  color: #09111d;
  font-size: clamp(36px, 4.2vw, 62px);
  line-height: 0.98;
  letter-spacing: 0;
}

.download-lead p {
  max-width: 540px;
  margin: 22px 0 0;
  color: #566171;
  font-size: 18px;
  line-height: 1.55;
}

.dl-platform-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(3, 1fr);
}

.dl-platform-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 38px 28px 30px;
  border: 1px solid rgba(9, 17, 29, 0.12);
  border-radius: 12px;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(38, 227, 162, 0.12), transparent 62%),
    linear-gradient(160deg, rgba(255, 255, 255, 0.84), rgba(239, 244, 247, 0.72));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.86),
    inset 0 0 32px rgba(255, 255, 255, 0.24),
    0 24px 70px rgba(31, 43, 56, 0.12);
  text-decoration: none;
  overflow: hidden;
  transition:
    border-color 0.22s ease,
    box-shadow 0.22s ease,
    transform 0.16s ease;
}

.dl-platform-card::before {
  position: absolute;
  inset: 0;
  background: rgba(38, 227, 162, 0.08);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  content: "";
}

.dl-platform-card::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.64), transparent 44%);
  pointer-events: none;
  content: "";
}

.dl-platform-card:hover {
  border-color: rgba(0, 168, 117, 0.32);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    inset 0 0 32px rgba(38, 227, 162, 0.08),
    0 28px 80px rgba(31, 43, 56, 0.16),
    0 0 64px rgba(38, 227, 162, 0.08);
  transform: translateY(-5px);
}

.dl-platform-card:hover::before {
  opacity: 1;
}

.dl-platform-card:active {
  transform: translateY(-1px);
  transition-duration: 0.08s;
}

.dl-platform-card:focus-visible {
  outline: 2px solid #26e3a2;
  outline-offset: 3px;
  border-radius: 12px;
}

.dl-platform-icon-wrap {
  display: flex;
  width: 68px;
  height: 68px;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(9, 17, 29, 0.1);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.86),
    0 14px 34px rgba(31, 43, 56, 0.08);
}

.dl-platform-icon-wrap img {
  width: 38px;
  height: 38px;
  object-fit: contain;
}

.dl-platform-name {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 9px;
  margin-bottom: 9px;
}

.dl-platform-name strong {
  color: #09111d;
  font-size: 28px;
  font-weight: 950;
  line-height: 1;
  letter-spacing: -0.01em;
}

.dl-platform-format {
  font-size: 12px;
  font-weight: 900;
  color: #0a8f6d;
  letter-spacing: 0.1em;
}

.dl-platform-meta {
  margin-bottom: 26px;
  font-size: 13px;
  font-weight: 700;
  color: #7a8492;
  letter-spacing: 0.02em;
}

.dl-platform-btn {
  display: flex;
  width: 100%;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  margin-top: auto;
  border-radius: 9px;
  background: #09111d;
  color: #fff;
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: background 0.16s ease;
}

.dl-platform-card:hover .dl-platform-btn {
  background: #00a875;
}

.download-shell,
.faq-shell,
.official-shell,
.footer-shell {
  position: relative;
  z-index: 1;
  width: min(1268px, calc(100% - 64px));
  margin: 0 auto;
}

.download-copy {
  max-width: 690px;
  margin-bottom: 38px;
}

.download-copy h2,
.faq-heading h2,
.official-heading h2 {
  margin: 0;
  letter-spacing: 0;
}

.download-copy h2 {
  max-width: 760px;
  color: #fff;
  font-size: clamp(36px, 4.2vw, 62px);
  line-height: 0.98;
}

.download-copy p {
  max-width: 570px;
  margin: 22px 0 0;
  color: rgba(226, 242, 250, 0.68);
  font-size: 18px;
  line-height: 1.55;
}

.download-board {
  display: grid;
  align-items: center;
  gap: 0;
  grid-template-columns: minmax(430px, 0.95fr) minmax(320px, 0.82fr);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  background:
    radial-gradient(circle at 82% 34%, rgba(38, 227, 162, 0.12), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.025));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 28px 90px rgba(0, 0, 0, 0.24);
  overflow: hidden;
}

.release-panel {
  position: relative;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 2;
  padding: clamp(28px, 4vw, 54px);
}

.release-panel__head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 24px;
}

.release-panel__head span {
  color: rgba(226, 242, 250, 0.54);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.release-panel__head strong {
  color: #78ffd9;
  font-size: 16px;
  font-weight: 950;
}

.release-grid {
  display: grid;
  gap: 12px;
}

.release-card {
  display: grid;
  min-height: 86px;
  align-items: center;
  gap: 16px;
  grid-template-columns: 44px 1fr auto;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.055);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 22px 70px rgba(0, 0, 0, 0.18);
}

.release-card img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

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

.release-card strong {
  color: #fff;
  font-size: 17px;
  font-weight: 950;
  line-height: 1;
}

.release-card small {
  margin-top: 6px;
  color: rgba(226, 242, 250, 0.58);
  font-size: 13px;
  font-weight: 750;
}

.release-card b {
  min-width: 96px;
  padding: 11px 14px;
  border-radius: 8px;
  background: #26e3a2;
  color: #05241d;
  font-size: 13px;
  font-weight: 950;
  text-align: center;
}

.download-visual {
  position: relative;
  display: grid;
  width: min(82%, 390px);
  aspect-ratio: 1;
  justify-self: center;
  margin: 34px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 12px;
  background:
    radial-gradient(circle at 54% 42%, rgba(38, 227, 162, 0.1), transparent 46%),
    rgba(255, 255, 255, 0.035);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 22px 64px rgba(0, 0, 0, 0.16);
  overflow: hidden;
}

.download-visual img {
  position: relative;
  width: 86%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 34px 70px rgba(38, 227, 162, 0.2));
}

/* Release card — interaction states */
.release-card {
  text-decoration: none;
  cursor: pointer;
  transition:
    border-color 0.22s ease,
    box-shadow 0.22s ease,
    transform 0.16s ease;
}

.release-card b {
  transition: background 0.16s ease;
}

.release-card:hover {
  border-color: rgba(38, 227, 162, 0.34);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.13),
    0 22px 70px rgba(0, 0, 0, 0.26),
    0 0 0 1px rgba(38, 227, 162, 0.1);
  transform: translateY(-2px);
}

.release-card:hover b {
  background: #1bbf84;
}

.release-card:active {
  transform: translateY(0);
  transition-duration: 0.08s;
}

.release-card:focus-visible {
  outline: 2px solid #26e3a2;
  outline-offset: 3px;
  border-radius: 10px;
}

.release-card--featured {
  border-color: rgba(38, 227, 162, 0.22);
  background: rgba(38, 227, 162, 0.04);
}

/* Checksum strip */
.checksum-strip {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.22);
  overflow: hidden;
}

.cs-label {
  flex-shrink: 0;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.14em;
  color: rgba(38, 227, 162, 0.62);
  text-transform: uppercase;
}

.cs-hash {
  flex: 1;
  min-width: 0;
  font-family: 'Courier New', Courier, monospace;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.3);
  letter-spacing: 0.04em;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.cs-link {
  flex-shrink: 0;
  font-size: 12px;
  font-weight: 800;
  color: rgba(38, 227, 162, 0.62);
  letter-spacing: 0.02em;
  white-space: nowrap;
  transition: color 0.15s ease;
}

.cs-link:hover {
  color: #26e3a2;
}

/* Build manifest terminal panel */
.dl-manifest-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 34px;
  min-width: 0;
  border-left: 1px solid rgba(255, 255, 255, 0.07);
}

.dl-manifest {
  width: 100%;
  max-width: 316px;
  border-radius: 10px;
  background: rgba(2, 4, 14, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.09);
  overflow: hidden;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 24px 72px rgba(0, 0, 0, 0.3);
}

.dl-manifest-bar {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 9px 12px;
  background: rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.dl-manifest-body {
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-family: 'Courier New', Courier, monospace;
}

.dm-line {
  font-size: 12px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.32);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.dm-sep {
  color: rgba(255, 255, 255, 0.18);
  margin: 0 1px;
}

.dm-val { color: rgba(38, 227, 162, 0.82); }
.dm-hash { color: rgba(129, 140, 248, 0.72); letter-spacing: 0.03em; }
.dm-line--key { color: rgba(255, 255, 255, 0.48); }
.dm-line--section { color: rgba(245, 158, 11, 0.66); }
.dm-line--blank { height: 7px; }
.dm-line--cursor { margin-top: 2px; }

/* What's included feature panel */
.dl-features-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 34px;
  min-width: 0;
  border-left: 1px solid rgba(255, 255, 255, 0.07);
}

.dl-features-panel {
  width: 100%;
  padding: 26px;
  border-radius: 12px;
  background:
    radial-gradient(circle at 100% 0%, rgba(38, 227, 162, 0.14), transparent 48%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.068), rgba(255, 255, 255, 0.022));
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 24px 72px rgba(0, 0, 0, 0.2);
}

.dl-features-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.dl-features-head span {
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
  color: rgba(226, 242, 250, 0.38);
  text-transform: uppercase;
}

.dl-features-head strong {
  font-size: 14px;
  font-weight: 950;
  color: #78ffd9;
  letter-spacing: 0.02em;
}

.dl-features-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.dl-features-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 700;
  color: rgba(226, 242, 250, 0.7);
  line-height: 1.3;
}

.dl-feat-check {
  flex-shrink: 0;
  color: #26e3a2;
}

.dl-features-note {
  margin: 18px 0 0;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  font-size: 12px;
  font-weight: 700;
  color: rgba(226, 242, 250, 0.32);
  line-height: 1.5;
  letter-spacing: 0.02em;
}

.faq-section {
  padding: 108px 0;
  background:
    radial-gradient(circle at 82% 8%, rgba(38, 227, 162, 0.14), transparent 30%),
    linear-gradient(180deg, #f6f8fa 0%, #eef2f5 100%);
  color: #09111d;
}

.faq-shell {
  display: grid;
  gap: 64px;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  align-items: start;
}

.faq-heading h2 {
  font-size: clamp(36px, 4vw, 58px);
  line-height: 0.98;
}

.faq-list {
  border-top: 1px solid rgba(9, 17, 29, 0.14);
}

.faq-list details {
  border-bottom: 1px solid rgba(9, 17, 29, 0.14);
  background: transparent;
}

.faq-list summary {
  display: flex;
  min-height: 82px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: #09111d;
  cursor: pointer;
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 850;
  line-height: 1.1;
  list-style: none;
}

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

.faq-list summary::after {
  display: grid;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(9, 17, 29, 0.14);
  border-radius: 50%;
  color: #0d7c61;
  content: "+";
}

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

.faq-list p {
  max-width: 690px;
  margin: -4px 0 26px;
  color: #566171;
  font-size: 17px;
  line-height: 1.55;
}

.official-section {
  position: relative;
  padding: 110px 0 56px;
  background:
    radial-gradient(circle at 18% 18%, rgba(38, 227, 162, 0.16), transparent 26%),
    radial-gradient(circle at 92% 20%, rgba(111, 59, 255, 0.22), transparent 28%),
    linear-gradient(180deg, #04050d 0%, #080716 58%, #03040a 100%);
  color: white;
  overflow: hidden;
}

.official-section::before {
  position: absolute;
  inset: auto 0 0;
  height: 360px;
  background-image: radial-gradient(rgba(255, 255, 255, 0.16) 1px, transparent 1px);
  background-size: 20px 20px;
  mask-image: linear-gradient(180deg, transparent, #000);
  opacity: 0.16;
  content: "";
}

.official-heading {
  display: grid;
  max-width: 980px;
  margin-bottom: 34px;
  gap: 0;
}

.official-heading h2 {
  max-width: 760px;
  color: white;
  font-size: clamp(36px, 4vw, 60px);
  line-height: 0.98;
}

.official-heading p {
  max-width: 680px;
  margin: 22px 0 0;
  color: rgba(226, 242, 250, 0.66);
  font-size: 18px;
  line-height: 1.55;
}

.official-grid {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(4, 1fr);
}

.official-card {
  min-height: 310px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  background:
    radial-gradient(circle at 100% 0%, rgba(38, 227, 162, 0.11), transparent 36%),
    linear-gradient(135deg, rgba(32, 20, 62, 0.78), rgba(6, 7, 18, 0.96));
}

.official-card > img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.official-card h3 {
  margin: 28px 0 10px;
  color: white;
  font-size: 28px;
  line-height: 1;
}

.official-card p {
  margin: 0;
  color: rgba(226, 242, 250, 0.64);
  font-size: 15px;
  line-height: 1.5;
}

.official-links {
  display: flex;
  margin-top: 24px;
  flex-wrap: wrap;
  gap: 10px;
}

.official-links a {
  padding: 9px 11px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 12px;
  font-weight: 900;
}

.social-strip {
  display: grid;
  margin-top: 10px;
  gap: 10px;
  grid-template-columns: repeat(4, 1fr);
}

.social-strip a {
  display: flex;
  min-height: 76px;
  align-items: center;
  gap: 14px;
  padding: 18px 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.045);
  color: rgba(255, 255, 255, 0.88);
  font-size: 15px;
  font-weight: 850;
}

.social-strip img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.site-footer {
  position: relative;
  padding: 26px 0 34px;
  background: linear-gradient(180deg, #03040a 0%, #03040a 100%);
  color: rgba(255, 255, 255, 0.68);
  overflow: hidden;
}

.site-footer::before {
  display: none;
}

.footer-shell {
  display: grid;
  gap: 28px;
}

.footer-main {
  display: grid;
  gap: clamp(34px, 6vw, 90px);
  grid-template-columns: minmax(260px, 0.82fr) minmax(0, 1.5fr);
  align-items: start;
}

.footer-brand-block p {
  max-width: 390px;
  margin: 20px 0 0;
  color: rgba(226, 242, 250, 0.52);
  font-size: 15px;
  line-height: 1.55;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: white;
  font-size: 20px;
  font-weight: 950;
}

.footer-brand img {
  width: 34px;
  height: 34px;
}

.footer-link-groups {
  display: grid;
  gap: 28px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.footer-group {
  display: grid;
  gap: 12px;
  align-content: start;
}

.footer-group h3 {
  margin: 0;
  color: #fff;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-group a {
  color: rgba(226, 242, 250, 0.58);
  font-size: 14px;
  font-weight: 750;
  transition: color 160ms ease;
}

.footer-group a:hover {
  color: #78ffd9;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(226, 242, 250, 0.42);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.04em;
}

@media (max-width: 1080px) {
  .site-header {
    grid-template-columns: auto 1fr;
  }

  .site-header::after {
    right: 0;
    left: 0;
  }

  .main-nav {
    display: none;
  }

  .header-actions {
    justify-self: end;
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    width: min(39%, 320px);
    transform: translateX(0);
  }

  .hero-panels {
    grid-column: 1;
    grid-row: 2;
    grid-template-columns: 1fr 1fr;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .feature-panel + .feature-panel {
    border-top: 0;
    border-left: 1px solid var(--line);
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .feature-card,
  .feature-card--wide,
  .feature-card--fees {
    grid-column: span 1;
  }

  .official-grid,
  .social-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-main {
    grid-template-columns: 1fr;
  }

  .footer-link-groups {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .header-dot-grid {
    display: inline-flex;
  }
}


@media (max-width: 760px) {
  .site-header {
    width: min(100% - 32px, 1360px);
    height: 74px;
    grid-template-columns: 1fr auto;
    gap: 16px;
  }

  .brand {
    padding-right: 0;
    font-size: 18px;
  }

  .brand::after {
    display: none;
  }

  .brand-mark {
    width: 32px;
    height: 32px;
  }

  .header-actions {
    min-width: 0;
  }

  .header-github {
    font-size: 11px;
    letter-spacing: 0.06em;
  }

  .btn {
    min-height: 38px;
    padding: 0 13px;
    font-size: 14px;
  }

  .hero {
    min-height: auto;
    padding: 22px 0 36px;
  }

  .hero-grid {
    width: min(100% - 32px, 1168px);
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .hero-grid::before {
    grid-row: 1 / 3;
  }

  .hero-copy {
    padding: 42px 28px;
  }

  .download-options {
    width: min(100%, 270px);
    grid-template-columns: 1fr;
  }

  .download-btn {
    min-height: 52px;
  }

  .download-btn + .download-btn {
    border-top: 1px solid rgba(255, 255, 255, 0.09);
    border-left: 0;
  }

  h1 span {
    white-space: normal;
  }

  h1 {
    font-size: clamp(40px, 12vw, 58px);
  }

  .hero-visual {
    grid-row: 2;
    justify-self: center;
    width: 100%;
    min-height: 360px;
    overflow: hidden;
  }

  .wallet-screen {
    width: min(300px, 82%);
    transform: perspective(900px) rotateY(-12deg) rotateZ(-3deg);
  }

  .hero-panels {
    grid-row: 3;
    grid-template-columns: 1fr;
  }

  .feature-panel {
    padding: 34px 28px;
  }

  .feature-panel + .feature-panel {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .compatibility-strip {
    width: min(100% - 32px, 780px);
    margin-top: 48px;
    flex-wrap: wrap;
    gap: 14px 18px;
  }

  .compatibility-label {
    width: 100%;
    text-align: center;
  }

  .compatibility-item + .compatibility-item {
    padding-left: 0;
    border-left: 0;
  }

  .features-section {
    padding: 64px 0 72px;
  }

  .features-shell {
    width: min(100% - 32px, 1268px);
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .feature-card,
  .feature-card--wide,
  .feature-card--fees {
    min-height: 280px;
    padding: 26px;
    grid-column: span 1;
  }

  .feature-card__copy {
    max-width: 100%;
  }

  .feature-card p {
    max-width: 280px;
  }

  .feature-note {
    left: 26px;
    bottom: 26px;
    max-width: 160px;
    font-size: 11px;
    line-height: 1.35;
  }

  .card-deco--multisig {
    position: static;
    width: auto;
    padding-top: 22px;
    justify-content: flex-start;
  }

  .card-deco {
    padding-top: 18px;
  }

  .sec-item {
    font-size: 12px;
    padding: 8px 11px;
  }

  .tx-row {
    font-size: 10px;
    padding: 7px 9px;
  }

  .chain-pill {
    padding: 9px 12px;
  }

  .download-section,
  .faq-section,
  .official-section {
    padding: 70px 0;
  }


  .download-shell,
  .faq-shell,
  .official-shell,
  .footer-shell {
    width: min(100% - 32px, 1268px);
  }

  .dl-platform-grid {
    gap: 8px;
  }

  .dl-platform-card {
    padding: 28px 20px 24px;
  }

  .dl-platform-name strong {
    font-size: 24px;
  }

  .dl-platform-icon-wrap {
    width: 58px;
    height: 58px;
    margin-bottom: 18px;
  }

  .dl-platform-icon-wrap img {
    width: 32px;
    height: 32px;
  }

  .faq-shell {
    gap: 28px;
  }

  .faq-list summary {
    min-height: 74px;
    font-size: 20px;
  }

  .official-grid,
  .social-strip {
    grid-template-columns: 1fr;
  }

  .official-card {
    min-height: 0;
  }

  .footer-link-groups {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

@media (max-width: 420px) {
  .site-header {
    width: min(100% - 22px, 1360px);
  }

  .brand {
    gap: 9px;
    font-size: 16px;
  }

  .brand-mark {
    width: 27px;
    height: 27px;
  }

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

  .dl-platform-card {
    padding: 24px 20px 22px;
  }

}

body:not(.motion-ready) .reveal,
body:not(.motion-ready) .site-header,
body:not(.motion-ready) .hero-grid,
body:not(.motion-ready) .hero-video,
body:not(.motion-ready) .header-dot-grid {
  opacity: 1;
  transform: none;
}

.motion-ready .site-header {
  animation: headerDrop 620ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.motion-ready .hero-video {
  animation: heroMediaIn 1100ms ease both;
}

.motion-ready .hero-grid {
  animation: heroCardIn 780ms cubic-bezier(0.2, 0.8, 0.2, 1) 120ms both;
}

.motion-ready .header-dot-grid {
  animation: dotGridIn 900ms ease 320ms both;
}

.motion-ready .hero-copy > *,
.motion-ready .hero-panels,
.motion-ready .compatibility-strip {
  animation: heroItemIn 680ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.motion-ready .wallet-screen {
  animation: walletIn 760ms ease both;
}

.motion-ready .hero-copy > :nth-child(1) {
  animation-delay: 220ms;
}

.motion-ready .hero-copy > :nth-child(2) {
  animation-delay: 300ms;
}

.motion-ready .hero-copy > :nth-child(3) {
  animation-delay: 380ms;
}

.motion-ready .hero-copy > :nth-child(4) {
  animation-delay: 460ms;
}

.motion-ready .wallet-screen {
  animation-delay: 420ms;
}

.motion-ready .hero-panels {
  animation-delay: 520ms;
}

.motion-ready .compatibility-strip {
  animation-delay: 660ms;
}

.motion-ready .reveal {
  opacity: 0;
  transform: translate3d(0, 34px, 0);
  transition:
    opacity 720ms ease,
    transform 720ms cubic-bezier(0.2, 0.8, 0.2, 1),
    filter 720ms ease;
  filter: blur(8px);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform, filter;
}

.motion-ready .reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  filter: blur(0);
}

.motion-ready .reveal[data-reveal="left"] {
  transform: translate3d(-34px, 0, 0);
}

.motion-ready .reveal[data-reveal="right"] {
  transform: translate3d(34px, 0, 0);
}

.motion-ready .reveal[data-reveal="zoom"] {
  transform: translate3d(0, 24px, 0) scale(0.96);
}

.motion-ready .reveal[data-reveal="left"].is-visible,
.motion-ready .reveal[data-reveal="right"].is-visible,
.motion-ready .reveal[data-reveal="zoom"].is-visible {
  transform: translate3d(0, 0, 0) scale(1);
}

@keyframes headerDrop {
  from {
    opacity: 0;
    transform: translate(-50%, -16px);
  }

  to {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}

@keyframes heroMediaIn {
  from {
    opacity: 0;
    transform: scale(1.03);
  }

  to {
    opacity: 0.92;
    transform: scale(1);
  }
}

@keyframes heroCardIn {
  from {
    opacity: 0;
    transform: translateY(28px) scale(0.985);
  }

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

@keyframes heroItemIn {
  from {
    opacity: 0;
    transform: translateY(18px);
    filter: blur(8px);
  }

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

@keyframes walletIn {
  from {
    opacity: 0;
    filter: drop-shadow(0 38px 40px rgba(0, 0, 0, 0.52)) blur(8px);
  }

  to {
    opacity: 1;
    filter: drop-shadow(0 38px 40px rgba(0, 0, 0, 0.52)) blur(0);
  }
}

@keyframes dotGridIn {
  from {
    opacity: 0;
    transform: translateX(calc(-50% + 28px)) translateY(-10px);
  }

  to {
    opacity: 0.18;
    transform: translateX(calc(-50% + 28px)) translateY(0);
  }
}

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

  .motion-ready .reveal {
    opacity: 1;
    transform: none;
    filter: none;
  }
}
