/* PROMO BANNER */
.promo-banner {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    background: linear-gradient(90deg, #f59e0b, #fbbf24, #f59e0b);
    background-size: 200% 100%;
    animation: promoBannerShimmer 3s ease-in-out infinite;
    color: #1a1a1a;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 8px 20px;
    font-size: 13px;
    font-weight: 500;
    height: 36px;
    box-shadow: 0 2px 12px rgba(245,158,11,0.5);
}

@keyframes promoBannerShimmer {
    0%   { background-position: 0% 50%; }
    50%  { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.promo-banner-text {
    text-align: center;
    letter-spacing: 0.02em;
}

.promo-banner-btn {
    background: #1a1a1a;
    color: #fbbf24;
    padding: 5px 14px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 12px;
    font-weight: 700;
    white-space: nowrap;
    transition: background 0.2s;
}

.promo-banner-btn:hover {
    background: #333;
}

.promo-banner-close {
    background: none;
    border: none;
    color: #1a1a1a;
    font-size: 16px;
    cursor: pointer;
    opacity: 0.6;
    padding: 0;
    line-height: 1;
    flex-shrink: 0;
}

.promo-banner-close:hover {
    opacity: 1;
}

/* =========================================
   ALPHA LOGIN MODAL
========================================= */

.modal {
  display: none;
  position: fixed;
  inset: 0;

  background: rgba(0, 0, 0, 0.65);

  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);

  z-index: 999999;

  justify-content: center;
  align-items: center;
}

.modal-content {
  background: rgba(15, 18, 24, 0.85);

  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);

  padding: 40px;
  border-radius: 18px;

  width: 90%;
  max-width: 420px;

  color: white;

  box-shadow:
    0 25px 70px rgba(0,0,0,0.75),
    inset 0 1px 0 rgba(255,255,255,0.1);

  animation: modalFade 0.3s ease;
}

.modal-content h2 {
  text-align: center;
  margin-bottom: 25px;
}

.modal-content input {
  width: 100%;
  padding: 14px;
  margin-bottom: 15px;

  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.15);

  background: rgba(255,255,255,0.05);
  color: white;
}

.modal-content button {
  width: 100%;
  padding: 14px;

  border-radius: 10px;
  border: none;

  background: linear-gradient(135deg, #2563eb, #1e40af);
  color: white;

  font-weight: 600;
  cursor: pointer;

  transition: 0.2s ease;
}

.modal-content button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(37,99,235,0.5);
}

#closeModal {
  position: absolute;
  top: 15px;
  right: 20px;

  font-size: 24px;
  cursor: pointer;
  color: rgba(255,255,255,0.7);
}

#closeModal:hover {
  color: white;
}

@keyframes modalFade {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}



