
:root {
  color-scheme: dark;
  background: #0c1110;
  --main-color: #84f088;
  --button-color: #6ee787;
  --heading-color: #ffffff;
  --accent-color: #b9ffbe;
  --surface-color: rgba(132, 240, 136, 0.04);
  --border-color: rgba(132, 240, 136, 0.16);
  --text-color: #e8f5e6;
  --text-soft: rgba(232, 245, 230, 0.82);
  --muted-color: rgba(232, 245, 230, 0.6);
}

* {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  min-height: 100%;
  margin: 0;
  overflow-x: hidden;
  overflow-y: auto;
  background: #0c1110;
  touch-action: pan-y;
}

body {
  min-height: 100vh;
  color: var(--text-color);
  font-family: 'Satoshi', 'Satoshi Placeholder', sans-serif;
  -webkit-font-smoothing: antialiased;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.page-shell {
  position: relative;
  width: 100%;
  background: #0c1110;
}

.site-header {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 20;
  width: 100%;
  border-bottom: 1px solid rgba(232, 245, 230, 0.06);
  background: rgba(12, 17, 16, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: border-color 280ms ease, box-shadow 280ms ease;
}

.site-header.is-scrolled {
  border-bottom-color: rgba(132, 240, 136, 0.16);
  box-shadow: 0 10px 30px -18px rgba(0, 0, 0, 0.7);
}

.site-header-inner {
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
}

.site-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
}

.site-brand-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}

.site-brand-logo img {
  width: 36px;
  height: 36px;
  display: block;
  object-fit: contain;
}

.site-brand-word {
  font-size: 19px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #fff;
}

.site-header-download {
  min-height: 44px;
  padding: 0 18px;
  white-space: nowrap;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 2px;
}

.site-nav__link {
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(232, 245, 230, 0.78);
  transition: color 160ms ease;
}

.site-nav__link:hover {
  color: var(--main-color);
}

.page-content {
  position: relative;
  z-index: 1;
  margin-top: 0;
  padding: 96px 0 108px;
  background:
    radial-gradient(80% 60% at 50% 0%, rgba(132, 240, 136, 0.06), transparent 60%),
    linear-gradient(180deg, #0c1110 0%, #0a0f0d 30%, #0a0f0d 100%);
}

.page-content-inner {
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
  padding: 52px 0 0;
}

.content-section {
  margin-top: 96px;
  padding: 32px 0;
}

.section-header {
  max-width: 760px;
}

.section-header h2,
.split-copy h2 {
  margin: 0;
  color: var(--heading-color);
  letter-spacing: -0.02em;
  font-size: clamp(28.16px, 3.872vw, 49.28px);
  font-weight: 700;
  line-height: 1.06;
}

.eyebrow {
  margin: 0 0 42px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: 'JetBrains Mono', 'SF Mono', Menlo, monospace;
  color: var(--main-color);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

#features .eyebrow,
#chains .eyebrow,
#payments .eyebrow,
#security .eyebrow,
#download .eyebrow {
  transform: scale(0.8);
  transform-origin: left center;
  margin-bottom: 19px;
  padding-bottom: 16px;
}

.eyebrow::before {
  content: "";
  width: 26px;
  height: 1px;
  background: var(--main-color);
  flex-shrink: 0;
}

.eyebrow--num {
  align-items: baseline;
  gap: 16px;
}

.eyebrow--num::before {
  content: attr(data-num);
  width: auto;
  height: auto;
  background: none;
  font-family: 'Satoshi', 'Satoshi Placeholder', sans-serif;
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--main-color);
  line-height: 1;
  opacity: 0.95;
}

.section-header p,
.split-copy p {
  margin: 18px 0 0;
  color: var(--text-soft);
  font-size: clamp(15px, 1.6vw, 18px);
  line-height: 1.65;
  max-width: 860px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: transform 160ms ease, border-color 160ms ease, background-color 160ms ease, box-shadow 160ms ease;
}

.button--primary {
  color: #052010;
  background: var(--button-color);
  border-color: transparent;
  box-shadow: 0 8px 24px -10px rgba(110, 231, 135, 0.55);
}

.button--primary:hover {
  background: #86ff9a;
  box-shadow: 0 12px 30px -10px rgba(110, 231, 135, 0.7);
  transform: translateY(-1px);
}

.button--ghost {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.12);
  color: var(--text-color);
}

.button--ghost:hover {
  border-color: rgba(132, 240, 136, 0.36);
  background: rgba(132, 240, 136, 0.05);
}

/* ============ Lead hero ============ */

.lead-hero {
  position: relative;
  min-height: calc(100vh - 160px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: 30px 0 70px;
}

.lead-hero__glow {
  position: absolute;
  top: 46%;
  left: 50%;
  width: 95%;
  height: 90%;
  transform: translate(-50%, -50%);
  background: radial-gradient(closest-side, rgba(132, 240, 136, 0.18), rgba(132, 240, 136, 0.05) 50%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.lead-hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(132, 240, 136, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(132, 240, 136, 0.04) 1px, transparent 1px);
  background-size: 56px 56px;
  -webkit-mask: radial-gradient(60% 50% at 50% 35%, #000 0%, transparent 80%);
  mask: radial-gradient(60% 50% at 50% 35%, #000 0%, transparent 80%);
  pointer-events: none;
  z-index: 0;
}

.lead-hero__inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  max-width: 920px;
}

.lead-hero__eyebrow {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(132, 240, 136, 0.06);
  border: 1px solid rgba(132, 240, 136, 0.24);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--main-color);
}

.lead-hero__eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--main-color);
  box-shadow: 0 0 12px rgba(132, 240, 136, 0.8);
}

.lead-hero__title {
  margin: 0;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
  font-size: clamp(48px, 9vw, 120px);
  color: #fff;
}

.lead-hero__title span {
  background: linear-gradient(105deg, #6ee787 0%, #b6ffba 35%, #84f088 65%, #6ee787 100%);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  animation: leap-shimmer 6s linear infinite;
}

@keyframes leap-shimmer {
  0% { background-position: 200% 50%; }
  100% { background-position: 0% 50%; }
}

@media (prefers-reduced-motion: reduce) {
  .lead-hero__title span { animation: none; }
}

.lead-hero__tagline {
  margin: 0;
  font-size: clamp(16px, 1.8vw, 20px);
  font-weight: 400;
  color: var(--text-soft);
  max-width: 720px;
  line-height: 1.55;
}

.lead-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 6px;
}

.lead-hero__stats {
  display: flex;
  gap: 48px;
  margin-top: 28px;
}

.lead-hero__stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.lead-hero__stat strong {
  font-size: 30px;
  font-weight: 800;
  color: var(--main-color);
}

.lead-hero__stat span {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted-color);
}

.lead-hero__chains {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin-top: 30px;
}

.lead-hero__chains-label {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted-color);
}

.lead-hero__chain-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.lead-hero__chain-logos span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  padding: 8px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: transform 200ms ease, border-color 200ms ease, background 200ms ease;
}

.lead-hero__chain-logos span:hover {
  border-color: rgba(132, 240, 136, 0.4);
  background: rgba(132, 240, 136, 0.06);
  transform: translateY(-3px);
}

.lead-hero__chain-logos img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

@media (max-width: 720px) {
  .lead-hero {
    min-height: auto;
    padding: 30px 0 50px;
  }

  .lead-hero__stats {
    gap: 28px;
  }

  .lead-hero__stat strong {
    font-size: 24px;
  }

  .lead-hero__chain-logos span {
    width: 36px;
    height: 36px;
  }
}

/* ============ Feature cards ============ */

#features .section-header {
  max-width: none;
}

#features .section-header p {
  max-width: 860px;
}

#chains .section-header,
#payments .section-header,
#security .section-header,
#download .section-header {
  max-width: none;
  margin-left: 0;
  margin-right: 0;
  text-align: left;
}

