:root {
  --bg: #050505;
  --bg-soft: #0a0a0b;
  --panel: #101012;
  --panel-2: #151518;
  --line: #26262b;
  --line-soft: #1b1b1f;
  --text: #f2f2f3;
  --muted: #a3a3aa;
  --subtle: #73737c;
  --accent: #d7d7dc;
  --radius-lg: 28px;
  --radius-md: 20px;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.55);
}

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

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.045), transparent 34rem),
    radial-gradient(circle at 15% 18%, rgba(120, 120, 130, 0.08), transparent 26rem),
    linear-gradient(180deg, #070707 0%, #050505 48%, #030303 100%);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.025), transparent 18%),
    radial-gradient(circle at 50% 50%, transparent 0%, rgba(0, 0, 0, 0.32) 100%);
}

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

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

.site-header {
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  width: min(1160px, calc(100% - 32px));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 10px 14px 10px 18px;
  border: 1px solid rgba(255, 255, 255, 0.075);
  border-radius: 999px;
  background: rgba(8, 8, 9, 0.72);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(18px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand-logo {
  width: 38px;
  height: 38px;
  object-fit: contain;
  filter: grayscale(1) brightness(1.35);
}

.brand-stack {
  display: grid;
  line-height: 1.1;
}

.brand-name {
  font-size: 0.98rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.brand-line {
  font-size: 0.72rem;
  color: var(--subtle);
  margin-top: 4px;
}

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

.site-nav a {
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 500;
  transition:
    color 0.18s ease,
    background 0.18s ease;
}

.site-nav a:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
}

.site-nav .nav-button {
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
}

.menu-button {
  display: none;
}

.section-pad {
  width: min(1160px, calc(100% - 40px));
  margin-inline: auto;
  padding: 96px 0;
}

.hero {
  min-height: calc(100vh - 40px);
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(340px, 0.85fr);
  align-items: center;
  gap: 76px;
  padding-top: 118px;
  padding-bottom: 54px;
}

.eyebrow {
  color: var(--subtle);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

h1,
h2,
h3 {
  letter-spacing: -0.035em;
  line-height: 1.05;
}

h1 {
  max-width: 720px;
  font-size: clamp(3.2rem, 5.6vw, 5.4rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

h2 {
  font-size: clamp(2rem, 3.2vw, 3.5rem);
  font-weight: 800;
}

h3 {
  font-size: 1.05rem;
  font-weight: 700;
}

.lead {
  max-width: 600px;
  margin-top: 22px;
  color: var(--muted);
  font-size: clamp(1rem, 1.35vw, 1.14rem);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.92rem;
  transition:
    transform 0.18s ease,
    background 0.18s ease,
    border-color 0.18s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button.primary {
  background: var(--text);
  color: #050505;
}

.button.secondary {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
}

.button.secondary:hover {
  background: rgba(255, 255, 255, 0.08);
}

.metrics {
  display: grid;
  grid-template-columns: 0.75fr 1.35fr 1fr;
  gap: 12px;
  margin-top: 36px;
  max-width: 640px;
}

.metrics div {
  min-height: 76px;
  padding: 15px 17px;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-md);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.045),
    rgba(255, 255, 255, 0.018)
  );
}

.metrics span,
.panel-stats span,
.contact-options span,
.service-card span,
.review-card span {
  display: block;
  color: var(--subtle);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
}

.metrics strong {
  display: block;
  margin-top: 8px;
  font-size: 0.9rem;
}

.exchange-panel {
  border: 1px solid rgba(255, 255, 255, 0.115);
  border-radius: 22px;
  background:
    radial-gradient(circle at 30% 0%, rgba(255, 255, 255, 0.075), transparent 45%),
    linear-gradient(180deg, #171719, #09090a);
  box-shadow:
    0 24px 80px rgba(0, 0, 0, 0.52),
    inset 0 1px 0 rgba(255, 255, 255, 0.045);
  overflow: hidden;
}

.panel-top {
  display: flex;
  gap: 7px;
  padding: 18px 22px;
  border-bottom: 1px solid var(--line-soft);
}

.panel-top span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #5f6067;
}

.route-preview {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 48px 34px;
}

.route-token {
  display: grid;
  place-items: center;
  gap: 12px;
  font-weight: 800;
}

.route-token img {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  filter: grayscale(0.12);
}

.route-line {
  height: 2px;
  flex: 1;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  position: relative;
  overflow: hidden;
}

.route-line::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 1px;
  width: 8px;
  height: 8px;
  border-top: 1px solid #9b9ba3;
  border-right: 1px solid #9b9ba3;
  transform: translateY(-50%) rotate(45deg);
}

.animated-route span {
  position: absolute;
  inset: 0;
  transform: translateX(-100%);
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.75),
    transparent
  );
}

