        @import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Google+Sans:ital,opsz,wght@0,17..18,400..700;1,17..18,400..700&family=Manrope:wght@200..800&display=swap');
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            background-color: #0b0b0b;
            color: #fff;
            font-family: "Manrope", sans-serif;
            overflow-x: hidden;
        }

        /* --- SECTION 1: PARTICLE CANVAS CONTAINER LAYOUT --- */
        .hero-sticky-wrapper {
            position: relative;
            width: 100%;
            background-color: #0b0b0b;
            z-index: 2; /* Keeps particle section clearly separated */
        }

        #canvas-container {
            position: fixed;
            top: 0;
            left: 0;
            width: 100vw;
            height: 100vh;
            z-index: 1; 
            pointer-events: none;
        }

        .section {
            position: relative;
            height: 100vh;
            width: 100vw;
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding-left: 10%;
            z-index: 2; 
            pointer-events: auto;
        }

        .flex-center {
            padding-left: 0 !important;
            align-items: center !important;
            justify-content: center !important;
        }

        .content {
            max-width: 500px;
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.6s ease-out;
        }

        .text-center { text-align: left; max-width: 650px; }
        .text-right { align-self: flex-end; padding-right: 10%; padding-left: 0; }

        .section.visible .content {
            opacity: 1;
            transform: translateY(0);
        }

        h1 {
            font-size: 4.5rem;
            font-weight: 500;
            letter-spacing: -0.02em;
            margin-bottom: 1rem;
            /* text-transform: uppercase; */
            /* background: linear-gradient(45deg, #ffffff, #a3a3a3);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent; */
        }

        p {
            font-size: 1.15rem;
            line-height: 1.6;
            color: #ffffff;
        }

        /*nav overlay*/
        button#close-btn {
    position: absolute;
    top: 30px;
    right: 0px;
    cursor: pointer;
    width: 100px;
    font-size: 30px;
    border: none;
    background: transparent;
    color: red;
    z-index: 1000;
}

        .overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #e9e9e9f9;
  z-index: 1000;
  padding: 20px;
  /* Hidden State */
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  
  /* Smoothness */
  transition: opacity 0.4s ease, visibility 0.4s ease;
  
  display: flex;
  align-items: center;
  justify-content: center;
}

/* The "Open" State */
.overlay.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* Optional: Add a slight slide-up to the content when opening */
.overlay-content {
  transform: translateY(20px);
  transition: transform 0.4s ease;
}

.overlay.is-open .overlay-content {
  transform: translateY(0);
}

.nav-item {
  cursor: pointer;
  margin: 10px 0;
  list-style: none;
}
/* Text Gradient CSS */
h1 {
  color: #fff;
  background-image: radial-gradient(
    circle at 50% 50%,
    #fff 50%,
    #5e5e5e 100%
  );
  background-clip: text;
  -webkit-background-clip: text;
  line-height: 100%;
    padding-bottom: 12px;
  -webkit-text-fill-color: transparent;
}



/* From Uiverse.io by niat786 */ 
.button-text {
  --green: #1BFD9C;
  font-size: 15px;
  padding: 0.3em 0.7em;
  letter-spacing: -0.5px;
  position: relative;
  font-family: monospace;
  border-radius: 0.6em;
  overflow: hidden;
  transition: all 0.3s;
  line-height: 1.4em;
  border: 2px solid var(--green);
  background: linear-gradient(to right, rgba(27, 253, 156, 0.1) 1%, transparent 40%,transparent 60% , rgba(27, 253, 156, 0.1) 100%);
  color: var(--green);
  box-shadow: inset 0 0 10px rgba(27, 253, 156, 0.4), 0 0 9px 3px rgba(27, 253, 156, 0.1);
  margin-top: 15px;
}

img.device-img.tablet {
    width: 80%;
}










/*-----Footer*/

.minimal-footer {
  position: relative;
  overflow: hidden;
  border-radius: 78px;
  background: #0e1d17;
}

.minimal-footer {
    position: relative;
    overflow: hidden;
    border-radius: 78px;
    background: #0b0b0b;
    border: solid 25px #0b0b0b;
    padding: 40px 50px;
    margin-bottom: 40px;
}

.minimal-footer::before {
    content: "";
    position: absolute;
    inset: 0;

    background:
        radial-gradient(
            ellipse 99% 150% at 50% 113%,
            #0b0b0b 58%,
            #0e1d17 66%,
            #118a59 74%,
            #1BFD9C 100%
        );

    pointer-events: none;
}