#chains .section-header p,
#payments .section-header p,
#security .section-header p,
#download .section-header p {
  max-width: 860px;
  margin-left: 0;
  margin-right: 0;
}

#features {
  padding-top: 44px;
  padding-bottom: 56px;
}

.feature-cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 56px;
}

.feature-card {
  position: relative;
  padding: 30px 26px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.012));
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 270px;
  overflow: hidden;
  transition: border-color 200ms ease, background 200ms ease, transform 200ms ease;
}

.feature-card:hover {
  border-color: rgba(132, 240, 136, 0.28);
  background: rgba(132, 240, 136, 0.04);
  transform: translateY(-2px);
}

.feature-card::after {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(132, 240, 136, 0.25), transparent 40%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0;
  transition: opacity 200ms ease;
}

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

.feature-card__icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: rgba(132, 240, 136, 0.08);
  border: 1px solid rgba(132, 240, 136, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--main-color);
  flex-shrink: 0;
}

.feature-card__icon svg {
  width: 22px;
  height: 22px;
}

.feature-card strong {
  display: block;
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
}

.feature-card p {
  margin: 0;
  font-size: 14px;
  color: var(--muted-color);
  line-height: 1.6;
}

@media (max-width: 980px) {
  .feature-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 600px) {
  .feature-cards {
    grid-template-columns: 1fr;
  }
}

/* ============ Split sections ============ */

.split-section,
.p2p-section {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1.08fr);
  gap: 40px;
  align-items: center;
}

.feature-list {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  position: relative;
  margin-top: 12px;
  padding-left: 24px;
  color: var(--text-soft);
  font-size: 15px;
  line-height: 1.55;
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 14px;
  height: 8px;
  background: linear-gradient(135deg, var(--main-color), transparent 80%);
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'><path d='M1 4 L4.5 7 L11 1' stroke='black' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/></svg>") center / contain no-repeat;
  mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'><path d='M1 4 L4.5 7 L11 1' stroke='black' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/></svg>") center / contain no-repeat;
}

/* ============ Multichain marquee ============ */

.multichain-section .section-header {
  max-width: none;
}

.mc-stage {
  position: relative;
  margin-top: 48px;
  width: 100%;
}

.mc-marquee {
  display: flex;
  flex-direction: column;
  gap: 16px;
  overflow: hidden;
  -webkit-mask: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
  mask: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}

.mc-track {
  display: flex;
  gap: 14px;
  width: max-content;
}

.mc-track--left { animation: mc-marquee-left 46s linear infinite; }
.mc-track--right { animation: mc-marquee-right 54s linear infinite; }

@keyframes mc-marquee-left {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

@keyframes mc-marquee-right {
  from { transform: translateX(-50%); }
  to   { transform: translateX(0); }
}

.mc-chip {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  padding: 10px 22px 10px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 14px;
  font-weight: 600;
  color: var(--text-color);
  white-space: nowrap;
}

.mc-chip__ic {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  padding: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  flex-shrink: 0;
}

.mc-chip__ic img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.mc-chip--mt {
  background: linear-gradient(90deg, rgba(132, 240, 136, 0.16), rgba(132, 240, 136, 0.04));
  border-color: rgba(132, 240, 136, 0.4);
  color: var(--main-color);
  font-weight: 700;
}

.mc-chip--mt .mc-chip__ic {
  background: #062714;
}

.mc-chip--mt .mc-chip__ic svg {
  width: 100%;
  height: 100%;
  color: var(--main-color);
}

@media (prefers-reduced-motion: reduce) {
  .mc-track { animation: none; }
}

/* ============ Security section ============ */

.security-section .section-header {
  max-width: none;
  margin-bottom: 44px;
}

.security-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.security-card {
  padding: 26px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01));
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: border-color 200ms ease, background 200ms ease, transform 200ms ease;
}

.security-card:hover {
  border-color: rgba(132, 240, 136, 0.28);
  background: rgba(132, 240, 136, 0.04);
  transform: translateY(-2px);
}

.security-card__icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(132, 240, 136, 0.08);
  border: 1px solid rgba(132, 240, 136, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--main-color);
  flex-shrink: 0;
}

.security-card__icon svg {
  width: 18px;
  height: 18px;
}

.security-card strong {
  display: block;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
}

.security-card p {
  margin: 0;
  font-size: 14px;
  color: var(--muted-color);
  line-height: 1.6;
}

@media (max-width: 980px) {
  .security-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 600px) {
  .security-grid {
    grid-template-columns: 1fr;
  }
}

/* Partner ticker */

.partner-ticker-wrap {
  margin-top: 44px;
  position: relative;
}

.partner-ticker-wrap::before,
.partner-ticker-wrap::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 1;
  pointer-events: none;
}

.partner-ticker-wrap::before {
  left: 0;
  background: linear-gradient(90deg, #0a0f0d, transparent);
}

.partner-ticker-wrap::after {
  right: 0;
  background: linear-gradient(-90deg, #0a0f0d, transparent);
}

.partner-ticker {
  display: flex;
  overflow: hidden;
}

.partner-ticker__track {
  display: flex;
  align-items: center;
  gap: 10px;
  width: max-content;
  animation: marquee 36s linear infinite;
}

.partner-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 16px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.03);
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  white-space: nowrap;
  flex-shrink: 0;
}

.partner-chip::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
  background: var(--main-color);
}

.partner-chip--wallet::before { background: rgba(132, 240, 136, 0.9); }
.partner-chip--audit::before  { background: rgba(110, 231, 135, 0.9); }
.partner-chip--fund::before   { background: rgba(185, 255, 190, 0.9); }

/* ============ Payments section ============ */

.payments-section {
  text-align: left;
}

.payments-section .section-header {
  max-width: none;
  margin: 0 0 40px;
}

.payments-section .section-header p {
  max-width: 860px;
  margin-left: 0;
  margin-right: 0;
}

.payment-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.payment-card {
  padding: 28px 22px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01));
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
  transition: border-color 200ms ease, background 200ms ease, transform 200ms ease;
}

.payment-card:hover {
  border-color: rgba(132, 240, 136, 0.28);
  background: rgba(132, 240, 136, 0.04);
  transform: translateY(-2px);
}

.payment-card__icon {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: rgba(132, 240, 136, 0.08);
  border: 1px solid rgba(132, 240, 136, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--main-color);
  flex-shrink: 0;
}

.payment-card__icon svg {
  width: 26px;
  height: 26px;
}

.payment-card strong {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
}

.payment-card span {
  font-size: 13px;
  color: var(--muted-color);
  line-height: 1.5;
}

@media (max-width: 860px) {
  .payment-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 480px) {
  .payment-grid {
    grid-template-columns: 1fr;
  }
}

/* ============ Download section ============ */

.download-section {
  display: block;
  text-align: left;
}

.download-section .section-header {
  max-width: none;
  margin-bottom: 44px;
}

.download-section .section-header p {
  max-width: 860px;
}

.download-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 14px;
  margin-bottom: 24px;
  align-items: stretch;
}

.download-card {
  position: relative;
  padding: 28px 28px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01));
  display: flex;
  flex-direction: column;
  gap: 16px;
  overflow: hidden;
  text-align: left;
  transition: border-color 200ms ease, background 200ms ease, transform 200ms ease;
}

.download-card:hover {
  border-color: rgba(132, 240, 136, 0.28);
  transform: translateY(-2px);
}

.download-card--main {
  padding: 32px;
  background:
    radial-gradient(80% 90% at 0% 0%, rgba(132,240,136,0.18), transparent 60%),
    linear-gradient(180deg, rgba(132,240,136,0.05), rgba(132,240,136,0.01));
  border-color: rgba(132, 240, 136, 0.28);
}

/* Release notes card */
.download-card--notes {
  padding: 28px;
}

