body {

      margin: 0;
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      background-color: #0d0d0d;
      color: white;
      text-align: center;
    }

body {
  background: radial-gradient(circle at center, rgba(255, 0, 255, 0.05), transparent 70%),
              conic-gradient(from 180deg at 50% 50%, rgba(255, 0, 255, 0.05), transparent 90%);
  background-color: #0b0b0b; /* base dark grey */
  background-blend-mode: screen;
  color: #fff;
}


header {
    padding: 1.5rem;
    background-color: #0d0d0d;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

header img {
    height: 70px;
}

.header-text {
    border-left: 2px solid #00e5ff;
    padding-left: 1rem;
    text-align: left;
}

h1 {
    font-size: 2.2rem;
    margin: 0;
    color: #d86eff; /* softer purple, less neon than #ff2bd0 */
    text-shadow: 0 0 4px rgba(216, 110, 255, 0.5); /* subtle glow instead of harsh neon */
}

.visually-hidden {
  position: absolute !important;
  width: 1px; 
  height: 1px; 
  padding: 0; 
  margin: -1px; 
  overflow: hidden; 
  clip: rect(0, 0, 0, 0); 
  white-space: nowrap; 
  border: 0;
}

.header-text span.header-title {
    font-size: 2.2rem;
    margin: 0;
    color: #d86eff; /* softer purple, less neon than #ff2bd0 */
    text-shadow: 0 0 4px rgba(216, 110, 255, 0.5); /* subtle glow instead of harsh neon */
  }

.header-text .tagline {
    color: #ffffff; /* keeps subtitle readable */
    font-size: 1.1rem;
    font-weight: normal;
    margin-top: 0.3rem;
}

p.tagline {
    font-size: 1.2rem;
    color: #00e5ff;
    margin: 0.5rem 0 0;
    text-shadow: 0 0 8px #00e5ff;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    padding: 0 2rem 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    color: white;
    text-align: left;
    min-height: 260px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    box-shadow: 0 0 15px rgba(255, 43, 208, 0.3);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: 0 0 25px rgba(0, 229, 255, 0.6);
}

.card .overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.55);
}

.coming-soon .overlay {
    background: rgba(0,0,0,0.7); /* Darker overlay for coming soon items */
}

.card .content {
    position: relative;
    padding: 1.5rem;
    z-index: 2;
}

.card h2 {
    margin: 0 0 0.5rem;
    font-size: 1.4rem;
    color: #ffae00;
    text-shadow: 0 0 6px #ffae00;
    transition: text-shadow 0.3s ease;
}

.btn {
    display: inline-block;
    padding: 0.6rem 1.2rem;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: bold;
    background: #ff2bd0;
    color: white;
    text-decoration: none;
    text-shadow: 0 0 5px #ff2bd0;
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

.btn:hover {
    background: #00e5ff;
    box-shadow: 0 0 12px #00e5ff;
}

.coming-soon {
    opacity: 0.8;
    pointer-events: none;
}

.coming-soon-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(45deg, #555, #888);
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    z-index: 3;
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.3);
}

.coming-soon h2,
.coming-soon .price {
    color: #999;
    text-shadow: 0 0 5px rgba(153, 153, 153, 0.5);
}

footer {
    padding: 1rem;
    background: #0d0d0d;
    font-size: 0.9rem;
    border-top: 1px solid #222;
    margin-top: 2rem;
}

/* Checkout Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.modal-content {
    background-color: #1a1a1a;
    border-radius: 12px;
    width: 90%;
    max-width: 500px;
    padding: 2rem;
    position: relative;
    box-shadow: 0 0 30px rgba(255, 43, 208, 0.5);
    border: 1px solid #00e5ff;
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 15px;
    color: #aaa;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s;
}

.close-modal:hover {
    color: #ff2bd0;
}

.modal-title {
    color: #ffae00;
    text-shadow: 0 0 8px #ffae00;
    margin-top: 0;
    margin-bottom: 0;
}

.modal-price {
    color: #00e5ff;
    font-size: 1.3rem;
    margin: 0;
}

.checkout-iframe {
    width: 100%;
    height: 500px;
    border: none;
    border-radius: 8px;
    background: white;
}

.loading {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 200px;
    color: #00e5ff;
    font-size: 1.2rem;
}

.spinner {
    border: 4px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top: 4px solid #00e5ff;
    width: 30px;
    height: 30px;
    animation: spin 1s linear infinite;
    margin-right: 10px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

    
/* Center the whole header block */
header {
    display: flex;
    justify-content: center; /* center the header-content horizontally */
    padding: 1.5rem;
    background-color: #0d0d0d;
}

