/* ===== SERVICES PAGE STYLE ===== */

body {
  margin: 0;
  padding: 0;
  background: transparent;
  font-family: 'Inter', sans-serif;
  color: var(--color-text);
  overflow-x: hidden;
  overflow-y: auto !important;
  min-height: 100vh;
}

html { background: #040214; }

main.page-wrap {
  display: flex;
  flex-direction: column;
  min-height: auto;
  position: relative;
  z-index: 0;
}

main.page-wrap > * { position: relative; z-index: 1; }

/* --- Hero Section --- */
.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: clamp(5rem, 8vw, 7rem) 1.5rem 4rem;
  gap: 3rem;
}

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

.hero-content .eyebrow {
  font-family: "Orbitron", sans-serif;
  letter-spacing: 0.55em;
  text-transform: uppercase;
  color: rgba(235, 244, 255, 0.7);
  margin-bottom: 0.6rem;
}

.hero-title {
  font-family: "Orbitron", sans-serif;
  font-size: clamp(3.2rem, 7vw, 6.4rem);
  letter-spacing: 0.38em;
  margin: 0;
  text-transform: uppercase;
  background: linear-gradient(120deg, #f6fbff 8%, #cde3ff 38%, rgba(134, 255, 241, 0.95) 82%);
  -webkit-background-clip: text;
  color: transparent;
  text-shadow: 0 0 45px rgba(111, 255, 241, 0.45), 0 0 85px rgba(163, 125, 255, 0.28);
}

.hero-copy {
  line-height: 1.75;
  opacity: 0.92;
  margin-bottom: 1.6rem;
  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  gap: clamp(1rem, 2.4vw, 1.8rem);
  flex-wrap: wrap;
}

/* --- Glass Card Reuse --- */
.glass-card {
  background: linear-gradient(160deg, rgba(28, 18, 60, 0.85), rgba(12, 6, 42, 0.72));
  box-shadow: 0 20px 50px rgba(0, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 14px;
  backdrop-filter: blur(10px);
  padding: 1.6rem;
  transition: all 0.35s ease;
}

.glass-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, 0.35);
  box-shadow: 0 0 25px rgba(0, 209, 255, 0.3);
}

.glass-card-label {
  font-family: 'Orbitron', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 1.1rem;
  color: #00d1ff;
  margin-bottom: 1rem;
}

.glass-card-body {
  font-size: 0.95rem;
  line-height: 1.7;
}

.hero-footer {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2.5rem;
  padding-top: 2rem;
  padding-bottom: 4rem;
}

/* --- Floating widgets (no overlap) --- */
.hero-visual {
  flex: 1;
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  min-height: 420px;
}

/* Mobile: stack them nicely */
@media (max-width: 900px) {
  .hero-visual { min-height: 300px; justify-content: center; }
}

/* --- Availability Card --- */
.token-icon {
  font-size: 1.4rem;
  color: #00d1ff;
}

.token-title {
  text-transform: uppercase;
  font-size: 0.85rem;
  opacity: 0.8;
  margin-bottom: 0.25rem;
}

.token-value strong {
  color: #00d1ff;
}

/* --- Responsive --- */
@media (max-width: 900px) {
  .hero {
    flex-direction: column;
    text-align: center;
  }

  .hero-content {
    max-width: 100%;
  }
}

@media (max-width: 540px) {
  .hero-title {
    font-size: 2rem;
  }
  .hero-footer {
    flex-direction: column;
  }
}

html {
  scroll-behavior: smooth;
  background: #040214;
}