.account-icon {
  position: absolute;
  top: 20px;
  left: 20px;

  width: 44px;
  height: 44px;

  border-radius: 50%;
  border: none;

  display: flex;
  align-items: center;
  justify-content: center;

  background: linear-gradient(135deg, #1e3a8a, #2563eb);
  box-shadow: 0 0 18px rgba(37,99,235,0.5);

  cursor: pointer;
  transition: all 0.2s ease;
}

.account-icon:hover {
  background: rgba(59,130,246,0.8);
  transform: scale(1.08);
}

.account-icon svg {
  width: 22px;
  height: 22px;
}

/* =========================================
   PREMIUM QUOTE BUTTON
========================================= */

.quote-trigger {

  position: relative;
  padding: 16px 38px;

  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.6px;

  color: white;
  background: linear-gradient(135deg, #00c6ff, #0072ff);

  border: none;
border-radius: 14px;

  cursor: pointer;

  box-shadow:
    0 0 25px rgba(0,114,255,0.65),
    0 10px 35px rgba(0,0,0,0.6);

  transition: all 0.22s ease;

  overflow: hidden;
}

/* Glow pulse */
.quote-trigger::before {

  content: "";

  position: absolute;
  top: -50%;
  left: -50%;

  width: 200%;
  height: 200%;

  background: radial-gradient(circle, rgba(255,255,255,0.25), transparent 60%);

  opacity: 0;
  transition: opacity 0.3s ease;
}

/* Hover */
.quote-trigger:hover {

  transform: translateY(-4px) scale(1.06);

  background: linear-gradient(135deg, #4facfe, #00f2fe);

  box-shadow:
    0 0 45px rgba(0,242,254,0.95),
    0 18px 55px rgba(0,0,0,0.75);
}

.quote-trigger:hover::before {
  opacity: 1;
}

/* Click */
.quote-trigger:active {
  transform: scale(0.96);
}

/* Subtle breathing animation */
.quote-trigger {
  animation: quoteBreath 2.6s infinite;
}

@keyframes quoteBreath {

  0% {
    box-shadow:
      0 0 20px rgba(0,114,255,0.5),
      0 10px 30px rgba(0,0,0,0.5);
  }

  50% {
    box-shadow:
      0 0 40px rgba(0,114,255,0.9),
      0 18px 45px rgba(0,0,0,0.7);
  }

  100% {
    box-shadow:
      0 0 20px rgba(0,114,255,0.5),
      0 10px 30px rgba(0,0,0,0.5);
  }

}

/*ALL FIX*/

*,
*::before,
*::after {
  box-sizing: border-box;
}


/* =========================================
   MAGNIFY GLASS CONTACT FORM
   ========================================= */

.contact-popup {
  position: fixed;
  inset: 0;

  display: none;
  align-items: center;
  justify-content: center;

  background:
    radial-gradient(circle at 30% 20%, rgba(59,130,246,0.18), transparent 40%),
    radial-gradient(circle at 70% 80%, rgba(37,99,235,0.18), transparent 40%),
    rgba(5,10,20,0.65);

  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);

  z-index: 999999;
}


/* MAIN GLASS CARD */
/* CONTACT FORM CENTERING FIX */

.contact-box {
  position: relative;
  width: 92%;
  max-width: 480px;
  padding: 42px;
  border-radius: 18px;
  background: linear-gradient(
      145deg,
      rgba(255,255,255,0.10),
      rgba(255,255,255,0.03)
  );
  backdrop-filter: blur(35px) saturate(180%);
  -webkit-backdrop-filter: blur(35px) saturate(180%);
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow:
      0 25px 70px rgba(0,0,0,0.65),
      inset 0 1px 0 rgba(255,255,255,0.12);
  animation: contactFadeIn 0.35s ease;

  /* Centering Fix */
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact-box h2 {
  width: 100%;
  text-align: center;
  margin-bottom: 24px;
  color: white;
}

.contact-box input,
.contact-box textarea,
.contact-box button {
  width: 100%;
  max-width: 400px; /* Adjust to 380px for tighter premium look */
  padding: 14px 16px;
  margin-bottom: 16px;
  border-radius: 10px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  color: white;
  font-size: 15px;
}


/* glossy focus */
.contact-box input:focus,
.contact-box textarea:focus {

  border: 1px solid rgba(59,130,246,0.6);

  background: rgba(59,130,246,0.08);

  box-shadow:
    0 0 0 1px rgba(59,130,246,0.25),
    0 0 18px rgba(59,130,246,0.25);
}


/* BUTTON */
.contact-box button {

  width: 100%;

  padding: 14px;

  border-radius: 12px;

  border: none;

  font-weight: 700;
  font-size: 15px;

  color: white;

  cursor: pointer;

  background:
    linear-gradient(135deg, #3b82f6, #2563eb);

  box-shadow:
    0 10px 30px rgba(37,99,235,0.45),
    inset 0 1px 0 rgba(255,255,255,0.25);

  transition: all 0.25s ease;
}


/* button hover glow */
.contact-box button:hover {

  transform: translateY(-2px);

  box-shadow:
    0 15px 40px rgba(37,99,235,0.65),
    0 0 25px rgba(59,130,246,0.55);
}


/* CLOSE BUTTON */
.contact-close {

  position: absolute;
  top: 16px;
  right: 20px;

  font-size: 24px;
  color: rgba(255,255,255,0.7);

  cursor: pointer;

  transition: all 0.2s ease;
}

.contact-close:hover {
  color: white;
  transform: scale(1.15);
}


/* animation */
@keyframes contactFadeIn {

  from {
    opacity: 0;
    transform: translateY(20px) scale(0.96);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }

}



/* =========================================
   SUCCESS TOAST
========================================= */

.success-toast {
  position: fixed;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%) translateY(30px);

  padding: 14px 26px;

  background: linear-gradient(135deg, #3b82f6, #2563eb);
  color: white;
  font-weight: 600;

  border-radius: 12px;

  box-shadow:
    0 15px 40px rgba(37,99,235,0.6);

  opacity: 0;
  pointer-events: none;

  transition: all 0.4s ease;

  z-index: 999999;
}

.success-toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

body {
    font-family: 'Poppins', sans-serif; font-weight: 700;
     background: #0b1220;
       margin: 0;
  padding: 0;
position: relative;

  margin: 0;
  padding: 0;

  background: #020617; /* deep dark blue, NOT white */

  color: white;
  font-family: 'Inter', sans-serif;

  overflow-x: hidden;
  
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
}

p, span {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
}



/* GLOBAL HEARTBEAT BACKGROUND */
/* MAIN ENERGY ORB */
/* CORE ENERGY */
body::before {
  content: "";
  position: fixed;

  top: 50%;
  left: 50%;

  width: 1000px;
  height: 1000px;

  transform: translate(-50%, -50%);
  border-radius: 50%;

  background:
    radial-gradient(circle at 20% 30%, rgba(96,165,250,0.45), transparent 60%),
    radial-gradient(circle at 80% 70%, rgba(37,99,235,0.40), transparent 65%),
    radial-gradient(circle at 60% 20%, rgba(147,197,253,0.35), transparent 70%),
    radial-gradient(circle at 30% 80%, rgba(59,130,246,0.35), transparent 75%);

  filter: blur(60px);

  animation:
    chaosMove1 7s infinite linear alternate,
    chaosRotate1 9s infinite linear,
    chaosPulse1 3s infinite ease-in-out alternate;

  z-index: -3;
}

/* SECOND ENERGY LAYER */
body::after {
  content: "";
  position: fixed;

  top: 60%;
  left: 55%;

  width: 1100px;
  height: 1100px;

  transform: translate(-50%, -50%);
  border-radius: 45% 55% 60% 40%;

  background:
    conic-gradient(
      from 0deg,
      transparent,
      rgba(59,130,246,0.35),
      transparent,
      rgba(147,197,253,0.30),
      transparent,
      rgba(37,99,235,0.35),
      transparent
    );

  filter: blur(80px);

  animation:
    chaosMove2 11s infinite linear alternate,
    chaosRotate2 13s infinite linear reverse,
    chaosMorph 6s infinite ease-in-out alternate;

  z-index: -2;
}


body .energy-layer {
  position: fixed;

  top: 45%;
  left: 60%;

  width: 900px;
  height: 900px;

  transform: translate(-50%, -50%);

  border-radius: 60% 40% 50% 50%;

  background:
    radial-gradient(circle at 50% 50%, rgba(96,165,250,0.35), transparent 70%);

  filter: blur(100px);

  animation:
    chaosMove3 8s infinite linear alternate,
    chaosRotate3 5s infinite linear,
    chaosPulse2 2s infinite ease-in-out alternate;

  z-index: -1;
}

@keyframes chaosMove1 {
  0%   { top: 50%; left: 50%; }
  25%  { top: 40%; left: 65%; }
  50%  { top: 65%; left: 35%; }
  75%  { top: 45%; left: 60%; }
  100% { top: 60%; left: 45%; }
}

@keyframes chaosMove2 {
  0%   { top: 60%; left: 55%; }
  25%  { top: 35%; left: 40%; }
  50%  { top: 70%; left: 60%; }
  75%  { top: 50%; left: 30%; }
  100% { top: 65%; left: 65%; }
}

@keyframes chaosMove3 {
  0%   { top: 45%; left: 60%; }
  25%  { top: 70%; left: 40%; }
  50%  { top: 35%; left: 55%; }
  75%  { top: 60%; left: 30%; }
  100% { top: 50%; left: 65%; }
}

@keyframes chaosRotate1 {
  from { transform: translate(-50%, -50%) rotate(0deg) scale(1); }
  to   { transform: translate(-50%, -50%) rotate(360deg) scale(1.25); }
}

@keyframes chaosRotate2 {
  from { transform: translate(-50%, -50%) rotate(360deg) scale(1.15); }
  to   { transform: translate(-50%, -50%) rotate(0deg) scale(0.85); }
}

@keyframes chaosRotate3 {
  from { transform: translate(-50%, -50%) rotate(0deg) scale(1.3); }
  to   { transform: translate(-50%, -50%) rotate(-360deg) scale(0.9); }
}

@keyframes chaosPulse1 {
  from { opacity: 0.6; }
  to   { opacity: 1; }
}

@keyframes chaosPulse2 {
  from { opacity: 0.5; }
  to   { opacity: 0.9; }
}

@keyframes chaosMorph {
  0%   { border-radius: 60% 40% 50% 50%; }
  25%  { border-radius: 40% 60% 45% 55%; }
  50%  { border-radius: 55% 45% 60% 40%; }
  75%  { border-radius: 50% 50% 40% 60%; }
  100% { border-radius: 60% 40% 50% 50%; }
}

h1, h2, h3, h4, h5, h6, p, a, span, button {
    font-family: 'Poppins', sans-serif; font-weight: 700;
}

html {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    background: #0b1220;
}

body {
    margin: 0;
    padding: 0;
    background: transparent;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/*--------another scroll bar, i rlly needa break*/

.scroll-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;

  background: linear-gradient(90deg, #3b82f6, #60a5fa);

  z-index: 999999;
}

/* =========================================
   REAL SECTION FADE FIX
========================================= */

.gs-section,
.gs-final {
  position: relative;
  background: transparent; /* FIX */
  overflow: hidden;
}

.gs-section-title::after {
  content: "";
  display: block;

  width: 60px;
  height: 2px;

  margin-top: 10px;

  background: linear-gradient(90deg, #3b82f6, transparent);
}

/* TOP FADE */
.gs-section::before,
.gs-final::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 140px;
  pointer-events: none;
  z-index: 1;

  background: linear-gradient(
    to bottom,
    #0f1218 0%,
    rgba(15,18,24,0.8) 40%,
    rgba(15,18,24,0.3) 70%,
    transparent 100%
  );
}

/* BOTTOM FADE */
.gs-section::after,
.gs-final::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 140px;
  pointer-events: none;
  z-index: 1;

  background: linear-gradient(
    to top,
    #0f1218 0%,
    rgba(15,18,24,0.8) 40%,
    rgba(15,18,24,0.3) 70%,
    transparent 100%
  );
}

/* ========================================= */
/* GET STARTED HERO */
/* ========================================= */

.gs-hero {

  height: 100vh;

  display: flex;
  align-items: center;
  justify-content: center;


  box-sizing: border-box;

    height: 100vh;
position: relative;
overflow: hidden;

  padding-left: 20px;
  padding-right: 20px;

   background: transparent;

}


/* realistic heartbeat rhythm */
@keyframes heartbeatGlow {

  /* resting */
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.35;
  }

  /* first strong beat */
  8% {
    transform: translate(-50%, -50%) scale(1.25);
    opacity: 0.85;
  }

  /* recoil */
  14% {
    transform: translate(-50%, -50%) scale(1.05);
    opacity: 0.5;
  }

  /* second smaller beat */
  20% {
    transform: translate(-50%, -50%) scale(1.18);
    opacity: 0.75;
  }

  /* fade back to rest */
  30% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.35;
  }

  /* long rest period */
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.35;
  }
}

@keyframes heroGlow {
  from {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.4;
  }
  to {
    transform: translate(-50%, -50%) scale(1.3);
    opacity: 0.7;
  }
}

.gs-title {

  font-size: 56px;
  font-weight: 600;

  color: white;

  margin-bottom: 16px;

  line-height: 1.1;
   font-family: 'Poppins', sans-serif; font-weight: 700;
    font-weight: 600;
}

.gs-subtitle {

  font-size: 20px;
  color: rgba(255,255,255,0.7);

  max-width: 600px;

  margin-bottom: 30px;
  font-family: 'Poppins', sans-serif; font-weight: 700;
    font-weight: 400;
}

.gs-section {
    padding: 80px 0;   /* was probably 120px+ */
    position: relative;
     background: transparent;
}

.gs-cta {

  display: inline-block;

  padding: 14px 28px;

  background: rgba(255,255,255,0.08);

  border: 1px solid rgba(255,255,255,0.15);

  border-radius: 10px;
  animation: floatButton 3s ease-in-out infinite;
  color: white;
  text-decoration: none;

  transition: 0.25s ease;
}

@keyframes floatButton {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.gs-cta:hover {

  background: rgba(255,255,255,0.18);

  transform: translateY(-3px);


}

.gs-hero-content {

  width: 100%;
  max-width: 650px;

  display: flex;
  flex-direction: column;

  align-items: center;
  justify-content: center;

  text-align: center;

  margin-top: -40px; /* THIS centers visually */

}

.gs-hero-content h1,
.gs-hero-content p {

  text-align: center;
  margin-left: auto;
  margin-right: auto;

}


/* ========================================= */
/* SECTIONS */
/* ========================================= */

.gs-section {
  padding: 120px 10%;
  background: transparent; /* FIX */
}

.gs-section-title {

  font-size: 36px;
  color: white;

  margin-bottom: 20px; 
}

.gs-timeline {
    margin-bottom: 0;
      position: relative;
}

.gs-timeline {
  position: relative;
}

.gs-timeline::before {
  content: "";
  position: absolute;
  left: -2px;
  top: 0;
  width: 2px;
  height: 100%;

  background: linear-gradient(to bottom, transparent, #3b82f6, transparent);

  animation: timelineGlow 4s linear infinite;
}

@keyframes timelineGlow {
  0% { opacity: 0.3; }
  50% { opacity: 1; }
  100% { opacity: 0.3; }
}

.gs-section + .gs-section {
    padding-top: 40px;
}

.gs-section-sub {

  color: rgba(255,255,255,0.6);

  margin-bottom: 50px;
}


/* ========================================= */
/* CARDS */
/* ========================================= */

.gs-card-container {

  display: flex;
  gap: 30px;

  flex-wrap: wrap;
}

.gs-card {

  flex: 1;
  min-width: 250px;

  padding: 30px;

  border-radius: 14px;

  background: rgba(255,255,255,0.04);

  border: 1px solid rgba(255,255,255,0.08);

  transition: 0.25s ease;

    position: relative;

    opacity: 0;
  transform: translateY(30px);
  animation: cardFade 0.8s ease forwards;
}


.gs-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 14px;
  opacity: 0;
  transition: opacity 0.3s ease;

  background: radial-gradient(circle at center, rgba(59,130,246,0.15), transparent 70%);
}

.gs-card:hover::before {
  opacity: 1;
}

.gs-card:nth-child(1) { animation-delay: 0.1s; }
.gs-card:nth-child(2) { animation-delay: 0.25s; }
.gs-card:nth-child(3) { animation-delay: 0.4s; }

@keyframes cardFade {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.gs-card:hover {

  transform: translateY(-8px);

  background: rgba(255,255,255,0.08);
}

.gs-card h3 {

  color: white;
  margin-bottom: 10px;
}

.gs-card p {

  color: rgba(255,255,255,0.6);
}


/* ========================================= */
/* TIMELINE */
/* ========================================= */

.gs-timeline {

  border-left: 2px solid rgba(255,255,255,0.15);

  padding-left: 30px;
}

.gs-step {

  position: relative;
  margin-bottom: 50px;
}

.gs-dot {

  position: absolute;

  left: -39px;
  top: 6px;

  width: 14px;
  height: 14px;

  border-radius: 50%;

  background: white;

  box-shadow: 0 0 15px rgba(255,255,255,0.6);
}

.gs-step-content h3 {

  color: white;
}

.gs-step-content p {

  color: rgba(255,255,255,0.6);
}

.gs-contact {

  color: rgba(255,255,255,0.5);
  font-size: 14px;
}


/* ========================================= */
/* INFO GRID */
/* ========================================= */

.gs-info-grid {

  display: grid;

  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));

  gap: 25px;
}

.gs-info-card {

  padding: 25px;

  border-radius: 12px;

  background: rgba(255,255,255,0.04);

  border: 1px solid rgba(255,255,255,0.08);

}

.gs-info-card h3 {

  color: white;
}

.gs-info-card p {

  color: rgba(255,255,255,0.6);
}


/* ========================================= */
/* FINAL CTA */
/* ========================================= */

.gs-final {

  padding: 140px 10%;

  text-align: center;

   background: transparent;
}

.gs-final h2 {

  font-size: 42px;

  color: white;

  margin-bottom: 30px;
}


/* ========================================= */
/* REVEAL ANIMATION */
/* ========================================= */

.reveal {

  opacity: 0;
  transform: translateY(30px);

  transition: all 0.8s ease;
}

.reveal.show {

  opacity: 1;
  transform: translateY(0);
}


/* ========================================= */
/* MOBILE */
/* ========================================= */

@media(max-width:768px){

.gs-title{

font-size:42px;

}

 .gs-section{
    padding: 80px 20px; /* fixed pixel padding, not % */
  }

  .gs-card-container{
    justify-content: center;
  }

  .gs-card{
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
  }
  
     .gs-hero {

    min-height: calc(100vh - 80px); /* accounts for logo/menu area */

    display: flex;
    align-items: center;
    justify-content: center;

  }

   .gs-hero-content{
    margin: 0 auto;
    padding: 0; /* REMOVE side padding */
    width: 100%;
    max-width: 650px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    text-align: center;
  }

}

@media(max-width:768px){

  .gs-title,
  .gs-subtitle{
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

}

@keyframes heroFade {

  from {
    opacity: 0;
    transform: translateX(-40px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }

}

/*---------------------------------------------------------------------------------------------SIDENAV------------------------*/
body.nav-open .sitelogo {
  opacity: 0;
  pointer-events: none;
  transform: translateY(-10px);
}

.sitelogo {
  transition: opacity 0.25s ease, transform 0.25s ease;
}

body.nav-open{
  overflow: hidden;
}

/*--------------SIDE NAV LAYER?*/

.sidenav {
  position: fixed;
  top: 0;
  left: 0;

  width: 0;
  height: 100vh;

  z-index: 100000;

  overflow-x: hidden;

  /* REAL glass effect */
  background: rgba(15, 18, 24, 0.45);

  backdrop-filter: blur(22px) saturate(160%);
  -webkit-backdrop-filter: blur(22px) saturate(160%);

  border-right: 1px solid rgba(255,255,255,0.12);

  box-shadow: 6px 0 30px rgba(0,0,0,0.6);

  padding-top: 110px;

  transition: width 0.35s ease;

  display: flex;
  flex-direction: column;
}


.sidenav ul,
.sidenav li {
  list-style: none;
  margin: 0;
  padding: 0;
}

/*clean nav links*/
.sidenav a {
  display: block;
  color: white;
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;

  padding: 10px 16px;
  border-radius: 5px;

  transition: background 0.2s ease;
}

/*hover*/
.sidenav a:hover {
  background: rgba(255,255,255,0.12);
}

/*active item*/
.sidenav a.active {
  background: #3b82f6;
}

.sidenav .closebtn {
  position: absolute;
  top: 16px;
  right: 16px;

  font-size: 50px;          /* normal size */
  line-height: 1;

  width: 40px;
  height: 40px;

  display: flex;
  align-items: center;
  justify-content: center;

  color: rgb(255, 255, 255);
  text-decoration: none;

  border-radius: 2px;

  background: rgba(255,255,255,0.08);

  transition: 
    background 0.2s ease,
    color 0.2s ease,
    transform 0.15s ease;

  z-index: 10001;
}


.sidenav .closebtn:hover {
  background: rgba(255,255,255,0.15);
  color: white;

  transform: scale(1.05); /* subtle */
}



#main {
  transition: margin-left .5s;
  padding: 0; /* REMOVE the 16px padding */
}

@media screen and (max-height: 450px) {
  .sidenav {padding-top: 15px;}
  .sidenav a {font-size: 18px;}
}

#overlay {
  position: fixed;
  inset: 0;

  background: rgba(0,0,0,0.35);

  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);

  opacity: 0;
  pointer-events: none;

  transition: opacity 0.3s ease;

  z-index: 9000;
}