.release-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.release-tag {
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(132, 240, 136, 0.12);
  border: 1px solid rgba(132, 240, 136, 0.32);
  color: var(--main-color);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  flex-shrink: 0;
}

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

.release-list li {
  display: grid;
  grid-template-columns: 46px 1fr;
  align-items: start;
  gap: 12px;
  padding: 0;
}

.release-list__tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 0;
  border-radius: 6px;
  font-size: 9.5px;
  font-weight: 800;
  letter-spacing: 0.08em;
  border: 1px solid rgba(255,255,255,0.07);
  background: rgba(255,255,255,0.04);
  color: var(--muted-color);
  text-transform: uppercase;
  width: 46px;
  text-align: center;
  margin-top: 2px;
}

.release-list__tag--new {
  background: rgba(132, 240, 136, 0.1);
  border-color: rgba(132, 240, 136, 0.28);
  color: var(--main-color);
}

.release-list__tag--improved {
  background: rgba(110, 200, 230, 0.08);
  border-color: rgba(110, 200, 230, 0.28);
  color: #8ed5ee;
}

.release-list__tag--security {
  background: rgba(200, 150, 255, 0.08);
  border-color: rgba(200, 150, 255, 0.28);
  color: #c79bff;
}

.release-list__tag--fix {
  background: rgba(255, 200, 100, 0.08);
  border-color: rgba(255, 200, 100, 0.28);
  color: #ffce7a;
}

.release-list li strong {
  display: block;
  font-size: 13.5px;
  font-weight: 700;
  color: #fff;
  line-height: 1.25;
  letter-spacing: -0.005em;
}

.release-list li span {
  display: block;
  margin-top: 3px;
  font-size: 12px;
  color: var(--muted-color);
  line-height: 1.5;
}


.download-card__num {
  display: block;
  font-family: 'JetBrains Mono', 'SF Mono', monospace;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--muted-color);
  text-transform: uppercase;
  margin-bottom: 10px;
}

.download-card__title {
  margin: 0;
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  line-height: 1.18;
  letter-spacing: -0.01em;
}

.download-card--main .download-card__title {
  font-size: 30px;
}

.download-card__body {
  margin: 0;
  font-size: 14.5px;
  color: var(--muted-color);
  line-height: 1.55;
}

.download-card__icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: rgba(132, 240, 136, 0.08);
  border: 1px solid rgba(132, 240, 136, 0.2);
  color: var(--main-color);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.download-card__icon svg {
  width: 22px;
  height: 22px;
}

.download-platforms {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.download-platform {
  display: grid;
  grid-template-columns: 30px 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.32);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: border-color 160ms ease, background 160ms ease, transform 160ms ease;
  color: inherit;
}

.download-platform:hover,
.download-platform:focus-visible {
  border-color: rgba(132, 240, 136, 0.45);
  background: linear-gradient(135deg, rgba(132, 240, 136, 0.1), rgba(132, 240, 136, 0.02));
  transform: translateY(-1px);
  outline: none;
}

.download-platform__os {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
}

.download-platform__os svg {
  width: 24px;
  height: 24px;
  display: block;
}

.download-platform__os--tux {
  color: #fff;
}

.download-platform__os--tux .tux-mask {
  width: 26px;
  height: 26px;
  background: currentColor;
  -webkit-mask: url("../public/linux.png") center / contain no-repeat;
  mask: url("../public/linux.png") center / contain no-repeat;
}

.download-platform__text strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.01em;
}

.download-platform__text span {
  display: block;
  font-size: 11.5px;
  color: var(--muted-color);
  margin-top: 2px;
  letter-spacing: 0.01em;
}

.download-platform__cta {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--muted-color);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.download-platform__cta svg {
  width: 14px;
  height: 14px;
}

.download-platform:hover .download-platform__cta,
.download-platform:focus-visible .download-platform__cta {
  background: var(--main-color);
  border-color: transparent;
  color: #052010;
  box-shadow: 0 8px 18px -6px rgba(110, 231, 135, 0.55);
}

.download-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  padding-top: 16px;
  margin-top: auto;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 11.5px;
  color: var(--muted-color);
}

.download-meta span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.download-meta i {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--main-color);
  box-shadow: 0 0 6px rgba(132,240,136,0.6);
  flex-shrink: 0;
}

/* Mobile companion card */
.download-stores {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
}

.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: #fff;
  transition: border-color 160ms ease, transform 160ms ease;
}

.store-badge:hover {
  border-color: rgba(132, 240, 136, 0.4);
  transform: translateY(-1px);
}

.store-badge svg {
  width: 22px;
  height: 22px;
  color: var(--main-color);
  flex-shrink: 0;
}

.store-badge span {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.store-badge i {
  font-style: normal;
  font-size: 9px;
  color: var(--muted-color);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.store-badge b {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
}

/* Browser extension card */
.download-browsers {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: auto;
}

.browser-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 13px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 11.5px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.82);
}

.browser-pill i {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

/* System requirements strip */
.download-reqs {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
  padding: 24px 28px;
  border-radius: 22px;
  border: 1px solid rgba(132, 240, 136, 0.14);
  background: linear-gradient(135deg, rgba(132, 240, 136, 0.04), rgba(132, 240, 136, 0.01));
}

.req {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-right: 14px;
  border-right: 1px solid rgba(255, 255, 255, 0.05);
}

.req:last-child {
  border-right: none;
}

.req strong {
  font-size: 16px;
  color: #fff;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.req span {
  font-size: 11.5px;
  color: var(--muted-color);
  font-weight: 500;
}

@media (max-width: 880px) {
  .download-grid {
    grid-template-columns: 1fr;
  }
  .download-reqs { grid-template-columns: repeat(2, 1fr); }
  .req { border-right: none; }
}

/* ============ FAQ ============ */

.faq-section {
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}

.faq-header {
  margin-bottom: 32px;
  text-align: center;
}

.faq-header h2 {
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 700;
  margin: 0 0 14px;
  letter-spacing: -0.02em;
  color: #fff;
}

.faq-header p {
  font-size: 16px;
  color: var(--text-soft);
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

.faq-list {
  display: grid;
  gap: 8px;
}

.faq-item {
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  overflow: hidden;
  transition: border-color 200ms ease;
}

.faq-item.is-open {
  border-color: rgba(132, 240, 136, 0.32);
}

.faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-color);
  text-align: left;
  font-family: inherit;
}

.faq-trigger span {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
  color: #fff;
}

.faq-chevron {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--main-color);
  transition: transform 0.25s ease;
}

.faq-item.is-open .faq-chevron {
  transform: rotate(180deg);
}

.faq-body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.28s ease;
}

.faq-item.is-open .faq-body {
  grid-template-rows: 1fr;
}

.faq-body-inner {
  overflow: hidden;
}

.faq-body-inner p {
  margin: 0;
  padding: 0 24px 22px;
  color: var(--text-soft);
  font-size: 15px;
  line-height: 1.65;
}

/* ============ Animations ============ */

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(0.96);
    opacity: 0.72;
  }

  50% {
    transform: scale(1.05);
    opacity: 1;
  }
}

@keyframes leap-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.7); }
}

@media (max-width: 980px) {
  .split-section,
  .p2p-section {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .content-section {
    margin-top: 76px;
  }
}

@media (max-width: 860px) {
  .site-nav {
    display: none;
  }
}

@media (max-width: 720px) {
  .page-content-inner {
    width: min(100% - 32px, 1200px);
    padding-top: 40px;
  }
}

/* ============ Desktop laptop mockups ============ */

.laptop-visual {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  position: relative;
}

.laptop-visual--center {
  justify-content: center;
}

.content-section:has(.laptop-visual) {
  align-items: center;
}

.device-laptop {
  position: relative;
  width: 100%;
  max-width: 720px;
  z-index: 1;
}

.device-laptop::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 8%;
  left: 8%;
  right: 8%;
  bottom: 8%;
  background: radial-gradient(closest-side, rgba(132, 240, 136, 0.22), transparent 70%);
  filter: blur(40px);
  pointer-events: none;
}

