: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;
}

._y {
  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);
}

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

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

._5 {
  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;
}

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

._x:hover ._n {
  transform: scale(1.05);
}

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

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

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

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

._9 {
  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;
}

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

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

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

._s {
  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;
}

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

._2 {
  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));
}

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

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

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

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

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

._j {
  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;
}

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

._j: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);
}

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

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

._l {
  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);
}

._8 {
  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));
}

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

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

._3 {
  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);
}

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

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

._3:nth-child(1) {
  top: -28px;
  left: 50%;
  transform: translateX(-50%);
}
._3:nth-child(2) {
  top: 50%;
  right: -28px;
  transform: translateY(-50%);
}
._3:nth-child(3) {
  bottom: -28px;
  left: 50%;
  transform: translateX(-50%);
}
._3: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);
  }
}

._4 {
  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));
}

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

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

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

._1 {
  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;
}

._ii {
  padding: 80px 0;
}

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

._pi {
  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;
}

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

._yi {
  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);
}

._pi:hover ._yi {
  background: rgb(var(--accent));
  color: white;
}

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

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

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

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

._9i {
  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;
}

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

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

._ti {
  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);
}

._9i:hover ._ti {
  background: rgba(var(--accent), 0.1);
}

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

._ui {
  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));
}

._8i {
  padding: 80px 0;
}

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

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

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

._4i {
  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);
}

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

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

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

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

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

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

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

._hh {
  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));
}

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

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

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

._wi.active ._yh {
  padding: 0 24px 24px;
  max-height: 500px;
}

._wi.active ._ph {
  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));
}

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

._xh ._x {
  margin-bottom: 20px;
}

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

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

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

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

._9h:hover {
  color: white;
}

._gh {
  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;
}

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

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

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

._zi {
  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;
}

._ji {
  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;
  }
}

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

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

._li {
  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));
}

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

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

._li::-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) {
  ._fi {
    padding: 20px;
    margin-left: -20px;
    margin-right: -20px;
    border-radius: 0;
    border-left: none;
    border-right: none;
  }
}

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

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

  ._m {
    max-width: 100%;
  }

  ._7i::before {
    display: none;
  }

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

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

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

  ._a {
    font-size: 28px;
  }

  ._e {
    display: none;
  }

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

  ._4,
  ._ei,
  ._ai {
    margin-left: 0;
    margin-right: 0;
    border-radius: 0;
  }
}

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

  ._f {
    font-size: 28px;
  }

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

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

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

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

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

._w {
  position: relative;
  width: 100%;
  height: 60px;
  overflow: hidden;
  margin-top: 40px;
  background-image: url("assets/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) {
  ._k {
    flex-direction: column;
  }

  ._k ._x {
    margin-bottom: 10px;
  }
}

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