body.nav-open #overlay {
  opacity: 1;
  pointer-events: auto;
}


.menuBtn {
  position: fixed;  
  top: 10px;
  left: 10px;
  cursor: pointer;
  z-index: 9999;  
  margin-right: 55px;   

  padding: 10px;
  border-radius: 5px;
  backdrop-filter: blur(30px);

  transition: 
    transform 0.2s ease-out,
    background-color 0.2s ease-out;
}

.menuBtn.scrolled {
  background: rgba(0,0,0,0.5);
}

.menuBtn:hover {
  transform: translateY(-4px);
}

.menuBtn svg {
  transition: transform 0.2s ease-out;
}

.menuBtn:hover svg {
  transform: translateY(-2px);
}

/* =========================================
   SECTION FADE SYSTEM
========================================= */

/* applies to ALL main sections */
.gs-section,
.gs-final {
  position: relative;
  z-index: 1;
}

/* top fade (blends from previous section) */
.gs-section::before,
.gs-final::before {
  content: "";
  position: absolute;
  top: -120px;
  left: 0;
  width: 100%;
  height: 120px;
  pointer-events: none;
  z-index: 2;

  background: linear-gradient(
    to bottom,
    rgba(11, 18, 32, 0),
    rgba(11, 18, 32, 0.65),
    rgba(11, 18, 32, 1)
  );
}