.device-laptop__screen {
  border: 12px solid #0a0e0d;
  border-bottom-width: 14px;
  border-radius: 18px 18px 6px 6px;
  background: #0a0f0d;
  overflow: hidden;
  box-shadow:
    0 40px 90px -25px rgba(0, 0, 0, 0.8),
    0 0 0 1px rgba(132, 240, 136, 0.12),
    inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.device-laptop__base {
  position: relative;
  height: 14px;
  margin: 0 -7%;
  border-radius: 0 0 16px 16px;
  background: linear-gradient(180deg, #1a1f1d 0%, #0a0f0d 100%);
  box-shadow: 0 18px 34px -12px rgba(0, 0, 0, 0.6);
}

.device-laptop__notch {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 96px;
  height: 7px;
  border-radius: 0 0 8px 8px;
  background: rgba(0, 0, 0, 0.55);
}

/* Generic wallet app mockup shell */

.lw-app {
  display: grid;
  grid-template-columns: 200px minmax(0, 1fr);
  min-height: 460px;
  background: #0a0f0d;
}

.lw-side {
  padding: 18px 14px;
  border-right: 1px solid rgba(255,255,255,0.05);
  background: linear-gradient(180deg, #0d1411 0%, #0a0f0d 100%);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.lw-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 4px 6px;
}

.lw-brand-mark {
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.lw-brand-mark img {
  width: 26px;
  height: 26px;
  display: block;
  object-fit: contain;
}

.lw-brand-text {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.01em;
}

.lw-search {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 10px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.05);
  color: rgba(255,255,255,0.4);
  font-size: 12px;
}

.lw-search svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.lw-nav {
  display: flex;
  flex-direction: column;
  gap: 2px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.lw-nav li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 10px;
  border-radius: 9px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.55);
  cursor: default;
}

.lw-nav li.is-active {
  background: rgba(132, 240, 136, 0.1);
  color: var(--main-color);
  font-weight: 600;
}

.lw-nav li svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.lw-nav-divider {
  height: 1px;
  background: rgba(255,255,255,0.05);
  margin: 6px 4px;
}

.lw-side-card {
  margin-top: auto;
  padding: 12px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(132, 240, 136, 0.1), rgba(132, 240, 136, 0.02));
  border: 1px solid rgba(132, 240, 136, 0.18);
}

.lw-side-card strong {
  display: block;
  font-size: 12px;
  color: #fff;
  font-weight: 700;
  margin-bottom: 3px;
}

.lw-side-card span {
  display: block;
  font-size: 10px;
  color: var(--muted-color);
  line-height: 1.5;
  margin-bottom: 8px;
}

.lw-side-card a {
  display: inline-flex;
  align-items: center;
  padding: 5px 10px;
  border-radius: 6px;
  background: var(--main-color);
  color: #052010;
  font-size: 10px;
  font-weight: 700;
}

.lw-main {
  padding: 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-width: 0;
}

.lw-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.lw-acct {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px 6px 6px;
  border-radius: 999px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
}

.lw-acct__avatar {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: linear-gradient(135deg, #6ee787, #b6ffba);
}

.lw-acct__name {
  font-size: 12px;
  font-weight: 600;
  color: #fff;
}

.lw-acct__addr {
  font-size: 10px;
  color: var(--muted-color);
  font-family: 'SF Mono', Menlo, monospace;
}

.lw-topbar-actions {
  display: flex;
  align-items: center;
  gap: 6px;
}

.lw-icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.55);
}

.lw-icon-btn svg {
  width: 13px;
  height: 13px;
}

/* Portfolio mockup */

.lw-balance {
  padding: 18px 20px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(132, 240, 136, 0.12), rgba(132, 240, 136, 0.02) 70%);
  border: 1px solid rgba(132, 240, 136, 0.22);
  position: relative;
  overflow: hidden;
}

.lw-balance__label {
  display: block;
  font-size: 11px;
  color: var(--muted-color);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.lw-balance__row {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.lw-balance__value {
  font-size: 28px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
}

.lw-balance__delta {
  font-size: 12px;
  font-weight: 600;
  color: var(--main-color);
}

.lw-balance__actions {
  display: flex;
  gap: 8px;
  margin-top: 14px;
}

.lw-act-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 13px;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
}

.lw-act-pill svg {
  width: 12px;
  height: 12px;
}

.lw-act-pill--primary {
  background: var(--main-color);
  color: #052010;
  border-color: transparent;
}

.lw-section-h {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 4px;
}

.lw-section-h strong {
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.lw-section-h span {
  font-size: 11px;
  color: var(--muted-color);
}

.lw-tokens {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.lw-token {
  display: grid;
  grid-template-columns: 28px 1fr auto;
  align-items: center;
  gap: 10px;
  padding: 8px 8px;
  border-radius: 9px;
  transition: background 160ms ease;
}

.lw-token:hover {
  background: rgba(255,255,255,0.025);
}

.lw-token__ic {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #0d1411;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lw-token__ic img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.lw-token__name strong {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}

.lw-token__name span {
  display: block;
  font-size: 10px;
  color: var(--muted-color);
  margin-top: 2px;
}

.lw-token__val {
  text-align: right;
}

.lw-token__val strong {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}

.lw-token__val span {
  display: block;
  font-size: 10px;
  margin-top: 2px;
  font-weight: 500;
}

.lw-token__val .up { color: var(--main-color); }
.lw-token__val .down { color: #ff7373; }
.lw-token__val .muted { color: var(--muted-color); }

/* Swap mockup */

.lw-swap-card {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 16px;
  border-radius: 14px;
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.06);
  position: relative;
}

.lw-swap-leg {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 14px 14px;
  border-radius: 12px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.05);
}

.lw-swap-leg + .lw-swap-leg {
  margin-top: 8px;
}

.lw-swap-leg__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.lw-swap-leg__label {
  font-size: 10px;
  color: var(--muted-color);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
}

.lw-swap-leg__balance {
  font-size: 10px;
  color: var(--muted-color);
}

.lw-swap-leg__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.lw-swap-token {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px 6px 6px;
  border-radius: 999px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.06);
}

.lw-swap-token img {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #0d1411;
  padding: 3px;
}

.lw-swap-token__text strong {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}

.lw-swap-token__text span {
  display: block;
  font-size: 9px;
  color: var(--muted-color);
  margin-top: 2px;
}

.lw-swap-token__caret {
  margin-left: 4px;
  color: var(--muted-color);
}

.lw-swap-amount {
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  text-align: right;
  letter-spacing: -0.02em;
}

.lw-swap-amount__fiat {
  display: block;
  font-size: 10px;
  color: var(--muted-color);
  margin-top: 2px;
  font-weight: 500;
}

.lw-swap-arrow {
  align-self: center;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--main-color);
  color: #052010;
  margin: -10px 0;
  z-index: 2;
  border: 3px solid #0a0f0d;
  box-shadow: 0 6px 16px rgba(0,0,0,0.4);
}

.lw-swap-arrow svg {
  width: 14px;
  height: 14px;
}

.lw-swap-meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 12px 6px 4px;
}

.lw-swap-meta__row {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
}

.lw-swap-meta__row span:first-child {
  color: var(--muted-color);
}

.lw-swap-meta__row span:last-child {
  color: #fff;
  font-weight: 600;
}

.lw-swap-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  border-radius: 12px;
  background: var(--main-color);
  color: #052010;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-top: 10px;
}

/* Buy mockup */

.lw-buy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.lw-buy-side {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.lw-buy-amount {
  padding: 18px;
  border-radius: 14px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.05);
  text-align: center;
}