/* Header content container */
.header-content {
    display: flex;
    flex-direction: column; /* stack header-row + nav */
    align-items: center;    /* center the nav under header-row */
    gap: 1rem;
}

.header-row {
  display: flex;
  align-items: center; /* vertically centers logo and text */
  gap: 1rem; /* spacing between logo and text */
}

.header-row a img {
  display: block; /* fixes inline baseline issue without changing size */
}



/* Header text with vertical divider */
.header-text {
    border-left: 2px solid #00e5ff;
    padding-left: 1rem;
}

/* Navigation menu */
header nav {
    display: flex;
    justify-content: center; /* center links under header-row */
    gap: 2rem;
    flex-wrap: wrap;
}

header nav a {
    text-decoration: none;
    color: #00e5ff;
    font-weight: bold;
    font-size: 1rem;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
}

header nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background: #ff2bd0;
    transition: width 0.3s ease;
}

header nav a:hover {
    color: #ff2bd0;
    text-shadow: 0 0 8px #ff2bd0;
}

header nav a:hover::after {
    width: 100%;
}

/* Dropdown container */
/* Ensure flex alignment for submenu container */
.submenu-container {
  position: relative;
  display: flex;
  align-items: center; /* fixes vertical alignment */
}

/* Cursor pointer for menu items with submenus */
.submenu-btn {
  cursor: pointer;
  display: flex;
  align-items: center; /* ensures text vertically centered */
  height: 100%;
}

/* Submenu */
.submenu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #222;
  padding: 0.5rem 0;
  border-radius: 8px;
  min-width: 180px;
  z-index: 100;
  flex-direction: column;
}

/* Nested submenus open to the right */
.submenu.right {
  top: 0;
  left: 100%;
}

/* Show submenu on hover */
.submenu-container:hover > .submenu {
  display: flex;
}

/* Submenu links */
.submenu a {
  color: #00e5ff;
  padding: 0.5rem 1rem;
  text-decoration: none;
  font-weight: bold;
  display: block;
}

.submenu a:hover {
  color: #ff2bd0;
  text-shadow: 0 0 8px #ff2bd0;
}
/* Coming Soon placeholders */
.coming-soon {
  padding: 0.5rem 1rem;
  color: #888;
  cursor: default;
}

.menu-divider {
    width: 80%;
    height: 2px;
    background: linear-gradient(90deg, #ff2bd0, #00e5ff);
    border-radius: 1px;
    opacity: 0.5;
}

/* Divider above the menu */
.menu-divider:first-of-type {
    margin: 1.5rem auto 0 auto; /* space above the first divider only */
}

/* Divider below the menu */
.menu-divider:last-of-type {
    margin: 0 auto 0.0rem auto; /* space below the last divider only */
}

/* Page content wrapper */
.page-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
}

/* Content blocks */
.content-block {
    background: #1a1a1a;
    border: 2px solid #00e5ff;
    border-radius: 12px;
    padding: 2rem;
    width: 100%;
    text-align: center;
    box-shadow: 0 0 20px rgba(0, 229, 255, 0.3);
    transition: box-shadow 0.3s ease;
}

/* Remove hover glow for content blocks */
.content-block:hover {
    box-shadow: 0 0 25px rgba(0, 229, 255, 0.3); /* same as normal state */
}

.content-block h2 {
    font-size: 2rem;
    color: #d86eff; /* softer purple, less neon than #ff2bd0 */
    text-shadow: 0 0 4px rgba(216, 110, 255, 0.5); /* subtle glow instead of harsh neon */
    margin-bottom: 1rem;
}

.content-block h3 {
    font-size: 1.25rem;
    color: #d86eff; /* softer purple, less neon than #ff2bd0 */
    margin-bottom: 1rem;
}

