:root {
  --bg: #0b0b0b;
  --accent: #77c350;
  --muted: #ccc3b4;
  --transition-speed: 0.4s;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    "Segoe UI",
    Roboto,
    "Helvetica Neue",
    Arial;
  background: linear-gradient(180deg, #07110a, #07110a);
  color: #fff;
  overflow-x: hidden;
}
.site-bg {
  position: fixed;
  inset: 0;
  background-image: url("./static/african-safari-scene-2005.jpg");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  /* Force hardware acceleration to reduce jank and keep the image visually fixed */
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  will-change: transform;
  z-index: 1;
}
.site-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7));
  backdrop-filter: blur(4px);

  /* Ensure overlay doesn't capture pointer events and block scrolling */
  pointer-events: none;
}

/* Page structure */
.page {
  min-height: 100vh;
  position: relative;
  z-index: 5;
  width: 100%;
  transition: opacity var(--transition-speed) ease-in-out;
  opacity: 0;
  transform: translateY(30px);
}

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

.page-content {
  max-width: 1100px;
  margin: 0 auto;
  padding: 20px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Scroll animations */
.page {
  transition:
    opacity 0.8s ease-out,
    transform 0.8s ease-out;
}

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

/* Special case for the first section - visible immediately */
#intro {
  opacity: 1;
  transform: translateY(0);
}

/* Mobile Header */
.mobile-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mobile-logo {
  height: 50px;
  width: auto;
}

.hamburger {
  display: flex;
  flex-direction: column;
  width: 10px;
  height: 10px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  justify-content: space-around;
}

.hamburger span {
  width: 100%;
  height: 2px;
  background: white;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

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

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(8px, -8px);
}

/* Mobile Navigation Dropdown */
.mobile-nav {
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  z-index: 150;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(10px);
  transform: translateY(-100%);
  opacity: 0;
  transition: all 0.3s ease;
  padding: 20px;
}

.mobile-nav.active {
  transform: translateY(0);
  opacity: 1;
}

.mobile-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.mobile-nav-link {
  color: white;
  text-decoration: none;
  padding: 15px 20px;
  border-radius: 10px;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  display: block;
  text-align: center;
  background: rgba(255, 255, 255, 0.05);
}

.mobile-nav-link:hover {
  background: rgba(119, 195, 80, 0.2);
  color: var(--accent);
}

/* Desktop Navigation */
.main-nav {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 100;
  background: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
  border-radius: 30px;
  padding: 8px 10px;
}

/* Ensure the main content is pushed down so fixed headers/nav don't overlap it */
main {
  position: relative;
  padding-top: 80px; /* space for fixed desktop nav/header */
  z-index: 2;
}

.main-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 8px;
}

.main-nav a {
  color: var(--muted);
  text-decoration: none;
  padding: 8px 12px;
  border-radius: 20px;
  font-size: 0.9rem;
  transition: all var(--transition-speed) ease;
  display: block;
}

.main-nav a:hover {
  color: white;
  background: rgba(255, 255, 255, 0.1);
}

.main-nav a.active {
  color: var(--accent);
  background: rgba(119, 195, 80, 0.1);
}

/* Section 1: Hero */
.hero-inner {
  position: relative;
  z-index: 10;
  max-width: 980px;
  margin: 0 auto;
  padding: 60px 20px;
  text-align: center;
  background-color: rgba(0, 0, 0, 0.4);
  border-radius: 15px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}