/* bottom fade (blends into next section) */
.gs-section::after,
.gs-final::after {
  content: "";
  position: absolute;
  bottom: -120px;
  left: 0;
  width: 100%;
  height: 120px;
  pointer-events: none;
  z-index: 2;

  background: linear-gradient(
    to top,
    rgba(11, 18, 32, 0),
    rgba(11, 18, 32, 0.65),
    rgba(11, 18, 32, 1)
  );
}



/*---------------------------------------------------------------------------------------------Top Logo-----------------------*/
.sitelogo {
  position: fixed;

  top: 8px;     
  right: 16px;   

  transform: none;

  padding: 6px 10px;

  border-radius: 8px;
  z-index: 999999;

  transition: transform 0.25s ease;
}

.sitelogo:hover {

   /* Floating effect */
  transform: translateY(-8px) scale(1.04);
}

.sitelogo img {
  height: 70px;
  display: block;
}


/*---------------------------------------------------------------------------------------------QUICK NAV------------------------*/

.quick-nav {
  position: fixed;
  top: 36px;
  left: 0;
  width: 100%;

  display: flex;
  justify-content: center;
  gap: 24px;

  padding: 14px 20px;

  background: transparent;


  z-index: 8000;
}

.quick-btn {
  color: white;
  text-decoration: none;
  font-weight: 600;
  

  padding: 12px 18px;
  border-radius: 8px;

  transition: all 0.2s ease;
}

