/** Shopify CDN: Minification failed

Line 7:0 Unexpected "<"
Line 228:0 Unexpected "<"

**/
<style>
.hero-banner-container {
    position: relative;
    z-index: 1; /* Add this line to cage the inner absolute elements */
    width: 100%;
    min-height: 680px;
    display: flex;
    background-color: #0f1115;
    overflow: hidden;
    box-sizing: border-box;
}
/* Physical Image Controller */
.hero-img-element-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: left center;
    z-index: 1;
    pointer-events: none;
}
.hero-text-overlay-grid {
    position: relative;
    z-index: 2;
    margin-left: auto;
    width: 45%;
    max-width: 620px;
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 35px;
    background: linear-gradient(to right, rgba(15,17,21,0) 0%, rgba(15,17,21,0.95) 25%);
}
.hero-title-main {
    font-family: var(--font-heading-family), system-ui, sans-serif;
    font-size: 3.2rem;
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 8px 0;
    letter-spacing: -0.03em;
    line-height: 1.1;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}
.hero-subtitle-text {
    font-family: var(--font-body-family), system-ui, sans-serif;
    font-size: 1.25rem;
    color: #94a3b8;
    margin: 0;
    line-height: 1.4;
    -webkit-font-smoothing: antialiased;
}
.multicolumn.color-scheme-3 {
    position: relative;
    z-index: 2;
    /* This native variable ensures it dynamically uses your theme's Color Scheme 3 background color */
    background-color: var(--gradient-background); 
}
.multicolumn.color-scheme-3 h3 {
    font-family: var(--font-heading-family), system-ui, sans-serif;
    font-weight: 800;
    font-size: 2rem;
}
.multicolumn .isolate {
    position: relative;
    z-index: 3;
}
.grid-header-split {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
.neon-brand-cell {
    padding-left: 20px;
}
.neon-ai-pill-badge {
    display: inline-block;
    padding: 8px 16px;
    background: linear-gradient(135deg, #ec4899, #8b5cf6);
    border-radius: 8px;
    color: #ffffff;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.45);
}
.viper-bullets-container {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.viper-bullets-container li {
    font-family: var(--font-body-family), system-ui, sans-serif;
    font-size: 1.15rem;
    color: #e2e8f0;
    font-weight: 500;
    position: relative;
    padding-left: 28px;
    line-height: 1.2;
    -webkit-font-smoothing: antialiased;
}
.viper-bullets-container li::before {
    content: "•";
    color: #ec4899;
    font-size: 1.8rem;
    position: absolute;
    left: 0;
    top: -4px;
}
.special-promo-card-grid {
    font-family: var(--font-body-family), system-ui, sans-serif;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-left: 4px solid #8b5cf6;
    padding: 24px;
    border-radius: 8px;
    -webkit-font-smoothing: antialiased;
}
.promo-header-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    color: #ec4899;
    letter-spacing: 0.06em;
}
.promo-body-copy {
    color: #cbd5e1;
    margin: 10px 0 18px 0;
    font-size: 2rem;
    line-height: 1.5;
}
.promo-action-btn {
    display: inline-block;
    padding: 12px 24px;
    background-color: #ffffff;
    color: #0f1115;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 6px;
    transition: opacity 0.15s ease;
}
.promo-action-btn:hover { opacity: 0.9; }
@media (max-width: 1100px) {
  .hero-banner-container {
    flex-direction: column;
    min-height: auto;
  }
  .hero-img-element-layer {
    position: relative;
    height: 380px;
    width: 100%;
  }
  .hero-text-overlay-grid {
    width: 100%;
    max-width: 100%;
    padding: 40px 24px;
    background: #0f1115;
  }
}
.viper-subpage-wrap {
  background-color: #0f1115;
  padding: 60px 24px;
  max-width: 900px;
  margin: 0 auto;
}
.viper-page-heading {
  font-family: var(--font-heading-family), system-ui, sans-serif;
  font-size: 3.2rem;
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 10px 0;
  letter-spacing: -0.03em;
  line-height: 1.1;
  -webkit-font-smoothing: antialiased;
}
.viper-page-sub {
  font-family: var(--font-body-family), system-ui, sans-serif;
  font-size: 1.25rem;
  color: #94a3b8;
  margin: 0 0 45px 0;
  line-height: 1.4;
  -webkit-font-smoothing: antialiased;
}
.viper-stack-layout {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.viper-subpage-wrap .promo-action-btn {
  font-size: 1.1rem; 
  padding: 14px 28px;
  max-width: 75ch; /* 'ch' stands for character width—perfect for typography */
  margin-left: auto;  /* Centers the text block within your full-width section */
  margin-right: auto; /* Centers the text block within your full-width section */
}
@media (max-width: 768px) {
  .viper-page-heading { font-size: 2.3rem; }
}
.viper-faq-node-space {
  display: flex;
  flex-direction: column;
  gap: 25px;
}
.faq-question-text {
  font-family: var(--font-heading-family), system-ui, sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 8px 0;
  letter-spacing: -0.02em;
}
#product-grid {
    margin-top: 0px !important;
}
</style>