.minimal-footer::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;

    background:
        linear-gradient(
            to bottom,
            rgba(255,255,255,0.08) 0%,
            rgba(255,255,255,0.03) 10%,
            transparent 25%
        );
}


.footer-top{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap:120px;
  min-height:420px;
  border-radius: 78px;
}

.footer-brand{
  font-size:58px;
  letter-spacing:-0.06em;
  line-height:0.9;
}

.footer-links{
  display:flex;
  gap:160px;
  z-index: 10;
}

.footer-column{
  display:flex;
  flex-direction:column;
}

.footer-label{
  font-size:14px;
  text-transform:uppercase;
  letter-spacing:0.14em;
  color:rgba(255,255,255,0.45);
  margin-bottom:28px;
  font-family:monospace;
}

.footer-column a{
  color:#fff;
  text-decoration:none;
  font-size:18px;
  line-height:1.9;
  transition:0.3s ease;
}

.footer-column a:hover{
  opacity:0.5;
}

.footer-bottom{
  display:flex;
  justify-content:space-between;
  align-items:flex-end;
  gap:60px;
  position: relative;
    z-index: 10;
}

.footer-copy{
  font-size:15px;
  color:rgba(255,255,255,0.4);
  font-family:monospace;
}

.footer-times{
  display:flex;
  gap:120px;
}

.time-block{
  display:flex;
  flex-direction:column;
}

.time-block span{
  font-size:16px;
  margin-bottom:8px;
  font-family:monospace;
}

.time-block div{
  font-size:15px;
  color:rgba(255,255,255,0.45);
  font-family:monospace;
}

/* -----------------------
   MOBILE
----------------------- */

@media(max-width:900px){
  .text-center {
    padding: 20px;
}
  .section {
    padding: 20px;
}

  .minimal-footer{
    padding:30px 24px 34px;
    border: solid 15px #0b0b0b;

  }

  .footer-top{
    flex-direction:column;
    min-height:auto;
    gap:70px;
  }

  .footer-brand{
    font-size:42px;
  }

  .footer-links{
    flex-direction:column;
    gap:70px;
  }

  .footer-bottom{
    margin-top:90px;
    flex-direction:column-reverse;
    align-items:flex-start;
    gap:60px;
    position: relative;
    z-index: 10;
  }

  .footer-times{
    flex-direction:column;
    gap:46px;
  }

}


.footer-brand {
    position: relative;
    height: 250px;
    min-width: 400px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-text{
  left:0;
  top:0;

  opacity:0;
  transform:translateY(20px);
  letter-spacing: normal;
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}

.footer-text.active{
  opacity:1;
  transform:translateY(0px);
}


.availability-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
  letter-spacing: normal;
    padding: 10px 18px;
    border-radius: 999px;
    max-width: fit-content;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);

    font-size: 14px;
    font-weight: 500;
    color: #fff;

    backdrop-filter: blur(10px);
}

.availability-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;

    background: #000;

    animation: pulse 2s infinite ease-in-out;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
        box-shadow: 0 0 0 0 rgba(0,0,0,0.4);
    }

    70% {
        transform: scale(1.1);
        opacity: 0.8;
        box-shadow: 0 0 0 10px rgba(0,0,0,0);
    }

    100% {
        transform: scale(1);
        opacity: 1;
        box-shadow: 0 0 0 0 rgba(0,0,0,0);
    }
}



/*---Footer----*/

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.4s ease, visibility 0.4s ease;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    backdrop-filter: blur(20px);
    background-color: rgb(80 80 80 / 20%);
    margin: auto;
    border: 30px solid #000;
}


.overlay-content a {
    text-decoration: none;
    font-size:clamp(14px,7vw,50px);
    color: white;
    font-weight: 300;
}

.overlay-content h2{
  color: white;
}
button#close-btn {
    position: absolute;
    top: 30px;
    right: 25px;
    cursor: pointer;
    width: 100px;
    font-size: 20px;
    border: none;
    background: transparent;
    color: #1bfd9c;
    z-index: 1000;
}
h2.title-text.active.mb-20 a {
  font-weight: 700;
}
.nav-flex {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}
a.ext-link {
    color: #f9afff;
    text-decoration: none;
    margin-right: 20px;
}

        .panel h1 {
    color: #fff;
    /* background-image: radial-gradient(circle at 50% 50%, #fff 50%, #5e5e5e 100%); */
    background-clip: none;
    -webkit-background-clip: none !important;
    /* line-height: 100%; */
    /* padding-bottom: 12px; */
    -webkit-text-fill-color: white !important;
}