:root {
  --purple-1: #3b0f59;
  --purple-2: #6f2aa5;
  --accent: #f6b93b;
  --muted: #6c6c78;
  --max-width: 1200px;
}
* {
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
}
body {
  background: #fff;
  color: #222;
}
.hero-section {
  background: linear-gradient(
    135deg,
    rgba(75, 22, 109, 1) 0%,
    rgba(96, 33, 150, 1) 45%,
    rgba(63, 17, 79, 1) 100%
  );
  padding: 180px 0 120px 0;
  position: relative;
  overflow: hidden;
}

/* Decorative SVG container inside hero */
.hero-decor {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.hero-decor svg {
  width: 100%;
  height: 100%;
  display: block;
}

/* floating animations for decorative elements */
.hero-decor .float {
  transform-origin: center center;
}
.hero-decor .float.slow {
  animation: floatY 8s ease-in-out infinite;
}
.hero-decor .float.slower {
  animation: floatY 12s ease-in-out infinite;
}
.hero-decor .panel {
  filter: blur(0.6px);
}

@keyframes floatY {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-14px);
  }
  100% {
    transform: translateY(0px);
  }
}

.hero-section::after {
  content: "";
  position: absolute;
  right: -120px;
  top: -40px;
  width: 420px;
  height: 420px;
  background: radial-gradient(
    circle at 30% 30%,
    rgba(255, 255, 255, 0.06),
    rgba(255, 255, 255, 0.01) 40%,
    transparent 60%
  );
  border-radius: 50%;
  transform: rotate(15deg);
}
.brand-mark {
  color: var(--accent);
  font-weight: 900;
  font-size: 1.15rem;
}
.stats-card {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 20px;
  color: white;
  backdrop-filter: blur(4px);
}
.stats-card {
  background: transparent;
  border-radius: 14px;
  padding: 0;
  color: white;
}
stats-card-vertical {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.04),
    rgba(255, 255, 255, 0.02)
  );
  border-radius: 22px;
  padding: 20px;
  backdrop-filter: blur(8px);
}
.stat-blob {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 18px;
  margin-bottom: 12px;
}
.stat-blob.muted {
  background: rgba(255, 255, 255, 0.2);
  opacity: 0.98;
}
.stat-number {
  font-size: 2.6rem;
  font-weight: 900;
  color: rgba(255,255,255,.8);
}
.stat-label {
  font-size: 0.88rem;
  color: rgba(255,255,255,.8);
}

