html, body{
  width: 100%;
  overflow-x: hidden; /* or: overflow-x: clip; */
  scroll-behavior: smooth;
}


body{
  margin: 0;
  position: relative; /* needed for layering */
  overflow-x: hidden;
  padding-top: 65px;


  background:

    /* bright blue glow (main hotspot) */
    radial-gradient(500px 780px at 110% 4%,
      rgba(0, 104, 231, 0.62),
      rgba(27, 120, 255, 0) 62%
    ),

    /* bright blue glow (main hotspot) */
    radial-gradient(100px 80px at 110% 10%,
      rgba(181, 214, 255, 0.62),
      rgba(27, 120, 255, 0) 62%
    ),


      
    /* bright blue glow (main hotspot) */
    /* radial-gradient(500px 580px at -10% 45%,
      rgba(231, 123, 0, 0.62),
      rgba(217, 255, 27, 0) 62%
    ), */

    /* bright blue glow (main hotspot) */
    radial-gradient(500px 780px at 0% 15%,
      rgba(0, 169, 231, 0.302),
      rgba(27, 120, 255, 0) 62%
    ),

    /* deep blue wash (adds depth behind the hotspot) */
    radial-gradient(500px 500px at 105% 30%,
      rgba(0, 143, 225, 0.45),
      rgba(10, 55, 170, 0) 70%
    ),


    /* deep blue wash (adds depth behind the hotspot) */
    radial-gradient(500px 500px at 3% 40%,
      rgba(7, 189, 255, 0.235),
      rgba(10, 55, 170, 0) 70%
    ),


    /* deep blue wash (adds depth behind the hotspot) */
    radial-gradient(500px 500px at 100% 60%,
      rgba(7, 189, 255, 0.235),
      rgba(10, 55, 170, 0) 70%
    ),

            /* deep blue wash (adds depth behind the hotspot) */
    radial-gradient(500px 500px at 0% 70%,
      rgba(7, 189, 255, 0.235),
      rgba(10, 55, 170, 0) 70%
    ),

        /* deep blue wash (adds depth behind the hotspot) */
    radial-gradient(500px 500px at 10% 90%,
      rgba(7, 189, 255, 0.235),
      rgba(10, 55, 170, 0) 70%
    ),

    /* black base */
    #000;
}

/* ✅ smaller screens: push that hotspot further right */
@media (max-width: 600px){
  body{
    background:
      radial-gradient(620px 320px at 150% 58%,
        rgba(255,255,255,0.16),
        rgba(255,255,255,0) 60%
      ),

      /* move it more off-screen to the right */
      radial-gradient(1100px 780px at 160% 3%,
        rgba(0, 119, 231, 0.62),
        rgba(27, 120, 255, 0) 62%
      ),

      /* move it more off-screen to the right */
      radial-gradient(300px 380px at -10% 60%,
        rgba(0, 108, 231, 0.402),
        rgba(27, 120, 255, 0) 62%
      ),

      /* move it more off-screen to the right */
      radial-gradient(300px 380px at 0% 40%,
        rgba(0, 108, 231, 0.402),
        rgba(27, 120, 255, 0) 62%
      ),

      /* move it more off-screen to the right */
      radial-gradient(700px 780px at 100% 60%,
        rgba(0, 108, 231, 0.709),
        rgba(27, 120, 255, 0) 62%
      ),


      #000;
  }
}



p,a,li,label, .poppins {
    font-family: "Poppins", sans-serif;
}


h1,h2,h3,h4,h5 {
  font-family: "Orbitron", sans-serif;
  font-weight: normal;
}