.hero-logo {
  height: 120px;
  width: auto;
  z-index: 10;
  margin-bottom: 40px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.logo-container {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.logo-icon {
  margin-right: 10px;
}
.logo-text {
  margin: 0;
  font-weight: 800;
  letter-spacing: 0.6px;
  font-size: 1.5rem;
}
h1 {
  font-size: 4rem;
  margin: 0;
}
.description-box {
  max-width: 680px;
  margin: 20px auto;
}
.main-description {
  font-size: 1.25rem;
  color: var(--muted);
  line-height: 1.6;
}
.accent {
  color: var(--accent);
}
.badges {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 30px 0;
}
.badges span {
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--muted);
  background: rgba(255, 255, 255, 0.02);
  font-size: 0.9rem;
  transition: all var(--transition-speed) ease;
}
.badges span:hover {
  border-color: var(--accent);
  background: rgba(119, 195, 80, 0.1);
  transform: translateY(-2px);
}
.intro-cta {
  margin: 40px 0 20px;
}
.scroll-text {
  color: var(--muted);
  font-size: 0.8rem;
  margin-bottom: 5px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.scroll-cue {
  margin: 40px auto 0;
  width: 28px;
  height: 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.scroll-cue .chev {
  width: 12px;
  height: 12px;
  border-right: 2px solid rgba(255, 255, 255, 0.7);
  border-bottom: 2px solid rgba(255, 255, 255, 0.7);
  transform: rotate(45deg);
  opacity: 0.9;
  animation: down 1.2s infinite;
}
@keyframes down {
  0% {
    transform: translateY(-2px) rotate(45deg);
  }
  50% {
    transform: translateY(4px) rotate(45deg);
  }
  100% {
    transform: translateY(-2px) rotate(45deg);
  }
}

/* Section 2: Value Proposition */
.value-prop-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 20px;
  text-align: center;
  background-color: rgba(0, 0, 0, 0.4);
  border-radius: 15px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}
.section-title {
  font-size: 2.5rem;
  margin-bottom: 40px;
  text-align: center;
}
.value-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 15px;
  margin-bottom: 40px;
}
.value-left {
  flex: 1;
  min-width: 300px;
}
.value-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  text-align: left;
  padding: 16px;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all var(--transition-speed) ease;
}
.value-item:hover {
  transform: translateY(-5px);
  border-color: var(--accent);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}
.value-content {
  flex: 1;
}
.value-content h3 {
  margin: 0 0 8px 0;
  font-size: 1.2rem;
}
.value-content p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.5;
}
.currency-showcase {
  flex: 0 0 350px;
  padding: 25px;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all var(--transition-speed) ease;
}
.currency-showcase:hover {
  transform: translateY(-5px);
  border-color: var(--accent);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}
.currency-showcase h3 {
  margin-top: 0;
  margin-bottom: 20px;
  text-align: left;
}

/* Stats Section */
.stats-container {
  margin-top: 40px;
  padding: 25px;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all var(--transition-speed) ease;
}
.stats-container:hover {
  transform: translateY(-5px);
  border-color: var(--accent);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}
.stats-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 20px;
}
.stat-item {
  text-align: center;
  padding: 16px;
  min-width: 120px;
}
.stat-value {
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 8px;
}
.stat-label {
  color: var(--muted);
  font-size: 0.9rem;
}

/* Section 3: Features */
.features-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 20px;
  text-align: center;
  background-color: rgba(0, 0, 0, 0.4);
  border-radius: 15px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}
.feature-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}
.feature-card {
  padding: 25px;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  text-align: left;
  transition: all var(--transition-speed) ease;
}
.feature-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}
.explainer {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 40px;
  background: rgba(0, 0, 0, 0.3);
  padding: 30px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all var(--transition-speed) ease;
}
.explainer:hover {
  transform: translateY(-5px);
  border-color: var(--accent);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}
.explainer-copy {
  flex: 1;
}
.mock-device {
  flex: 0 0 260px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.15));
  padding: 8px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.04);
  max-width: 100%;
  transition: transform var(--transition-speed) ease;
}
.explainer:hover .mock-device {
  transform: scale(1.05);
}
.mock-device img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}

/* Token Grid */
.token-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 15px;
  margin-top: 20px;
}
.token {
  background: rgba(255, 255, 255, 0.04);
  padding: 14px;
  border-radius: 10px;
  text-align: center;
  transition: all var(--transition-speed) ease;
}
.token:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-3px);
}
.token-icon {
  width: 28px;
  height: 28px;
  vertical-align: middle;
  margin-right: 8px;
  border-radius: 50%;
  background: #fff;
  padding: 4px;
}

/* Section 4: CTA and FAQ */
.cta-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 20px;
  text-align: center;
  background-color: rgba(0, 0, 0, 0.4);
  border-radius: 15px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}
