:root {
  --primary: 23, 37, 84;
  --primary-dark: 15, 23, 42;
  --success: 16, 185, 129;
  --warning: 245, 158, 11;
  --error: 239, 68, 68;
  --background: 255, 255, 255;
  --surface: 249, 250, 251;
  --text-primary: 15, 23, 42;
  --text-secondary: 71, 85, 105;
  --text-tertiary: 100, 116, 139;
  --border: 226, 232, 240;
  --shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
  --shadow-lg:
    0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --radius: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  background-color: rgb(var(--background));
  color: rgb(var(--text-primary));
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

._0 {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgb(var(--background));
  border-bottom: 1px solid rgb(var(--border));
  z-index: 1000;
  padding: 12px 0;
  transition: var(--transition);
}

._m {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

._1 {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

._j {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 24px;
  background: rgb(var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

._h {
  width: 40px;
  height: 40px;
  transition: var(--transition);
  border-radius: 50%;
  object-fit: cover;
  pointer-events: none;
  user-select: none;
}

._1:hover ._h {
  transform: scale(1.05);
}

._k {
  display: flex;
  gap: 16px;
  align-items: center;
}

._4 {
  color: rgb(var(--text-secondary));
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  transition: var(--transition);
  padding: 8px 12px;
  border-radius: var(--radius);
}

._4:hover {
  color: rgb(var(--accent));
  background-color: rgba(var(--accent), 0.05);
}

._4.active {
  color: rgb(var(--accent));
  background-color: rgba(var(--accent), 0.05);
  font-weight: 600;
}

._v {
  background: rgb(var(--accent));
  color: white;
  border: 1px solid rgb(var(--accent));
  padding: 10px 24px;
  border-radius: var(--radius);
  font-weight: 500;
  font-size: 14px;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}

._v:hover {
  background: rgb(var(--accent-dark));
  box-shadow: var(--shadow);
}

._v:focus {
  outline: 2px solid rgba(var(--accent), 0.5);
  outline-offset: 2px;
}

._q {
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
}

._d {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(
      circle at 20% 80%,
      rgba(var(--accent), 0.03) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(var(--accent), 0.03) 0%,
      transparent 50%
    );
  z-index: -1;
}

._u {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

._y {
  flex: 1;
  max-width: 600px;
}

._t {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgb(var(--surface));
  color: rgb(var(--accent));
  padding: 6px 12px;
  border-radius: var(--radius);
  font-weight: 500;
  font-size: 13px;
  margin-bottom: 24px;
  border: 1px solid rgb(var(--border));
}

._t i {
  font-size: 14px;
}

._i {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

._i span {
  color: rgb(var(--accent));
}

._7 {
  font-size: 18px;
  color: rgb(var(--text-secondary));
  margin-bottom: 40px;
  line-height: 1.7;
}

._b {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

._s {
  background: rgb(var(--accent));
  color: white;
  border: 1px solid rgb(var(--accent));
  padding: 12px 28px;
  border-radius: var(--radius);
  font-weight: 500;
  font-size: 16px;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

._s:hover {
  background: rgb(var(--accent-dark));
  box-shadow: var(--shadow);
}

._s:focus {
  outline: 2px solid rgba(var(--accent), 0.5);
  outline-offset: 2px;
}

.btn-secondary {
  background: white;
  color: rgb(var(--accent));
  border: 1px solid rgb(var(--border));
  padding: 12px 28px;
  border-radius: var(--radius);
  font-weight: 500;
  font-size: 16px;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn-secondary:hover {
  background: rgb(var(--surface));
  border-color: rgb(var(--accent));
  box-shadow: var(--shadow);
}

._5 {
  flex: 1;
  display: flex;
  justify-content: center;
  position: relative;
}

._9 {
  position: relative;
  width: 380px;
  height: 380px;
}

._e {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    rgba(var(--accent), 0.03),
    rgba(var(--accent), 0.01)
  );
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: float 6s ease-in-out infinite;
  border: 1px solid rgba(var(--accent), 0.1);
}

._p {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgb(var(--accent));
  font-size: 48px;
  font-weight: 700;
  box-shadow: var(--shadow-lg);
  z-index: 2;
  border: 1px solid rgb(var(--border));
}

._p img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  pointer-events: none;
  user-select: none;
}

._n {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  animation: rotate 30s linear infinite;
}

._x {
  position: absolute;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
  color: rgb(var(--accent));
  font-weight: 600;
  font-size: 14px;
  border: 1px solid rgb(var(--border));
  transition: var(--transition);
}

._x img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  pointer-events: none;
  user-select: none;
}

._x:hover {
  transform: scale(1.1);
  box-shadow: var(--shadow-lg);
  border-color: rgb(var(--accent));
}

._x:nth-child(1) {
  top: -28px;
  left: 50%;
  transform: translateX(-50%);
}
._x:nth-child(2) {
  top: 50%;
  right: -28px;
  transform: translateY(-50%);
}
._x:nth-child(3) {
  bottom: -28px;
  left: 50%;
  transform: translateX(-50%);
}
._x:nth-child(4) {
  top: 50%;
  left: -28px;
  transform: translateY(-50%);
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

._a {
  padding: 80px 0;
  background: rgb(var(--surface));
  border-radius: var(--radius-xl);
  margin: 0 24px 60px;
  box-shadow: var(--shadow);
  border: 1px solid rgb(var(--border));
}

._z {
  text-align: center;
  margin-bottom: 60px;
}

._6 {
  color: rgb(var(--text-tertiary));
  font-weight: 500;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}

._l {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

._f {
  font-size: 16px;
  color: rgb(var(--text-secondary));
  max-width: 700px;
  margin: 0 auto;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 24px;
  align-items: center;
  justify-content: center;
}

.partner-logo {
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  filter: grayscale(1) opacity(0.6);
  transition: var(--transition);
  padding: 12px;
  border-radius: var(--radius);
  border: 1px solid rgb(var(--border));
  background: white;
}

.partner-logo:hover {
  filter: grayscale(0) opacity(1);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
  border-color: rgb(var(--accent));
}

.partner-logo img {
  max-height: 20px;
  max-width: 100%;
  object-fit: contain;
}

._33 {
  padding: 80px 0;
}

._r3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 60px;
}

._o3 {
  background: white;
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid rgb(var(--border));
  text-align: left;
  position: relative;
  overflow: hidden;
}

._o3:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgb(var(--accent));
}

._03 {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: rgba(var(--accent), 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 24px;
  color: rgb(var(--accent));
  font-size: 24px;
  border: 1px solid rgba(var(--accent), 0.1);
  transition: var(--transition);
}

._o3:hover ._03 {
  background: rgb(var(--accent));
  color: white;
}

._13 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
  color: rgb(var(--text-primary));
}

._h3 {
  color: rgb(var(--text-secondary));
  line-height: 1.6;
  font-size: 15px;
}

._k3 {
  padding: 80px 0;
  background: rgb(var(--surface));
  border-radius: var(--radius-xl);
  margin: 0 24px 60px;
  border: 1px solid rgb(var(--border));
}

._43 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 60px;
}

._v3 {
  background: white;
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid rgb(var(--border));
  border-left: 4px solid rgb(var(--accent));
  position: relative;
  overflow: hidden;
}

._v3:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

._g3 {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

._23 {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: rgba(var(--accent), 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgb(var(--accent));
  font-size: 16px;
  transition: var(--transition);
  border: 1px solid rgba(var(--accent), 0.1);
}

._v3:hover ._23 {
  background: rgba(var(--accent), 0.1);
}

._d3 {
  font-weight: 500;
  font-size: 14px;
  color: rgb(var(--text-secondary));
}

._u3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 8px;
  color: rgb(var(--text-primary));
}

.stat-change {
  font-weight: 500;
  font-size: 13px;
}

.stat-change.positive {
  color: rgb(var(--success));
}

.stat-change.negative {
  color: rgb(var(--error));
}

._p3 {
  padding: 80px 0;
}

._n3 {
  display: flex;
  justify-content: space-between;
  position: relative;
  margin-top: 80px;
  flex-wrap: wrap;
  gap: 40px;
}

._n3::before {
  content: "";
  position: absolute;
  top: 32px;
  left: 0;
  width: 100%;
  height: 2px;
  background: rgb(var(--border));
  z-index: 1;
}

._x3 {
  flex: 1;
  position: relative;
  z-index: 2;
  text-align: center;
}

._a3 {
  width: 64px;
  height: 64px;
  border-radius: 12px;
  background: white;
  border: 2px solid rgb(var(--border));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 600;
  color: rgb(var(--text-primary));
  margin: 0 auto 24px;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

._x3:hover ._a3 {
  background: rgb(var(--accent));
  color: white;
  border-color: rgb(var(--accent));
}

._z3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
}

._63 {
  color: rgb(var(--text-secondary));
  line-height: 1.6;
  font-size: 15px;
}

._l3 {
  padding: 80px 0;
  background: rgb(var(--surface));
  border-radius: var(--radius-xl);
  margin: 0 24px 80px;
  border: 1px solid rgb(var(--border));
}

._f3 {
  max-width: 900px;
  margin: 60px auto 0;
}

._c3 {
  background: white;
  border-radius: var(--radius);
  margin-bottom: 16px;
  box-shadow: var(--shadow);
  overflow: hidden;
  border: 1px solid rgb(var(--border));
  transition: var(--transition);
}

._c3:hover {
  border-color: rgb(var(--accent));
  box-shadow: var(--shadow-lg);
}

._rr {
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 600;
  font-size: 16px;
  transition: var(--transition);
  color: rgb(var(--text-primary));
}

._rr:hover {
  background: rgb(var(--surface));
}

._or {
  color: rgb(var(--accent));
  font-size: 20px;
  transition: var(--transition);
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

._0r {
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
  transition: var(--transition);
  color: rgb(var(--text-secondary));
  line-height: 1.6;
  font-size: 15px;
}

._c3.active ._0r {
  padding: 0 24px 24px;
  max-height: 500px;
}

._c3.active ._or {
  transform: rotate(45deg);
}

footer {
  background: rgb(var(--text-primary));
  color: white;
  padding: 80px 0 40px;
  position: relative;
}

footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: rgb(var(--accent));
}

._mr {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 48px;
  margin-bottom: 60px;
}

._1r ._1 {
  margin-bottom: 20px;
}

._hr {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  margin-bottom: 30px;
  font-size: 14px;
}

._kr {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
  color: white;
}

._4r {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

._vr {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: var(--transition);
  font-size: 14px;
}

._vr:hover {
  color: white;
}

._gr {
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

._2r {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  text-align: center;
  width: 100%;
}

._i3 {
  margin-top: 80px;
  background: white;
  border-radius: var(--radius-xl);
  padding: 30px;
  border: 1px solid rgb(var(--border));
  box-shadow: var(--shadow);
}

._73 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgb(var(--border));
}

._b3 {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgb(var(--accent));
  color: white;
  padding: 8px 16px;
  border-radius: var(--radius);
  font-weight: 500;
  font-size: 14px;
}

._s3 {
  width: 8px;
  height: 8px;
  background: white;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}

._83 {
  display: flex;
  gap: 20px;
  font-size: 14px;
  color: rgb(var(--text-secondary));
}

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

._e3 {
  max-height: 500px;
  overflow-y: auto;
  border-radius: var(--radius);
  background: rgb(var(--surface));
  border: 1px solid rgb(var(--border));
}

.transaction-item {
  background: white;
  border-radius: var(--radius);
  padding: 18px;
  margin: 12px;
  border: 1px solid rgb(var(--border));
  transition: var(--transition);
  display: grid;
  grid-template-columns: 2fr 2fr 2fr 1.5fr 1fr;
  gap: 20px;
  align-items: center;
}

.transaction-item:hover {
  border-color: rgb(var(--accent));
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.transaction-field {
  display: flex;
  flex-direction: column;
}

.transaction-label {
  font-size: 12px;
  color: rgb(var(--text-tertiary));
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.transaction-value {
  font-size: 14px;
  color: rgb(var(--text-primary));
  font-weight: 500;
  word-break: break-all;
}

.transaction-hash {
  font-family: monospace;
  color: rgb(var(--accent));
}

.transaction-amount {
  color: rgb(var(--accent));
  font-weight: 600;
  font-size: 15px;
}

.transaction-status {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgb(var(--success));
}

.status-dot.pending {
  background: rgb(var(--warning));
}

._e3::-webkit-scrollbar {
  width: 6px;
}

._e3::-webkit-scrollbar-track {
  background: rgba(var(--accent), 0.05);
  border-radius: 3px;
}

._e3::-webkit-scrollbar-thumb {
  background: rgb(var(--accent));
  border-radius: 3px;
}

@media (max-width: 1024px) {
  .transaction-item {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

@media (max-width: 768px) {
  ._i3 {
    padding: 20px;
    margin-left: -20px;
    margin-right: -20px;
    border-radius: 0;
    border-left: none;
    border-right: none;
  }
}

@media (max-width: 1024px) {
  ._b {
    justify-content: center;
  }

  ._u {
    flex-direction: column;
    text-align: center;
  }

  ._y {
    max-width: 100%;
  }

  ._n3::before {
    display: none;
  }

  ._n3 {
    flex-direction: column;
    align-items: center;
    gap: 60px;
  }

  ._x3 {
    max-width: 400px;
  }
}

@media (max-width: 768px) {
  ._i {
    font-size: 36px;
  }

  ._l {
    font-size: 28px;
  }

  ._k {
    display: none;
  }

  ._gr {
    flex-direction: column;
    text-align: center;
  }

  ._a,
  ._k3,
  ._l3 {
    margin-left: 0;
    margin-right: 0;
    border-radius: 0;
  }
}

@media (max-width: 480px) {
  ._73 {
    flex-direction: column;
    gap: 15px;
  }

  ._i {
    font-size: 28px;
  }

  ._s,
  .btn-secondary {
    width: 100%;
    justify-content: center;
  }

  ._9 {
    width: 280px;
    height: 280px;
  }

  ._x {
    width: 48px;
    height: 48px;
    font-size: 12px;
  }

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

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

._c {
  position: relative;
  width: 100%;
  height: 60px;
  overflow: hidden;
  margin-top: 40px;
  background-image: url("partners.svg");
  background-size: 1259px 40px;
  background-repeat: repeat-x;
  animation: moveBackground 30s linear infinite;
  mask-image: linear-gradient(
    90deg,
    rgba(217, 217, 217, 0) 0%,
    #d9d9d9 10%,
    #d9d9d9 90%,
    rgba(217, 217, 217, 0) 100%
  );
}

@media (max-width: 375px) {
  ._m {
    flex-direction: column;
  }

  ._m ._1 {
    margin-bottom: 10px;
  }
}

@keyframes moveBackground {
  from {
    background-position: 0 0;
  }
  to {
    background-position: -1259px 0;
  }
}