/* ===== GLOBAL VARS ===== */
:root{
  --nav-h: 56px;

  --text: rgba(255,255,255,0.92);
  --muted: rgba(255,255,255,0.68);

  --line: rgba(255,255,255,0.10);
  --line-strong: rgba(255,255,255,0.18);

  /* Button colors (from your Figma list) */
  --btn-primary: #0A84FF; /* <-- replace with your exact Figma “Primary” if different */
  --btn-white: #FFFFFF;
  --btn-tint:  #F6F5F8;

  /* Hero colors */
  --hero-accent: #18c9ff;
  --hero-text: rgba(255,255,255,0.92);
  --hero-muted: rgba(255,255,255,0.68);
}

*{ box-sizing:border-box; }
a{ color:inherit; text-decoration:none; }

/* ===== NAV ===== */
.site-header{
  padding: 34px 18px;
  display:flex;
  justify-content:center;

  position: fixed;
  width: 100%;
  top: 0;
  z-index: 99999;
}


.nav{
  width: min(1100px, 100%);
  height: var(--nav-h);
  padding: 35px 22px;
  display:flex;
  align-items:center;
  gap: 12px;

  /* glass */
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.279);
  border-radius: 999px;

  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);

  /* subtle separation */
  box-shadow:
    0 14px 30px rgba(0,0,0,0.45),
    0 1px 0 rgba(255,255,255,0.06) inset;

  position: relative;
  z-index: 9999;
}


/* Brand */
.brand{
  display:flex;
  flex-direction:column;
  line-height:1;
  padding: 4px 10px;
  border-radius: 12px;
  white-space:nowrap;
}

/* ✅ Responsive logo sizing */
.brand img{
  display:block;
  height: clamp(125px, 2.2vw, 200px); /* scales with screen */
  width: auto;                      /* keeps SVG proportions */
  max-width: 140px;                 /* prevents it from getting huge */
  object-fit: contain;
}

/* Links (desktop) */
.nav__links{
  margin-inline: auto;
  display:flex;
  align-items:center;
  gap: 18px;
  padding: 0 10px;
}

.nav__link{
  font-size: 15px;
  color: var(--muted);
  padding: 10px 6px;
  position: relative;
  transition: color 160ms ease, transform 160ms ease;
}
.nav__link:hover{
  color: var(--text);
  transform: translateY(-1px);
}


.nav__link.is-active{
  color: var(--text);
  font-weight: bold;
}
.nav__link.is-active::after{
  content:"";
  position:absolute;
  left: 10%;
  right: 10%;
  height: 2px;
  border-radius: 99px;
}




/* CTA button (right) */
.nav__cta{
  position: relative;
  overflow: hidden;

  display:inline-flex;
  align-items:center;
  gap: 8px;

  padding: 10px 14px;
  height: calc(var(--nav-h) - 16px);
  border-radius: 999px;

  color: var(--btn-white);
  font-size: 13px;
  white-space:nowrap;

  border: 1px solid rgba(255,255,255,0.20);
  box-shadow: 0 10px 18px rgba(0,0,0,0.20);
  transition: transform 180ms ease, filter 180ms ease;
}
.nav__cta::before{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(
    180deg,
    rgba(255,255,255,0.20) 0%,
    rgba(246,245,248,0.07) 55%,
    rgba(255,255,255,0.00) 100%
  );
  pointer-events:none;
}
.nav__cta:hover{
  transform: translateY(-1px);
  filter: brightness(1.03);
}
.nav__cta:active{
  transform: translateY(0px);
  filter: brightness(0.98);
}

.nav__cta-icon{
  width: 22px;
  height: 22px;
  border-radius: 999px;
  display:grid;
  place-items:center;

  background: rgba(255,255,255,0.20);
  border: 1px solid rgba(246,245,248,0.07);
}
.nav__cta-icon svg{
  width: 14px;
  height: 14px;
  color: var(--btn-white);
}

/* Toggle (mobile) */
.nav__toggle{
  display:none;
  margin-left:auto;
  width: 42px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  background: rgba(0,0,0,0.18);
  cursor:pointer;
}
.hamburger{
  width: 18px;
  height: 12px;
  display:grid;
  gap: 3px;
  margin: 0 auto;
}
.hamburger span{
  height: 2px;
  border-radius: 99px;
  background: rgba(255,255,255,0.85);
}