.lw-buy-amount span {
  font-size: 10px;
  color: var(--muted-color);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lw-buy-amount strong {
  display: block;
  font-size: 36px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
  margin: 6px 0;
}

.lw-buy-amount i {
  display: block;
  font-style: normal;
  font-size: 11px;
  color: var(--main-color);
  font-weight: 600;
}

.lw-buy-keys {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
}

.lw-buy-key {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  border-radius: 8px;
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.04);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
}

.lw-buy-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 10px;
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.04);
}

.lw-buy-row__ic {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: rgba(132, 240, 136, 0.1);
  color: var(--main-color);
  display: flex;
  align-items: center;
  justify-content: center;
}

.lw-buy-row__ic svg { width: 14px; height: 14px; }

.lw-buy-row__text {
  flex: 1;
  min-width: 0;
}

.lw-buy-row__text strong {
  display: block;
  font-size: 11px;
  color: #fff;
  font-weight: 700;
  line-height: 1.2;
}

.lw-buy-row__text span {
  display: block;
  font-size: 9px;
  color: var(--muted-color);
  margin-top: 2px;
}

.lw-buy-row__check {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--main-color);
  color: #052010;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lw-buy-row__check svg { width: 10px; height: 10px; }

.lw-buy-row--inactive .lw-buy-row__check {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.1);
}

.lw-buy-row--inactive .lw-buy-row__check svg { display: none; }

.lw-buy-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 13px;
  border-radius: 10px;
  background: var(--main-color);
  color: #052010;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

/* Settings mockup */

.lw-set {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.lw-set-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.04);
}

.lw-set-row__ic {
  width: 32px;
  height: 32px;
  border-radius: 9px;
  background: rgba(132, 240, 136, 0.1);
  color: var(--main-color);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.lw-set-row__ic svg { width: 16px; height: 16px; }

.lw-set-row__text {
  flex: 1;
  min-width: 0;
}

.lw-set-row__text strong {
  display: block;
  font-size: 13px;
  color: #fff;
  font-weight: 700;
  line-height: 1.2;
}

.lw-set-row__text span {
  display: block;
  font-size: 11px;
  color: var(--muted-color);
  margin-top: 3px;
}

.lw-toggle {
  width: 32px;
  height: 18px;
  border-radius: 999px;
  background: var(--main-color);
  position: relative;
  flex-shrink: 0;
}

.lw-toggle::after {
  content: "";
  position: absolute;
  top: 2px;
  right: 2px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #052010;
}

.lw-toggle--off {
  background: rgba(255,255,255,0.1);
}

.lw-toggle--off::after {
  left: 2px;
  right: auto;
  background: rgba(255,255,255,0.4);
}

.lw-set-row__chev {
  color: var(--muted-color);
  font-size: 14px;
  flex-shrink: 0;
}

/* ============ Footer ============ */

.site-footer {
  position: relative;
  z-index: 1;
  background: #0a0f0d;
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 40px 0 32px;
}

.site-footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.site-footer-divider {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  margin: 0;
}

.site-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.site-footer-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.site-footer-nav__link {
  font-size: 13px;
  font-weight: 500;
  color: rgba(232, 245, 230, 0.6);
  transition: color 160ms ease;
}

.site-footer-nav__link:hover {
  color: var(--main-color);
}

.site-footer-copy {
  font-size: 12px;
  color: rgba(232, 245, 230, 0.4);
  white-space: nowrap;
}

.site-footer-social {
  display: flex;
  align-items: center;
  gap: 8px;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(255, 255, 255, 0.03);
  color: rgba(232, 245, 230, 0.5);
  transition: border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.social-icon svg {
  width: 15px;
  height: 15px;
  display: block;
}

.social-icon:hover {
  border-color: rgba(132, 240, 136, 0.4);
  background: rgba(132, 240, 136, 0.06);
  color: var(--main-color);
}

/* ============ Consent popup ============ */

.consent-popups[hidden] {
  display: none;
}

.consent-popups {
  position: fixed;
  left: 50%;
  bottom: 22px;
  z-index: 80;
  width: min(1200px, calc(100% - 60px));
  transform: translateX(-50%);
  pointer-events: none;
}

.consent-popup {
  pointer-events: auto;
  display: grid;
  grid-template-columns: minmax(260px, auto) 1fr;
  gap: 24px;
  align-items: center;
  width: 100%;
  padding: 20px 24px;
  border: 1px solid rgba(132, 240, 136, 0.16);
  border-radius: 18px;
  background: rgba(10, 15, 13, 0.96);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(16px);
}

.consent-popup-header h2 {
  margin: 0;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
}

.consent-popup-header p {
  margin: 8px 0 0;
  color: var(--muted-color);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
}

.consent-popup-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 22px;
  min-width: 0;
}

.consent-link-button {
  color: rgba(232, 245, 230, 0.55);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.2;
  text-align: right;
  text-decoration: none;
  transition: color 180ms ease;
}

.consent-link-button:hover {
  color: var(--main-color);
}

.consent-popup-button {
  min-height: 46px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 10px;
  background: var(--main-color);
  color: #052010;
  font: inherit;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: background 160ms ease, transform 160ms ease;
}

.consent-popup-button:hover {
  background: #86ff9a;
  transform: translateY(-1px);
}

@media (max-width: 760px) {
  .consent-popups {
    bottom: 14px;
    width: calc(100% - 28px);
  }

  .consent-popup {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 18px;
    text-align: left;
  }

  .consent-popup-right {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .consent-link-button {
    text-align: left;
  }

  .consent-popup-button {
    width: 100%;
  }
}

/* ============ Support chat ============ */

#support-chat {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 100;
}

.support-fab {
  width: 52px;
  height: 52px;
  border-radius: 999px;
  background: var(--main-color);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #052010;
  box-shadow: 0 4px 20px rgba(132, 240, 136, 0.35);
  transition: transform 0.2s, box-shadow 0.2s;
}

.support-fab:hover {
  transform: scale(1.07);
  box-shadow: 0 6px 28px rgba(132, 240, 136, 0.5);
}

.support-fab__icon {
  width: 22px;
  height: 22px;
  position: absolute;
  transition: opacity 0.2s, transform 0.2s;
}

.support-fab__icon--close {
  opacity: 0;
  transform: rotate(-90deg) scale(0.7);
}

.support-fab.is-open .support-fab__icon--chat {
  opacity: 0;
  transform: rotate(90deg) scale(0.7);
}

.support-fab.is-open .support-fab__icon--close {
  opacity: 1;
  transform: rotate(0deg) scale(1);
}

.support-window {
  position: absolute;
  bottom: 64px;
  right: 0;
  width: 340px;
  background: #0d1411;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.6);
  opacity: 0;
  transform: translateY(12px) scale(0.97);
  pointer-events: none;
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.support-window.is-open {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: all;
}

.support-window__header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  background: #0a0f0d;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.support-window__title {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.support-window__title strong {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
}

.support-window__title span {
  font-size: 12px;
  color: var(--muted-color);
}

.support-messages {
  flex: 1;
  min-height: 220px;
  max-height: 320px;
  overflow-y: auto;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  scrollbar-width: thin;
  scrollbar-color: rgba(255,255,255,0.1) transparent;
}

.support-msg {
  max-width: 80%;
  padding: 10px 14px;
  border-radius: 14px;
  font-size: 14px;
  line-height: 1.5;
  word-break: break-word;
}

.support-msg--bot {
  background: rgba(255,255,255,0.05);
  color: var(--text-color);
  align-self: flex-start;
  border-bottom-left-radius: 4px;
}

.support-msg--user {
  background: var(--main-color);
  color: #052010;
  align-self: flex-end;
  border-bottom-right-radius: 4px;
  font-weight: 500;
}

.support-msg--typing {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 12px 16px;
}

.support-msg--typing span {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: rgba(232, 245, 230, 0.4);
  animation: typing-dot 1.2s ease-in-out infinite;
}

.support-msg--typing span:nth-child(2) { animation-delay: 0.2s; }
.support-msg--typing span:nth-child(3) { animation-delay: 0.4s; }

@keyframes typing-dot {
  0%, 80%, 100% { transform: scale(1); opacity: 0.4; }
  40% { transform: scale(1.3); opacity: 1; }
}

.support-input-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.support-input {
  flex: 1;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  padding: 9px 14px;
  font-size: 14px;
  font-family: inherit;
  color: var(--text-color);
  outline: none;
  transition: border-color 0.15s;
}

.support-input::placeholder {
  color: rgba(232, 245, 230, 0.4);
}

.support-input:focus {
  border-color: rgba(132, 240, 136, 0.5);
}

.support-input:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.support-send {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: var(--main-color);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #052010;
  flex-shrink: 0;
  transition: opacity 0.15s, transform 0.15s;
}

.support-send svg {
  width: 16px;
  height: 16px;
}

.support-send:hover {
  transform: scale(1.08);
}

.support-send:disabled {
  opacity: 0.35;
  cursor: not-allowed;
  transform: none;
}

@media (max-width: 980px) {
  .lw-app {
    grid-template-columns: 1fr;
  }
  .lw-side {
    display: none;
  }
  .device-laptop {
    margin: 0 auto;
  }
}

/* ============ Feature-screen (vertical, full-width laptop) ============ */

.feature-screen {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 64px;
  padding-top: 4px;
  padding-bottom: 4px;
}

.feature-screen__head {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  max-width: none;
}

.feature-screen__head .eyebrow {
  align-self: flex-start;
  margin: 0 0 26px;
  gap: 14px;
  font-size: 13.2px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.feature-screen__head h2 {
  margin: 0;
  color: var(--heading-color);
  letter-spacing: -0.02em;
  font-size: clamp(28.16px, 3.872vw, 49.28px);
  font-weight: 700;
  line-height: 1.06;
  max-width: 760px;
}

.feature-screen__head .lede {
  margin: 18px 0 0;
  color: var(--text-soft);
  font-size: clamp(15px, 1.6vw, 18px);
  line-height: 1.65;
  max-width: 860px;
}

.feature-screen__head .feature-list {
  margin-top: 4px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  max-width: 860px;
}

.feature-screen__head .feature-list li {
  margin-top: 0;
  font-size: 15px;
  padding-left: 22px;
}

#portfolio .feature-list,
#swap .feature-list,
#buy .feature-list,
#custody .feature-list {
  grid-template-columns: 1fr;
  gap: 10px;
}

#portfolio .feature-list li,
#swap .feature-list li,
#buy .feature-list li,
#custody .feature-list li {
  white-space: nowrap;
}

