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

html,
body {
  height: 100%;
}

body {
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  /* subtle dark gradient for depth */
  background: radial-gradient(circle at 10% 10%, #071226 0%, rgba(7,18,38,0.9) 25%),
    linear-gradient(180deg, #040510 0%, #000000 70%);
  background-color: #000000;
  color: #e5e7eb;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  padding-top: 5.5rem; /* reserve space for floating navbar with top margin */
}

.page-glow {
  display: none; /* hide decorative glow for clean black background */
}

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

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

/* ===========================================================
   FULLY FIXED GRADIENT TEXT
   =========================================================== */
.gradient-text {
  background: linear-gradient(
    120deg,
    #38bdf8 0%,
    #6366f1 45%,
    #0ea5e9 65%,
    #7dd3fc 100%
  );
  background-size: 200% 100%;
  background-position: 0 50%;

  -webkit-background-clip: text;
  background-clip: text;

  color: transparent !important;
  -webkit-text-fill-color: transparent !important;

  text-shadow: none !important;
}

/* Hero Title fix (no override!) */
.hero-title {
  font-size: clamp(2.7rem, 4.4vw, 3.4rem);
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  white-space: nowrap; /* keep on one line for wide view */
  word-break: keep-all;
  display: inline-block;
}

.text-highlight {
  color: #38bdf8;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 1rem; /* small top margin for visual floating effect */
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 2rem); /* leave margin on sides */
  max-width: 1280px;
  z-index: 110;
  border-radius: 1.2rem; /* rounded corners in the middle */
  backdrop-filter: blur(12px);
  background: rgba(0,0,0,0.35); /* transparent black background */
  border: 1px solid rgba(255,255,255,0.08);
}

.navbar-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0.8rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.brand-logo {
  width: 40px;
  height: 40px;
  object-fit: contain;
  filter: drop-shadow(0 0 12px rgba(56, 189, 248, 0.4));
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.brand-name {
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.brand-tagline {
  font-size: 0.75rem;
  color: #9ca3af;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  font-size: 0.9rem;
}

.nav-links a {
  position: relative;
  color: #d1d5db;
  transition: color 0.2s ease, transform 0.2s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.3rem;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, #38bdf8, #6366f1, #0ea5e9);
  transition: width 0.25s ease;
}

/* remove underline for the Contact CTA specifically */
.nav-links a.nav-cta::after {
  display: none !important;
}

.nav-links a:hover {
  color: #f9fafb;
  transform: translateY(-1px);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(94, 234, 212, 0.6);
  background: radial-gradient(circle at top left, rgba(94, 234, 212, 0.24), transparent 70%);
  box-shadow: 0 0 0 1px rgba(15, 23, 42, 0.9), 0 12px 30px rgba(22, 163, 74, 0.22);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.25rem;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 1px solid rgba(75, 85, 99, 0.7);
  background: radial-gradient(circle, rgba(30, 64, 175, 0.5), rgba(15, 23, 42, 0.9));
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background-color: #e5e7eb;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-toggle.active span:nth-child(1) {
  transform: translateY(4px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: translateY(-4px) rotate(-45deg);
}

/* Hero */
.hero {
  max-width: 1280px;
  margin: 0 auto;
  padding: 5.2rem 1.5rem 3.4rem;
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 0.85fr);
  column-gap: 10rem;
  align-items: center;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-right: 3rem;
  max-width: 820px;
}

.hero-kicker {
  font-size: 0.8rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #9ca3af;
  margin-bottom: 0.75rem;
}

.hero-subtitle {
  font-size: 0.98rem;
  color: #d1d5db;
  max-width: 32rem;
  margin-bottom: 1.5rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.8rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.7rem 1.2rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 500;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease,
    border-color 0.18s ease;
}

.btn-primary {
  background: linear-gradient(135deg, #2563eb, #4f46e5, #0ea5e9);
  box-shadow: 0 15px 35px rgba(37, 99, 235, 0.4), 0 0 0 1px rgba(15, 23, 42, 0.9);
  color: #f9fafb;
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 40px rgba(37, 99, 235, 0.55), 0 0 0 1px rgba(15, 23, 42, 0.9);
}

.btn-ghost {
  border-color: rgba(148, 163, 184, 0.4);
  background: radial-gradient(circle at top left, rgba(148, 163, 184, 0.16), transparent 70%);
  color: #e5e7eb;
}

.btn-ghost:hover {
  background: radial-gradient(circle at top left, rgba(148, 163, 184, 0.22), transparent 70%);
  transform: translateY(-1px);
}

.hero-meta {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.8rem;
  color: #9ca3af;
  flex-wrap: wrap;
}

.meta-item {
  background: radial-gradient(circle at top left, rgba(15, 23, 42, 0.5), rgba(15, 23, 42, 0.9));
  border-radius: 0.9rem;
  padding: 0.6rem 0.8rem;
  border: 1px solid rgba(55, 65, 81, 0.9);
  box-shadow:
    0 10px 25px rgba(15, 23, 42, 0.8),
    0 0 0 1px rgba(15, 23, 42, 0.8);
  flex: 0 0 auto;
}

.hero-meta .meta-item:first-child {
  max-width: 180px; /* make Average Fees block narrower */
  flex: 0 0 180px;
}

.meta-label {
  display: block;
  font-size: 0.66rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #9ca3af;
  margin-bottom: 0.1rem;
}

.meta-value {
  font-size: 0.85rem;
  font-weight: 600;
}

.hero-visual {
  position: relative;
  z-index: 1;
  margin-left: 2.5rem;
}

.hero-card {
  position: relative;
  background: radial-gradient(circle at top left, #1d283a, #020617);
  border-radius: 1.3rem;
  border: 1px solid rgba(75, 85, 99, 0.85);
  box-shadow:
    0 18px 55px rgba(15, 23, 42, 0.95),
    0 0 0 1px rgba(15, 23, 42, 0.9);
  overflow: hidden;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  background: conic-gradient(
    from 180deg,
    rgba(56, 189, 248, 0.7),
    rgba(129, 140, 248, 0.7),
    rgba(34, 197, 94, 0.7),
    rgba(56, 189, 248, 0.7)
  );
  opacity: 0;
  transition: opacity 0.4s ease;
  filter: blur(16px);
  z-index: -1;
}

.hero-card:hover::before {
  opacity: 1;
}

.hero-card-header {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.7rem 0.9rem;
  border-bottom: 1px solid rgba(55, 65, 81, 0.8);
  background: linear-gradient(to right, rgba(15, 23, 42, 0.95), rgba(15, 23, 42, 0.8));
}

.hero-card-header .dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background-color: rgba(148, 163, 184, 1);
}

.hero-card-header .dot:nth-child(1) {
  background-color: #f97316;
}
.hero-card-header .dot:nth-child(2) {
  background-color: #eab308;
}
.hero-card-header .dot:nth-child(3) {
  background-color: #22c55e;
}

.hero-card-body {
  padding: 1.4rem 1.3rem 1.6rem;
}

.exchange-flow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.4rem;
}

.exchange-token {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
}

.token-icon {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background-size: cover;
  background-position: center;
  box-shadow:
    0 0 0 3px rgba(15, 23, 42, 0.9);
}

.token-icon.btc {
  background-image: url('bitcoin.png');
}

.token-icon.ltc {
  background-image: url('litecoin.png');
}

.token-icon.sol {
  background-image: url('solana.png');
}

.token-icon.eth {
  background-image: url('ethereum.png');
}

.token-icon.xmr {
  background-image: url('xmr.png');
}

.token-icon.usdt {
  background-image: url('usdt.png');
}

.exchange-token.paypal .token-icon {
  background-image: url('paypal.png');
}

.exchange-token.paysafe .token-icon {
  background-image: url('paysafe.png');
}

.exchange-token .token-icon.paypal {
  background-image: url('paypal.png');
}

.exchange-token .token-icon.paysafe {
  background-image: url('paysafe.png');
}

.exchange-token span {
  font-size: 0.8rem;
  font-weight: 600;
}

.exchange-arrow {
  position: relative;
  width: 72px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(96, 165, 250, 0.2), rgba(129, 140, 248, 0.8));
  overflow: hidden;
}

.exchange-arrow span {
  position: absolute;
  inset: 0;
  transform: translateX(-100%);
  background: linear-gradient(90deg, rgba(56, 189, 248, 0), rgba(56, 189, 248, 1));
}

.exchange-arrow span:nth-child(1) {
  animation: arrowFlow 1.6s linear infinite;
}

.exchange-arrow span:nth-child(2) {
  animation: arrowFlow 1.6s linear infinite 0.4s;
}

@keyframes arrowFlow {
  0% {
    transform: translateX(-100%);
  }
  60%,
  100% {
    transform: translateX(100%);
  }
}

.exchange-meta {
  display: flex;
  justify-content: space-between;
  gap: 1.2rem;
  font-size: 0.8rem;
  color: #9ca3af;
}

.exchange-meta .label {
  display: block;
  margin-bottom: 0.1rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.exchange-meta .value {
  font-weight: 600;
  color: #e5e7eb;
}

.status-live {
  color: #38bdf8;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.2rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(75, 85, 99, 0.9);
  background: radial-gradient(circle at top left, rgba(30, 64, 175, 0.8), rgba(15, 23, 42, 0.96));
  font-size: 0.75rem;
  color: #e5e7eb;
}

.badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: radial-gradient(circle, #38bdf8, #1d4ed8);
  box-shadow: 0 0 12px rgba(59, 130, 246, 0.9);
}

/* Sections */
.section {
  max-width: 1120px;
  margin: 0 auto;
  padding: 3.2rem 1.5rem 4rem;
}

.section-alt {
  position: relative;
}

.section-alt::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top, rgba(15, 23, 42, 0.7), transparent 70%);
  opacity: 0.8;
  pointer-events: none;
  z-index: -1;
}

.section-header {
  margin-bottom: 2.4rem;
}

.section-title {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
  letter-spacing: 0.04em;
}

.section-subtitle {
  font-size: 0.9rem;
  color: #9ca3af;
  max-width: 30rem;
}

/* Services */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.4rem;
}