/* Focus styles */
.nav__link:focus-visible,
.nav__cta:focus-visible,
.nav__toggle:focus-visible,
.brand:focus-visible{
  outline: 2px solid rgba(255,255,255,0.75);
  outline-offset: 3px;
  border-radius: 999px;
}

/* Responsive nav */
@media (max-width: 820px){
  .nav__toggle{ display:inline-flex; align-items:center; justify-content:center; }

  .nav__links{
    position:absolute;
    left: 50%;
    top: calc(100% + 6px);
    width: calc(100% - 18px);

    transform: translateX(-50%) translateY(-10px);

    display:flex;
    flex-direction:column;
    gap: 10px;
    padding: 16px;

    border-radius: 26px;
    border: 1px solid rgba(255,255,255,0.10);
    background: rgb(12, 12, 16);
    backdrop-filter: blur(12px);

    box-shadow:
      0 18px 36px rgba(0,0,0,0.50),
      0 2px 0 rgba(255,255,255,0.04) inset;

    z-index: 50;

    max-height: 0;
    opacity: 0;
    overflow: hidden;
    pointer-events: none;

    transition:
      max-height 520ms cubic-bezier(.16, 1, .3, 1),
      opacity 340ms ease,
      transform 520ms cubic-bezier(.16, 1, .3, 1);
  }

  .nav__link{
    width: 100%;
    padding: 14px 14px;
    border-radius: 16px;

    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.06);

    transition: background 180ms ease, transform 180ms ease, color 180ms ease;
  }

  .nav__link:hover{
    background: rgba(255,255,255,0.07);
    transform: translateY(-1px);
    color: var(--text);
  }

  .nav__link.is-active::after{ display:none; }

  .nav.is-open .nav__links{
    max-height: 520px;
    opacity: 1;
    transform: translateX(-50%) translateY(0px);
    pointer-events: auto;
  }
}

@media (max-width: 420px){
  .site-header{ padding: 12px; }
  .nav{ padding: 10px; }
  .brand__name{ font-size: 15px; }
  .nav__cta{ padding: 10px 12px; }

  .nav__links{
    top: calc(100% + 4px);
    width: calc(100% - 14px);
    padding: 14px;
    border-radius: 24px;
  }
}

@media (prefers-reduced-motion: reduce){
  .nav__links{ transition: none; }
  .nav__link{ transition: none; }
  .nav__cta{ transition: none; }
}







/* ============================
=========== FAQ CSS ============
Tabs width = questions width
Smooth accordion animation
============================ */

.faq{
  padding: clamp(70px, 8vw, 110px) 18px;
  position: relative;
  overflow: hidden;
}

.faq__container{
  width: min(1200px, 100%);
  margin: 0 auto;
  text-align: center;
}

/* pill */
.faq__pill{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(24,201,255,0.35);
  color: rgba(255,255,255,0.92);
  font-size: 13px;
  background: transparent;
}

.faq__dot{
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #18C9FF;
  box-shadow: 0 0 14px rgba(24,201,255,0.35);
}

.faq__title{
  margin: 16px 0 10px;
  line-height: 1.05;
  letter-spacing: -0.02em;
  font-size: clamp(34px, 4.7vw, 56px);
  color: rgba(255,255,255,0.92);
}