.feature-screen__device {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
}

.feature-screen__device .device-laptop {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
}

.laptop-shot {
  display: block;
  width: 100%;
  height: auto;
  background: #0a0f0d;
}

@media (max-width: 980px) {
  .feature-screen__head {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .feature-screen__head .lede {
    margin-left: 0;
  }
}

/* Constrain laptop width for nicer proportions */
.feature-screen .device-laptop { max-width: 880px; }
.feature-screen .device-laptop__screen { max-width: none; }

.feature-screen .device-laptop__screen .lw-app { min-height: 420px; }

.feature-screen .device-laptop__screen { border-width: 10px; border-bottom-width: 12px; border-radius: 18px 18px 6px 6px; }
.feature-screen .device-laptop__base { height: 10px; }

/* ============ Bento grid for features ============ */

.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: minmax(220px, auto);
  gap: 14px;
  margin-top: 56px;
}

.bento-card {
  position: relative;
  padding: 32px 30px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: linear-gradient(180deg, rgba(255,255,255,0.035), rgba(255,255,255,0.012));
  display: flex;
  flex-direction: column;
  gap: 14px;
  overflow: hidden;
  transition: border-color 200ms ease, background 200ms ease, transform 200ms ease;
}

.bento-card:hover {
  border-color: rgba(132, 240, 136, 0.32);
  transform: translateY(-2px);
}

.bento-card--wide { grid-column: span 2; }
.bento-card--tall { grid-row: span 2; }
.bento-card--full { grid-column: span 3; }

.bento-card__num {
  font-family: 'JetBrains Mono', 'SF Mono', monospace;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--muted-color);
  margin-bottom: 4px;
  padding-right: 60px;
}

.bento-card__title {
  display: block;
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  letter-spacing: -0.01em;
  padding-right: 60px;
}

.bento-card__body {
  margin: 0;
  font-size: 14.5px;
  color: var(--muted-color);
  line-height: 1.6;
  max-width: 44ch;
}

.bento-card__icon {
  position: absolute;
  top: 28px;
  right: 28px;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(132, 240, 136, 0.08);
  border: 1px solid rgba(132, 240, 136, 0.2);
  color: var(--main-color);
  display: flex;
  align-items: center;
  justify-content: center;
}

.bento-card__icon svg { width: 20px; height: 20px; }

.bento-card__visual {
  margin-top: auto;
  position: relative;
}

.bento-card--featured {
  background:
    radial-gradient(120% 80% at 100% 0%, rgba(132, 240, 136, 0.18), transparent 55%),
    linear-gradient(180deg, rgba(132, 240, 136, 0.08), rgba(132, 240, 136, 0.01));
  border-color: rgba(132, 240, 136, 0.28);
}

.bento-card__chains {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: auto;
}

.bento-card__chain {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 5px 11px 5px 5px;
  border-radius: 999px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  font-size: 11px;
  font-weight: 600;
  color: rgba(255,255,255,0.78);
}

.bento-card__chain img {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(0,0,0,0.3);
  padding: 2px;
}

.bento-card__stat {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-top: auto;
}

.bento-card__stat strong {
  font-size: 44px;
  font-weight: 800;
  color: var(--main-color);
  letter-spacing: -0.03em;
  line-height: 1;
}

.bento-card__stat span {
  font-size: 13px;
  color: var(--muted-color);
  font-weight: 500;
}

.bento-mini-bars {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 80px;
  margin-top: auto;
}

.bento-mini-bars span {
  flex: 1;
  background: linear-gradient(180deg, var(--main-color), rgba(132,240,136,0.2));
  border-radius: 4px 4px 2px 2px;
  opacity: 0.85;
}

@media (max-width: 880px) {
  .bento-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .bento-card--wide, .bento-card--full { grid-column: span 2; }
  .bento-card--tall { grid-row: auto; }
}

@media (max-width: 540px) {
  .bento-grid { grid-template-columns: 1fr; }
  .bento-card--wide, .bento-card--full { grid-column: auto; }
}

/* ============ Stats strip ============ */

.stats-strip {
  margin-top: 88px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  padding: 26px 28px;
  border-radius: 22px;
  border: 1px solid rgba(132, 240, 136, 0.14);
  background: linear-gradient(135deg, rgba(132, 240, 136, 0.04), rgba(132, 240, 136, 0.01));
}

.stats-strip__item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-right: 14px;
  border-right: 1px solid rgba(255,255,255,0.05);
}

.stats-strip__item:last-child { border-right: none; }

.stats-strip__value {
  font-size: 28px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1;
}

.stats-strip__value i {
  font-style: normal;
  color: var(--main-color);
}

.stats-strip__label {
  font-size: 12px;
  font-weight: 500;
  color: var(--muted-color);
  letter-spacing: 0.04em;
}

@media (max-width: 720px) {
  .stats-strip { grid-template-columns: repeat(2, 1fr); }
  .stats-strip__item:nth-child(2) { border-right: none; }
}

/* ============ Section divider ============ */

.section-divider {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 88px 0 0;
  color: var(--muted-color);
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.section-divider::before,
.section-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(132,240,136,0.18), transparent);
}

/* ============ Richer 3-column dashboard mockup (lw-app--3col) ============ */

