/* Footer styles */
.site-footer {
    background: linear-gradient(180deg, #06070a, #101318);
    color: rgba(255,255,255,0.88);
    border-top: 1px solid rgba(255,255,255,0.03);
    margin-top: 48px;
}
.footer-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 48px 20px 24px 20px;
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    justify-content: space-between;
}
.footer-brand {
    display: flex;
    gap: 1rem;
    align-items: center;
    max-width: 420px;
}
.footer-logo { width: 76px; height: auto; display: block; }
.footer-desc { color: rgba(255,255,255,0.6); font-size: 0.95rem; line-height: 1.4; }
.footer-links { display: flex; gap: 2.5rem; }
.footer-col h4 { color: #80F8FD; font-size: 0.95rem; margin-bottom: 0.75rem; letter-spacing: 1px; }
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 0.5rem; }
.footer-col a { color: rgba(255,255,255,0.76); text-decoration: none; transition: color 160ms ease, transform 140ms ease; }
.footer-col a:hover { color: #c8ffff; transform: translateY(-2px); }

.footer-bottom { border-top: 1px solid rgba(255,255,255,0.03); margin-top: 18px; }
.footer-bottom .copyright { max-width: 1100px; margin: 12px auto; padding: 8px 20px 28px 20px; font-size: 0.9rem; color: rgba(255,255,255,0.58); text-align: center; }

@media (max-width: 820px) {
    .footer-inner { flex-direction: column; align-items: flex-start; }
    .footer-links { width: 100%; justify-content: space-between; }
    .footer-brand { align-items: flex-start; }
}
@font-face {
  font-family: 'Inter';
  src: url('fonts/Inter.ttc') format('truetype');
}

.works-icon {
  height: 1em;
  width: 1em;
  vertical-align: middle;
  margin-right: 4px;
  margin-top: -2px;
  display: inline-block;
  filter: invert(62%) sepia(98%) saturate(350%) hue-rotate(140deg) brightness(110%);
}

/* How it works section styles */
.works-section {
  max-width: 1000px;
  margin: 0 auto 24px auto;
  padding-top: 48px;
  text-align: center;
}

.works-box-row {
  margin-bottom: 8px;
}

.works-box {
    display: inline-flex;
    align-items: center;
    background: #121521; /* unified background */
    color: #80F8FD;
    font-size: 13px;
    font-weight: 600;
    border-radius: 4px;
    padding: 2px 10px;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px 0 #0003;
}

.works-title {
  font-family: 'Inter', sans-serif;
  font-size: 44px;
  margin: 0 0 8px 0;
  background: linear-gradient(90deg,#12d0da,#80F8FD);
  -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.works-desc {
  color: #b0b8c1;
  font-size: 13px;
  margin-bottom: 32px;
  font-style: italic;
}


.works-labels {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 60%;
  max-width: 700px;
  margin: 0 auto 0px auto;
  font-family: 'Inter', sans-serif;
  font-size: 20px;
  color: #12d0da;
  letter-spacing: 0.5px;
  gap: 16px;
}

.works-label-left {
  text-align: left;
  flex: 3;
}
.works-label-right {
  text-align: right;
  flex: 1;
}

.before-after p {
  font-family: 'Inter', sans-serif;
  background: linear-gradient(90deg,#12d0da,#80F8FD);
  -webkit-background-clip: text;
    background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
}

.custom-image-slider {
    position: relative;
    width: 90%;
    max-width: 700px;
    margin: 40px auto;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    border: 8px solid #222;
    border-radius: 24px;
    background: #121521; /* unified background */
    box-shadow: 0 2px 24px 0 #000a;
    /* Prevent page from scrolling while user drags the slider on touch devices */
    touch-action: none;
    -ms-touch-action: none;
}



.slider-before, .slider-after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  user-select: none;
  border-radius: 16px;
}


.slider-after {
  clip-path: inset(0 50% 0 0);
  z-index: 2;
}


.slider-handle {
  position: absolute;
  top: 0;
  left: 50%;
  width: 8px;
  height: 100%;
  background: #fff;
  cursor: ew-resize;
  z-index: 3;
  border-radius: 12px;
  box-shadow: 0 0 0 2px #fff, 0 0 16px 2px #0008;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: box-shadow 0.2s;
}

.slider-handle::before {
  content: '';
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 28px;
  height: 28px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 0 0 2px #fff, 0 0 8px 2px #0006;
  z-index: 4;
}

.slider-handle::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  width: 8px;
  height: 100%;
  background: #fff;
  transform: translateX(-50%);
  z-index: 2;
  border-radius: 8px;
}

/* When active, hide the cursor inside the slider. We apply on the container so touch devices
   that may keep an OS cursor hidden also respect it. JS toggles the `hide-cursor-active` class. */
.custom-image-slider.hide-cursor-active {
  cursor: none;
}

/* Also ensure the handle itself doesn't show the resize cursor while the container
   is in the hide-cursor-active state (more specific selector to override). */
.custom-image-slider.hide-cursor-active .slider-handle {
  cursor: none !important;
}

/* nav bar styles */

@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&display=swap");
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

/* legacy .navMenu kept for compatibility (no layout rules here) */

/* New fixed top navigation bar that matches hero visuals */
.top-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(6,10,23,0.6); /* subtle dark glass to match hero */
    border-bottom: 1px solid rgba(255,255,255,0.04);
    backdrop-filter: blur(6px);
    z-index: 1000;
}

/* Ensure the top navigation stays above all other content and remains clickable */
.top-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999; /* very high so overlays don't cover the nav */
    pointer-events: auto; /* ensure it can receive clicks */
}