/* refine stats card to look like screenshot */
.stats-card-vertical {
  width: 440px;
  margin-left: auto;
}
.stat-blob {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.stat-blob .stat-label {
  opacity: 0.85;
  margin-top: 8px;
  font-size: 0.85rem;
}
.stats-card-vertical {
  /* box-shadow: 0 26px 80px rgba(11, 5, 30, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.06); */
}

.purple-card {
  background: linear-gradient(180deg, #4b146e, #6f2aa5);
  border-radius: 16px;
  padding: 26px;
}
.purple-card p {
  opacity: 0.95;
}
.light-card {
  background: linear-gradient(180deg, #f7f4fb, #f3eefb);
  border-radius: 12px;
}
.small-card {
  background: #fff;
  border-radius: 12px;
}
.yellow-card {
  background: linear-gradient(180deg, #ffd98a, #f6b93b);
  border-radius: 12px;
  padding: 14px;
}

/* Discounts band more like screenshot */
.discounts {
  background: linear-gradient(90deg, var(--purple-1), var(--purple-2));
  padding: 86px 0;
}
.discounts .container {
  max-width: 1200px;
  text-align: left;
}
.discounts h2 {
  font-size: 3rem;
}
.discounts p.lead {
  font-size: 1.25rem;
}
.discounts:before {
  content: "";
  display: block;
  height: 18px;
}

/* Latest news card polish */
.card.article {
  border-radius: 12px;
  overflow: hidden;
}
.card.article .card-body {
  padding: 18px;
}
.card-img-top {
  height: 180px;
  object-fit: cover;
}

/* Footer refinement */
footer {
  background: #161616;
  color: #bdbdbd;
}
footer h6 {
  color: #fff;
}
footer .small {
  color: #bdbdbd;
}

/* Layout spacing */
section.py-6 {
  padding-top: 64px;
  padding-bottom: 64px;
}

/* ensure hero content is above decorations */
.hero-section > .container {
  position: relative;
  z-index: 2;
}

/* Floating hero stats positioning */
.hero-stats {
  /* background-color: rgba(255, 255, 255, 0.94); */
  position: absolute;
  right: 84px;
  top: 48%;
  transform: translateY(-48%);
  z-index: 6;
  transition: all 260ms cubic-bezier(0.2, 0.9, 0.22, 1);
}
.hero-stats .stats-card-vertical {
  width: 440px;
}

@media (max-width: 991px) {
  .hero-stats {
    position: static;
    transform: none;
    margin-top: 28px;
    right: auto;
  }
  .hero-stats .stats-card-vertical {
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
  }
}

@media (min-width: 1400px) {
  .hero-stats {
    right: 110px;
    top: 44%;
  }
}

.discounts {
  background: linear-gradient(90deg, var(--purple-1), var(--purple-2));
  padding: 72px 0;
}
.discounts h2 {
  font-size: 2.75rem;
}
.discounts p {
  opacity: 0.95;
  font-size: 1.15rem;
}

.icon-card {
  background: white;
  padding: 20px;
  border: 1px solid #eee;
}
.icon-card h6 {
  font-weight: 700;
}
.icon-card p {
  margin-bottom: 0;
}

.cta-band {
  background: linear-gradient(90deg, #f0b84b, #f3c15b);
  position: relative;
  overflow: hidden;
  padding: 64px 0;
}
.cta-band h4 {
  font-size: 1.5rem;
}

/* make cta coin image bigger and overlapping */
.cta-band img {
  width: 220px;
  border-radius: 12px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
  transform: translateY(8px);
}

/* create a large decorative coin element on the right for desktop */
.cta-band::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -30px;
  width: 360px;
  height: 260px;
  background-image: url("/tether.svg");
  background-size: cover;
  background-position: center;
  border-radius: 50%;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
  transform: translateX(30px);
  opacity: 0.95;
  pointer-events: none;
}

/* step dot */
.step-dot {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #efeef4;
  color: var(--purple-1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

/* make hero titles larger and tighter like screenshot */
.hero-section .display-5 {
  color: #fff;
  font-size: 4.25rem;
  line-height: 1.02;
  letter-spacing: -0.9px;
  font-weight: 800;
  text-shadow: 0 4px 30px rgba(8, 2, 18, 0.22);
  max-width: 900px;
}
.hero-section .lead {
  font-size: 1.28rem;
  color: rgba(255, 255, 255, 0.96);
  max-width: 720px;
}

/* Navbar on white background should show dark links */
.navbar.bg-white .nav-link {
  color: #333 !important;
}
.navbar.bg-white .btn-outline-primary {
  border-color: rgba(0, 0, 0, 0.06);
  color: #333;
}

/* ensure hero search/content stays above decorations */
.hero-section > .container {
  position: relative;
  z-index: 3;
}

/* small utilities */
.text-white-50 {
  color: rgba(255, 255, 255, 0.75) !important;
}

/* navbar tweaks */
.navbar-brand .brand-mark {
  color: var(--accent);
}
.navbar-brand {
  color: #FFF;
  font-weight: bold;
}
.scrolled .navbar-brand {
  color: #000;
}
.navbar {
  background: transparent;
}
/* Only make links white when the navbar is not using the white background utility */
.navbar:not(.bg-white):not(.scrolled) .nav-link {
  color: #FFF
}
.navbar {
  width: 100%;
  position: fixed;
  top: 0;
  transition: background-color 220ms ease, box-shadow 220ms ease;
}

/* scrolled state: make navbar white with subtle shadow and dark links */
.navbar.scrolled {
  background-color: #ffffff;
  box-shadow: 0 10px 40px rgba(18, 6, 28, 0.1);
  backdrop-filter: blur(6px);
}
.navbar.scrolled .nav-link {
  color: #333 !important;
}
.navbar.scrolled .brand-mark {
  color: var(--purple-1) !important;
}

/* Spread out navbar items a bit on larger screens for a more open layout */
.navbar .navbar-nav {
  gap: 1rem;
  align-items: center;
}
.navbar .nav-item {
  margin-left: 0.35rem;
}
.navbar .nav-item .btn {
  padding-left: 0.9rem;
  padding-right: 0.9rem;
}

/* CTA group separate styling */
.cta-group .btn {
  border-radius: 8px;
}
.cta-group .btn.btn-outline-primary {
  background: transparent;
  color: inherit;
  border-color: rgba(255, 255, 255, 0.12);
}
.navbar.scrolled .cta-group .btn.btn-outline-primary {
  border-color: rgba(0, 0, 0, 0.08);
  color: #333;
}
.cta-group .btn.btn-warning {
  background: var(--accent);
  border: none;
  color: #1a0b00;
  box-shadow: 0 12px 34px rgba(246, 185, 59, 0.22);
  padding: 10px 16px;
  font-weight: 700;
  border-radius: 10px;
}
.cta-group .btn.btn-warning:hover {
  filter: brightness(0.96);
}

/* Hero CTA buttons styling */
.hero-section .btn-warning {
  background: var(--accent);
  border: none;
  color: #1a0b00;
  box-shadow: 0 18px 48px rgba(246, 185, 59, 0.2);
  padding: 14px 26px;
  border-radius: 12px;
}
.hero-section .btn-outline-light {
  border-color: rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.96);
  padding: 14px 26px;
  border-radius: 12px;
}

/* small utility for centered content */
.container.py-6 {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

/* Small visual polish */
.card {
  border-radius: 12px;
}
.shadow-sm {
  box-shadow: 0 6px 18px rgba(23, 10, 50, 0.06) !important;
}
.rounded {
  border-radius: 12px;
}

/* Responsive tweaks */
@media (max-width: 767px) {
  .hero-section {
    padding: 40px 0;
  }
  .stat-row {
    flex-direction: row;
  }
}

/* Footer */
footer {
  background: #1f1f22;
}