.faq__title-accent{
  background: linear-gradient(90deg, #18C9FF 0%, #0B3CFF 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.faq__subtext{
  margin: 0 auto 28px;
  max-width: 900px;
  color: rgba(255,255,255,0.75);
  font-size: clamp(14px, 1.15vw, 18px);
  line-height: 1.7;
}

   faq__shell sets ONE shared width for tabs + questions */
.faq__shell{
  width: min(1100px, 100%);
  margin: 0 auto;
}

/* Tabs row (same width as questions because it's inside faq__shell) */
.faq__tabs{
  width: 100%;
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 18px 0 18px;
}

.faq__tab{
  appearance: none;
  border: 1px solid rgba(255,255,255,0.28);
  background: rgba(0,0,0,0.20);
  color: rgba(255,255,255,0.70);
  padding: 12px 18px;
  border-radius: 8px;
  cursor: pointer;
  font-size: clamp(15px, 8vh, 18px);
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.faq__tab:hover{
  transform: translateY(-1px);
  border-color: rgba(24,201,255,0.45);
}

.faq__tab.is-active{
  background: linear-gradient(180deg, rgba(24,201,255,0.25), rgba(11,60,255,0.25));
  border-color: rgba(24,201,255,0.55);
  color: rgba(255,255,255,0.95);
  box-shadow:
    0 0 22px rgba(24,201,255,0.18),
    0 0 60px rgba(11,60,255,0.12);
}

/* Panels */
.faq__panels{
  width: 100%;
}

.faq__panel{
  width: 100%;
}

.faq__list{
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 18px;
}

/* Question card */
.faq__item{
  position: relative;
  border-radius: 18px;
  background: #05070c;
  border: 1px solid rgba(0, 76, 228, 0.55);
  overflow: hidden;
  box-shadow:
    0 0 22px rgba(24,201,255,0.18),
    0 0 60px rgba(11,60,255,0.12),
    0 24px 60px rgba(0,0,0,0.55);
}

.faq__item::after{
  content:"";
  position:absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events:none;
  box-shadow:
    inset 0 0 0 1px rgba(24,201,255,0.18),
    inset 0 0 28px rgba(24,201,255,0.10),
    inset 0 0 70px rgba(11,60,255,0.10);
}

/* Question button */
.faq__question{
  width: 100%;
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 22px;
  background: transparent;
  border: 0;
  cursor: pointer;
  text-align: left;
  color: rgba(255,255,255,0.95);
  font-size: clamp(18px, 1.25vw, 22px);
}

/* Plus/Minus icon built with CSS */
.faq__icon{
  width: 26px;
  height: 26px;
  position: relative;
  flex: 0 0 auto;
}

.faq__icon::before,
.faq__icon::after{
  content:"";
  position:absolute;
  left: 50%;
  top: 50%;
  width: 22px;
  height: 3px;
  background: rgba(24,201,255,0.95);
  border-radius: 999px;
  transform: translate(-50%, -50%);
  transition: transform 260ms ease, opacity 260ms ease;
}

/* vertical bar (turns off when open) */
.faq__icon::after{
  transform: translate(-50%, -50%) rotate(90deg);
}

/* Answer wrapper (smooth open/close) */
.faq__answer{
  max-height: 0;
  overflow: hidden;
  padding: 0 22px;
  opacity: 0;
  transform: translateY(-6px);
  transition: max-height 380ms ease, opacity 280ms ease, transform 280ms ease, padding 280ms ease;
}

.faq__answer p{
  margin: 0;
  padding: 0 0 22px;
  color: rgba(255,255,255,0.70);
  line-height: 1.65;
  text-align: left;
  font-size: clamp(16px, 8vh, 18px);
}

/* OPEN STATE */
.faq__item.is-open .faq__answer{
  opacity: 1;
  transform: translateY(0);
  padding: 0 22px;
}

.faq__item.is-open .faq__icon::after{
  opacity: 0; /* hide vertical bar = minus */
}

/* Mobile */
@media (max-width: 600px){
  .faq__tabs{
    justify-content: center;
  }
  .faq__tab{
    width: 100%;
    max-width: 520px;
    text-align: center;
  }
}

/* ============================
=========== FAQ CSS ============
Tabs (super smooth) + Smooth Accordion
============================ */

/* ---- PANELS: no display none; use visibility for smoothness ---- */
.faq__panel {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 360ms ease, transform 360ms ease;
  will-change: opacity, transform;

  visibility: hidden;
  pointer-events: none;
  height: 0;
  overflow: hidden;
}

/* active panel */
.faq__panel.is-active {
  opacity: 1;
  transform: translateY(0);

  visibility: visible;
  pointer-events: auto;
  height: auto;
  overflow: visible;
}

/* optional: slightly reduce blur artifacts during anim */
.faq__panel,
.faq__panel * {
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

/* ---- ACCORDION smooth drop ---- */
.faq__answer {
  max-height: 0px;
  overflow: hidden;
  transition: max-height 360ms ease;
}

.faq__answer-inner {
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity 240ms ease, transform 240ms ease;
}

.faq__item.is-open .faq__answer-inner {
  opacity: 1;
  transform: translateY(0);
}

/* ---- Plus/Minus icon animation (optional) ---- */
.faq__icon {
  transition: transform 240ms ease, opacity 240ms ease;
  transform-origin: center;
}

.faq__item.is-open .faq__icon {
  transform: rotate(180deg);
}



/* =============================== */
/* ===== CTA CARD SECTION ========= */
/* =============================== */

.cta{
  padding: clamp(60px, 7vw, 110px) 18px;
  background: transparent;
}

.cta__container{
  width: min(1200px, 100%);
  margin: 0 auto;
}

.cta__card{
  position: relative;
  padding: 2rem;
  width: 100%;
  border-radius: clamp(26px, 3vw, 46px);
  text-align: center;

  background:
    /* bottom light-blue glow */
    radial-gradient(900px 700px at 50% 105%,
      rgba(120, 235, 255, 0.70) 0%,
      rgba(120, 235, 255, 0.25) 35%,
      rgba(120, 235, 255, 0.00) 70%
    ),

    /* your existing fills */
    linear-gradient(90deg,
      rgba(24,201,255,0.22) 0%,
      rgba(24,201,255,0.10) 45%,
      rgba(24,201,255,0.22) 100%
    ),
    linear-gradient(180deg,
      #0051ff 10%,
      #0042dd 30%,
      #0A2E93 68%,
      #119ea8 140%
    );

  border: 1px solid rgba(24,201,255,0.55);
  box-shadow:
    0 0 0 1px rgba(24,201,255,0.12) inset,
    0 28px 70px rgba(0,0,0,0.55),
    0 0 55px rgba(24,201,255,0.18);
}


/* CORNER VECTORS */
.cta__card::before{
  content:"";
  position:absolute;
  inset: 0;
  pointer-events:none;
  z-index: 0;

  /* CHANGE THIS PATH ONLY if needed */
  background-image:
    url("../images/vectors/code-symbol.svg"),
    url("../images/vectors/code-symbol.svg");

  background-repeat: no-repeat, no-repeat;

  /* keep them INSIDE the card so you can actually see them */
  background-position:
    right -30px top -30px,
    left -40px bottom -40px;

  /* FIXED clamp order (min < max) + smaller sizes */
  background-size:
    clamp(120px, 16vw, 190px),
    clamp(170px, 22vw, 100px);

  opacity: 0.62;              /* subtle like your screenshot */
  mix-blend-mode: screen;     /* brightens over blue */
}

/* subtle edge depth like your screenshot */
.cta__card::after{
  content:"";
  position:absolute;
  inset: 0;
  pointer-events:none;
  z-index: 0;

  background:
    radial-gradient(1200px 500px at 50% 120%, rgba(0,0,0,0.35), transparent 60%),
    radial-gradient(1200px 500px at 50% -20%, rgba(0,0,0,0.25), transparent 60%);
  opacity: 0.55;
  
}

/* keep content above overlays */
.cta__card > *{
  position: relative;
  z-index: 1;
}

.cta__title{
  margin: 0 0 18px;
  letter-spacing: -0.02em;
  line-height: 1.08;
  font-size: clamp(30px, 4.8vw, 64px);
  color: rgba(255,255,255,0.95);
}

.cta__subtext{
  margin: 0 auto 28px;
  max-width: 820px;
  line-height: 1.7;
  font-size: clamp(14px, 1.25vw, 18px);
  color: rgba(255,255,255,0.82);
}

.cta__btn{
  display: inline-flex;
  align-items: center;
  gap: 10px;

  padding: 12px 18px;
  border-radius: 999px;

  background: rgba(255,255,255,0.95);
  color: rgba(0, 86, 210, 0.95);
  font-size: 13px;
  text-decoration: none;

  border: 1px solid rgba(255,255,255,0.60);
  box-shadow: 0 14px 30px rgba(0,0,0,0.35);

  transition: transform 180ms ease, filter 180ms ease;
}

.cta__btn:hover{
  transform: translateY(-1px);
  filter: brightness(1.02);
}

.cta__btn:active{
  transform: translateY(0px);
  filter: brightness(0.98);
}

.cta__btn-icon{
  width: 24px;
  height: 24px;
  border-radius: 999px;
  display: grid;
  place-items: center;

  background: linear-gradient(180deg, rgba(24,201,255,0.95), rgba(11,60,255,0.95));
  color: #fff;

  box-shadow:
    0 10px 18px rgba(0,0,0,0.22),
    0 0 0 1px rgba(255,255,255,0.18) inset;

  font-size: 12px;
}

@media (max-width: 600px){
  .cta__subtext br{ display: none; }

  .cta__card::before{
    /* keep visible on mobile too */
    background-position:
      right -40px top -40px,
      left -55px bottom -55px;

    background-size:
      clamp(110px, 26vw, 170px),
      clamp(140px, 34vw, 210px);

    opacity: 0.65;
  }
}



/* ===================== */
/* ====== FOOTER ======= */
/* ===================== */
.footer{
  padding: clamp(56px, 6vw, 90px) 18px 26px;
  background: transparent; /* uses your global body background */
}

.footer__container{
  width: min(1200px, 100%);
  margin: 0 auto;
  position: relative;
}

/* TOP ROW */
.footer__top{
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(26px, 5vw, 70px);
  align-items: start;
  margin-bottom: clamp(40px, 6vw, 70px);
}

.footer__brand{
  max-width: 420px;
}

.footer__logo{
  display: inline-flex;
  flex-direction: column;
  line-height: 1;
  text-decoration: none;
}

.footer__logo img {
  width: clamp(22rem, 14vh, 12rem);  
  height: auto;                    /* keeps SVG proportions */
  max-width: 140px;  
  object-fit: contain;
 
}


.footer__logo-name{
  font-family: "Orbitron", sans-serif;
  font-size: 22px;
  color: rgba(255,255,255,0.92);
  letter-spacing: 0.2px;
}

.footer__logo-tag{
  margin-top: 6px;
  font-family: "Poppins", sans-serif;
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
}

.footer__blurb{
  margin: 18px 0 18px;
  color: rgba(255,255,255,0.72);
  line-height: 1.65;
  font-size: 14px;
  max-width: 360px;
}

/* Socials */
.footer__social{
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.footer__social-btn{
  width: 44px;
  height: 44px;
  border-radius: 999px;
  display: grid;
  place-items: center;

  color: rgba(255,255,255,0.86);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);

  box-shadow: 0 16px 28px rgba(0,0,0,0.35);
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.footer__social-btn svg{
  width: 18px;
  height: 18px;
}

.footer__social-btn:hover{
  transform: translateY(-2px);
  background: rgba(255,255,255,0.09);
  border-color: rgba(24,201,255,0.35);
}

.footer__social-btn:focus-visible{
  outline: 2px solid rgba(255,255,255,0.75);
  outline-offset: 3px;
}

/* Right columns */
.footer__cols{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(22px, 3vw, 60px);
  justify-content: end;
}

.footer__heading{
  margin: 0 0 16px;
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  color: rgba(255,255,255,0.92);
}

.footer__col{
  display: grid;
  gap: 10px;
  align-content: start;
}

.footer__link{
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  color: rgba(255,255,255,0.68);
  text-decoration: none;
  transition: color 160ms ease, transform 160ms ease;
}

.footer__link:hover{
  color: rgba(255,255,255,0.90);
  transform: translateX(2px);
}

.footer__link:focus-visible{
  outline: 2px solid rgba(24,201,255,0.65);
  outline-offset: 4px;
  border-radius: 8px;
}

/* GIANT WORD + BUBBLE */
.footer__hero{
  position: relative;
  display: grid;
  place-items: center;
  padding: clamp(30px, 4vw, 46px) 0;
}

.footer__giant{
  font-family: "Orbitron", sans-serif;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 0.92;
  text-align: center;

  /* huge but still responsive */
  font-size: clamp(24px, 10vw, 62px);
  color: rgba(255,255,255,0.92);
  white-space: nowrap;
}

.footer__bubble{
  position: absolute;
  inset: auto;
  display: grid;
  place-items: center;

  width: clamp(150px, 18vw, 230px);
  height: clamp(150px, 18vw, 230px);
  border-radius: 999px;
  text-decoration: none;

  background: linear-gradient(90deg, rgba(24,201,255,0.95), rgba(11,60,255,0.95));
  box-shadow:
    0 30px 70px rgba(0,0,0,0.55),
    0 0 70px rgba(24,201,255,0.22);

  border: 1px solid rgba(255,255,255,0.22);
  transform: translateY(-50px);
  transition: transform 180ms ease, filter 180ms ease;
}

.footer__bubble span{
  font-family: "Orbitron", sans-serif;
  letter-spacing: 0.02em;
  color: rgba(255,255,255,0.95);
  font-size: clamp(14px, 1.55vw, 20px);
}

.footer__bubble:hover{
  transform: translateY(-10px) scale(1.01);
  filter: brightness(1.03);
}

.footer__bubble:active{
  transform: translateY(-6px) scale(0.99);
}

/* Bottom */
.footer__bottom{
  margin-top: clamp(26px, 3vw, 40px);
  text-align: center;
  color: rgba(255,255,255,0.75);
  font-size: 14px;
}

/* ===================== */
/* ===== Responsive ===== */
/* ===================== */
@media (max-width: 800px){
  .footer__top{
    grid-template-columns: 2fr;
  }

  .footer__brand{
    max-width: 520px;
  }

  .footer__cols{
    justify-content: start;
  }

  .footer__giant{
    white-space: normal; /* allow wrap on smaller screens */
    line-height: 0.98;
  }

  .footer__bubble{
    position: static;
    margin-top: 18px;
    transform: none;
  }
}

@media (max-width: 520px){
  .footer__cols{
    gap: 26px;
  }

  .footer__hero{
    padding: 26px 0 10px;
  }
}


/* FOOTER ICONS */

.footer__link .phone,.email, .location{
  width: 20px;
  height: 20px;
  /* padding-right: 5px; */
  filter: brightness(0) invert(1);
}

.footer__link{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  line-height: 1;
}

.footer__link .phone, .email, .location{
  display: block;
  height: 1em;
  width: auto;
  flex: 0 0 auto;

  filter: brightness(0) invert(1);
}



/* ============================= */
/* HERO STAR FIELD */
/* ============================= */

.faq {
  position: relative;
  overflow: hidden;
}

/* star layer behind content */
.star-field {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

/* make sure hero content sits above stars */
.faq > *:not(.star-field) {
  position: relative;
  z-index: 1;
}

/* individual stars */
.star {
  position: absolute;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #ffffff;

  box-shadow:
    0 0 6px rgba(255, 255, 255, 0.8),
    0 0 12px rgba(190, 220, 255, 0.7),
    0 0 22px rgba(170, 200, 255, 0.6);

  opacity: 0.25;
  animation: starFlicker 4s ease-in-out infinite;
}

@keyframes starFlicker {
  0%, 100% {
    opacity: 0.15;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.25);
  }
}

/* star positions */
.star-field .star:nth-child(1)  { top: 10%; left: 15%; animation-delay: 0.2s; }
.star-field .star:nth-child(2)  { top: 18%; left: 60%; animation-delay: 1.1s; }
.star-field .star:nth-child(3)  { top: 25%; left: 35%; animation-delay: 2.4s; }
.star-field .star:nth-child(4)  { top: 30%; left: 80%; animation-delay: 0.7s; }
.star-field .star:nth-child(5)  { top: 38%; left: 20%; animation-delay: 3.2s; }

.star-field .star:nth-child(6)  { top: 45%; left: 50%; animation-delay: 1.8s; }
.star-field .star:nth-child(7)  { top: 52%; left: 72%; animation-delay: 0.4s; }
.star-field .star:nth-child(8)  { top: 58%; left: 28%; animation-delay: 2.7s; }
.star-field .star:nth-child(9)  { top: 65%; left: 10%; animation-delay: 1.3s; }
.star-field .star:nth-child(10) { top: 68%; left: 90%; animation-delay: 3.6s; }

.star-field .star:nth-child(11) { top: 75%; left: 42%; animation-delay: 0.9s; }
.star-field .star:nth-child(12) { top: 82%; left: 65%; animation-delay: 2.1s; }
.star-field .star:nth-child(13) { top: 85%; left: 18%; animation-delay: 3.9s; }
.star-field .star:nth-child(14) { top: 88%; left: 78%; animation-delay: 1.6s; }
.star-field .star:nth-child(15) { top: 92%; left: 33%; animation-delay: 0.3s; }

.star-field .star:nth-child(16) { top: 12%; left: 90%; animation-delay: 2.9s; }
.star-field .star:nth-child(17) { top: 22%; left: 5%;  animation-delay: 1.5s; }
.star-field .star:nth-child(18) { top: 40%; left: 95%; animation-delay: 3.1s; }
.star-field .star:nth-child(19) { top: 55%; left: 5%;  animation-delay: 0.6s; }
.star-field .star:nth-child(20) { top: 70%; left: 85%; animation-delay: 2.0s; }


/* ============================= */
/* SHOOTING STARS */
/* keep these if you already use them */
/* ============================= */

.shooting-star {
  position: absolute;
  width: 140px;
  height: 2px;
  border-radius: 999px;
  opacity: 0;
  background: linear-gradient(90deg, rgba(255,255,255,0), rgba(255,255,255,1), rgba(255,255,255,0));
  filter: blur(0.2px);
  transform: rotate(-20deg);
  animation: shoot 5s linear infinite;
}

.shooting-star-1 {
  top: 20%;
  left: -30%;
  animation-delay: 14s;
}

.shooting-star-2 {
  top: 55%;
  left: -40%;
  animation-delay: 10s;
}

@keyframes shoot {
  0% {
    transform: translateX(0) translateY(0) rotate(-20deg);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  35% {
    opacity: 1;
  }
  60% {
    transform: translateX(140vw) translateY(35vh) rotate(-20deg);
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}




/* POP IN ON SCROLL (safe: nothing hides unless JS adds body.reveal) */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Base state: hidden until it enters view */
.fade-on-load{
  opacity: 0;
}

/* Animate only when JS adds .in-view */
.fade-on-load.in-view{
  animation: fadeIn .5s ease-in-out forwards;
}

/* Optional: fade + slide up looks nicer */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

/* If you want the slide effect instead, swap fadeIn for fadeUp below */
.fade-on-load.in-view{
  animation: fadeUp .6s ease-in-out forwards;
}

@media (prefers-reduced-motion: reduce){
  .fade-on-load{
    opacity: 1;
    transform: none;
    animation: none;
  }
}