.content-block p {
    font-size: 1.1rem;
    color: #fff;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.content-block ul {
    text-align: left;
    margin: 0 auto;
    padding-left: 1.2rem;
    font-size: 1.05rem;
    color: #fff;
    line-height: 1.5;
}

/* Images inside content blocks */
.content-block img {
    max-width: 100%;
    height: auto;
    margin-top: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 0 15px rgba(0, 229, 255, 0.3);
}

/* Neon divider between sections */
.section-divider {
    width: 60%;
    height: 2px;
    background: linear-gradient(90deg, #ff2bd0, #00e5ff);
    border-radius: 1px;
    margin: 2rem auto;
    opacity: 0.5;
}

.image-row {
    display: flex;
    gap: 1.5rem; /* space between images */
    justify-content: center; /* center them horizontally */
    flex-wrap: wrap; /* wrap on smaller screens */
    margin: 0.5rem 0; /* spacing above and below */
}

.image-row img {
    max-width: 48%; /* adjust so both fit side by side */
    height: auto;
    border-radius: 8px;
    box-shadow: 0 0 15px rgba(0, 229, 255, 0.3);
}

/* .image-title {
    font-size: 1.2rem;
    color: #ffae00;
    text-shadow: 0 0 6px #ffae00;
    margin: 1rem 0 0.15rem 0; /* space above and below title */
    /* text-align: center;
} */ 

.upwork-link {
  color: #00e5ff;
  font-weight: bold;
  text-decoration: none;
  border-bottom: 2px solid #00e5ff;
  transition: color 0.3s ease, border-color 0.3s ease;
}

.upwork-link:hover {
  color: #ff2bd0;
  border-color: #ff2bd0;
  text-shadow: 0 0 8px #ff2bd0;
}

/* Title: gold by default, teal on hover */
.product-link {
  color: gold;
  text-decoration: none;
}

.product-link:hover {
  color: #00e5ff;
}

/* Read More link */
.read-more {
  color: #00e5ff;
  text-decoration: underline;
  font-weight: bold;
  margin-left: 0.3rem;
}

.read-more:hover {
  color: #ff2bd0;
}

.product-page {
    max-width: 900px;
    margin: 2rem auto;
    padding: 0 1rem;
    font-family: Arial, sans-serif;
  }
  .product-page h1 {
    color: gold;
  }
  .product-page img {
    max-width: 100%;
    border-radius: 8px;
    margin: 1rem 0;
  }
  .buy-button {
    background: #00e5ff;
    color: #000;
    padding: 0.7rem 1.5rem;
    font-weight: bold;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    margin-top: 1rem;
  }
  .buy-button:hover {
    background: #ff2bd0;
    color: #fff;
  }

/* Style product page price */
.page-content .content-block p strong {
  font-size: 1.5rem;
  font-weight: bold;
  color: #FFD700; /* gold */ 
  /*padding: 0.4rem 0.8rem; */
  display: inline-block;
  margin: 0.5rem 0 1rem 0;
}

li strong {
    color:#00e5ff; /* Replace with your desired color */
}


/* Premium bundle subtle glow */
.bundle-card {
  position: relative;
  border: 1px solid rgba(255, 215, 0, 0.4);
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.25);
  animation: subtleGlow 6s ease-in-out infinite alternate;
}

@keyframes subtleGlow {
  from {
    box-shadow: 0 0 8px rgba(255, 215, 0, 0.25),
                0 0 20px rgba(255, 215, 0, 0.15);
    border-color: rgba(255, 215, 0, 0.4);
  }
  to {
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.35),
                0 0 30px rgba(255, 215, 0, 0.25);
    border-color: rgba(255, 215, 0, 0.6);
  }
}

.checkout-email-container {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px; /* space before the widget */
}

/* Email input styling */
#checkoutEmail {
  width: 100%;
  padding: 0.75rem; /* match prod padding */
  font-size: 1rem;
  border-radius: 6px;
  border: 1px solid #444; /* neutral border like prod */
  background-color: #2a2a2a; /* or whatever prod background for inputs */
  color: #fff;
  margin-bottom: 1rem;
  box-sizing: border-box;
}