.animated-route span:nth-child(1) {
  animation: routeFlow 1.65s linear infinite;
}

.animated-route span:nth-child(2) {
  animation: routeFlow 1.65s linear infinite 0.45s;
}

@keyframes routeFlow {
  0% {
    transform: translateX(-100%);
  }

  65%,
  100% {
    transform: translateX(100%);
  }
}

.panel-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--line-soft);
}

.panel-stats div {
  padding: 22px 24px;
}

.panel-stats div + div {
  border-left: 1px solid var(--line-soft);
}

.panel-stats strong {
  display: block;
  margin-top: 8px;
}

.status-dot {
  display: inline-flex !important;
  align-items: center;
  gap: 8px;
}

.status-dot::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #d7d7dc;
  box-shadow: 0 0 16px rgba(255, 255, 255, 0.45);
}

.section-head {
  max-width: 660px;
  margin-bottom: 38px;
}

.section-head p:not(.eyebrow) {
  color: var(--muted);
  margin-top: 14px;
  font-size: 1.02rem;
}

.muted-section {
  position: relative;
}

.muted-section::before {
  content: "";
  position: absolute;
  inset: 42px -32px;
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 42px;
  background: rgba(255, 255, 255, 0.018);
  z-index: -1;
}

.card-grid,
.reviews-grid,
.asset-grid {
  display: grid;
  gap: 16px;
}

.services-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.service-card,
.review-card,
.asset-card,
.contact-card-main,
.table-shell {
  border: 1px solid var(--line-soft);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.055),
    rgba(255, 255, 255, 0.02)
  );
  box-shadow: 0 18px 70px rgba(0, 0, 0, 0.28);
}

.service-card {
  min-height: 224px;
  padding: 24px;
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition:
    transform 0.18s ease,
    border-color 0.18s ease,
    background 0.18s ease;
}

.service-card:hover,
.asset-card:hover,
.review-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.055);
}

.service-card img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  margin-bottom: 28px;
  filter: grayscale(0.18);
}

.service-card img.paysafe-icon {
  width: 42px;
  height: 42px;
  padding: 7px;
  object-fit: contain;
  background: #101114;
  border: 1px solid rgba(255, 255, 255, 0.08);
  filter: none;
}

.service-card h3 {
  margin-bottom: 10px;
}

.service-card p {
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: auto;
}

.service-card span {
  margin-top: 24px;
  color: var(--text);
}

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

.asset-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.asset-card {
  border-radius: 999px;
  padding: 16px 20px;
  display: grid;
  grid-template-columns: 46px auto;
  grid-template-rows: auto auto;
  column-gap: 14px;
  align-items: center;
  transition:
    transform 0.18s ease,
    border-color 0.18s ease,
    background 0.18s ease;
}

.asset-card img {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  grid-row: 1 / 3;
  filter: grayscale(0.15);
}

.asset-card strong {
  letter-spacing: 0.02em;
}

.asset-card span {
  color: var(--muted);
  font-size: 0.86rem;
}

.reviews-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.review-card {
  border-radius: var(--radius-md);
  padding: 26px;
  transition:
    transform 0.18s ease,
    border-color 0.18s ease,
    background 0.18s ease;
}

.review-card span {
  margin-top: 8px;
}

.review-card p {
  margin-top: 22px;
  color: var(--text);
  font-size: 0.98rem;
}

.table-shell {
  border-radius: var(--radius-md);
  overflow: hidden;
}