.service-card {
  position: relative;
  background: radial-gradient(circle at top left, rgba(15, 23, 42, 0.9), #020617);
  border-radius: 1.1rem;
  padding: 1.2rem 1.1rem 1.3rem;
  border: 1px solid rgba(55, 65, 81, 0.95);
  box-shadow:
    0 14px 35px rgba(15, 23, 42, 0.9),
    0 0 0 1px rgba(15, 23, 42, 0.9);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  background: conic-gradient(
    from 180deg,
    transparent,
    rgba(56, 189, 248, 0.4),
    rgba(129, 140, 248, 0.4),
    transparent
  );
  opacity: 0;
  filter: blur(16px);
  transition: opacity 0.35s ease;
  z-index: -1;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(129, 140, 248, 0.9);
  box-shadow:
    0 22px 55px rgba(15, 23, 42, 0.95),
    0 0 0 1px rgba(15, 23, 42, 1);
}

.service-card:hover::before {
  opacity: 1;
}

.service-icon {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.7rem;
  background-size: cover;
  background-position: center;
  box-shadow:
    0 0 0 1px rgba(15, 23, 42, 1),
    0 0 18px rgba(59, 130, 246, 0.8);
}

/* Service card icons */
.crypto-crypto .service-icon {
  background-image: url('crypto.png');
}

.paypal-crypto .service-icon {
  background-image: url('Cryptopaypal.png');
}

.crypto-paypal .service-icon {
  background-image: url('cryptopaypal.png');
}

.paysafe-paypal .service-icon {
  background-image: url('paysafepaypal.png');
}

.paysafe-crypto .service-icon {
  background-image: url('paysafepaypal.png');
}

.icon-circle {
  width: 14px;
  height: 14px;
  border-radius: 999px;
  border: 2px solid rgba(248, 250, 252, 0.95);
  border-top-color: transparent;
}

.service-card h3 {
  font-size: 1rem;
  margin-bottom: 0.3rem;
}

.service-card p {
  font-size: 0.85rem;
  color: #9ca3af;
  margin-bottom: 0.7rem;
}

.service-fee {
  font-size: 0.85rem;
  color: #60a5fa;
  font-weight: 600;
}

/* Crypto Spectrum */
.token-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
}