/* Proceed button style match prod */
#checkoutProceedBtn {
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  background: #3aa754;      /* as your usual primary color */
  color: #fff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  box-shadow: 0 0 8px rgba(255, 43, 208, 0.4);
}

#checkoutProceedBtn:hover {
  background: #218838; /* a bit darker or hover variation */
}

/* Disabled / loading state */
#checkoutProceedBtn:disabled {
  background-color: #888888; /* greyed out */
  cursor: not-allowed;
  opacity: 0.7;
}

/* Close button: small and top-right corner */
#checkoutCloseBtn {
  width: auto;
  padding: 0.4rem 0.8rem;
  font-size: 1.2rem;
  line-height: 1;
  border: none;
  background: transparent;
  color: #aaa;
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
  text-shadow: none;
}

#earlyAccessClose {
  width: auto;
  padding: 0.4rem 0.8rem;
  font-size: 1.2rem;
  line-height: 1;
  border: none;
  background: transparent;
  color: #aaa;
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
  text-shadow: none;
}

/* Optional: spacing below iframe */
#checkoutContainer {
  margin-top: 15px;
}

#checkoutContainer {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: transparent; /* default transparent */
  min-height: 0; /* remove any preset min-height */
}

/* Modal container */
#checkoutModal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;       /* fill the viewport */
  background-color: rgba(0,0,0,0.8);
  justify-content: center;
  align-items: center;
  z-index: 5000;
  overflow-y: auto;   /* allow scrolling if content is taller than viewport */
  padding: 1rem;      /* optional padding so content isn’t flush to edges */
}}


/* Modal content */
.checkout-modal-content {
  background-color: #fff;
  border-radius: 8px;
  padding: 20px;
  max-width: 520px;
  width: 90%;
  max-height: 90%;     /* take up most of viewport height */
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* iframe */
.checkout-iframe {
  width: 100%;
  height: 700px;        /* fill most of viewport height */
  border: none;
  min-height: 700px;   /* fallback */
}

/* ------------------ HEADER MOBILE FIXES ------------------ */
@media (max-width: 768px) {




  #checkoutCloseBtn {
    position: fixed;      /* fixed relative to viewport */
    top: 1rem;            /* spacing from top */
    right: 1rem;          /* spacing from right */
    font-size: 1.5rem;
    color: #fff;
    cursor: pointer;
    z-index: 6000;        /* above iframe and modal content */
    background: rgba(0,0,0,0.5);
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .header-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .header-text span.header-title {
    font-size: 1.2rem;
    margin: 0;
    color: #d86eff; /* softer purple, less neon than #ff2bd0 */
    text-shadow: 0 0 4px rgba(216, 110, 255, 0.5); /* subtle glow instead of harsh neon */
  }

  .header-text p.tagline {
    font-size: 0.9rem;
  }

  nav {
    width: 100%;
    display: none; /* hidden by default for hamburger */
    flex-direction: column;
  }

  nav.active {
    display: flex;
  }

  nav a {
    display: block;
    padding: 0.5rem 0;
  }

  .submenu-container {
    width: 100%;
  }

  .submenu {
    position: static;
    display: none;
  }

  .submenu-btn.active + .submenu {
    display: block;
  }

  .hamburger {
    display: block;
    cursor: pointer;
    font-size: 1.5rem;
    margin-left: auto;
  }
}

/* ------------------ CHECKOUT MODAL MOBILE FIXES ------------------ */
.modal-content {
  max-height: 90vh; /* never exceed 90% of viewport height */
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
  padding-bottom: 3rem; /* space for sticky buttons */
}

#checkoutProceedBtn {
  position: sticky;
  bottom: 10px;
  background-color: #28a745;
  padding: 0.6rem 1rem;
  font-size: 1rem;
  width: calc(100% - 20px);
  margin: 0 auto;
  text-align: center;
  border: none;
  cursor: pointer;
}

.close-modal {
  position: sticky;
  top: 0;
  background: #222;
  color: #fff;
  padding: 0.5rem;
  cursor: pointer;
  text-align: right;
  z-index: 10;
}

/* Optional: improve scrolling on small devices */
.modal {
  padding: 1rem;
  box-sizing: border-box;
}