.lw-app--3col {
  display: grid;
  grid-template-columns: 172px minmax(0, 1fr) 218px;
  min-height: 460px;
  background: #0a0f0d;
}

.lw-app--3col .lw-side {
  padding: 10px 8px;
  gap: 8px;
}

.lw-app--3col .lw-side .lw-search {
  padding: 5px 8px;
  font-size: 10.5px;
}

.lw-app--3col .lw-nav {
  gap: 1px;
}

.lw-app--3col .lw-nav li {
  padding: 5px 8px;
  font-size: 11.5px;
}

.lw-app--3col .lw-nav li svg {
  width: 13px;
  height: 13px;
}

.lw-app--3col .lw-side-meta {
  font-size: 8.5px;
  padding: 0 8px;
  margin-top: 2px;
  margin-bottom: 0;
}

.lw-app--3col .lw-side-card {
  padding: 8px 10px;
  margin-top: auto;
}

.lw-app--3col .lw-side-card strong {
  font-size: 11px;
}

.lw-app--3col .lw-side-card span {
  font-size: 9.5px;
  margin-bottom: 6px;
}

.lw-app--3col .lw-side-card a {
  padding: 4px 8px;
  font-size: 9.5px;
}

.lw-app--3col .lw-main {
  padding: 12px 14px;
  gap: 10px;
}

.lw-app--3col .lw-acct {
  padding: 4px 10px 4px 4px;
  max-width: 200px;
  overflow: hidden;
}

.lw-app--3col .lw-acct__avatar {
  width: 22px;
  height: 22px;
}

.lw-app--3col .lw-acct__name {
  font-size: 11px;
  white-space: nowrap;
}

.lw-app--3col .lw-acct__addr {
  font-size: 9px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 160px;
}

.lw-app--3col .lw-tabs span {
  padding: 4px 9px;
  font-size: 10px;
}

.lw-app--3col .lw-icon-btn {
  width: 24px;
  height: 24px;
}

.lw-app--3col .lw-bigbal {
  padding: 12px 14px;
  gap: 10px;
}

.lw-app--3col .lw-bigbal__value {
  font-size: 22px;
}

.lw-app--3col .lw-bigbal__chart {
  min-height: 60px;
  max-height: 80px;
}

.lw-app--3col .lw-bigbal__actions {
  gap: 5px;
  margin-top: 8px;
}

.lw-app--3col .lw-act-pill {
  padding: 5px 10px;
  font-size: 10.5px;
  gap: 4px;
}

.lw-app--3col .lw-act-pill svg {
  width: 10px;
  height: 10px;
}

.lw-app--3col .lw-bigbal__chart {
  min-height: 100px;
}

.lw-app--3col .lw-bigbal__range span {
  padding: 2px 6px;
  font-size: 9px;
}

.lw-rightpanel {
  border-left: 1px solid rgba(255,255,255,0.05);
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: linear-gradient(180deg, #0c1411 0%, #0a0f0d 100%);
  min-width: 0;
  overflow: hidden;
}

.lw-rightpanel-block {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.lw-rightpanel-block__h {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.lw-rightpanel-block__h strong {
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.lw-rightpanel-block__h a {
  font-size: 10px;
  color: var(--main-color);
  font-weight: 600;
}

@media (max-width: 980px) {
  .lw-app--3col {
    grid-template-columns: 1fr;
  }
  .lw-app--3col .lw-side,
  .lw-rightpanel {
    display: none;
  }
}

/* Richer sidebar */
.lw-side {
  gap: 16px;
}

.lw-side-meta {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.35);
  text-transform: uppercase;
  padding: 0 10px;
  margin-bottom: 4px;
  margin-top: 4px;
}

.lw-nav-badge {
  margin-left: auto;
  padding: 2px 7px;
  border-radius: 999px;
  background: rgba(132, 240, 136, 0.15);
  color: var(--main-color);
  font-size: 9px;
  font-weight: 700;
}

/* Status bar at bottom of mockup */
.lw-statusbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 8px 16px;
  border-top: 1px solid rgba(255,255,255,0.04);
  background: rgba(0,0,0,0.25);
  font-size: 10px;
  color: var(--muted-color);
}

.lw-statusbar__dot {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.lw-statusbar__dot::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--main-color);
  box-shadow: 0 0 8px var(--main-color);
}

.lw-statusbar__group {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

/* Big balance/chart card */
.lw-bigbal {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 18px;
  padding: 18px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(132, 240, 136, 0.1), rgba(132, 240, 136, 0.01) 75%);
  border: 1px solid rgba(132, 240, 136, 0.18);
}

.lw-bigbal__left { display: flex; flex-direction: column; gap: 8px; }

.lw-bigbal__label {
  font-size: 10px;
  color: var(--muted-color);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
}

.lw-bigbal__value {
  font-size: 30px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1;
}

.lw-bigbal__delta {
  font-size: 11px;
  font-weight: 600;
  color: var(--main-color);
}

.lw-bigbal__actions {
  display: flex;
  gap: 6px;
  margin-top: 10px;
  flex-wrap: wrap;
}

.lw-bigbal__chart {
  position: relative;
  min-height: 110px;
}

.lw-bigbal__chart svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.lw-bigbal__range {
  display: flex;
  gap: 4px;
  margin-bottom: 6px;
  justify-content: flex-end;
}

.lw-bigbal__range span {
  padding: 3px 8px;
  border-radius: 6px;
  font-size: 10px;
  font-weight: 600;
  color: var(--muted-color);
}

.lw-bigbal__range span.is-active {
  background: rgba(132, 240, 136, 0.15);
  color: var(--main-color);
}

/* Asset table (richer than lw-tokens) */
.lw-table {
  border-radius: 12px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.05);
  overflow: hidden;
}

.lw-table__head,
.lw-table__row {
  display: grid;
  grid-template-columns: 24px 1.2fr 0.7fr 0.7fr 0.9fr 0.9fr 18px;
  align-items: center;
  gap: 10px;
  padding: 6px 12px;
  font-size: 11px;
}