.token-card {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.9rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(55, 65, 81, 0.9);
  background: radial-gradient(circle at left, rgba(15, 23, 42, 0.9), #020617);
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.9);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  position: relative;
  overflow: hidden;
}

.token-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  background: conic-gradient(
    from 180deg,
    transparent,
    rgba(56, 189, 248, 0.4),
    rgba(129, 140, 248, 0.4),
    transparent
  );
  opacity: 0;
  filter: blur(16px);
  transition: opacity 0.35s ease;
  z-index: -1;
}

.token-card:hover {
  transform: translateY(-4px);
  border-color: rgba(129, 140, 248, 0.9);
  box-shadow:
    0 22px 55px rgba(15, 23, 42, 0.95),
    0 0 0 1px rgba(15, 23, 42, 1);
}

.token-card:hover::before {
  opacity: 1;
}

.token-info {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.token-symbol {
  font-size: 0.9rem;
  font-weight: 600;
}

.token-name {
  font-size: 0.8rem;
  color: #9ca3af;
}

/* Reviews */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.4rem;
}

.review-card {
  background: radial-gradient(circle at top left, rgba(15, 23, 42, 0.9), #020617);
  border-radius: 1.1rem;
  padding: 1.1rem 1.1rem 1.2rem;
  border: 1px solid rgba(55, 65, 81, 0.9);
  box-shadow:
    0 16px 40px rgba(15, 23, 42, 0.95),
    0 0 0 1px rgba(15, 23, 42, 0.9);
  font-size: 0.85rem;
}

.review-header {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 0.6rem;
}

.avatar-glow {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 20%, #38bdf8, #020617);
  box-shadow:
    0 0 0 1px rgba(15, 23, 42, 1),
    0 0 20px rgba(59, 130, 246, 0.9);
}

.review-header h3 {
  font-size: 0.9rem;
}

.review-meta {
  font-size: 0.75rem;
  color: #9ca3af;
}

.review-text {
  color: #e5e7eb;
}

/* Recent Exchanges */
.recent-table-wrapper {
  border-radius: 1.2rem;
  border: 1px solid rgba(55, 65, 81, 0.95);
  background: radial-gradient(circle at top, rgba(15, 23, 42, 0.9), #020617);
  box-shadow:
    0 18px 45px rgba(15, 23, 42, 0.95),
    0 0 0 1px rgba(15, 23, 42, 0.95);
  overflow: hidden;
}

.recent-table-header,
.recent-row {
  display: grid;
  grid-template-columns: 1.1fr 1.1fr 0.9fr 0.7fr 0.9fr;
  gap: 0.4rem;
  padding: 0.7rem 1rem;
  font-size: 0.8rem;
}

.recent-table-header {
  background: linear-gradient(to right, rgba(15, 23, 42, 0.95), rgba(15, 23, 42, 0.8));
  border-bottom: 1px solid rgba(55, 65, 81, 0.95);
  color: #9ca3af;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.7rem;
}

.recent-table-body {
  max-height: 260px;
  overflow: hidden;
  /* make the list scrollable within the column */
  max-height: 320px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.recent-table-header,
.recent-row {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr 0.8fr 0.8fr;
  gap: 0.75rem;
  align-items: center;
  padding: 0 0.5rem;
}

.recent-table-header {
  font-size: 0.85rem;
  color: #9ca3af;
  padding: 0.5rem 0.5rem 0.3rem 0.5rem;
}

.recent-row {
  background: linear-gradient(180deg, rgba(10,14,26,0.6), rgba(10,14,26,0.4));
  border-radius: 0.6rem;
  padding: 0.6rem 0.5rem;
}

.recent-row span {
  font-size: 0.9rem;
  color: #e5e7eb;
}

.recent-status.completed { color: #34d399; text-transform: capitalize; }
.recent-status.processing { color: #f59e0b; text-transform: capitalize; }
.recent-status.pending { color: #f97316; text-transform: capitalize; }

/* Custom scrollbar for recent list */
.recent-table-body::-webkit-scrollbar {
  width: 12px;
}
.recent-table-body::-webkit-scrollbar-track {
  background: rgba(6, 8, 15, 0.45);
  border-radius: 8px;
  margin: 6px 0;
}
.recent-table-body::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, rgba(99,102,241,0.9), rgba(14,165,233,0.9));
  border-radius: 8px;
  border: 2px solid rgba(2,6,23,0.45);
}

/* Firefox scrollbar */
.recent-table-body {
  scrollbar-width: thin;
  scrollbar-color: rgba(99,102,241,0.9) rgba(6,8,15,0.45);
}

.recent-row {
  border-bottom: 1px solid rgba(31, 41, 55, 0.9);
  color: #e5e7eb;
}

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

.recent-status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.15rem 0.5rem;
  border-radius: 999px;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.recent-status.completed {
  background-color: rgba(37, 99, 235, 0.2);
  color: #60a5fa;
}

.recent-status.pending {
  background-color: rgba(250, 204, 21, 0.12);
  color: #eab308;
}

.recent-status.processing {
  background-color: rgba(59, 130, 246, 0.12);
  color: #60a5fa;
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.4rem;
  margin-bottom: 1rem;
}

.contact-card {
  border-radius: 1.1rem;
  padding: 1.1rem 1.1rem 1.2rem;
  border: 1px solid rgba(55, 65, 81, 0.9);
  background: radial-gradient(circle at top left, rgba(15, 23, 42, 0.9), #020617);
  box-shadow:
    0 16px 40px rgba(15, 23, 42, 0.95),
    0 0 0 1px rgba(15, 23, 42, 0.9);
}

.contact-card h3 {
  font-size: 1rem;
  margin-bottom: 0.4rem;
}

.contact-handle {
  font-size: 0.9rem;
  color: #38bdf8;
}

.contact-note {
  font-size: 0.8rem;
  color: #9ca3af;
}

/* Footer */
.footer {
  border-top: 1px solid rgba(30, 64, 175, 0.7);
  background: radial-gradient(circle at top, rgba(15, 23, 42, 0.9), #020617);
}

.footer-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0.9rem 1.5rem 1.3rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.9rem;
  font-size: 0.8rem;
  color: #9ca3af;
}

.footer-pill {
  padding: 0.3rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(55, 65, 81, 1);
  background: radial-gradient(circle at top left, rgba(15, 23, 42, 0.9), #020617);
}

/* Animations & reveals */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

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

.reveal-delay-1 {
  transition-delay: 0.1s;
}
.reveal-delay-2 {
  transition-delay: 0.2s;
}
.reveal-delay-3 {
  transition-delay: 0.3s;
}

.pulse {
  animation: pulseGlow 2.4s ease-in-out infinite;
}

@keyframes pulseGlow {
  0%,
  100% {
    transform: scale(1);
    box-shadow:
      0 0 0 1px rgba(15, 23, 42, 1),
      0 0 18px rgba(59, 130, 246, 0.8);
  }
  50% {
    transform: scale(1.05);
    box-shadow:
      0 0 0 1px rgba(15, 23, 42, 1),
      0 0 26px rgba(59, 130, 246, 1);
  }
}

/* Responsive */
@media (max-width: 960px) {
  .hero {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-visual {
    order: -1;
  }

  .hero {
    gap: 2.2rem;
    padding-top: 5.8rem;
  }

  .hero-title {
    white-space: normal; /* allow wrap on small screens */
  }

  .hero-meta {
    /* keep the compact flex layout and allow wrapping on narrower screens */
    gap: 0.6rem;
    flex-wrap: wrap;
  }

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

  .navbar-inner {
    padding-right: 1rem;
  }

  .nav-links {
    position: fixed;
    inset: 60px 0 auto 0;
    max-width: 1120px;
    margin: 0 auto;
    padding: 0.8rem 1.5rem 1rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.65rem;
    background: radial-gradient(circle at top, rgba(15, 23, 42, 0.98), rgba(15, 23, 42, 0.95));
    border-bottom: 1px solid rgba(30, 64, 175, 0.7);
    transform-origin: top;
    transform: scaleY(0.8);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease;
  }

  .nav-links.open {
    opacity: 1;
    transform: scaleY(1);
    pointer-events: auto;
  }

  .nav-cta {
    align-self: stretch;
    text-align: center;
  }

  .nav-toggle {
    display: flex;
  }
}

@media (max-width: 720px) {
  .hero-meta {
    /* allow meta items to stack if there isn't enough horizontal space */
    flex-wrap: wrap;
    gap: 0.6rem;
  }

  .services-grid,
  .token-grid,
  .reviews-grid,
  .contact-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .recent-table-header,
  .recent-row {
    grid-template-columns: 1fr 1fr 0.8fr;
  }

  .recent-row span:nth-child(4),
  .recent-table-header span:nth-child(4) {
    display: none;
  }
}

@media (max-width: 480px) {
  .navbar-inner {
    padding-inline: 1rem;
  }

  .hero {
    padding-inline: 1rem;
  }

  .section {
    padding-inline: 1rem;
  }

  .footer-inner {
    padding-inline: 1rem;
  }
}