/* ------------------ HAMBURGER MENU ------------------ */
/* Hamburger icon */
.hamburger {
  display: none; /* hidden by default, shown only on mobile */
  font-size: 2rem;
  cursor: pointer;
  color: #00e5ff;
  user-select: none;
  margin-left: auto; /* push to right */
  z-index: 2000;
}

@media (max-width: 768px) {
  /* Hamburger button */
  .hamburger {
    display: block;
  }

  /* Hide nav initially */
  header nav {
    display: none;
    flex-direction: column;
    width: 100%;
    gap: 0;
    align-items: center; /* center top-level links */
  }

  header nav.active {
    display: flex;
  }

  /* Stack header-row vertically */
  .header-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .submenu-btn::after {
    content: none; /* remove ▾ arrow */
  }

    /* Center the "Store" button specifically */
  .submenu-container {
    width: auto; /* shrink to content */
    text-align: center;
  }

  /* Hide all submenus completely */
  .submenu {
    display: none !important;
  }

  .submenu a {
    display: none !important; /* hide submenu links */
  }

  /* Hide lower divider by default on mobile */
  header nav:not(.active) + .menu-divider {
    display: none;
  }

  /* Center top-level links (including Store) */
  header nav a, .submenu-btn {
    text-align: center;
    width: 100%;
  }

  .mobile-hide {
    display: none;
  }

  /* Remove hover underline animation for all nav links */
  header nav a::after,
  .submenu-btn::after {
      content: none;
  }

  header nav a:hover::after,
  .submenu-btn:hover::after {
      width: 0;
  }

}

.quantower-note {
    /*padding: 1rem;   /* add breathing space */
    margin: 2rem 0;  /* vertical margin */
    text-align: center; /* nicer balance on small screens */
    color:#aaa;
  }

.early-access {
   /* padding: 1rem;    add breathing space */
    margin: 2rem 0;  /* vertical margin */
    text-align: center; /* nicer balance on small screens */
    color:#00e5ff;
  }

/* Mobile padding for Quantower line */
@media (max-width: 800px) {
  .quantower-note {
    padding: 1rem;   /* add breathing space */
    margin: 0.25rem 0;  /* vertical margin */
    text-align: center; /* nicer balance on small screens */
  }

  .early-access {
    padding: 1rem;   /* add breathing space */
    margin: 0.25rem 0;  /* vertical margin */
    text-align: center; /* nicer balance on small screens */
  }
}

/* Better highlight for "Quantower" */
.quantower-highlight {
  /* color: #00e5ff;  cyan accent (on brand) */
  color: #90e6a4;
  font-weight: 600;
}


/* Early Access Modal */
.early-access-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.8);
  z-index: 3000; /* above everything */
  justify-content: center;
  align-items: center;
}

.early-access-content {
  background: #1a1a1a;
  padding: 2rem;
  border-radius: 12px;
  max-width: 500px;
  width: 90%;
  color: white;
  position: relative;
}

.early-access-close {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 28px;
  cursor: pointer;
}

.faq-installation {
  margin-top: 1rem;
  line-height: 1.6;
}

.faq-section {
  margin-bottom: 1.5rem;
}

.install-path {
  background-color: rgba(0, 0, 0, 0.05);
  padding: 0.5rem;
  border-radius: 4px;
  overflow-x: auto;
  font-family: monospace;
  font-size: 0.95rem;
  margin: 0.5rem 0;
}

.footer-badge a {
  display: inline-block;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.footer-badge a:hover {
  transform: translateY(-3px) scale(1.03); /* small lift & slight zoom */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25); /* subtle shadow */
}

.footer-badge img {
  display: block; /* remove bottom gap under img */
  border-radius: 25px; /* matches pill shape in SVG */
}

.price {
    font-size: 1.5rem;
    font-weight: bold;
    color: #00e5ff;
    margin-bottom: 1rem;
    transition: text-shadow 0.3s ease;
}

.old-price {
  font-size: 1rem;
  color: #9ca3af; 
  text-decoration: line-through;
  text-shadow: none;
}

.card:hover h2,
.card:hover .price {
  text-shadow: 0 0 12px currentColor;
}

.card:hover .old-price {
    text-shadow: none;
}

.sale {
  /* color:gold; */
  font-weight: bold;
}