.quick-btn.active {
  color: #60a5fa;
}

.quick-btn:hover {
  transform: translateY(-2px);
}


/*---------------------------------------------------------------------------------------------BACK TO TOP------------------------*/

html{
  scroll-behavior: smooth;
}

.back-to-top{
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(100px);
  background: rgba(255,255,255,0.25);
  padding: 14px 20px;
  border-radius: 14px; 
  text-decoration: none;
  transition: 0.2s ease-out;
  z-index: 10000;
}

.back-to-top span{
  transition: 0.2s ease-out;
}

.back-to-top:hover{
  background-color: rgba(0, 0, 0, 0.349);
}

.back-to-top:hover span{
  transform: translateY(-4px);
}


/*---------------------------------------------------------------------------------------------BACK TO TOP------------------------*/

html{
  scroll-behavior: smooth;
}

.back-to-top{
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(100px);
  background: rgba(255,255,255,0.25);
  padding: 14px 20px;
  border-radius: 14px; 
  text-decoration: none;
  transition: 0.2s ease-out;
  z-index: 10000;
}

.back-to-top span{
  transition: 0.2s ease-out;
}

.back-to-top:hover{
  background-color: rgba(0, 0, 0, 0.349);
}

.back-to-top:hover span{
  transform: translateY(-4px);
}