.cta-action {
  margin: 40px 0;
}
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.03);
  }
  100% {
    transform: scale(1);
  }
}
.cta {
  display: inline-block;
  background: var(--accent);
  color: #102010;
  padding: 16px 32px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  animation: pulse 2s infinite;
}
.cta:hover {
  background: #8ad65e;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}
.cta .cta-icon {
  vertical-align: middle;
  margin-right: 10px;
  display: inline-block;
}

.faq-container {
  margin: 50px auto;
  max-width: 800px;
  text-align: left;
}
.faq-container h3 {
  text-align: center;
  margin-bottom: 30px;
}
.faq-container details {
  background: rgba(0, 0, 0, 0.4);
  padding: 16px;
  border-radius: 10px;
  margin: 10px 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all var(--transition-speed) ease;
  cursor: pointer;
}
.faq-container details:hover {
  transform: translateY(-3px);
  border-color: var(--accent);
  background: rgba(0, 0, 0, 0.6);
}
.faq-container details:hover div {
  display: block;
}
.faq-container summary {
  cursor: pointer;
  padding: 8px;
  font-weight: 600;
}
.faq-container summary:hover {
  color: var(--accent);
}
.faq-container details[open] {
  background: rgba(0, 0, 0, 0.6);
  border-color: var(--accent);
}
.faq-container details div {
  padding: 15px 10px 5px;
  color: var(--muted);
  line-height: 1.6;
  display: none;
}
.faq-container details[open] div {
  display: block;
}

.community-showcase {
  margin: 40px auto;
  max-width: 800px;
  padding: 30px;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all var(--transition-speed) ease;
}
.community-showcase:hover {
  transform: translateY(-5px);
  border-color: var(--accent);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}
.community-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 20px;
  flex-wrap: wrap;
}
.btn {
  display: inline-block;
  padding: 12px 22px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  transition: all var(--transition-speed) ease;
}
.btn-outline {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--muted);
}
.btn-x {
  border-color: var(--accent);
  color: var(--accent);
}
.btn-x:hover {
  background: var(--accent);
  color: #102010;
  transform: translateY(-3px);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}