.table-head,
.recent-row {
  display: grid;
  grid-template-columns: 1.25fr 0.8fr 0.8fr 1fr 0.6fr 0.9fr;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
}

.table-head {
  color: var(--subtle);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--line-soft);
  background: rgba(255, 255, 255, 0.035);
}

.table-body {
  max-height: 392px;
  overflow-y: auto;
}

.recent-row {
  border-bottom: 1px solid var(--line-soft);
  font-size: 0.94rem;
}

.recent-row:last-child {
  border-bottom: 0;
}

.recent-status {
  display: inline-flex;
  justify-content: center;
  width: fit-content;
  padding: 5px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--accent);
  font-size: 0.78rem;
}

.table-body::-webkit-scrollbar {
  width: 10px;
}

.table-body::-webkit-scrollbar-track {
  background: #080809;
}

.table-body::-webkit-scrollbar-thumb {
  background: #303037;
  border: 2px solid #080809;
  border-radius: 99px;
}

.contact-section {
  padding-bottom: 90px;
}

.contact-card-main {
  border-radius: 34px;
  padding: clamp(28px, 6vw, 64px);
}

.contact-card-main p:not(.eyebrow) {
  max-width: 680px;
  color: var(--muted);
  margin-top: 18px;
  font-size: 1.08rem;
}

.contact-card-main strong {
  color: var(--text);
}

.contact-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 36px;
}

.contact-options a {
  padding: 22px;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-md);
  background: rgba(0, 0, 0, 0.22);
  transition:
    background 0.18s ease,
    border-color 0.18s ease,
    transform 0.18s ease;
}

.contact-options a:hover {
  background: rgba(255, 255, 255, 0.055);
  border-color: rgba(255, 255, 255, 0.14);
  transform: translateY(-3px);
}

.contact-options strong {
  display: block;
  margin-top: 8px;
  font-size: 1.2rem;
}

.site-footer {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
  padding: 26px 0 38px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: var(--subtle);
  border-top: 1px solid var(--line-soft);
  font-size: 0.9rem;
}

.site-footer a:hover {
  color: var(--text);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.55s ease,
    transform 0.55s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .menu-button {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
    cursor: pointer;
  }

  .menu-button span {
    width: 18px;
    height: 2px;
    background: var(--text);
    margin-inline: auto;
    transition: transform 0.18s ease;
  }

  .menu-button.active span:first-child {
    transform: translateY(4px) rotate(45deg);
  }

  .menu-button.active span:last-child {
    transform: translateY(-4px) rotate(-45deg);
  }

  .site-nav {
    position: fixed;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    display: grid;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    background: rgba(8, 8, 9, 0.96);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition:
      opacity 0.18s ease,
      transform 0.18s ease;
  }

  .site-nav.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 126px;
    gap: 38px;
  }

  .exchange-panel {
    max-width: 560px;
  }

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

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

  .asset-grid,
  .reviews-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .metrics {
    grid-template-columns: 1fr;
    max-width: 520px;
  }
}

@media (max-width: 680px) {
  .site-header {
    border-radius: 24px;
  }

  .brand-name {
    font-size: 0.86rem;
    letter-spacing: 0.08em;
  }

  .brand-line {
    display: none;
  }

  .section-pad {
    width: min(100% - 28px, 1160px);
    padding: 78px 0;
  }

  .hero {
    padding-top: 126px;
  }

  h1 {
    font-size: clamp(2.45rem, 12vw, 3.7rem);
    letter-spacing: 0.08em;
  }

  h2 {
    font-size: clamp(2.1rem, 10vw, 3.4rem);
  }

  .services-grid,
  .asset-grid,
  .reviews-grid,
  .contact-options {
    grid-template-columns: 1fr;
  }

  .route-preview {
    padding: 38px 24px;
  }

  .panel-stats {
    grid-template-columns: 1fr;
  }

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

  .table-head {
    display: none;
  }

  .recent-row {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding: 16px;
  }

  .recent-row span:nth-child(1) {
    grid-column: 1 / -1;
    color: var(--subtle);
  }

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