/* ---------------- HIDE QUICK NAV ON MOBILE (FINAL OVERRIDE) ---------------- */

@media (max-width: 768px) {

  .quick-nav {
    display: none !important;
  }


}


/* CENTER LOGO ON MOBILE */
@media (max-width: 768px){

  .sitelogo{
    left: 50%;
    right: auto;

    transform: translateX(-50%);

    top: 12px;
  }

}

/* =========================================
   BOTTOM LEFT CORNER LOGO
   ========================================= */

.corner-logo {

  position: fixed;
 bottom: -7px;
  left: -10px;

  z-index: 9999;

  padding: 8px;

  border-radius: 10px;

  transition: all 0.25s ease;
}

.corner-logo img {

  height: 100px;
  width: auto;

  opacity: 0.85;

  display: block;

  transition: all 0.25s ease;
}


.corner-logo:hover img {

  opacity: 1;
  transform: scale(1.08);
}


/* =========================================
   PREMIUM MINIMAL CTA
========================================= */

.primary-cta {
  background: #2563eb; /* single solid brand color */
  color: #ffffff !important;

  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.3px;

  padding: 12px 22px;   /* tighter = cleaner */
  border-radius: 8px;   /* less bubbly */
  border: none;

  box-shadow: 0 6px 18px rgba(0,0,0,0.35);

  transition: all 0.18s ease;
}