.btn-tg {
  border-color: rgba(204, 195, 180, 0.28);
  color: var(--muted);
}
.btn-tg:hover {
  background: rgba(204, 195, 180, 0.18);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

/* Icons */
.icon-circle {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: rgba(119, 195, 80, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  transition: all var(--transition-speed) ease;
}
.feature-card:hover .icon-circle {
  background: rgba(119, 195, 80, 0.25);
}
.icon-svg {
  width: 20px;
  height: 20px;
  color: var(--accent);
}
.highlight {
  color: var(--accent);
  font-weight: 600;
  margin-top: 8px;
}

/* Responsive */
@media (min-width: 801px) {
  .mobile-header {
    display: none;
  }
  .mobile-nav {
    display: none;
  }
}

@media (max-width: 800px) {
  h1 {
    font-size: 2.5rem;
  }
  .hero-logo {
    height: 80px;
    margin-bottom: 30px;
  }
  .feature-cards {
    flex-direction: column;
  }
  .feature-card {
    width: 100%;
    margin-bottom: 20px;
  }
  .explainer {
    flex-direction: column;
    padding: 20px;
  }
  .mock-device {
    margin-bottom: 20px;
  }
  .cta {
    padding: 14px 20px;
    font-size: 1rem;
  }
  .section-title {
    font-size: 2rem;
  }
  .main-nav {
    display: none;
  }
  .hero-inner,
  .features-container,
  .value-prop-container,
  .currencies-container,
  .cta-container {
    padding: 40px 20px;
    margin-top: 70px;
  }
  #intro .page-content {
    padding-top: 90px;
  }
  .badges {
    flex-direction: row;
    align-items: center;
    gap: 8px;
  }
  .badges span {
    display: block;
    text-align: center;
  }

  /* Make the background responsive on smaller screens:
     - disable fixed attachment (problematic on mobile browsers)
     - shift focal point toward the top so hero content stays visible
     - keep cover sizing to preserve full-bleed look */
  .site-bg {
    background-attachment: scroll;
    background-position: center top;
    background-size: cover;
  }
}

@media (max-width: 480px) {
  .page-content {
    padding: 10px;
  }
  .scroll-cue {
    display: none;
  }
  .hero-inner,
  .features-container,
  .value-prop-container,
  .currencies-container,
  .cta-container {
    padding: 30px 15px;
    margin-top: 60px;
  }
  .hero-logo {
    height: 60px;
    margin-bottom: 20px;
  }
  h1 {
    font-size: 2rem;
  }
  .main-description {
    font-size: 1.1rem;
  }
  .section-title {
    font-size: 1.8rem;
  }
  .value-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .stats-grid {
    flex-direction: column;
    gap: 15px;
  }
  .stat-item {
    min-width: auto;
  }
  /* Reduce animation distance on mobile for better performance */
  .page {
    transform: translateY(20px);
  }

  /* Tighter positioning on very small screens to keep the hero visible */
  .site-bg {
    background-attachment: scroll;
    background-position: center 20%;
    background-size: cover;
  }
}
h1 {
  font-size: 4rem;
  margin: 0;
  opacity: 1;
  transform: translateX(0);
}
h1.slide-in {
  opacity: 1;
  transform: translateX(0);
  transition: all 0.8s ease-out 0.3s;
}
.description-box {
  max-width: 680px;
  margin: 20px auto;
  opacity: 1;
  transform: translateY(0);
}
.description-box.fade-in-up {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.8s ease-out 0.6s;
}
.main-description {
  font-size: 1.25rem;
  color: var(--muted);
  line-height: 1.6;
}
.accent {
  color: var(--accent);
}
.badges {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 30px 0;
}
.badges span {
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--muted);
  background: rgba(255, 255, 255, 0.02);
  font-size: 0.9rem;
}
.scroll-text {
  color: var(--muted);
  font-size: 0.8rem;
  margin-bottom: 5px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.scroll-cue {
  margin: 40px auto 0;
  width: 28px;
  height: 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.scroll-cue .chev {
  width: 12px;
  height: 12px;
  border-right: 2px solid rgba(255, 255, 255, 0.7);
  border-bottom: 2px solid rgba(255, 255, 255, 0.7);
  transform: rotate(45deg);
  opacity: 0.9;
  animation: down 1.2s infinite;
}
@keyframes down {
  0% {
    transform: translateY(-2px) rotate(45deg);
  }
  50% {
    transform: translateY(4px) rotate(45deg);
  }
  100% {
    transform: translateY(-2px) rotate(45deg);
  }
}

/* Section 2: Features */

/* Removed testimonials section */
.token-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 12px;
  margin-top: 20px;
}
.token {
  background: rgba(255, 255, 255, 0.04);
  padding: 14px;
  border-radius: 10px;
  text-align: center;
}
.token-icon {
  width: 28px;
  height: 28px;
  vertical-align: middle;
  margin-right: 8px;
  border-radius: 50%;
  background: #fff;
  padding: 4px;
}

/* Section 4: CTA and FAQ */
.cta-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 20px;
  text-align: center;
  z-index: 10;
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 15px;
}
.cta-action {
  margin: 40px 0;
  opacity: 1;
  transform: scale(1);
}
.cta-action.animated {
  opacity: 1;
  transform: scale(1);
}
.cta-action.animated.pulse {
  opacity: 1;
  transform: scale(1);
  transition: all 0.5s ease-out;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.03);
  }
  100% {
    transform: scale(1);
  }
}
.cta {
  display: inline-block;
  background: var(--accent);
  color: #102010;
  padding: 16px 32px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}
.cta:hover {
  background: #8ad65e;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}
.cta .cta-icon {
  vertical-align: middle;
  margin-right: 10px;
  display: inline-block;
}

.faq-container {
  margin: 50px auto;
  max-width: 800px;
  text-align: left;
}
.faq-container h3 {
  text-align: center;
  margin-bottom: 30px;
}
.faq-container details {
  background: rgba(0, 0, 0, 0.4);
  padding: 16px;
  border-radius: 10px;
  margin: 10px 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
  opacity: 1;
  transform: translateY(0);
}
.faq-container details.fade-in {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.5s ease-out;
}
.faq-container summary {
  cursor: pointer;
  padding: 8px;
  font-weight: 600;
}
.faq-container summary:hover {
  color: var(--accent);
}
.faq-container details div {
  padding: 15px 10px 5px;
  color: var(--muted);
  line-height: 1.6;
}

.community-showcase {
  margin: 40px auto;
  max-width: 800px;
  padding: 30px;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  opacity: 1;
  transform: translateY(0);
}
.community-showcase.animated {
  opacity: 1;
  transform: translateY(0);
}
.community-showcase.animated.fade-in-up {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.8s ease-out 0.7s;
}
.community-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 20px;
  flex-wrap: wrap;
}
.btn {
  display: inline-block;
  padding: 12px 22px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}
