/* =========================
   VERITY APP STYLES
========================= */

/* Intro / Hero Section */
.verity-app .intro {
  text-align: center;
  padding-bottom: 60px;
  overflow: visible; /* allows glow to show outside container */
}

.verity-app .intro h1 {
  font-family:"Space Grotesk", sans-serif;
  font-size:46px;
  font-weight:700;
  letter-spacing:-1px;
  margin-bottom:20px;
}

.verity-app .intro p {
  font-size:20px;
  max-width:760px;
  margin:0 auto;
  color:var(--text-muted);
}

@media(max-width:768px){
  .verity-app .intro h1 { font-size:32px; }
  .verity-app .intro p { font-size:18px; }
}

.verity-app .intro-actions {
  margin-bottom: 30px;
  display: flex;
  justify-content: center;
}

.verity-app .buy-vrtc-btn {
  background: linear-gradient(135deg, #00d4ff, #4facfe);
  color: #ffffff !important;

  padding: 12px 24px;
  min-height: 40px;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.4px;

  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  border-radius: 8px;
  cursor: pointer;
  text-decoration: none;

  position: relative;  /* ensures glow appears above background */
  z-index: 10;
}

.verity-app .flashing-btn {
  animation: strongFlash 1.6s infinite ease-in-out;
}

@keyframes strongFlash {
  0% {
    box-shadow: 0 0 0 rgba(0,212,255,0.0);
    transform: scale(1);
  }
  40% {
    box-shadow:
      0 0 10px rgba(0,212,255,0.6),
      0 0 22px rgba(79,172,254,0.7);
  }
  60% {
    box-shadow:
      0 0 18px rgba(0,212,255,0.9),
      0 0 32px rgba(79,172,254,0.8);
    transform: scale(1.04);
  }
  100% {
    box-shadow: 0 0 0 rgba(0,212,255,0.0);
    transform: scale(1);
  }
}


  /* =========================
   BUTTON FIX FOR FLASHING
========================= */
.verity-app .buy-vrtc-btn {
  background: linear-gradient(135deg, #00d4ff, #4facfe);
  color: #ffffff !important;

  padding: 12px 24px;       /* more comfortable size */
  min-height: 40px;          /* taller */
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.4px;

  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  border-radius: 8px;
  cursor: pointer;
  text-decoration: none;

  position: relative;        /* 🔑 ensures glow appears above background */
  z-index: 10;
}

/* flashing animation */
.verity-app .flashing-btn {
  animation: strongFlash 1.6s infinite ease-in-out;
}

/* same keyframes as before */
@keyframes strongFlash {
  0% {
    box-shadow: 0 0 0 rgba(0,212,255,0.0);
    transform: scale(1);
  }
  40% {
    box-shadow:
      0 0 10px rgba(0,212,255,0.6),
      0 0 22px rgba(79,172,254,0.7);
  }
  60% {
    box-shadow:
      0 0 18px rgba(0,212,255,0.9),
      0 0 32px rgba(79,172,254,0.8);
    transform: scale(1.04);
  }
  100% {
    box-shadow: 0 0 0 rgba(0,212,255,0.0);
    transform: scale(1);
  }
}


  /* ================== FAQ Accordion ================== */
  .faq-section {
    max-width: 800px;
    margin: 0 auto 20px auto;
    text-align: left;
  }

  .faq-container .faq-item {
    margin-bottom: 15px;
    border-radius: 12px;
    background: rgba(15,23,42,0.7);
    border-left: 4px solid #4facfe;
    box-shadow: -5px 0 15px rgba(79,172,254,0.1), 0 5px 20px rgba(0,0,0,0.2);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-left 0.3s ease;
  }

  /* ===== TOKENOMIC-LIKE HOVER EFFECT ===== */
  .faq-container .faq-item:hover {
    transform: translateY(-5px);
    border-left: 4px solid #00d4ff;
    box-shadow: -10px 0 25px rgba(0,212,255,0.25),
                0 10px 30px rgba(0,0,0,0.3);
  }

  .faq-question {
    width: 100%;
    padding: 18px 20px;
    background: none;
    border: none;
    outline: none;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    text-align: left;
    cursor: pointer;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .faq-item.active .faq-question {
  color: #4facfe;               /* text color when open */
  border-bottom: 4px solid #4facfe; /* underline appears */
}

  .faq-question:hover {
    color: #4facfe;
  }

  .faq-question::after {
    content: "+";
    font-size: 24px;
    font-weight: 400;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 10px;
  }

  .faq-container .faq-item.active {
      transform: translateY(-5px);
      border-left: 4px solid #00d4ff;
      box-shadow: -10px 0 25px rgba(0,212,255,0.25),
                  0 10px 30px rgba(0,0,0,0.3);
      transition: transform 0.3s ease, box-shadow 0.3s ease, border-left 0.3s ease;
  }

  .faq-item.active .faq-question::after {
    content: "-";
    transform: none;
  }

  .faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 20px;
    color: #ffffff;
    font-size: 15px;
    line-height: 1.75;
    transition: max-height 0.45s ease;
    text-align: justify;
  }

  .faq-item.active .faq-answer {
    /* Let JavaScript handle the exact max-height */
    padding: 15px 20px 20px 20px;
  }

  /* Mobile adjustments */
  @media(max-width:768px){
    .faq-section { margin-bottom: 80px; }
    .faq-question { 
      font-size: 16px; 
      padding: 15px;
    }
    .faq-answer { 
      font-size: 15px; 
      padding: 0 15px;
    }
    .faq-item.active .faq-answer {
      padding: 10px 15px 15px 15px;
    }
  }

  .section-title {
  text-align: center;
  padding-top: 40px;      /* space above FAQ title */
  margin-bottom: -50px;      /* small gap below FAQ title */
  font-size: 3rem;
}

.faq-slogan {
  text-align: center;
  color: #ffffff;
  margin: 0;               /* remove default margin */
  font-size: 1rem;
  margin-top: -40px;
  padding-bottom: 30px;    /* space below slogan */
}