/* Ensure the inner nav stretches and allows pointer events on links */
.top-nav .nav-inner {
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 1.2rem;
    pointer-events: auto;
}
.top-nav .nav-inner {
    display: flex;
    gap: 20px;
    align-items: center;
}
.top-nav a {
    color: #eaf6fb;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 8px 14px;
    border-radius: 8px;
    transition: background 180ms ease, transform 140ms ease, box-shadow 180ms ease;
}
.top-nav a:hover {
    background: rgba(128,248,253,0.08);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(128,248,253,0.06);
    color: #80F8FD;
}

/* Make sure page content is not hidden under the fixed nav */
main { padding-top: 80px; }
/* Ensure main has top padding already but increase if needed */
main { padding-top: 80px; } /* Adjust this value if necessary */

.navMenu a {
  color: #f6f4e6;
  text-decoration: none;
  font-size: 1.2em;
  text-transform: uppercase;
  font-weight: 500;
  display: inline-block;
  width: 80px;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.navMenu a:hover {
  color: #80F8FD ;
} 

.navMenu .dot {
  width: 6px;
  height: 6px;
  background: #81FFDE;
  border-radius: 50%;
  opacity: 0;
  -webkit-transform: translateX(30px);
  transform: translateX(30px);
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.navMenu a:nth-child(1):hover ~ .dot {
  -webkit-transform: translateX(30px);
  transform: translateX(30px);
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  opacity: 1;
}

.navMenu a:nth-child(2):hover ~ .dot {
  -webkit-transform: translateX(110px);
  transform: translateX(110px);
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  opacity: 1;
}

.navMenu a:nth-child(3):hover ~ .dot {
  -webkit-transform: translateX(200px);
  transform: translateX(200px);
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  opacity: 1;
}

.navMenu a:nth-child(4):hover ~ .dot {
  -webkit-transform: translateX(285px);
  transform: translateX(285px);
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  opacity: 1;
}

/* Add glow effect to nav links on hover */
.navMenu a:hover {
  color: #80F8FD;
  text-shadow: 0 0 4px #80F8FD, 0 0 12px #81FFDE;
}

/* End of nav bar styles */

/* HERO */

@import url('https://fonts.cdnfonts.com/css/hubot-sans');
*{ box-sizing: border-box; -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; scroll-behavior: smooth;}
html, body { height: 100%; }

html::-webkit-scrollbar { display: none; }
html { -ms-overflow-style: none; scrollbar-width: none; }

body { /* main body styles - unified background per request */
    margin: 0;
    font-family: Untitled Sans, system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Open Sans, Helvetica Neue, sans-serif;
    background: #121521; /* unified background color */

    font-size: max(calc(var(--_size) * 0.03), 10px);
    --_factor: min(600px, 80vh);
    --_size: min(var(--_factor), 80vw);
}

body.gold .header h2 ,
body.gold p,
body.gold > * > * :not(.contact-btn) {
    filter: invert(1) brightness(4.7);
}
body.gold .header h2 a{
    filter: hue-rotate(0deg);
}
body.gold canvas {
    filter: drop-shadow(2em 4em 0px #d8bd10) drop-shadow(-8em -14em 0px #d8bd10);
}
body.gold .header .spotlight {
    filter: invert(1) brightness(4.7) opacity(0.5);
}

body.gold .content-section,
body.gold .content-section ::before,
body.gold .content-section ::after{
    filter: invert(1) brightness(4.4) opacity(1);
}

/* Global responsive helpers */
img { max-width: 100%; height: auto; }

/* Responsive navigation adjustments */
@media (max-width: 1024px) {
    .top-nav .nav-inner { padding: 0 16px; }
    .main-nav-link { min-width: 88px; padding: 8px 12px; font-size: 0.9rem; }
}

@media (max-width: 900px) {
    .top-nav .nav-inner { flex-wrap: wrap; gap: 8px; }
    /* Override large inline margins on small screens */
    .top-nav [style*="margin-left:100px"] { margin-left: 16px !important; }
    .top-nav [style*="margin-right:100px"] { margin-right: 16px !important; }
    .nav-btn.cart-btn, .nav-btn.customer-btn { min-width: 64px !important; height: 34px !important; }
}

@media (max-width: 640px) {
    .main-nav-link { min-width: auto; padding: 6px 10px; font-size: 0.86rem; }
    .top-nav a { padding: 6px 10px; }
}

h2 {
    font-family: 'Hubot-Sans', sans-serif;
}
h2, p {
    margin: 0; padding: 0;
}
h2 a {
    text-decoration: none;
    color: unset;
}

.header {
    display: flex; width: 100%;
    justify-content: center;
    color: #bad6f7;
    padding: 2em;
    /* anchor header in normal flow so it scrolls away with the page */
    position: relative;
    min-height: 32em; /* reserve space so the absolute spotlight doesn't overlap content below */
    overflow: hidden; /* clip spotlight to this band */
    margin: 0 auto;

    opacity: 0;
    translate: 0 -1em;
    animation: load 2s ease-in 2s forwards, up 1.4s ease-out 2s forwards;
}
.header > :nth-child(1) {
    font-size: 1em;
    position: absolute; left: 0; right: 29em; margin: 0.2em auto;
    width: fit-content;
}
.header > :nth-child(2) {
    position: absolute; left: 0; right: 0; margin: 0 auto;
    width: fit-content;
}
.header > h2{
    opacity: 0.5;
    cursor: pointer;
    transition: opacity 0.04s ease-in-out;
}
.header > h2:hover {
    opacity: 1;
    text-shadow: 0 2px 16px rgba(174,207,242, 0.6);
    width: fit-content;
}

.header > div.mid-spot {
    width: 1.8em; height: 1.8em;
    border-radius: 50%;
    background: black;
    box-shadow: 0 0 1em 0 #98c0ef;
    cursor: pointer;
    transition: box-shadow 1s ease-in-out;
}
.header > div.mid-spot:hover {
    box-shadow: -0.3em 0.1em 0.2em 0 #d8bd10;
}


.header > :nth-child(2):hover ~ .spotlight {
    animation: colorize 10s linear infinite;
}
@keyframes colorize {
    0%{filter: hue-rotate(0deg); }
    100% {filter: hue-rotate(-380deg);}
}

button.contact-btn {
    position: absolute; left: min(46em, 60vw); right: 0; margin: 0 auto;
    width: 8em; height: 2.4em;
    cursor: pointer;
    border-radius: 20em;
    border: none;
    transition: background 0.5s, transform 0.5s;
    
    border: 1px solid #c2ccff33;
    opacity: 1;
    padding-top: 0.3em;

    background: #121521;
    color: #9dc3f7;
    white-space:nowrap;
}
button.contact-btn::before {
    content: ''; display: block; position:absolute; left: 0; top:0; border-radius: 20em;
    width: 100%; height: 100%;
    background: #c2ccff91 radial-gradient(farthest-side at 50% 100%, #c2ccff, transparent);
    opacity: 0.1;
    transition: all 0.4s ease-in-out;
}
button.contact-btn:hover::before {
    background: #c2ccff1e radial-gradient(farthest-side at 50% 100%, #c2ccff, transparent);
    opacity: 0.3;
}
.contact-btn .glow {
    --border-width: 1px;
    --loop-cycle: 24s;
    position: absolute;
    inset: calc(var(--border-width)* -1);
    border-radius: 50px;
    border: var(--border-width) solid transparent;
    -webkit-mask: linear-gradient(transparent, transparent), linear-gradient(white, white);
    mask: linear-gradient(transparent, transparent), linear-gradient(white, white);
    -webkit-mask-clip: padding-box, border-box;
    mask-clip: padding-box, border-box;
    -webkit-mask-composite: source-in, xor;
    mask-composite: intersect;
    pointer-events: none;
}
button.contact-btn:hover .glow {
    --loop-cycle: 2s;
}
.contact-btn .glow::after, .contact-btn .glow::before {
    content: "";
    height: 100%;
    offset-anchor: 100% 50%;
    background: radial-gradient(circle at 50% 50%, hsla(0, 0%, 100%, 0.75), transparent 50%), radial-gradient(circle at 50% 50%, #c2ccff 50%, transparent);
    opacity: 0.4;
    offset-path: rect(0 100% 100% 0 round 33px);
    position: absolute;
    display: inline-block;
    -webkit-animation: loop 4s linear infinite;
    animation: loop var(--loop-cycle) linear infinite;
    aspect-ratio: 1 / 1;
    transition: opacity 1s ease-in-out;
}
.contact-btn .glow::before {
    animation-delay: calc( var(--loop-cycle) / -2 );
}
@keyframes loop {
    100% {
        offset-distance: 100%;
    }    
}
.contact-btn-content {
    background: linear-gradient(0deg, #d8ecf8, #98c0ef);
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 1.2em;
    line-height: 142%;
}
button.contact-btn:hover .glow::after, button.contact-btn:hover .glow::before {
    opacity: 0.6;
}
@keyframes btn-rot {
    0% { rotate: 0deg; }
    100% { rotate: 360deg; } 
}

.header .spotlight {
    pointer-events: none;
    position: absolute; left: 0; right: 0; top:0; margin: 0 auto;
    transition: filter 1s ease-in-out;
    /* limit visual area to a fixed hero band */
    height: 32em; width: 100%;
    overflow: hidden;
    z-index: 0; /* keep under hero content but above background */
}
.header .spotlight > div {
    border-radius: 0 0 50% 50%;
    position: absolute; left: 0; right: 0; margin: 0 auto; 
    top: 0;
    width: 30em; height: 32em;
    /* shift to VIP/Blex accent hues to avoid odd color casts */
    background-image: conic-gradient(from 0deg at 50% -5%, transparent 45%, rgba(77, 224, 201, .22) 49%, rgba(47, 230, 255, .34) 50%, rgba(77, 224, 201, .22) 51%, transparent 55%);
    transform-origin: 50% 0;
    filter: blur(15px) opacity(0.5);
    z-index: 0;
    animation: load 2s ease-in-out forwards, loadrot 2s ease-in-out forwards, spotlight 21s ease-in-out infinite reverse;
}
.header .spotlight > div:nth-child(1){ 
    rotate: 20deg;
    animation: load 2s ease-in-out forwards, loadrot 2s ease-in-out forwards, spotlight 17s ease-in-out infinite;
}
.header .spotlight > div:nth-child(2){ 
    rotate: -20deg;
    animation: load 2s ease-in-out forwards, loadrot 2s ease-in-out forwards, spotlight 14s ease-in-out infinite;
}
@keyframes loadrot {
    0% { rotate: 0deg; scale: 0;}
    100% { scale: 1;}
}
@keyframes spotlight {
    0% {
        transform: rotateZ(0deg) scale(1);
        filter: blur(15px) opacity(0.5);
    }
    20% {
        transform: rotateZ(-1deg) scale(1.2);
        filter: blur(16px) opacity(0.6);
    }    
    40% {
        transform: rotateZ(2deg) scale(1.3);
        filter: blur(14px) opacity(0.4);
    }    
    60% {
        transform: rotateZ(-2deg) scale(1.2);
        filter: blur(15px) opacity(0.6);
    }    
    80% {
        transform: rotateZ(1deg) scale(1.1);
        filter: blur(13px) opacity(0.4);
    }    
    100% {
        transform: rotateZ(0deg) scale(1);
        filter: blur(15px) opacity(0.5);
    }    
}

canvas#particleCanvas {
    /* keep effects but let canvas scroll with content to prevent ‘following’ */
    position: relative; pointer-events: none;
    animation: load 0.4s ease-in-out forwards;
    z-index: 0;
    width: 100%;
    display: block;
}

p {
    font-size: 1.5em;
}

.hero {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    min-height: 340px;
    position: relative;
    margin-top: 8em;
    margin-bottom: 2em;
    background: none;
}

.heroT {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
    padding-top: 0;
    opacity: 0;
    animation: load 2s ease-in-out 0.6s forwards;
}
@keyframes load {  
    0% { opacity: 0;}    
    100% { opacity: 1;}    
}
.heroT > h2 {
    position: relative;
    margin: 0 auto;
    width: fit-content;
    
    font-size: clamp(2.2rem, 7vw, 7em);
    font-weight: 600;
    color: #9dc3f7;
    background:
    radial-gradient( 2em 2em at 50% 50%,
        transparent calc(var(--p) - 2em),
        #d8ecf8 calc(var(--p) - 1em), 
        #d8ecf8 calc(var(--p) - 0.4em), 
        transparent var(--p) 
    ),
    linear-gradient(90deg,#12d0da,#80F8FD);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 2px 16px rgba(174,207,242,.24);

    --p:0%;
    transition:--p 3s linear;
    
    animation: pulse 10s linear 1.2s infinite;
}

.heroT h2:nth-child(2) {
    background:
    radial-gradient( 2em 2em at 50% 50%,
        transparent calc(var(--p) - 2em),
        transparent calc(var(--p) - 1em),
        #d8ecf8 calc(var(--p) - 1em), 
        #d8ecf8 calc(var(--p) - 0.4em), 
        transparent calc(var(--p) - 0.4em), 
        transparent var(--p) 
    );
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: blur(16px) opacity(0.4);
}
@keyframes pulse { 
    0% { --p:0%; }
    50% { --p:300%;}
    100% { --p:300%;}
}
@property --p {
    syntax: '<percentage>';
    inherits: false;
    initial-value: 0%;
}

.heroP {
    font-size: clamp(0.95rem, 1.5vw, 1.2em);
    position: relative;
    margin: 1.5em auto 0 auto;
    height: fit-content; width: fit-content; text-align: center;
    opacity: 0;
    translate: 0 1em;
    animation: load 2s ease-out 2s forwards, up 1.4s ease-out 2s forwards;
    color: #12d0da;
    background: linear-gradient(90deg,#12d0da,#80F8FD);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
@keyframes up {      
    100% { translate: 0; }    
}

/* Hero CTA buttons */
.hero-ctas {
    position: relative;
    margin: 2.5em auto 0 auto;
    display: flex;
    gap: 1rem;
    justify-content: center;
    z-index: 1115;
    opacity: 0;
    translate: 0 1em;
    animation: load 2s ease-out 2.2s forwards, up 1.4s ease-out 2.2s forwards;
}
.cta-btn {
    display: inline-block;
    padding: 0.8rem 1.2rem;
    border-radius: 12px;
    background: linear-gradient(90deg, #12d0da, #80F8FD);
    color: #021018;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 8px 30px rgba(18,208,218,0.08), 0 4px 12px rgba(0,0,0,0.5);
    transition: transform 180ms ease, box-shadow 180ms ease;
}
.cta-btn:hover { transform: translateY(-4px); box-shadow: 0 14px 40px rgba(18,208,218,0.12); }
.cta-ghost { background: transparent; border: 1px solid rgba(128,248,253,0.14); color: #d8f8fb; }


.heroSubP {
    /* make the introducing text scroll naturally with the page */
    position: relative; left: 0; right: 0; margin: 0 auto; margin-top: 2.5rem;
    height: fit-content;
    opacity: 0;
    translate: 0 -1em;
    animation: load3 2s ease-in 0s forwards, up 1.4s ease-out 0s forwards;
}
@keyframes load3 {  
    0% { opacity: 0;}    
    100% { opacity: 0.7;}    
}
.heroSubP p {
    font-size: 1em;
    position: relative; width: fit-content; margin: auto;
    color: #d8ecf8;
    text-shadow: 0 2px 16px rgba(174,207,242,.24);
    background: linear-gradient(0deg, #d8ecf8 0, #98c0ef 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.heroSubP p::before,
.heroSubP p::after {
    position: absolute; top: 60%; 
    display: block; content: '';
    width: 5em; height: 1px;
    opacity: 0;
    animation: load2 1.4s ease-in-out 0s forwards, up 1.4s ease-out 0s forwards;
}
@keyframes load2 {  
    0% { opacity: 0;}    
    100% { opacity: 0.3;}    
}
.heroSubP p::before{
    background: linear-gradient( -90deg, #9dc3f7 0%, transparent 100%);
    right: 120%;
    translate: -5em 0;
}
.heroSubP p::after {
    background: linear-gradient( 90deg, #9dc3f7 0%, transparent 100%);
    left: 120%;
    translate: 5em 0;
}

.accent-lines {
    /* decorative accent lines/dots disabled per user request */
    display: none;
    pointer-events: none;
    position: absolute; top: 0; left: 0; right: 0;
    width: 100%; height: 42em;
    z-index: -2;
    --accent-lines-clr: rgba(186, 215, 247, .18);
}
.accent-lines > div {
    position: absolute; top: 0; right: 0; left: 0; margin: auto;
    height: 100%; width: 100%;
}
.accent-lines > div:nth-child(1) > div{
    position: absolute; top: 0; right: 0; left: 0; margin: auto;
    width: 100%; height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-lines-clr), transparent);
    opacity: 0; scale: 0;
    animation: accentload 2s ease-out 2.4s forwards;
}
.accent-lines > div:nth-child(1) > div:nth-child(1){ top: 6em; }
.accent-lines > div:nth-child(1) > div:nth-child(2){ top: 11em; }
.accent-lines > div:nth-child(1) > div:nth-child(3){ top: 16em; }
.accent-lines > div:nth-child(1) > div:nth-child(4){ top: 24em; }
.accent-lines > div:nth-child(1) > div:nth-child(5){ top: 29em; }
.accent-lines > div:nth-child(2) > div{
    position: absolute; top: 0; right: 0; left: 0; margin: auto;
    width: 1px; height: 100%;
    background: var(--accent-lines-clr);
}
@keyframes accentload {
    0% {
        opacity: 0; scale: 0;
    }
    100% {
        opacity: 1; scale: 1;
    }
}

.accent-lines > div:nth-child(2) > div {
    opacity: 0; scale: 0;
    animation: accentload 2s ease-out 2s forwards;
}
.accent-lines > div:nth-child(2) > div:nth-child(1){ left: 24em; }
.accent-lines > div:nth-child(2) > div:nth-child(2){ left: 34em; }
.accent-lines > div:nth-child(2) > div:nth-child(3){ right: 24em; }
.accent-lines > div:nth-child(2) > div:nth-child(4){ right: 34em; }

.accent-lines > div:nth-child(1) > div::before, 
.accent-lines > div:nth-child(1) > div::after { 
    content: ''; display: none; position: absolute;
    width: 0.2em; height: 0.2em; border-radius: 1em;
    background: #9dc3f7;
    left: 0; right: 0; margin: auto;
    translate: 0 -1px;

    opacity: 0; scale: 0;
    animation: accentload 2s ease-out 4.4s forwards;
}

.accent-lines > div:nth-child(1) > div:nth-child(3)::before{ display: block; left: 24em; }
.accent-lines > div:nth-child(1) > div:nth-child(3)::after{ display: block; right: 24em; }
.accent-lines > div:nth-child(1) > div:nth-child(4)::before{ display: block; left: 24em; }
.accent-lines > div:nth-child(1) > div:nth-child(4)::after{ display: block; right: 24em; }
.accent-lines > div:nth-child(1) > div:nth-child(5)::before{ display: block; left: 24em; }
.accent-lines > div:nth-child(1) > div:nth-child(5)::after{ display: block; right: 24em; }

.accent-lines > div:nth-child(1) > div:nth-child(2)::before,
.accent-lines > div:nth-child(1) > div:nth-child(2)::after{ 
    display: block; width: 5em; height: 1px; border-radius: 0; opacity: 0.12;
}
.accent-lines > div:nth-child(1) > div:nth-child(2)::before{
    right: 24em; rotate: 45deg; translate: -2.5em 2.5em;
}
.accent-lines > div:nth-child(1) > div:nth-child(2)::after{
    right: 24em; rotate: -45deg; translate: -2.5em 2.5em;
}
.accent-lines > div:nth-child(1) > div:nth-child(1)::before,
.accent-lines > div:nth-child(1) > div:nth-child(1)::after{ 
    display: block; width: 5em; height: 1px; border-radius: 0; opacity: 0.12;
}
.accent-lines > div:nth-child(1) > div:nth-child(1)::before{
    left: 24em; rotate: 45deg; translate: 2.5em 7.5em;
}
.accent-lines > div:nth-child(1) > div:nth-child(1)::after{
    left: 24em; rotate: -45deg; translate: 2.5em 7.5em;
}

.accent-lines > div:nth-child(1) > div:nth-child(2)::before,
.accent-lines > div:nth-child(1) > div:nth-child(2)::after {
    opacity: 0; scale: 0;
    animation: accentload2 2s ease-out 2.4s forwards;
}
.accent-lines > div:nth-child(1) > div:nth-child(1)::before,
.accent-lines > div:nth-child(1) > div:nth-child(1)::after {
    opacity: 0; scale: 0;
    animation: accentload3 2s ease-out 2.4s forwards;
} 
@keyframes accentload2 {
    0% {
        opacity: 0; scale: 0; transform: rotate(360deg);
    }
    50% { scale: 0; }
    100% {
        opacity: 0.12; scale: 1; transform: rotate(0deg);
    }
}
@keyframes accentload3 {
    0% {
        opacity: 0; scale: 0; transform: rotate(-360deg);
    }
    50% { scale: 0; }
    100% {
        opacity: 0.12; scale: 1; transform: rotate(0deg);
    }
}

.hero-fade {
    position: relative; /* keep fade in document flow under the header band */
    width: 100%; height: 10em;
    pointer-events: none;
    margin: 0 auto;
}
.hero-fade::before {
    content: ''; display: block;
    width: 100%; height: 100%;
    position: absolute; top: 0;
    /* preserved fade gradient from .mountains */
    background: linear-gradient(0deg, #121521 80%, transparent 90%);
    z-index: 2;
}

.hero-spacer {
    height: 8em;
    pointer-events: none;
}

.content-section {
    position: relative;
    z-index: 1112;
    color: #fff;
    width: 100%;
    text-align: center;
    /* moved up: reduced top and bottom padding so the content-section sits higher on the page */
    padding: 2.5em 0 3.5em 0; /* Further reduced top and bottom padding for tighter layout */
    overflow: hidden;
}

/* Reviews chart (replaces mountains visual) ------------------------------------------------- */


.content-section p.subt {
    color: #d8ecf8be;
    font-size: 0.8em;
    font-weight: 200;
    position: relative;
    width: fit-content;
    margin: auto;
}
.content-section h3 {
    margin: 0.4em 0 0.6em 0;
    font-size: 2.3em;
    font-weight: 600;
    color: #d8ecf8;
    text-shadow: 0 2px 16px rgba(174,207,242,.24);
    background: linear-gradient(0deg, #d8ecf8 0, #98c0ef 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.content-section p.subp {
    color: #d8ecf8be;
    font-size: 1em;
    font-weight: 400;
    max-width: 26em;
    margin: auto;
}

.content-section p.subt::before,
.content-section p.subt::after {
    position: absolute; top: 60%; 
    display: block; content: '';
    width: 5em; height: 1px;
    opacity: 0.5;
}
.content-section p.subt::before{
    background: linear-gradient( -90deg, #9dc3f7 0%, transparent 100%);
    right: 120%;
    top: 50%;
}
.content-section p.subt::after {
    background: linear-gradient( 90deg, #9dc3f7 0%, transparent 100%);
    left: 120%;
    top: 50%;
}

.content-section .content-acc {
    position: absolute;
    left: 0; right: 0; top: 25%; margin: auto;
    display: flex; justify-content: center;
}
.content-section .content-acc div{
    /* decorative visuals removed per user request */
    width: 0; height: 0; padding: 0; margin: 0; border: 0; background: transparent; box-shadow: none; opacity: 0; pointer-events: none;
}
.content-section .content-acc div:nth-child(2){
    /* keep structural position but hide visuals */
    translate: 18em 12em;
    width: 0; height: 0; padding: 0; margin: 0; border: 0; background: transparent; box-shadow: none; opacity: 0; pointer-events: none;
}


/* Slanted stats band with an info card */

/* Support section (new) ------------------------------------------------------------- */
.support-section {
    width: 100%;
    background: #121521; /* unified background */
    padding: 4.5rem 0 8rem 0; /* increased spacing to push it further down */
    color: #d8f8fb;
    margin-top: 15rem; /* Add large spacing above support section */
}
.support-grid{
    width: min(1100px, 94%);
    margin: 0 auto 2rem auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}
.support-card{
    background: #121521; /* unified background */
    border: 1px solid rgba(18,210,218,0.06);
    padding: 1.25rem;
    border-radius: 10px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.5);
    transition: transform 220ms ease, box-shadow 220ms ease, background 220ms ease;
}
.support-card h4{ margin: 0 0 0.5rem 0; color: #aeeff2; }
.support-card p{ margin: 0; color: rgba(255,255,255,0.72); font-size: 0.95rem; }

.support-card:hover, .support-card:focus-within {
    transform: translateY(-8px);
    box-shadow: 0 22px 50px rgba(18,208,218,0.08);
    background: linear-gradient(180deg, rgba(18,20,26,0.6), rgba(12,16,22,0.55));
}

.support-card h4::after{
    content: '';
    display:block; height:3px; width:0; background: linear-gradient(90deg,#12d0da,#80F8FD); margin-top:0.6rem; transition: width 320ms ease;
}
.support-card:hover h4::after{ width: 60px; }

.support-banner{
    width: 100%;
    margin: 1.5rem 0 0 0;
    display:flex; justify-content:center; align-items:center;
}
.support-banner-inner{
    width: min(1100px, 94%);
    height: 220px;
    display:flex; align-items:center; justify-content:space-between;
    background: #121521; /* unified background */
    border-radius: 16px;
    padding: 1.2rem 2rem;
    box-shadow: 0 16px 40px rgba(0,0,0,0.6);
    overflow: hidden;
    position: relative;
    opacity: 0; translate: 0 1em;
    animation: load 1.6s ease-out 0.2s forwards, up 1.4s ease-out 0.2s forwards;
}
.support-number {
  font-size: 6rem;
  font-weight: 800;
  line-height: 1;
  background: linear-gradient(90deg, #12d0da, #80F8FD);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text; /* for Firefox */
  color: transparent; /* fallback */
}
.support-title{ font-size: 2.6rem; color: #d8f8fb; font-weight: 700; }
.support-cta-row{ display:flex; gap: 1rem; }
.btn-primary{ display:inline-block; background: linear-gradient(90deg,#12d0da,#80F8FD); padding: 0.6rem 1rem; color:#021018; border-radius: 8px; font-weight:700; text-decoration:none; transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease; }
.btn-outline{ display:inline-block; background: transparent; border:1px solid rgba(128,248,253,0.12); color: #d8f8fb; padding: 0.6rem 1rem; border-radius:8px; text-decoration:none; transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease; }

.btn-primary:hover, .btn-primary:focus{ transform: translateY(-4px); box-shadow: 0 18px 40px rgba(18,208,218,0.14); filter: brightness(1.03); }
.btn-outline:hover, .btn-outline:focus{ transform: translateY(-4px); background: rgba(18,210,218,0.04); box-shadow: 0 12px 30px rgba(18,208,218,0.06); }

@media (max-width: 900px){
    .support-grid{ grid-template-columns: 1fr; }
    .support-banner-inner{ flex-direction: column; gap: 1rem; height: auto; padding: 1rem; text-align:center; }
    .support-number{ font-size: 3.4rem; }
    .support-title{ font-size: 1.6rem; }
}

/* Product card action tweaks: make Buy button grow toward the price and center its text */
.product-actions { display:flex; align-items:center; gap: 0.6rem; margin-top: auto; justify-content:flex-end; }
.btn { cursor: pointer; border: none; padding: 0.6rem 1rem; border-radius: 40px; font-weight: 700; display: inline-flex; align-items:center; justify-content:center; }
.btn-buy { background: linear-gradient(90deg,#12d0da,#80F8FD); color: #021018; box-shadow: 0 8px 30px rgba(18,208,218,0.08); flex: 1; min-width: 110px; }
.product-price { margin-left: 0.6rem; }

/* If you need the section moved further up, reduce this value (12em -> 10em etc) */
.content-section.move-up { padding-top: 10em !important; }




/* Layout scaling to preserve 2560x1600 look while adapting to other screens */
@media (min-width: 1600px) {
    body { font-size: max(calc(var(--_size) * 0.03), 10px); }
}

/* Tablet adjustments */
@media (max-width: 1024px) {
    .heroT { height: auto; padding-top: 1.5em; translate: 0; }
    .heroT > h2 { text-align: center; }
    .heroP { top: auto; position: relative; margin-top: 1.25rem; }
    .hero-ctas { position: relative; top: auto; margin-top: 1.25rem; flex-wrap: wrap; }
    .header { position: relative; padding: 1.25em 1rem; }
}

/* Phone adjustments */
@media (max-width: 640px) {
    .hero-spacer {
        height: 2.5em;
    }
    .content-section {
        padding: 1.5em 0 2.5em 0;
    }
    .hero {
        margin-top: 3.5em;
    }
    .top-nav { height: 56px; }
    main { padding-top: 72px; }
    .top-nav .nav-inner { gap: 8px; padding: 0 10px; }
    .main-nav-link { min-width: auto; height: 36px; font-size: 0.85rem; padding: 6px 10px; }
    .nav-btn.cart-btn, .nav-btn.customer-btn { height: 32px !important; min-width: 56px !important; }

    /* Better mobile hero stacking - prevent overlap */
    .hero { position: relative; top: 2em; max-height: none; height: auto; }
    .heroT { position: relative; height: auto; padding-top: 1em; translate: 0; display: flex; flex-direction: column; align-items: center; }
    .heroT > h2 { position: relative; font-size: clamp(1.8rem, 9vw, 3rem); text-align: center; margin-bottom: 0.5rem; }
    .heroP { position: relative; top: auto; font-size: 0.95rem; text-align: center; margin-top: 1rem; }
    .hero-ctas { position: relative; top: auto; margin-top: 1.5rem; gap: 0.6rem; flex-wrap: wrap; }
    .cta-btn { font-size: 0.95rem; padding: 0.6rem 0.9rem; }

    /* Product pages mobile optimization */
    .wrap { padding: 0 16px; max-width: 100%; }
    .product-page { gap: 24px; margin-top: 16px; }
    .promo-box { 
        min-width: auto !important; 
        max-width: 100% !important; 
        margin-left: 0 !important; 
        margin-top: 16px !important; 
        padding: 18px !important; 
    }
    .info > div:first-child { flex-direction: column !important; }
    .product-image-wrap { height: 240px; }
    .title { font-size: 24px !important; }
    .price { font-size: 20px !important; }
    .durations { gap: 8px; }
    .duration-btn { min-width: 80px; padding: 10px 14px; font-size: 0.9rem; }
    .btn { width: 100%; padding: 12px; font-size: 0.95rem; }
    .actions { display: flex; flex-direction: column; gap: 12px; }

    .works-labels { width: 90%; font-size: 16px; }
    .custom-image-slider { width: 100%; margin: 24px auto; border-width: 6px; border-radius: 18px; }
    .slider-handle { width: 6px; }

    .footer-inner { padding: 28px 16px; gap: 1rem; }
    .footer-links { flex-direction: column; gap: 1rem; }
}

/* Ultra small phones */
@media (max-width: 380px) {
    .main-nav-link { font-size: 0.8rem; padding: 4px 8px; }
    .cta-btn { padding: 0.5rem 0.8rem; font-size: 0.9rem; }
}




/* Mobile nav cleanup: hide cart/customer buttons on phones; rely on hamburger + menu */
@media (max-width: 860px) {
    /* Hide standalone Cart and Customer buttons; they will appear inside the mobile menu */
    .nav-btn.cart-btn, .nav-btn.customer-btn { display: none !important; }
    /* Show hamburger menu button on mobile */
    .nav-toggle { display: flex !important; align-items: center; justify-content: center; }

/* Improve readability and cross-browser support for glass cart overlay text */
#glassCartOverlay .card-title,
#glassCartOverlay .value {
    /* Ensure Firefox sees the gradient text properly */
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

/* On small screens, prefer solid colors for clarity */
@media (max-width: 520px) {
    #glassCartOverlay .card {
        border-radius: 22px !important;
        box-shadow: 0 6px 32px 0 #021018cc, 0 1.5px 0 #80F8FD44;
        background: linear-gradient(120deg, #101318 80%, #121521 100%) !important;
        border: 2px solid #80F8FD !important;
    }
    #glassCartOverlay .card-title {
        background: none !important;
        -webkit-text-fill-color: initial !important;
        color: #ffffff !important;
        font-size: 1.18rem !important;
        letter-spacing: 0.5px;
    }
    #glassCartOverlay .value, #glassCartTotal {
        background: none !important;
        -webkit-text-fill-color: initial !important;
        color: #64ffda !important;
        font-size: 1.35rem !important;
        font-weight: 800 !important;
        text-shadow: 0 1px 8px #021018cc;
    }
    #glassCartOverlay .type {
        color: #b0f8ff !important;
        font-size: 0.78rem !important;
        font-weight: 600 !important;
        letter-spacing: 1.2px;
    }
    #glassCartOverlay .card-button {
        background: linear-gradient(90deg, #12d0da 60%, #80F8FD 100%) !important;
        color: #021018 !important;
        border: 2px solid #80F8FD !important;
        font-weight: 900 !important;
        font-size: 1.08rem !important;
        letter-spacing: 0.7px;
        box-shadow: 0 2px 16px #12d0da44;
        border-radius: 18px !important;
        padding: 14px 0 !important;
        margin-top: 10px !important;
        margin-bottom: 2px !important;
        width: 100% !important;
        text-align: center;
        transition: background 180ms, color 180ms, box-shadow 180ms;
    }
    #glassCartOverlay .card-button:active {
        background: linear-gradient(90deg, #80F8FD 60%, #12d0da 100%) !important;
        color: #021018 !important;
        box-shadow: 0 1px 8px #12d0da44;
    }
    #glassCartOverlay .card-content {
        padding: 18px 10px 18px 10px !important;
    }
    #glassCartOverlay .card-stats {
        gap: 12px !important;
        padding: 10px 0 !important;
        margin-bottom: 8px !important;
    }
}