.lw-table__head {
  background: rgba(255,255,255,0.025);
  color: var(--muted-color);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 9.5px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.lw-table__row {
  border-bottom: 1px solid rgba(255,255,255,0.03);
  transition: background 160ms ease;
}

.lw-table__row:last-child { border-bottom: none; }

.lw-table__row:hover { background: rgba(132, 240, 136, 0.03); }

.lw-table__asset {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}

.lw-table__asset img {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #0d1411;
  padding: 3px;
  flex-shrink: 0;
}

.lw-table__asset b {
  font-size: 11.5px;
  font-weight: 700;
  color: #fff;
  display: block;
  line-height: 1.2;
}

.lw-table__asset i {
  font-style: normal;
  font-size: 9px;
  color: var(--muted-color);
  display: block;
  margin-top: 1px;
}

.lw-table__cell {
  color: #fff;
  font-weight: 600;
  font-size: 11px;
}

.lw-table__cell--m { color: var(--muted-color); font-weight: 500; }
.lw-table__cell--up { color: var(--main-color); }
.lw-table__cell--down { color: #ff7373; }

.lw-table__spark {
  width: 60px;
  height: 22px;
}

.lw-table__spark polyline {
  fill: none;
  stroke: var(--main-color);
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.lw-table__spark--down polyline {
  stroke: #ff7373;
}

.lw-table__menu {
  color: rgba(255,255,255,0.35);
  font-size: 16px;
  line-height: 1;
  text-align: center;
}

/* Activity feed */
.lw-activity {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.lw-activity__item {
  display: grid;
  grid-template-columns: 22px 1fr auto;
  align-items: center;
  gap: 8px;
  padding: 6px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.lw-activity__ic {
  width: 22px;
  height: 22px;
}

.lw-activity__ic svg {
  width: 11px;
  height: 11px;
}

.lw-activity__item:last-child { border-bottom: none; }

.lw-activity__ic {
  width: 26px;
  height: 26px;
  border-radius: 8px;
  background: rgba(132, 240, 136, 0.1);
  color: var(--main-color);
  display: flex;
  align-items: center;
  justify-content: center;
}

.lw-activity__ic svg { width: 12px; height: 12px; }

.lw-activity__ic--out {
  background: rgba(255, 115, 115, 0.1);
  color: #ff7373;
}

.lw-activity__name {
  font-size: 11px;
  color: #fff;
  font-weight: 600;
  line-height: 1.2;
}

.lw-activity__sub {
  font-size: 9.5px;
  color: var(--muted-color);
  margin-top: 1px;
}

.lw-activity__val {
  text-align: right;
  font-size: 11px;
  color: #fff;
  font-weight: 600;
}

.lw-activity__val i {
  font-style: normal;
  display: block;
  font-size: 9px;
  color: var(--muted-color);
  font-weight: 500;
  margin-top: 1px;
}

/* Validators / stake list */
.lw-stake-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.lw-stake-row {
  display: grid;
  grid-template-columns: 22px 1fr auto;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 9px;
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.04);
}

.lw-stake-row__ic {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #0d1411;
  padding: 3px;
}

.lw-stake-row__ic img { width: 100%; height: 100%; }

.lw-stake-row__name b {
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  display: block;
  line-height: 1.2;
}

.lw-stake-row__name i {
  font-style: normal;
  font-size: 9px;
  color: var(--muted-color);
}

.lw-stake-row__apr {
  font-size: 11px;
  font-weight: 700;
  color: var(--main-color);
}

.lw-stake-row__apr i {
  font-style: normal;
  display: block;
  font-size: 9px;
  color: var(--muted-color);
  font-weight: 500;
}

/* Swap route visualization */
.lw-route {
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.05);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.lw-route__hops {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.lw-route__hop {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 10px 5px 5px;
  border-radius: 999px;
  background: rgba(132, 240, 136, 0.08);
  border: 1px solid rgba(132, 240, 136, 0.18);
  font-size: 10.5px;
  font-weight: 600;
  color: #fff;
}

.lw-route__hop img {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #0d1411;
  padding: 2px;
}

.lw-route__arrow {
  color: var(--main-color);
  font-size: 12px;
}

.lw-route__details {
  display: flex;
  gap: 12px;
  font-size: 10px;
  color: var(--muted-color);
  padding-top: 6px;
  border-top: 1px solid rgba(255,255,255,0.04);
}

.lw-route__details strong {
  color: #fff;
  font-weight: 600;
  display: block;
  font-size: 11px;
  margin-top: 1px;
}

/* Market ticker (right panel) */
.lw-market {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.lw-market__row {
  display: grid;
  grid-template-columns: 20px 1fr auto;
  align-items: center;
  gap: 8px;
  padding: 6px 0;
  font-size: 10.5px;
}

.lw-market__row img {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #0d1411;
  padding: 3px;
}

.lw-market__name {
  font-weight: 600;
  color: #fff;
}

.lw-market__name span {
  display: block;
  font-size: 9px;
  color: var(--muted-color);
  font-weight: 500;
  margin-top: 1px;
}

.lw-market__val {
  text-align: right;
  font-weight: 700;
  color: #fff;
}

.lw-market__val span {
  display: block;
  font-size: 9px;
  font-weight: 600;
  margin-top: 1px;
}

.lw-market__val span.up { color: var(--main-color); }
.lw-market__val span.down { color: #ff7373; }

/* On-ramp provider quotes */
.lw-quotes {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.lw-quote {
  display: grid;
  grid-template-columns: 24px 1fr auto;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 10px;
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.04);
  transition: border-color 160ms ease;
}

.lw-quote.is-best {
  border-color: rgba(132, 240, 136, 0.45);
  background: linear-gradient(135deg, rgba(132, 240, 136, 0.08), rgba(132, 240, 136, 0.01));
}

.lw-quote__ic {
  width: 24px;
  height: 24px;
  border-radius: 7px;
  background: rgba(255,255,255,0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 800;
  color: #fff;
}

.lw-quote__name b {
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  display: block;
  line-height: 1.2;
}

.lw-quote__name i {
  font-style: normal;
  font-size: 9px;
  color: var(--muted-color);
}

.lw-quote__val {
  text-align: right;
}

.lw-quote__val b {
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  display: block;
}

.lw-quote__val i {
  font-style: normal;
  font-size: 9px;
  color: var(--main-color);
  font-weight: 600;
}

/* Order summary panel */
.lw-summary {
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.05);
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.lw-summary__row {
  display: flex;
  justify-content: space-between;
  font-size: 10.5px;
}

.lw-summary__row span:first-child { color: var(--muted-color); }
.lw-summary__row span:last-child { color: #fff; font-weight: 600; }

.lw-summary__row--total {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 8px;
  margin-top: 4px;
  font-size: 12px;
}

.lw-summary__row--total span:last-child {
  color: var(--main-color);
  font-weight: 800;
  font-size: 14px;
}

/* Settings (richer grid) */
.lw-set-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.lw-set-section {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.lw-set-section__h {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--muted-color);
  text-transform: uppercase;
  padding: 4px 4px 6px;
}

.lw-set-row--compact {
  padding: 10px 12px;
}

.lw-set-row--compact .lw-set-row__ic {
  width: 28px;
  height: 28px;
  border-radius: 8px;
}

.lw-set-row--compact .lw-set-row__ic svg { width: 14px; height: 14px; }

.lw-set-row--compact .lw-set-row__text strong { font-size: 11.5px; }
.lw-set-row--compact .lw-set-row__text span { font-size: 10px; margin-top: 2px; }

/* Security score banner */
.lw-score {
  padding: 14px 16px;
  border-radius: 12px;
  background:
    radial-gradient(80% 100% at 0% 50%, rgba(132, 240, 136, 0.18), transparent 70%),
    linear-gradient(180deg, rgba(132, 240, 136, 0.05), rgba(132, 240, 136, 0.01));
  border: 1px solid rgba(132, 240, 136, 0.22);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
}

.lw-score__ic {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--main-color);
  color: #052010;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lw-score__ic svg { width: 18px; height: 18px; }

.lw-score__text strong {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
}

.lw-score__text span {
  display: block;
  font-size: 10.5px;
  color: var(--muted-color);
  margin-top: 2px;
}

.lw-score__val {
  font-size: 22px;
  font-weight: 800;
  color: var(--main-color);
  letter-spacing: -0.02em;
}

.lw-score__val i {
  font-style: normal;
  font-size: 12px;
  color: var(--muted-color);
  font-weight: 600;
}

/* Tabs in mockup */
.lw-tabs {
  display: flex;
  gap: 4px;
  padding: 3px;
  border-radius: 10px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.05);
  width: max-content;
}

.lw-tabs span {
  padding: 6px 12px;
  border-radius: 7px;
  font-size: 11px;
  font-weight: 600;
  color: var(--muted-color);
  cursor: default;
}

.lw-tabs span.is-active {
  background: var(--main-color);
  color: #052010;
}

/* Numpad refresh */
.lw-buy-amount {
  position: relative;
}

.lw-buy-amount__currency {
  position: absolute;
  top: 16px;
  right: 16px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 8px;
  border-radius: 8px;
  background: rgba(132, 240, 136, 0.1);
  border: 1px solid rgba(132, 240, 136, 0.18);
  color: var(--main-color);
  font-size: 10.5px;
  font-weight: 700;
}

/* Improve laptop screen padding/gradient */
.feature-screen .device-laptop__screen {
  border-width: 14px;
  border-bottom-width: 16px;
  border-radius: 22px 22px 6px 6px;
}

/* Hover slight tilt removed - keep flat */

@media (max-width: 980px) {
  .lw-bigbal {
    grid-template-columns: 1fr;
  }
}
