:root {
  --ink: #0d1526;
  --ink-70: color-mix(in srgb, #0d1526 70%, transparent);
  --ink-80: color-mix(in srgb, #0d1526 80%, transparent);
  --muted: #64748b;
  --brand: #1f5cff;
  --brand-40: color-mix(in srgb, #1f5cff 40%, transparent);
  --brand-hover: #164cd8;
  --soft: #f1f5fd;
  --line: #e6ebf5;
  --line-70: color-mix(in srgb, #e6ebf5 70%, transparent);
  --white: #fff;
  --font: "Manrope", system-ui, sans-serif;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --header-h: 88px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border: 0 solid;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--white);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}

img,
svg {
  display: block;
  max-width: 100%;
}

img {
  height: auto;
}

button,
input,
a {
  font: inherit;
  color: inherit;
}

button {
  background: none;
  cursor: pointer;
}

a {
  text-decoration: none;
}

ul {
  list-style: none;
}

a,
button {
  transition: color 0.25s, background-color 0.25s, border-color 0.25s, box-shadow 0.25s, transform 0.25s, opacity 0.25s;
}

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}

@media (min-width: 640px) {
  .container {
    padding: 0 24px;
  }
}

/* ---------- CTA ---------- */
.btn-cta {
  isolation: isolate;
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--brand);
  color: var(--white);
  font-weight: 700;
  box-shadow: 0 12px 30px -12px #1f5cffbf;
  transition: transform 0.35s var(--ease), box-shadow 0.35s, background-color 0.25s;
}

.btn-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(110deg, transparent 20%, #ffffff73 50%, transparent 80%);
  transform: translateX(-120%);
  transition: transform 0.7s var(--ease);
}

.btn-cta:hover {
  background: var(--brand-hover);
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 22px 44px -14px #1f5cffd9;
}

.btn-cta:hover::before {
  transform: translateX(120%);
}

.btn-cta:active {
  transform: translateY(-1px) scale(0.99);
}

/* ---------- Reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  will-change: opacity, transform;
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.reveal.is-in {
  opacity: 1;
  transform: none;
}

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 40;
  padding: 10px 10px 0;
}

@media (min-width: 640px) {
  .site-header {
    padding: 12px 16px 0;
  }
}

.header-inner {
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1300px;
  margin: 0 auto;
  border-radius: 999px;
  padding: 12px 8px 12px 12px;
  transition: padding 0.7s var(--ease), transform 0.7s var(--ease);
}

@media (min-width: 640px) {
  .header-inner {
    padding: 24px 32px;
  }
}

.site-header.is-scrolled .header-inner {
  padding-block: 10px;
}

@media (min-width: 640px) {
  .site-header.is-scrolled .header-inner {
    padding-block: 12px;
  }
}

.header-bg {
  pointer-events: none;
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 14px 40px -18px rgba(13, 21, 38, 0.28);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  opacity: 0;
  transform: translateY(-8px);
  transition: all 0.7s var(--ease);
}

.header-inner > *:not(.header-bg) {
  position: relative;
  z-index: 1;
}

.site-header.is-scrolled .header-bg {
  opacity: 1;
  transform: none;
}

.logo {
  display: inline-flex;
  align-items: center;
  color: var(--ink);
  margin-left: -2px;
  flex-shrink: 0;
}

.logo img,
.logo svg {
  width: 138px;
  height: auto;
  display: block;
  object-fit: contain;
  flex-shrink: 0;
}

@media (min-width: 640px) {
  .logo img,
  .logo svg {
    width: 160px;
  }
}

.nav {
  display: none;
  align-items: center;
  gap: 32px;
}

@media (min-width: 1024px) {
  .nav {
    display: flex;
  }
}

.nav-link,
.nav-btn {
  font-size: 16px;
  color: var(--ink-80);
}

.nav-link:hover,
.nav-btn:hover {
  color: var(--brand);
}

.nav-btn {
  display: flex;
  align-items: center;
  gap: 6px;
}

.chevron {
  transition: transform 0.3s;
}

.nav-drop {
  position: relative;
}

.nav-drop-panel {
  pointer-events: none;
  position: absolute;
  left: 0;
  top: 100%;
  z-index: 50;
  width: 230px;
  padding-top: 16px;
  opacity: 0;
  transform: translateY(4px);
  transition: all 0.3s;
}

.nav-drop:hover .nav-drop-panel,
.nav-drop:focus-within .nav-drop-panel,
.nav-drop.is-open .nav-drop-panel {
  pointer-events: auto;
  opacity: 1;
  transform: none;
}

.nav-drop:hover .chevron,
.nav-drop.is-open .chevron {
  transform: rotate(180deg);
}

.nav-drop-card {
  border-radius: 16px;
  border: 1px solid var(--line);
  background: var(--white);
  padding: 8px;
  box-shadow: 0 24px 60px -24px rgba(13, 21, 38, 0.4);
}

.nav-drop-card a {
  display: block;
  border-radius: 12px;
  padding: 10px 16px;
  font-size: 15px;
  color: var(--ink-80);
}

.nav-drop-card a:hover {
  background: var(--soft);
  color: var(--brand);
}

.header-actions {
  display: none;
  align-items: center;
  gap: 24px;
}

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

.login-link {
  font-size: 16px;
  font-weight: 500;
  color: var(--ink);
}

.login-link:hover {
  color: var(--brand);
}

.header-cta {
  padding: 12px 24px;
  font-size: 15px;
}

.lang {
  position: relative;
}

.lang-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 16px;
  font-weight: 600;
  color: var(--ink-80);
}

.lang-btn:hover {
  color: var(--brand);
}

.lang.is-open .lang-btn .chevron {
  transform: rotate(180deg);
}

.lang-panel {
  position: absolute;
  right: 0;
  top: 100%;
  z-index: 50;
  margin-top: 12px;
  width: 190px;
  transform-origin: top right;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: var(--white);
  padding: 8px;
  box-shadow: 0 24px 60px -24px rgba(13, 21, 38, 0.4);
  pointer-events: none;
  opacity: 0;
  transform: scale(0.95);
  transition: all 0.2s;
}

.lang.is-open .lang-panel {
  pointer-events: auto;
  opacity: 1;
  transform: scale(1);
}

.lang-option {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  border-radius: 12px;
  padding: 10px 16px;
  text-align: left;
  font-size: 15px;
  color: var(--ink-80);
}

.lang-option:hover {
  background: var(--soft);
}

.lang-option.is-active {
  font-weight: 700;
  color: var(--brand);
}

.lang-option span {
  font-size: 12px;
  opacity: 0.6;
}

.header-mobile {
  display: flex;
  align-items: center;
  gap: 8px;
}

@media (min-width: 1024px) {
  .header-mobile {
    display: none;
  }
}

.lang-btn-mobile {
  height: 40px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: color-mix(in srgb, #fff 70%, transparent);
  padding: 0 12px;
  font-size: 14px;
}

.burger {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: color-mix(in srgb, #fff 70%, transparent);
}

.burger span {
  height: 2px;
  width: 20px;
  border-radius: 999px;
  background: var(--ink);
  transition: transform 0.3s;
}

.site-header.is-menu-open .burger span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.site-header.is-menu-open .burger span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

.menu-overlay {
  position: fixed;
  inset: 0;
  z-index: -1;
  background: color-mix(in srgb, var(--ink) 25%, transparent);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s;
}

@media (min-width: 1024px) {
  .menu-overlay {
    display: none;
  }
}

.site-header.is-menu-open .menu-overlay {
  opacity: 1;
  pointer-events: auto;
}

.mobile-panel-wrap {
  display: grid;
  grid-template-rows: 0fr;
  padding: 0 4px;
  opacity: 0;
  pointer-events: none;
  transition: grid-template-rows 0.5s var(--ease), opacity 0.5s var(--ease);
}

@media (min-width: 1024px) {
  .mobile-panel-wrap {
    display: none;
  }
}

.site-header.is-menu-open .mobile-panel-wrap {
  grid-template-rows: 1fr;
  opacity: 1;
  pointer-events: auto;
}

.mobile-panel-wrap > div {
  overflow: hidden;
}

.mobile-panel {
  margin-top: 8px;
  border-radius: 26px;
  border: 1px solid var(--line);
  background: var(--white);
  padding: 20px;
  box-shadow: 0 30px 70px -30px rgba(13, 21, 38, 0.45);
  opacity: 0;
  transform: translateY(-8px) scale(0.97);
  transition: all 0.5s var(--ease);
}

.site-header.is-menu-open .mobile-panel {
  opacity: 1;
  transform: none;
}

.mobile-row {
  border-bottom: 1px solid var(--line-70);
}

.mobile-row > button,
.mobile-row > a {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  text-align: left;
  font-size: 17px;
  font-weight: 600;
  opacity: 0;
  transform: translateX(12px);
  transition: all 0.5s;
}

.site-header.is-menu-open .mobile-row > button,
.site-header.is-menu-open .mobile-row > a,
.site-header.is-menu-open .mobile-login,
.site-header.is-menu-open .mobile-cta {
  opacity: 1;
  transform: none;
}

.mobile-sub {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  transition: all 0.4s var(--ease);
}

.mobile-sub.is-open {
  grid-template-rows: 1fr;
  opacity: 1;
}

.mobile-row:has(.mobile-sub.is-open) .chevron {
  transform: rotate(180deg);
}

.mobile-sub > div {
  overflow: hidden;
}

.mobile-sub-inner {
  padding: 0 0 12px 12px;
}

.mobile-sub-inner a {
  display: block;
  padding: 8px 0;
  font-size: 15px;
  color: var(--muted);
}

.mobile-login {
  display: block;
  padding: 16px 0;
  font-size: 17px;
  font-weight: 600;
  opacity: 0;
  transform: translateX(12px);
  transition: all 0.5s;
}

.mobile-cta {
  width: 100%;
  padding: 14px 24px;
  font-size: 16px;
  opacity: 0;
  transform: translateY(8px);
  transition: all 0.5s;
}

.site-header.is-menu-open .mobile-row:nth-child(1) > button { transition-delay: 40ms; }
.site-header.is-menu-open .mobile-row:nth-child(2) > button { transition-delay: 80ms; }
.site-header.is-menu-open .mobile-row:nth-child(3) > button { transition-delay: 120ms; }
.site-header.is-menu-open .mobile-row:nth-child(4) > a { transition-delay: 160ms; }
.site-header.is-menu-open .mobile-row:nth-child(5) > button { transition-delay: 200ms; }
.site-header.is-menu-open .mobile-login { transition-delay: 240ms; }
.site-header.is-menu-open .mobile-cta { transition-delay: 280ms; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, #dfe4fb 0%, #e7ecfb 18%, #eef3fc 38%, #f6f9fe 60%, #fff 100%);
  padding: 112px 0 48px;
}

@media (min-width: 640px) {
  .hero {
    padding: 208px 0 64px;
  }
}

.hero-blob {
  pointer-events: none;
  position: absolute;
  border-radius: 999px;
  filter: blur(40px);
}

.hero-blob-a {
  left: -160px;
  top: -160px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(160, 175, 255, 0.45), transparent 70%);
}

.hero-blob-b {
  right: -128px;
  top: 0;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(178, 167, 255, 0.4), transparent 70%);
}

.hero-blob-c {
  left: 50%;
  top: 90px;
  width: 560px;
  height: 300px;
  transform: translateX(-50%);
  background: radial-gradient(ellipse, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0) 70%);
}

@media (min-width: 640px) {
  .hero-blob-a { width: 520px; height: 520px; }
  .hero-blob-b { width: 460px; height: 460px; }
  .hero-blob-c { top: 130px; width: 900px; height: 420px; }
}

.hero-inner {
  position: relative;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}

@media (min-width: 640px) {
  .hero-inner {
    padding: 0 24px;
  }
}

.hero-copy {
  text-align: center;
}

.badge {
  display: inline-block;
  border-radius: 999px;
  border: 1px solid var(--brand-40);
  padding: 6px 16px;
  font-size: 12px;
  color: var(--brand);
}

@media (min-width: 640px) {
  .badge {
    padding: 8px 20px;
    font-size: 13px;
  }
}

.hero h1 {
  max-width: 1100px;
  margin: 20px auto 0;
  font-size: 28px;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.025em;
}

@media (min-width: 640px) {
  .hero h1 {
    margin-top: 32px;
    font-size: 44px;
  }
}

@media (min-width: 1024px) {
  .hero h1 {
    font-size: 56px;
  }
}

.hero-lead {
  max-width: 340px;
  margin: 20px auto 0;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.625;
  color: var(--muted);
}

@media (min-width: 640px) {
  .hero-lead {
    max-width: 430px;
    margin-top: 32px;
    font-size: 17px;
  }
}

.hero-cta-mobile {
  display: flex;
  justify-content: center;
  margin-top: 32px;
}

.hero-cta-mobile .btn-cta {
  width: 100%;
  max-width: 340px;
  padding: 16px 32px;
  font-size: 16px;
}

@media (min-width: 640px) {
  .hero-cta-mobile {
    display: none;
  }
}

.hero-visual {
  position: relative;
  max-width: 1040px;
  margin: 32px auto 0;
}

@media (min-width: 640px) {
  .hero-visual {
    margin-top: 48px;
  }
}

.graph-frame {
  overflow: hidden;
  border-radius: 24px 24px 0 0;
  border: 1px solid var(--line);
  border-bottom: 0;
  background: color-mix(in srgb, #fff 70%, transparent);
  padding: 12px 8px 0;
  box-shadow: 0 30px 80px -40px rgba(31, 92, 255, 0.35);
  backdrop-filter: blur(8px);
  -webkit-mask-image: linear-gradient(#000 62%, transparent 100%);
  mask-image: linear-gradient(#000 62%, transparent 100%);
}

@media (min-width: 640px) {
  .graph-frame {
    border-radius: 32px 32px 0 0;
    padding: 24px 24px 0;
  }
}

.graph-frame svg {
  width: 100%;
  height: auto;
}

.tx-card {
  display: none;
  margin-top: 20px;
  width: 100%;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: var(--white);
  padding: 16px;
  box-shadow: 0 24px 60px -30px rgba(13, 21, 38, 0.35);
}

@media (min-width: 640px) {
  .tx-card {
    display: block;
    margin-top: 24px;
    border-radius: 24px;
    padding: 20px;
  }
}

@media (min-width: 1024px) {
  .tx-card {
    position: absolute;
    right: -16px;
    top: -32px;
    margin-top: 0;
    width: 440px;
  }
}

.tx-head {
  display: flex;
  align-items: center;
  gap: 12px;
}

.tx-head strong {
  font-size: 13px;
}

.tx-toggle {
  display: flex;
  align-items: center;
  border-radius: 999px;
  background: var(--soft);
  padding: 2px;
  font-size: 11px;
  font-weight: 600;
}

.tx-toggle span {
  padding: 4px 12px;
  color: var(--muted);
}

.tx-toggle .is-on {
  border-radius: 999px;
  background: var(--brand);
  color: var(--white);
}

.tx-close {
  margin-left: auto;
  color: var(--muted);
  font-size: 14px;
}

.tx-dots {
  display: flex;
  gap: 8px;
  margin-top: 12px;
}

.tx-dots i {
  width: 14px;
  height: 14px;
  border-radius: 999px;
}

.tx-meta {
  margin-top: 16px;
  font-size: 11px;
}

.tx-meta div {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  margin-top: 8px;
}

.tx-meta div:first-child {
  margin-top: 0;
}

.tx-meta .k {
  color: var(--muted);
}

.tx-meta .hash {
  color: var(--brand);
}

.tx-block {
  margin-top: 20px;
}

.tx-block h3 {
  font-size: 13px;
  font-weight: 700;
}

.tx-cols {
  display: flex;
  align-items: center;
  margin-top: 8px;
  font-size: 11px;
  color: var(--muted);
}

.tx-cols .addr {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 6px;
}

.pill-all {
  border-radius: 999px;
  border: 1px solid var(--line);
  padding: 2px 6px;
  font-size: 10px;
}

.tx-cols .own {
  width: 104px;
}

.tx-cols .amt {
  width: 92px;
  text-align: right;
}

.tx-row {
  display: flex;
  align-items: center;
  margin-top: 8px;
  font-size: 11px;
}

.tx-row .addr {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--brand);
}

.dot-empty {
  width: 14px;
  height: 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
}

.tx-row .own {
  display: flex;
  width: 104px;
  align-items: center;
  gap: 6px;
  color: var(--muted);
}

.owner-badge {
  display: flex;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-size: 8px;
  font-weight: 700;
  color: #fff;
}

.owner-badge.unk {
  background: #cbd5e1;
  color: #64748b;
}

.tx-row .own span:last-child {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.tx-row .amt {
  width: 92px;
  text-align: right;
  font-weight: 500;
}

.tx-pager {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  font-size: 10px;
  color: var(--muted);
}

.tx-pager em {
  font-style: normal;
  border-radius: 6px;
  background: var(--soft);
  padding: 4px 24px;
}

.tx-pager b {
  font-weight: 400;
  border-radius: 6px;
  background: var(--soft);
  padding: 4px 8px;
}

.tx-to {
  display: none;
}

@media (min-width: 640px) {
  .tx-to {
    display: block;
  }
}

.hero-cta-desktop {
  display: none;
  justify-content: center;
  margin-top: 40px;
}

@media (min-width: 640px) {
  .hero-cta-desktop {
    display: flex;
  }
}

.hero-cta-desktop .btn-cta {
  padding: 16px 44px;
  font-size: 17px;
}

/* ---------- Marquee ---------- */
.partners {
  background: #fff;
  padding: 24px 0;
}

.partners-line {
  max-width: 1300px;
  margin: 0 auto;
  border-block: 1px solid var(--line);
}

.marquee {
  display: flex;
  height: 110px;
  min-width: 0;
  flex: 1;
  align-items: center;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 32px, #000 calc(100% - 32px), transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 32px, #000 calc(100% - 32px), transparent 100%);
}

@media (min-width: 640px) {
  .marquee,
  .partner-item {
    height: 124px;
  }
}

.marquee-track {
  display: flex;
  width: max-content;
  align-items: center;
  will-change: transform;
  animation: scrollx 62s linear infinite;
}

.marquee:hover .marquee-track {
  animation-play-state: paused;
}

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

.partner-item {
  display: flex;
  height: 110px;
  width: 230px;
  flex-shrink: 0;
  align-items: center;
  gap: 12px;
  padding: 0 16px;
}

@media (min-width: 640px) {
  .partner-item {
    width: 280px;
    gap: 16px;
    padding: 0 24px;
  }
}

.partner-item img {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  object-fit: contain;
}

@media (min-width: 640px) {
  .partner-item img {
    width: 48px;
    height: 48px;
  }
}

.partner-item span {
  font-size: 13px;
  font-weight: 700;
  line-height: 1.3;
}

@media (min-width: 640px) {
  .partner-item span {
    font-size: 15px;
  }
}

/* ---------- Solutions ---------- */
.solutions {
  background: #fff;
  padding: 56px 0;
}

@media (min-width: 640px) {
  .solutions {
    padding: 80px 0;
  }
}

.section-title {
  text-align: center;
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.025em;
}

@media (min-width: 640px) {
  .section-title {
    font-size: 40px;
  }
}

.section-lead {
  margin-top: 20px;
  text-align: center;
  font-size: 15px;
  color: var(--muted);
}

.sol-grid {
  display: grid;
  gap: 20px;
  margin-top: 32px;
}

@media (min-width: 640px) {
  .sol-grid {
    gap: 32px;
  }
}

@media (min-width: 1024px) {
  .sol-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.sol-card {
  display: flex;
  flex-direction: column;
  border-radius: 28px;
  background: var(--soft);
  padding: 24px;
  transition: box-shadow 0.5s;
}

@media (min-width: 640px) {
  .sol-card {
    padding: 32px;
  }
}

.sol-card:hover {
  box-shadow: 0 30px 60px -40px rgba(31, 92, 255, 0.5);
}

.sol-icon {
  margin-bottom: 32px;
}

@media (min-width: 640px) {
  .sol-icon {
    margin-bottom: 48px;
  }
}

.sol-card h3 {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.375;
}

.sol-card p {
  margin-top: 16px;
  flex: 1;
  font-size: 14px;
  line-height: 1.625;
  color: var(--muted);
}

.learn-more {
  display: flex;
  width: fit-content;
  align-items: center;
  gap: 8px;
  margin-top: 32px;
  border-radius: 999px;
  padding: 10px 20px;
  font-weight: 700;
  color: var(--brand);
}

.sol-card:hover .learn-more {
  background: var(--brand);
  color: #fff;
}

/* ---------- Impact ---------- */
.impact {
  background: #fff;
  padding-bottom: 56px;
}

@media (min-width: 640px) {
  .impact {
    padding-bottom: 80px;
  }
}

.impact-banner {
  position: relative;
  overflow: hidden;
  border-radius: 32px;
  background: linear-gradient(110deg, #241d63 0%, #22276f 45%, #1b3a86 100%);
  padding: 40px 20px;
  color: #fff;
}

@media (min-width: 640px) {
  .impact-banner {
    padding: 56px 32px;
  }
}

.impact-lines {
  pointer-events: none;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.3;
}

.impact-inner {
  position: relative;
}

.impact h2 {
  text-align: center;
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.025em;
}

@media (min-width: 640px) {
  .impact h2 {
    font-size: 34px;
  }
}

.impact-stats {
  display: grid;
  gap: 32px;
  margin-top: 32px;
}

@media (min-width: 640px) {
  .impact-stats {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 48px;
  }
}

.impact-stat {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

@media (min-width: 640px) {
  .impact-stat + .impact-stat {
    border-left: 1px solid rgba(255, 255, 255, 0.2);
  }
}

.impact-stat b {
  font-size: 44px;
  font-weight: 800;
  line-height: 1;
}

@media (min-width: 640px) {
  .impact-stat b {
    font-size: 58px;
  }
}

.impact-stat span {
  max-width: 150px;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
}

.trusted {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 20px 28px;
  margin-top: 40px;
}

@media (min-width: 640px) {
  .trusted {
    gap: 24px 40px;
    margin-top: 56px;
  }
}

.trusted-label {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
}

.trusted-brand {
  display: flex;
  align-items: center;
  gap: 8px;
}

.tb-btse {
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.tb-banana {
  max-width: 70px;
  text-align: center;
  font-size: 9px;
  font-weight: 600;
  text-transform: uppercase;
  line-height: 1.1;
  letter-spacing: 0.08em;
}

.tb-rail {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 17px;
  font-weight: 500;
  letter-spacing: 0.28em;
}

.tb-kolo-dot {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  border: 3px solid #fff;
}

.tb-kolo {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.025em;
  text-transform: lowercase;
}

.tb-trustee-mark {
  display: flex;
  width: 22px;
  height: 22px;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  background: #fff;
  font-size: 13px;
  font-weight: 900;
  color: #241d63;
}

.tb-trustee {
  font-size: 19px;
  font-weight: 800;
  letter-spacing: -0.025em;
  text-transform: uppercase;
}

.tb-ss-bars {
  display: flex;
  gap: 3px;
}

.tb-ss-bars i {
  width: 7px;
  height: 18px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.9);
  transform: skewX(-12deg);
}

.tb-ss-bars i:last-child {
  background: rgba(255, 255, 255, 0.6);
}

.tb-ss {
  font-size: 19px;
  font-weight: 600;
  letter-spacing: -0.025em;
}

.tb-defi-mark {
  width: 20px;
  height: 20px;
  border-radius: 999px;
  background: linear-gradient(90deg, #fff 50%, #7c8bff 50%);
}

.tb-defi {
  font-size: 21px;
  font-weight: 400;
  letter-spacing: -0.025em;
  text-transform: lowercase;
}

/* ---------- Quotes ---------- */
.quotes-section {
  overflow: hidden;
  background: #fff;
  padding-bottom: 96px;
}

@media (min-width: 640px) {
  .quotes-section {
    padding-bottom: 112px;
  }
}

.quotes {
  display: flex;
  align-items: stretch;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 12px 20px 64px;
  margin: 0 -20px;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.quotes::-webkit-scrollbar {
  display: none;
}

@media (min-width: 640px) {
  .quotes {
    margin: 0 -24px;
    padding-inline: 24px;
  }
}

@media (min-width: 1024px) {
  .quotes {
    margin: 0;
    gap: 0;
    overflow: visible;
    scroll-snap-type: none;
    padding-inline: 0;
  }
}

.quote-slide {
  flex-shrink: 0;
  scroll-snap-align: center;
}

.quote-card {
  display: flex;
  flex-direction: column;
  height: 400px;
  width: 84vw;
  max-width: 380px;
  border-radius: 26px;
  border: 1px solid var(--line);
  background: #fff;
  padding: 24px;
  text-align: left;
  outline: none;
  box-shadow: 0 20px 52px -34px rgba(13, 21, 38, 0.26);
  transition: all 0.5s var(--ease);
}

@media (min-width: 640px) {
  .quote-card {
    height: 420px;
    width: 380px;
    padding: 32px;
  }
}

@media (min-width: 1024px) {
  .quote-slide {
    margin-left: -22px;
  }

  .quote-slide:first-child {
    margin-left: 0;
  }

  .quote-slide:first-child .quote-card {
    transform: translateY(-12px);
    box-shadow: 0 28px 64px -34px rgba(13, 21, 38, 0.38);
  }

  .quote-card:hover,
  .quote-card:focus {
    transform: translateY(-16px);
    box-shadow: 0 36px 80px -40px rgba(13, 21, 38, 0.5);
    z-index: 5;
  }
}

.quote-card p {
  margin-top: 20px;
  font-size: 14px;
  line-height: 1.625;
}

@media (min-width: 640px) {
  .quote-card p {
    margin-top: 24px;
    font-size: 15px;
  }
}

.quote-brand {
  margin-top: auto;
  padding-top: 32px;
}

@media (min-width: 640px) {
  .quote-brand {
    padding-top: 40px;
  }
}

.bybit {
  display: flex;
  align-items: baseline;
  font-size: 26px;
  font-weight: 900;
  letter-spacing: -0.025em;
}

.bybit i {
  font-style: normal;
  color: #f7a600;
}

.banana-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.banana-brand img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.banana-brand span {
  max-width: 70px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.1;
}

.changenow {
  line-height: 0.95;
}

.changenow b {
  display: block;
  font-size: 24px;
  font-weight: 500;
}

.changenow em {
  display: block;
  font-size: 26px;
  font-style: normal;
  font-weight: 600;
  color: #3ddc84;
}

.quote-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: -28px;
}

@media (min-width: 1024px) {
  .quote-dots {
    display: none;
  }
}

.quote-dots button {
  height: 6px;
  width: 6px;
  border-radius: 999px;
  background: var(--line);
  transition: all 0.3s;
}

.quote-dots button.is-on {
  width: 24px;
  background: var(--brand);
}

/* ---------- Why ---------- */
.why {
  background: linear-gradient(180deg, #fff 0%, #f7f9ff 18%, #eef3ff 100%);
  padding: 56px 0;
}

@media (min-width: 640px) {
  .why {
    padding: 80px 0;
  }
}

.why-grid {
  display: grid;
  gap: 20px;
  margin-top: 32px;
}

@media (min-width: 640px) {
  .why-grid {
    gap: 32px;
  }
}

@media (min-width: 1024px) {
  .why-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.why-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  border-radius: 28px;
  background: #fff;
  padding: 24px;
}

@media (min-width: 640px) {
  .why-card {
    padding: 28px;
  }
}

.why-top {
  display: flex;
  min-width: 0;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

@media (min-width: 640px) {
  .why-top {
    gap: 24px;
  }
}

.why-top h3 {
  min-width: 0;
  max-width: 340px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.25;
}

@media (min-width: 640px) {
  .why-top h3 {
    font-size: 24px;
  }
}

.why-top svg {
  width: 80px;
  height: 80px;
  flex-shrink: 0;
}

@media (min-width: 640px) {
  .why-top svg {
    width: 112px;
    height: 112px;
  }
}

.why-list {
  margin-top: 40px;
}

.why-list li {
  display: flex;
  gap: 16px;
  font-size: 15px;
  line-height: 1.625;
  color: var(--muted);
}

.why-list li + li {
  margin-top: 24px;
}

.why-list i {
  width: 10px;
  height: 10px;
  margin-top: 10px;
  flex-shrink: 0;
  border-radius: 999px;
  background: var(--brand);
}

.why-cta {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 16px;
  margin-top: 48px;
  border-radius: 999px;
  background: var(--brand);
  padding: 16px 32px;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
}

.why-cta:hover {
  background: var(--brand-hover);
}

/* ---------- Leadership ---------- */
.leaders {
  background: #fff;
  padding: 48px 0;
}

@media (min-width: 640px) {
  .leaders {
    padding: 64px 0;
  }
}

.leaders .section-title {
  font-size: 28px;
}

@media (min-width: 640px) {
  .leaders .section-title {
    font-size: 36px;
  }
}

.leaders-grid {
  display: grid;
  gap: 32px;
  margin-top: 32px;
}

@media (min-width: 640px) {
  .leaders-grid {
    gap: 28px;
    margin-top: 48px;
  }
}

@media (min-width: 768px) {
  .leaders-grid {
    grid-template-columns: 1fr 1fr;
  }

  .leader + .leader {
    border-left: 1px solid var(--line);
    padding-left: 48px;
  }

  .leader:first-child {
    padding-right: 48px;
  }
}

.leader {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

@media (min-width: 640px) {
  .leader {
    flex-direction: row;
    gap: 32px;
  }
}

.leader img {
  width: 104px;
  height: 104px;
  flex-shrink: 0;
  border-radius: 999px;
  object-fit: cover;
  filter: grayscale(1);
}

.leader h3 {
  font-size: 18px;
  font-weight: 700;
}

.leader .role {
  margin-top: 4px;
  font-size: 14px;
  color: var(--muted);
}

.leader blockquote {
  margin-top: 20px;
  font-size: 14px;
  line-height: 1.625;
  color: var(--muted);
}

.li-btn {
  display: flex;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  margin-top: 24px;
  border-radius: 999px;
  background: #94a3b8;
  color: #fff;
}

.li-btn:hover {
  background: var(--brand);
}

/* ---------- FAQ ---------- */
.faq {
  scroll-margin-top: 112px;
  background: #fff;
  padding: 48px 0;
}

@media (min-width: 640px) {
  .faq {
    padding: 64px 0;
  }
}

.faq .section-title {
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.25;
}

@media (min-width: 640px) {
  .faq .section-title {
    font-size: 38px;
  }
}

.faq-layout {
  display: grid;
  gap: 20px;
  margin-top: 32px;
}

@media (min-width: 640px) {
  .faq-layout {
    gap: 28px;
    margin-top: 48px;
  }
}

@media (min-width: 1024px) {
  .faq-layout {
    grid-template-columns: 380px 1fr;
  }
}

.faq-help {
  height: fit-content;
  border-radius: 24px;
  background: #eaf6fd;
  padding: 24px;
}

@media (min-width: 640px) {
  .faq-help {
    padding: 28px;
  }
}

.faq-help h3 {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.375;
}

.faq-help p {
  margin-top: 20px;
  font-size: 14px;
  line-height: 1.625;
  color: var(--muted);
}

.msg-card {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
  border-radius: 16px;
  background: #fff;
  padding: 12px 16px;
}

.msg-ico {
  display: flex;
  width: 32px;
  height: 32px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #29b6f6;
  color: #fff;
}

.msg-card strong {
  display: block;
  font-weight: 600;
  color: #29b6f6;
}

.msg-card small {
  display: block;
  font-size: 12px;
  color: var(--muted);
}

.faq-note {
  margin-top: 16px;
  font-size: 12px;
  color: var(--ink-70);
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-q {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 24px 0;
  text-align: left;
}

.faq-q span {
  font-size: 17px;
  line-height: 1.375;
}

@media (min-width: 640px) {
  .faq-q span {
    font-size: 20px;
  }
}

.faq-plus {
  display: flex;
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--soft);
}

.faq-plus svg {
  transition: transform 0.3s;
}

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

.faq-a {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  transition: grid-template-rows 0.5s var(--ease), opacity 0.5s var(--ease);
}

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

.faq-a > div {
  overflow: hidden;
}

.faq-a p {
  margin-top: -8px;
  padding: 0 48px 24px 0;
  font-size: 14px;
  line-height: 1.625;
  color: var(--muted);
}

/* ---------- Footer ---------- */
.site-footer {
  background: #fff;
  padding: 32px 0 40px;
}

@media (min-width: 640px) {
  .site-footer {
    padding: 40px 0 56px;
  }
}

.foot-top {
  display: grid;
  gap: 28px;
}

@media (min-width: 640px) {
  .foot-top {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .foot-top {
    grid-template-columns: 280px 1fr 1fr auto;
  }
}

.addr {
  font-size: 13px;
  line-height: 1.625;
}

.addr .label {
  font-weight: 700;
  color: var(--ink-70);
}

.addr .co {
  margin-top: 8px;
  font-weight: 700;
}

.addr .loc {
  color: var(--muted);
  white-space: pre-line;
}

.iso-row {
  display: flex;
  gap: 16px;
}

.links-grid {
  display: grid;
  gap: 32px;
  margin-top: 40px;
  border-top: 1px solid var(--line);
  padding-top: 40px;
}

@media (min-width: 640px) {
  .links-grid {
    grid-template-columns: 1fr 1fr;
    margin-top: 48px;
    padding-top: 48px;
  }
}

@media (min-width: 1024px) {
  .links-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.links-grid h4 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.025em;
}

.links-grid ul {
  margin-top: 16px;
}

@media (min-width: 640px) {
  .links-grid ul {
    margin-top: 24px;
  }
}

.links-grid li + li {
  margin-top: 12px;
}

@media (min-width: 640px) {
  .links-grid li + li {
    margin-top: 16px;
  }
}

.links-grid a {
  font-size: 15px;
  color: var(--muted);
}

.links-grid a:hover {
  color: var(--brand);
}

.soc {
  display: flex;
  align-items: center;
  gap: 12px;
}

.soc-ico {
  display: flex;
  width: 28px;
  height: 28px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  transition: background 0.25s;
}

.soc:hover .soc-ico {
  background: var(--brand);
}

.foot-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 40px;
  border-top: 1px solid var(--line);
  padding-top: 32px;
}

@media (min-width: 640px) {
  .foot-bottom {
    flex-direction: row;
    margin-top: 48px;
  }
}

.foot-left {
  display: flex;
  align-items: center;
  gap: 24px;
}

.foot-left span {
  font-size: 13px;
  color: var(--muted);
}

.support-btn {
  border-radius: 999px;
  background: var(--soft);
  padding: 12px 24px;
  font-weight: 500;
}

.legal {
  display: flex;
  gap: 32px;
  font-size: 13px;
  color: var(--muted);
}

.legal a:hover {
  color: var(--brand);
}

body.is-locked {
  overflow: hidden;
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .marquee-track {
    animation: none;
  }

  .btn-cta::before {
    display: none;
  }
}