/* Hover */
.primary-cta:hover {
  background: #1e40af;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(0,0,0,0.45);
}

/* Click */
.primary-cta:active {
  transform: translateY(0);
  box-shadow: 0 4px 12px rgba(0,0,0,0.35);
}

/* pulse */
@keyframes ctaPulse {

  0% {
    box-shadow:
      0 0 15px rgba(59,130,246,0.45),
      0 8px 25px rgba(0,0,0,0.45);
  }

  50% {
    box-shadow:
      0 0 35px rgba(59,130,246,0.85),
      0 12px 35px rgba(0,0,0,0.6);
  }

  100% {
    box-shadow:
      0 0 15px rgba(59,130,246,0.45),
      0 8px 25px rgba(0,0,0,0.45);
  }

}



/* Fix CTA buttons overriding .btn */

.btn.primary-cta {

  background: linear-gradient(135deg, #3b82f6, #2563eb) !important;

  color: white !important;

  text-decoration: none !important;

  border: none;

}

/* =========================================
   MOBILE PERFORMANCE MODE
========================================= */

@media (max-width: 768px) {

  /* Kill background chaos */
  body::before,
  body::after,
  body .energy-layer {
    animation: none !important;
    filter: blur(40px); /* lighter */
    opacity: 0.4;
  }

  /* Stop breathing buttons */
  .quote-trigger {
    animation: none !important;
  }

  /* Stop floating CTA */
  .gs-cta {
    animation: none !important;
  }

  /* Stop timeline glow */
  .gs-timeline::before {
    animation: none !important;
  }

}

@media (max-width: 768px) {

  body::before,
  body::after,
  body .energy-layer {
    width: 600px;
    height: 600px;
    filter: blur(40px);
  }

}



/* ── PROMO BANNER MOBILE ── */
@media (max-width: 768px) {

    .promo-banner {
        height: auto;
        min-height: 36px;
        padding: 8px 36px 8px 12px;
        flex-wrap: wrap;
        justify-content: center;
        gap: 6px;
    }

    .promo-banner-text {
        font-size: 11px;
        line-height: 1.4;
        text-align: center;
        width: 100%;
    }

    .promo-banner-btn {
        font-size: 11px;
        padding: 4px 10px;
    }

    .promo-banner-close {
        position: absolute;
        right: 10px;
        top: 10px;
    }

    .menuBtn {
        top: 80px !important;
    }

    .sitelogo {
        top: 80px !important;
    }

    .account-icon {
        top: 52px !important;
    }

}

.desktop-account-btn {
  position: fixed;
  top: 18px;
  left: 18px;
  z-index: 99999;
}

@media (max-width: 768px) {
  .desktop-account-btn { display: none !important; }
}

.account-glass-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 12px;
  color: white;
  font-size: 14px;
  font-weight: 600;
  font-family: 'Poppins', sans-serif; font-weight: 700; font-weight: 700;
  transition: background 0.2s ease, transform 0.2s ease;
  cursor: pointer;
}

.account-glass-btn:hover {
  background: rgba(255,255,255,0.15);
  transform: translateY(-1px);
}

.acct-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.acct-dot.logged-in  { background: #3ecf6e; box-shadow: 0 0 6px rgba(62,207,110,0.8); }
.acct-dot.logged-out { background: #888; }

/* Hide hamburger on desktop, show on mobile */
@media (min-width: 769px) {
  .menuBtn { display: none !important; }
}

@media (max-width: 768px) {
  .menuBtn { display: block !important; }
  .desktop-account-btn { display: none !important; }
}