.btn-outline {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--muted);
}
.btn-x {
  border-color: var(--accent);
  color: var(--accent);
}
.btn-x:hover {
  background: var(--accent);
  color: #102010;
}
.btn-tg {
  border-color: rgba(204, 195, 180, 0.28);
  color: var(--muted);
}
.btn-tg:hover {
  background: rgba(204, 195, 180, 0.18);
  color: #fff;
}

/* Animation classes */
.fade-in {
  opacity: 1 !important;
  transform: translateY(0) !important;
  transition: all 0.8s ease-out;
}
.slide-in {
  opacity: 1 !important;
  transform: translateX(0) !important;
  transition: all 0.8s ease-out;
}
.fade-in-up {
  opacity: 1 !important;
  transform: translateY(0) !important;
  transition: all 0.8s ease-out;
}
.slide-in-left {
  opacity: 1 !important;
  transform: translateX(0) !important;
  transition: all 0.8s ease-out;
}
.slide-in-right {
  opacity: 1 !important;
  transform: translateX(0) !important;
  transition: all 0.8s ease-out;
}
.pulse {
  opacity: 1 !important;
  transform: scale(1) !important;
  transition: all 0.5s ease-out;
  animation: pulse 2s infinite !important;
}

/* Icons */
.icon-circle {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: rgba(119, 195, 80, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}
.icon-svg {
  width: 20px;
  height: 20px;
  color: var(--accent);
}
.highlight {
  color: var(--accent);
  font-weight: 600;
  margin-top: 8px;
}

/* Responsive */
@media (max-width: 800px) {
  h1 {
    font-size: 2.5rem;
  }
  .feature-cards {
    flex-direction: column;
  }
  .feature-card {
    width: 100%;
    margin-bottom: 20px;
  }
  .explainer {
    flex-direction: column;
    padding: 20px;
  }
  .mock-device {
    margin-bottom: 20px;
  }
  .cta {
    padding: 14px 20px;
    font-size: 1rem;
  }
  .section-title {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .page-nav {
    display: none;
  }
  .logo-container,
  h1,
  .description-box,
  .feature-card,
  .explainer,
  .testimonial,
  .cta-container,
  .faq-container details,
  .section-title,
  .assets-showcase,
  .community-showcase {
    opacity: 1 !important;
    transform: none !important;
  }
  .scroll-cue {
    display: none;
  }
}

/* Currencies section styles */
.currencies-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 20px;
  text-align: center;
  background-color: rgba(0, 0, 0, 0.4);
  border-radius: 15px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.currency-intro {
  max-width: 800px;
  margin: 0 auto 30px;
  color: var(--muted);
  line-height: 1.6;
}

.token-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin: 30px 0;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.token {
  background: rgba(255, 255, 255, 0.04);
  padding: 20px;
  border-radius: 12px;
  text-align: center;
  transition: all var(--transition-speed) ease;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.token:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-5px);
  border-color: var(--accent);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.token-details {
  margin-top: 15px;
}

.token-details h4 {
  margin: 0 0 5px;
  font-size: 1.2rem;
}

.token-details p {
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 0.9rem;
}

.token-icon {
  width: 48px;
  height: 48px;
  vertical-align: middle;
  border-radius: 50%;
  background: #fff;
  padding: 4px;
  margin-bottom: 10px;
}

.token-badge {
  display: inline-block;
  font-size: 0.8rem;
  padding: 4px 10px;
  border-radius: 20px;
  background: rgba(119, 195, 80, 0.1);
  color: var(--accent);
}

.currency-note {
  margin-top: 20px;
  color: var(--muted);
}

.text-link {
  color: var(--accent);
  text-decoration: none;
  transition: all 0.3s ease;
}

.text-link:hover {
  text-decoration: underline;
}

@media (max-width: 800px) {
  .token-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
}

@media (max-width: 480px) {
  .token-grid {
    grid-template-columns: 1fr;
    gap: 10px;
    max-width: 100%;
  }

  .token {
    padding: 15px;
    max-width: 100%;
  }

  .token-icon {
    width: 40px;
    height: 40px;
  }
}
