body {
  background-color: #0A0A0A;
  font-family: 'Montserrat', sans-serif;
  color: #E0E0E0;
  scroll-behavior: smooth;
}

 .font-sans { font-family: Montserrat, sans-serif;
}

.group relative {
	margin-bottom: 50px;
}

.gradient-text {
  background: linear-gradient(90deg, #B026FF, #0091FF, #00FFB0, #00F0FF);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
}

.gradient-border {
  position: relative;
  border-radius: 9999px;
  background: linear-gradient(#121212, #121212) padding-box, linear-gradient(90deg, #B026FF, #0091FF, #00FFB0, #00F0FF) border-box;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.gradient-border:hover {
  box-shadow: 0 0 15px rgba(176, 38, 255, 0.5), 0 0 25px rgba(0, 240, 255, 0.3);
}

.gradient-border-card {
  position: relative;
  border-radius: 0.75rem;
  background: linear-gradient(#1A1A1A, #1A1A1A) padding-box, linear-gradient(120deg, #B026FF, #0091FF, #00FFB0) border-box;
  border: 1px solid transparent;
  transition: all 0.3s ease;
}

.gradient-border-card:hover {
  box-shadow: 0 0 20px rgba(0, 255, 176, 0.2);
  transform: translateY(-5px);
}

.glassmorphism {
  background: rgba(18, 18, 18, 0.5);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu {
  transform: translateX(100%);
  transition: transform 0.3s ease-in-out;
}

.mobile-menu.open {
  transform: translateX(0);
}

.hamburger span {
  transition: all 0.2s ease-in-out;
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

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

.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

html,
body {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.section-container {
  padding: 5rem 1.5rem;
}

.stat-number {
  display: block;
  font-size: 3rem;
  font-weight: bold;
  background: linear-gradient(90deg, #00FFB0, #00F0FF);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.timeline {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}

.timeline::after {
  content: '';
  position: absolute;
  width: 4px;
  background-color: #222;
  top: 0;
  bottom: 0;
  left: 30px;
  margin-left: -2px;
}

.timeline-item {
  padding: 10px 40px;
  position: relative;
  background-color: inherit;
  width: 100%;
  padding-left: 70px;
  padding-right: 25px;
}

.timeline-item::after {
  content: '';
  position: absolute;
  width: 25px;
  height: 25px;
  right: auto;
  left: 18px;
  background-color: #121212;
  border: 4px solid #00F0FF;
  top: 15px;
  border-radius: 50%;
  z-index: 1;
  transition: all 0.3s ease;
}

.timeline-item:hover::after {
  background-color: #00F0FF;
}

@media (min-width: 768px) {
  .timeline::after {
    left: 50%;
  }
  .timeline-item {
    width: 50%;
    padding-left: 40px;
    padding-right: 40px;
  }
  .timeline-item.left {
    left: 0;
  }
  .timeline-item.right {
    left: 50%;
  }
  .timeline-item.left::after {
    left: auto;
    right: -14px;
  }
  .timeline-item.right::after {
    left: -12px;
  }
}

.zk-explainer-container {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.zk-card {
  background: #1A1A1A;
  padding: 2.5rem;
  border-radius: 0.75rem;
  border: 1px solid #333;
  flex: 1;
  min-width: 320px;
  max-width: 420px;
  display: flex;
  flex-direction: column;
  text-align: center;
  transition: all 0.3s ease;
}

.zk-card:hover {
  border-color: #B026FF;
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.zk-icon-container {
  height: 80px;
  width: 80px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #0A0A0A;
  border: 2px solid #333;
}

.zk-icon {
  font-size: 2.5rem;
}

.zk-arrow-container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  padding: 0 1rem;
}

.zk-arrow {
  font-size: 3rem;
  color: #00FFB0;
  animation: zkp-pulse 1.5s infinite ease-in-out;
}

.zk-card-glow {
  border-color: #00FFB0;
  box-shadow: 0 0 15px rgba(0, 255, 176, 0.4), 0 0 25px rgba(0, 255, 176, 0.2);
}

.zk-card-glow .zk-icon-container {
  border-color: #00FFB0;
}

.zk-card-glow .zk-icon {
  color: #00FFB0;
}

.tech-wall {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.tech-item img {
  height: 50px;
  filter: grayscale(1) brightness(1.5) contrast(1.2);
  opacity: 0.7;
  transition: all 0.3s ease;
}

.tech-item:hover img {
  filter: none;
  opacity: 1;
  transform: scale(1.1);
}

.case-card {
  transition: all 0.3s ease;
}

.case-card:hover {
  transform: translateY(-5px);
}

.modal-overlay {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-content {
  transform: translateY(20px);
  transition: transform 0.3s ease;
}

.modal-overlay.active .modal-content {
  transform: translateY(0);
}

.filter-button.active {
  background: linear-gradient(90deg, #B026FF, #0091FF);
  color: #F4F4F4;
  border-color: transparent;
}

.pillar {
  background-color: #1a1a1a;
  border: 1px solid #333;
  border-radius: 12px;
  padding: 25px 20px;
  flex: 1;
  min-width: 150px;
  max-width: 170px;
  transition: transform 0.3s ease, border-color 0.3s ease;
  text-align: center;
}

.pillar:hover {
  transform: translateY(-5px);
  border-color: #00F0FF;
}

.pillar.govern {
  border-color: #B026FF;
}

.pillar-icon {
  font-size: 2.2rem;
  margin-bottom: 15px;
  color: #E0E0E0;
  transition: color 0.3s ease;
}

.pillar:hover .pillar-icon {
  color: #00F0FF;
}

.pillar h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #soft-white;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.pillar p {
  font-size: 0.85rem;
  color: #ccc;
  line-height: 1.5;
}

.highlighted-section {
  outline: 2px solid #3F20FB;
  background-color: rgba(63, 32, 251, 0.1);
}

.edit-button {
  position: absolute;
  z-index: 1000;
}

.industry-card {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
}

.industry-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.count-up {
  display: inline-block;
}

.metrics-container {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
}

.metrics-container.visible {
  opacity: 1;
  transform: translateY(0);
}

.bullet-point {
  opacity: 0;
  transform: translateX(-20px);
  transition: all 0.4s ease;
}

.bullet-point.visible {
  opacity: 1;
  transform: translateX(0);
}

.vertical-line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, rgba(176, 38, 255, 0.5), rgba(0, 240, 255, 0.5));
  transform: translateX(-50%);
}

.vertical-line::before,
.vertical-line::after {
  content: '';
  position: absolute;
  left: 50%;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  transform: translateX(-50%);
}

.vertical-line::before {
  top: 0;
  background: #B026FF;
}

.vertical-line::after {
  bottom: 0;
  background: #00F0FF;
}

.input-field {
  background: rgba(18, 18, 18, 0.3);
  border: 1px solid rgba(224, 224, 224, 0.2);
  transition: all 0.3s ease;
}

.input-field:focus {
  border-color: #00F0FF;
  box-shadow: 0 0 10px rgba(0, 240, 255, 0.3);
}

.location-card {
  transition: all 0.3s ease;
  transform-style: preserve-3d;
  perspective: 1000px;
}

.location-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 240, 255, 0.2), 0 5px 15px rgba(176, 38, 255, 0.2);
}

.modal {
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.solution-card {
  transition: transform 0.5s ease, box-shadow 0.5s ease;
  transform-style: preserve-3d;
  perspective: 1000px;
}

.solution-card:hover {
  transform: translateY(-10px) rotateX(5deg) rotateY(5deg);
  box-shadow: 0 15px 30px rgba(0, 240, 255, 0.2), 0 5px 15px rgba(176, 38, 255, 0.2);
}

.feature-card {
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-card:hover {
  border-color: rgba(0, 240, 255, 0.5);
  box-shadow: 0 10px 25px rgba(0, 240, 255, 0.1);
  transform: translateY(-5px);
}

.blog-card:hover {
  transform: translateY(-10px);
}

.blog-card:hover .read-more-link {
  background-size: 100% 2px;
}

.read-more-link {
  background-image: linear-gradient(90deg, #00F0FF, #B026FF);
  background-position: 0 100%;
  background-repeat: no-repeat;
  background-size: 0 2px;
  transition: background-size 0.3s ease;
}

.typing-effect {
  overflow: hidden;
  white-space: nowrap;
  border-right: 3px solid #00F0FF;
  animation: typing 3.5s steps(40, end), blink-caret .75s step-end infinite;
}

@media (min-width: 1024px) {
  html {
    scrollbar-width: thin;
    /* Firefox */
    scrollbar-color: #B026FF #121212;
    /* Firefox thumb & track */
  }
  ::-webkit-scrollbar {
    display: block;
    width: 12px;
  }
  ::-webkit-scrollbar-track {
    background: #121212;
  }
  ::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #B026FF, #0091FF, #00FFB0, #00F0FF);
    border-radius: 10px;
    border: 2px solid #121212;
  }
  ::-webkit-scrollbar-thumb:hover {
    box-shadow: 0 0 10px rgba(0, 240, 255, 0.7);
  }
}

.cta-button {
  display: inline-block;
  font-weight: bold;
  padding: 0.75rem 2rem;
  border-radius: 9999px;
  color: #F4F4F4;
  background: linear-gradient(90deg, #B026FF, #0091FF);
  transition: all 0.3s ease;
}

.cta-button:hover {
  transform: scale(1.05);
  box-shadow: 0 0 25px rgba(0, 145, 255, 0.5);
}

.logo-wall img {
  max-height: 40px;
  filter: grayscale(100%) brightness(1.5);
  opacity: 0.8;
  transition: all 0.3s ease;
}

.logo-wall img:hover {
  filter: grayscale(0%) brightness(1);
  opacity: 1;
  transform: scale(1.1);
}

.partner-card {
  transition: transform 0.5s ease, box-shadow 0.5s ease;
  transform-style: preserve-3d;
  perspective: 1000px;
}

.partner-card:hover {
  transform: translateY(-10px) rotateX(5deg) rotateY(5deg);
  box-shadow: 0 15px 30px rgba(0, 240, 255, 0.2), 0 5px 15px rgba(176, 38, 255, 0.2);
}

.integration-flow {
  position: relative;
}

.integration-flow::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #B026FF, #0091FF, #00FFB0, transparent);
  animation: flow 3s ease-in-out infinite;
}

@keyframes flow {
  0%,
  100% {
    opacity: 0.3;
  }
  50% {
    opacity: 1;
  }
}

.logo-item {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 15px;
  border-radius: 8px;
  height: 80px;
}

.logo-item img {
  max-height: 90%;
  max-width: 90%;
  object-fit: contain;
}

.warning-card {
  background: linear-gradient(135deg, rgba(255, 59, 48, 0.1), rgba(255, 149, 0, 0.1));
  border: 1px solid rgba(255, 59, 48, 0.3);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.penalty-highlight {
  background: linear-gradient(135deg, rgba(255, 59, 48, 0.15), rgba(255, 149, 0, 0.15));
  border-left: 4px solid #FF3B30;
}
#cookie-banner {
  backdrop-filter: blur(8px);
  background-color: rgba(18, 18, 18, 0.9);
  border: 1px solid rgba(224, 224, 224, 0.2);
  transition: all 0.3s ease;
}
#cookie-settings input[type="checkbox"] {
  accent-color: #00F0FF;
}

/*
================================================================
==> FIXED BULLETPROOF MOBILE MENU STYLES
================================================================
*/

/* --- Main Menu Container --- */
.bulletproof-mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    background: rgba(18, 18, 18, 0.5);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 9999;
    transform: translateX(100%);
    transition: transform 0.35s ease-in-out;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    visibility: hidden;
    /* FIX: Add padding to prevent content from touching edges */
    padding: 0 1rem;
    box-sizing: border-box;
}

.bulletproof-mobile-menu.menu-open {
    transform: translateX(0);
    visibility: visible;
}

/* --- Main Menu Links --- */
.bulletproof-menu-item {
    font-size: 1.1375rem;
    color: #E0E0E0;
    margin: 0;
    padding: 0.75rem 0;
    text-decoration: none;
    transition: color 0.3s ease;
    display: block;
    text-align: center;
    /* FIX: Ensure menu items don't exceed container width */
    max-width: 100%;
    word-wrap: break-word;
}

.bulletproof-menu-item:hover {
    color: #00F0FF;
}

/* --- FIX: Menu Dropdown Container --- */
.bulletproof-menu-dropdown-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    /* FIX: Add max-width to prevent overflow */
    max-width: calc(100vw - 2rem);
    box-sizing: border-box;
}

/* --- Submenu Container --- */
.bulletproof-submenu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-in-out;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 0;
    margin: 0;
    border: none;
    /* FIX: Add width constraints to prevent overflow */
    width: 100%;
    max-width: calc(100vw - 4rem);
    box-sizing: border-box;
}

.bulletproof-submenu.submenu-open {
    max-height: 500px;
    padding: 0.75rem;
    margin-top: 1rem;
    margin-bottom: 0.75rem;
}

/* --- Submenu Links (with Icons) --- */
.bulletproof-submenu-item {
    display: flex;
    align-items: center;
    text-align: left;
    width: 100%;
    font-size: 0.91rem;
    color: #B0B0B0;
    padding: 12px 16px;
    margin: 0;
    text-decoration: none;
    transition: background-color 0.2s, color 0.2s ease-in-out;
    border-radius: 6px;
    /* FIX: Prevent text overflow and ensure proper wrapping */
    box-sizing: border-box;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

.bulletproof-submenu-item:hover {
    color: #00FFB0;
    background-color: rgba(255, 255, 255, 0.1);
}

/* --- Submenu Icons --- */
.bulletproof-submenu-icon {
    font-size: 1rem;
    margin-right: 15px;
    width: 20px;
    text-align: center;
    color: #a0a0a0;
    /* FIX: Prevent icon from shrinking */
    flex-shrink: 0;
}

/* --- FIX: Submenu text container --- */
.bulletproof-submenu-item span {
    flex: 1;
    min-width: 0; /* Allow text to shrink if needed */
}

/* --- Close Button --- */
.bulletproof-close-btn {
    position: absolute;
    top: 2rem;
    right: 2rem;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10001;
}

.bulletproof-close-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: #00F0FF;
    transform: rotate(90deg);
}

/* --- Hamburger Icon --- */
.mobile-menu-hamburger {
    position: relative;
    width: 24px;
    height: 18px;
    cursor: pointer;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.mobile-menu-hamburger span {
    width: 100%;
    height: 2px;
    background: white;
    transition: all 0.3s ease;
    display: block;
}

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

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

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

/* --- FIX: Additional mobile-specific constraints --- */
@media (max-width: 480px) {
    .bulletproof-mobile-menu {
        padding: 0 0.5rem;
    }
    
    .bulletproof-submenu {
        max-width: calc(100vw - 2rem);
    }
    
    .bulletproof-submenu-item {
        padding: 10px 12px;
        font-size: 0.85rem;
    }
    
    .bulletproof-submenu-icon {
        margin-right: 12px;
        width: 18px;
        font-size: 0.9rem;
    }
}

/* --- FIX: For very small screens --- */
@media (max-width: 320px) {
    .bulletproof-submenu-item {
        padding: 8px 10px;
        font-size: 0.8rem;
    }
    
    .bulletproof-submenu-icon {
        margin-right: 10px;
        width: 16px;
        font-size: 0.8rem;
    }
}

.industry-card { opacity: 0; transform: translateY(20px); transition: all 0.6s ease; }
.industry-card.visible { opacity: 1; transform: translateY(0); }
.bullet-point { opacity: 0; transform: translateX(-20px); transition: all 0.4s ease; }
.bullet-point.visible { opacity: 1; transform: translateX(0); }