* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #010205;
  color: #f7f7f9;
  font-family: Inter, Arial, sans-serif;
  overflow-x: hidden;
}

.ambient {
  position: fixed;
  pointer-events: none;
  filter: blur(80px);
  border-radius: 50%;
  opacity: 0.18;
  mix-blend-mode: screen;
  z-index: 0;
  animation: drift 13s ease-in-out infinite alternate;
}

.ambient-a {
  width: 750px;
  height: 750px;
  left: -300px;
  top: -150px;
  background: #0c0927;
}

.ambient-b {
  width: 750px;
  height: 750px;
  right: -230px;
  top: -150px;
  background: #0b0c44;
  animation-delay: -4s;
}

.ambient-c {
  width: 700px;
  height: 650px;
  left: 30%;
  top: -100px;
  background: #5a1010;
  opacity: 0.09;
  animation-delay: -7s;
}



.vignette {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(
    ellipse at center,
    transparent 18%,
    rgba(0, 0, 0, 0.25) 62%,
    rgba(0, 0, 0, 0.72) 100%
  );
  z-index: 2;
}

/* =========================================================
   UXENTO NAVBAR
   ========================================================= */

/* =========================================================
   NAVBAR
   ========================================================= */

/* =========================================================
   UXENTO NAVBAR
   ========================================================= */

/* =========================================================
   NAVBAR — STAYS COMPLETELY STILL
   ========================================================= */

.nav {
    position: fixed !important;

    top: 25px !important;
    left: 50% !important;

    width: min(960px, calc(100% - 64px)) !important;
    height: 54px !important;

    padding: 0 16px !important;

    display: grid !important;
    grid-template-columns: 1fr auto 1fr !important;
    align-items: center !important;

    transform: translateX(-50%) !important;

    z-index: 99999 !important;

    /* ONLY animate the background */
    transition:
        background 0.45s ease,
        border-color 0.45s ease,
        box-shadow 0.45s ease,
        backdrop-filter 0.45s ease !important;

    /* NO background before scrolling */
    background: transparent !important;

    border: 1px solid transparent !important;

    box-shadow: none !important;

    backdrop-filter: blur(0px) !important;
    -webkit-backdrop-filter: blur(0px) !important;
}


/* =========================================================
   SCROLLED — ONLY THE BACKGROUND APPEARS
   ========================================================= */

.nav.scrolled {
    /* KEEP EXACTLY THE SAME POSITION */
    top: 25px !important;
    transform: translateX(-50%) !important;

    /* GREY/GLASS BACKGROUND FADES IN */
    background: rgba(7, 8, 14, 0.74) !important;

    border: 1px solid rgba(255, 255, 255, 0.10) !important;

    border-radius: 17px !important;

    backdrop-filter: blur(18px) !important;
    -webkit-backdrop-filter: blur(18px) !important;

    box-shadow:
        0 18px 60px rgba(0, 0, 0, 0.28) !important;
}

/* =========================
   HERO
========================= */

.hero {
  position: relative;
  z-index: 3;

  min-height: 0vh;
  width: min(1100px, calc(100% - 40px));

  margin: auto;
  padding-top: 185px;

  text-align: center;
}

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

  padding: 6px 12px 6px 7px;

  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.035);

  border-radius: 999px;

  color: #423333;
  font-size: 12px;

  animation: fadeUp 0.8s 0.05s both;
}

.warning {
  width: 22px;
  height: 22px;

  border-radius: 50%;

  display: grid;
  place-items: center;

  background: rgba(255, 190, 40, 0.1);

  font-size: 11px;
}

h1 {
  margin: 22px 0 19px;

  font-size: 72px;
  line-height: 1.03;

  letter-spacing: -3.6px;
  font-weight: 800;

  animation: heroIn 0.9s 0.12s both;
}

h1 .blue {
  display: block;

  color: #3c405f;

  text-shadow: 0 0 36px rgba(86, 104, 255, 0.08);
}

#verb {
  display: inline-block;

  min-width: 150px;

  text-align: right;

  transition:
    transform 0.45s,
    opacity 0.45s;
}

.verb-out {
  opacity: 0;
  transform: translateY(-10px);
}

.subtitle {
  color: #989ba7;

  font-size: 17px;
  line-height: 1.55;

  margin: 0;

  letter-spacing: -0.25px;

  animation: fadeUp 0.8s 0.23s both;
}

/* =========================
   BUTTONS
========================= */

.actions {
  display: flex;
  justify-content: center;

  gap: 11px;

  margin-top: 34px;

  animation: fadeUp 0.8s 0.32s both;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;

  padding: 12px 17px;

  min-height: 45px;

  border-radius: 999px;

  font-size: 13px;
  font-weight: 600;

  transition: 0.3s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.btn b {
  font-size: 17px;
  font-weight: 500;
}

.primary {
  background: #5667ff;

  box-shadow:

    inset 0 1px rgba(3, 2, 2, 0.28);
}

.primary:hover {
  transform: translateY(-3px) scale(1.015);

  

}

.secondary {
  color: #9699a5;

  background: rgba(255, 255, 255, 0.055);

  border: 1px solid rgba(255, 255, 255, 0.1);
}

.secondary:hover {
  color: #fff;

  background: rgba(255, 255, 255, 0.09);

  transform: translateY(-3px);
}

/* =========================
   ACHIEVEMENT
========================= */

.achievement {
  display: inline-flex;

  margin-top: 100px;
  

  padding: 8px 30px;

  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;

  color: #9497a4;

  background: rgba(255, 255, 255, 0.02);

  font-size: 12px;

  animation: fadeUp 0.8s 0.42s both;
}

.achievement > span:first-child {
  color: #f4c52d;
}

.achievement-text {
  color: #a2a5b3;
}

/* =========================
   STATS
========================= */

.stats {
  width: min(1000px, 100%);

  margin: 20px auto 0;

  display: grid;
  grid-template-columns: repeat(4, 1fr);

  animation: fadeUp 0.8s 0.5s both;
}

.stat {
  position: relative;

  min-height: 68px;

  display: flex;
  flex-direction: column;

  justify-content: center;
  align-items: center;

  gap: 5px;
}

.stat:not(:last-child)::after {
  content: "";

  position: absolute;

  right: 0;

  height: 53px;
  width: 1px;

  background: rgba(255, 255, 255, 0.07);
}

small {
  font-size: 12px;
  color: #8f929e;
}

.stat strong {
  font-size: 27px;
  letter-spacing: -1px;
}

.chains {
  display: flex;
  gap: 12px;

  align-items: center;

  height: 28px;
}

.chains i {
  width: 24px;
  height: 24px;

  display: block;
}

.sol {
  border-radius: 50%;

  background: linear-gradient(
    150deg,
    #45efc5,
    #984aff
  );
}

.bnb {
  display: grid !important;
  place-items: center;

  border-radius: 6px;

  background: #f3bb1f;

  color: #161205;

  font-size: 11px;
  font-style: normal;
}

.base {
  border-radius: 50%;

  background: linear-gradient(
    145deg,
    #fff,
    #6284ff
  );
}

.eth {
  clip-path: polygon(
    50% 0,
    86% 28%,
    74% 83%,
    50% 100%,
    26% 83%,
    14% 28%
  );

  background: linear-gradient(
    145deg,
    #d9dce6,
    #69728c
  );
}

.poly {
  clip-path: polygon(
    20% 13%,
    75% 0,
    100% 28%,
    75% 41%,
    50% 30%,
    27% 41%,
    0 28%
  );

  background: #7255ff;
}

/* =========================
   BOTTOM
========================= */

.bottom {
  display: flex;

  justify-content: center;
  gap: 9px;

  align-items: center;

  margin-top: 40px;

  animation: fadeUp 0.8s 0.58s both;
}

.vision {
  font-size: 12px;
  color: #566cff;

  padding: 7px 13px;

  border: 1px solid rgba(255, 255, 255, 0.09);

  border-radius: 999px;

  background: rgba(255, 255, 255, 0.02);
}

.help {
  width: 25px;
  height: 25px;

  border-radius: 50%;

  border: 1px solid rgba(255, 255, 255, 0.1);

  background: rgba(255, 255, 255, 0.035);

  color: #858996;
}

/* =========================
   VISION SECTION HEADER
   ========================= */



#vision .section-head .eyebrow {
    display: inline-block;
    margin-bottom: 8px;
}

#vision .section-head h2 {
    margin: 0;
    font-size: 52px;
    line-height: 1.1;
}

#vision .section-head p {
    max-width: 700px;
    margin: 22px auto 0;
    text-align: center;
    line-height: 1.6;
    color: #8b8d98;
}

/* =========================
   CONTENT
========================= */

.cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 45px;
}


/* =========================
   BASE CARD
========================= */
/* =========================
   CARDS SECTION
========================= */

.cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  width: 100%;
  max-width: 1700px;
  margin: 50px auto 0;
}

/* =========================
   INDIVIDUAL CARD
========================= */

/* =========================
   CARDS CONTAINER
========================= */

.cards {
  position: relative;
  z-index: 0;
}


/* =========================
   INDIVIDUAL CARD
========================= */

.cards article {
  position: relative;
  z-index: 1;

  min-height: 300px;
  overflow: hidden;

  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 18px;

  padding: 50px;

  background-color: #05060b;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  display: flex;
  flex-direction: column;
  justify-content: flex-end;

  isolation: isolate;

  transition:
    transform 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease;
}


/* =========================
   IMAGE DARKNESS
========================= */

.cards article::before {
  content: "";

  position: absolute;
  inset: 0;

  z-index: 0;

  border-radius: inherit;

  background:
    linear-gradient(
      to top,
      rgba(3, 4, 10, 0.98) 0%,
      rgba(3, 4, 10, 0.72) 35%,
      rgba(3, 4, 10, 0.20) 75%,
      rgba(3, 4, 10, 0.05) 100%
    );

  pointer-events: none;
}


/* =========================
   BLUE GLOW
========================= */

.cards article::after {
  content: "";

  position: absolute;
  inset: 0;

  z-index: 0;

  border-radius: inherit;

  background:
    radial-gradient(
      circle at 50% 80%,
      rgba(55, 70, 255, 0.20),
      transparent 55%
    );

  pointer-events: none;
}


/* =========================
   CARD CONTENT
========================= */

.cards article h3,
.cards article p {
  position: relative;
  z-index: 2;
}

.cards article h3 {
  margin: 0 0 8px;
}

.cards article p {
  margin: 0;
}


/* =========================
   CARD IMAGES
========================= */

/* =========================================================
   CARDS
   ========================================================= */

.cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    width: 100%;
    margin-top: 10px;
}


/* =========================================================
   ALL CARDS
   ========================================================= */

.cards article {
    position: relative;
    overflow: hidden;

    min-height: 380px;

    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 16px;

    padding: 28px;

    background-color: #05060b;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    display: flex;
    flex-direction: column;
    justify-content: flex-start;

    isolation: isolate;

    transition:
        transform 0.35s ease,
        border-color 0.35s ease,
        box-shadow 0.35s ease;
}


/* =========================================================
   DARK OVERLAY
   ========================================================= */

.cards article::before {
    content: "";

    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            180deg,
            rgba(3, 4, 10, 0.20) 0%,
            rgba(3, 4, 10, 0.35) 35%,
            rgba(3, 4, 10, 0.82) 100%
        );

    z-index: -1;
}


/* =========================================================
   SUBTLE BLUE GLOW
   ========================================================= */

.cards article::after {
    content: "";

    position: absolute;
    inset: 0;

    background:
        radial-gradient(
            circle at 50% 100%,
            rgba(45, 70, 255, 0.20),
            transparent 60%
        );

    pointer-events: none;
    z-index: -1;
}


/* =========================================================
   CARD 1
   TOP LEFT
   ========================================================= */

.cards article:nth-child(1) {

    grid-column: span 2;

    min-height: 400px;

    background-image:
        linear-gradient(
            to top,
            transparent 50%,
            rgba(3, 4, 12, 0.45) 65%,
            #03040c 80%
        ),
        url("card-4.png");

    background-size: 120%;
    background-position: 60% 50%;
    background-repeat: no-repeat;
}
/* =========================================================
   CARD 2
   TOP RIGHT
   ========================================================= */

.cards article:nth-child(2) {

    grid-column: span 2;

    background-image:
        linear-gradient(
            to top,
            transparent 50%,
            rgba(3, 4, 12, 0.45) 65%,
            #03040c 80%
        ),
        url("card-7.png");

    background-size: 100%;
    background-position: 50% 50%;
    background-repeat: no-repeat;
}
/* =========================================================
   CARD 3
   BOTTOM LEFT - LARGE
   ========================================================= */

.cards article:nth-child(3) {

    grid-column: span 3;

    background-image:
        linear-gradient(
            to top,
            transparent 50%,
            rgba(3, 4, 12, 0.45) 68%,
            #03040c 83%
        ),
        url("card-8.png");

    background-size: 140%;
    background-position: 30% 60%;
    background-repeat: no-repeat;
}


/* =========================================================
   CARD 4
   BOTTOM RIGHT - SMALL
   ========================================================= */

.cards article:nth-child(4) {
   grid-column: span 1;
    min-height: 300px;

  
    background-size: 250% auto !important;
    background-repeat: no-repeat !important;
    background-position: center 10% !important;
}

/* =========================================================
   CARD CONTENT
   ========================================================= */

.cards article > * {
    position: relative;
    z-index: 2;
}


/* =========================================================
   CARD TITLES
   ========================================================= */

.cards h3 {
    margin: 0 0 10px;

    font-size: 20px;
    font-weight: 600;

    color: #ffffff;

    line-height: 1.2;
}


/* =========================================================
   CARD PARAGRAPHS
   ========================================================= */

.cards p {
    margin: 0;

    max-width: 620px;

    color: rgba(210, 211, 220, 0.72);

    line-height: 1.6;

    font-size: 14px;
}


/* =========================================================
   HOVER
   ========================================================= */

.cards article:hover {
    transform: translateY(-5px);

    border-color: rgba(86, 104, 255, 0.40);

    box-shadow:
        0 20px 70px rgba(34, 43, 150, 0.20),
        inset 0 0 80px rgba(40, 48, 150, 0.10);
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 900px) {

    .cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .cards article:nth-child(1),
    .cards article:nth-child(2),
    .cards article:nth-child(3),
    .cards article:nth-child(4) {
        grid-column: span 1;
    }

}


@media (max-width: 600px) {

    .cards {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .cards article:nth-child(1),
    .cards article:nth-child(2),
    .cards article:nth-child(3),
    .cards article:nth-child(4) {
        grid-column: span 1;
        min-height: 300px;
    }

}
/* =========================================================
   HEADER
   ========================================================= */

.nav {
  position: fixed;
  top: 0;
  left: 0;

  width: 100%;
  height: 68px;

  box-sizing: border-box;

    position: absolute;
    left: 50%;
    top: 5%;
    transform: translate(-50%, -50%);

  padding: 0 26px;

  z-index: 9999;

  /* No visible background at the top */
  background: transparent;

  border-bottom: 1px solid transparent;

  transition:
    background 2s ease,
    border-color 2s ease,
    box-shadow 2s ease;
}


/* =========================================================
   LOGO — LEFT
   ========================================================= */

.nav .brand {
  justify-self: start;

  display: flex;
  align-items: center;
  gap: 10px;

  color: #fff;
  text-decoration: none;

  font-size: 16px;
  font-weight: 700;
}


.nav .logo {
  width: 36px;
  height: 36px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 10px;

  background: #5865f2;

  color: #fff;

  font-size: 22px;
  font-weight: 700;
}


/* =========================================================
   NAVIGATION — EXACT CENTER
   ========================================================= */

.nav > nav {
  justify-self: center;

  display: flex;
  align-items: center;

  gap: 32px;
}


.nav > nav a {
  color: rgba(255, 255, 255, 0.62);

  text-decoration: none;

  font-size: 14px;
  font-weight: 500;

  white-space: nowrap;

  transition: color 0.25s ease;
}


.nav > nav a:hover {
  color: #fff;
}


/* =========================================================
   FOLLOW — RIGHT
   ========================================================= */

.follow-btn {
  justify-self: end;

  display: flex;
  align-items: center;
  justify-content: center;

  gap: 9px;

  min-width: 104px;
  height: 40px;

  padding: 0 17px;

  box-sizing: border-box;

  border-radius: 999px;

  border: 1px solid rgba(255, 255, 255, 0.12);

  background: rgba(255, 255, 255, 0.06);

  color: #fff;

  text-decoration: none;

  font-size: 14px;
  font-weight: 600;

  transition:
    background 0.25s ease,
    border-color 0.25s ease;
}


.follow-btn:hover {
  background: rgba(255, 255, 255, 0.10);

  border-color: rgba(255, 255, 255, 0.20);
}


/* =========================================================
   SCROLLED STATE
   ONLY THE BACKGROUND CHANGES
   ========================================================= */

.nav.scrolled {
  background: rgba(8, 8, 18, 0.78);

  border-bottom-color: rgba(255, 255, 255, 0.08);

  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.20);

  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

/* =========================================
   FADE + DOWN ANIMATION FOR TYPED LETTERS
========================================= */

.typed-word.typing {
  animation: typedFadeDown 180ms ease-out;
}

@keyframes typedFadeDown {
  0% {
    opacity: 0;
    transform: translateY(-6px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 700px) {

  .nav {
    height: 60px;
    padding: 0 16px;
  }

  .nav .logo {
    width: 34px;
    height: 34px;
  }

  .nav > nav {
    gap: 16px;
  }

  .nav > nav a {
    font-size: 12px;
  }

  .follow-btn {
    min-width: 40px;
    width: 40px;
    padding: 0;
  }

  .follow-btn span:last-child {
    display: none;
  }
}
 
/* =========================================
   TYPING: FADE IN + SLIGHT UP → DOWN
========================================= */

.typed-word.typing {
  animation: typingFadeDown 220ms cubic-bezier(0.2, 0.7, 0.2, 1) both;
}

@keyframes typingFadeDown {

  0% {
    opacity: 0;
    transform: translateY(-5px);
  }

  40% {
    opacity: 0.45;
  }

  100% {
    opacity: 1;
    transform: translateY(2px);
  }

}

/* =========================================
   HERO HEADLINE
========================================= */

.hero-heading {
  width: 100%;
  text-align: center;
}

.typing-line {
  display: inline-flex;
  align-items: baseline;
  justify-content: center;
  white-space: nowrap;
}

.typed-word {
  display: inline-block;
  white-space: nowrap;
  color: #f5f5f5;
}

/* Small downward movement when a letter is typed */
.typed-word.typing {
  animation: typeDown 120ms ease-out;
}

@keyframes typeDown {
  0% {
    transform: translateY(-2px);
  }

  100% {
    transform: translateY(2px);
  }
}

.memecoins {
  display: inline-block;

  /* THIS controls the gap */
  margin-left: 0.22em;

  white-space: nowrap;
  color: #f5f5f5;
}

.terms-word {
  color: #5865f2;
  white-space: nowrap;
}

/* =========================================
   nav bar logos 
========================================= */
.nav {
  padding-left: 20%;
  padding-right: 20%;
}

/* Make header elements slightly bigger */
.brand {
  font-size: 18px;
}

.logo {
  width: 38px;
  height: 38px;
  font-size: 32px;
}

.follow-btn {
  padding: 11px 18px;
  font-size: 12px;
}

/* =========================================
   trophy bar 
========================================= */

.achievement svg {
  position: relative;
  left: -6px;
  top: 2px;
}

.achievement-text {
  position: relative;
  left: 0px;
  top: 8px;
}

.stat small svg {
  position: relative;
  left: 10px;
  top: 12px;
}

.stat-logo {
  font-size: 13px;
}

stat-label {
    font-size: 15px
}

stat {
    font-size: 15px
}


.chains {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  /* Move the entire group */
  transform: translateX(0px) translateY(0px);
}

.chains img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}


/* =========================
   SCROLL REVEAL ANIMATION
========================= */

.scroll-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.8s ease,
    transform 0.8s cubic-bezier(.2,.7,.2,1);
}

.scroll-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

#vision {
    padding-bottom: 10px;
    margin-bottom: 0;
}

#extension {
    padding-top: 10px;
    margin-top: 0;
}

/* =========================================
   FIX GAP BETWEEN HERO AND VISION
   ========================================= */

.hero {
    min-height: auto !important;
    padding-bottom: 0 !important;
}

.achievement {
    margin-top: 60px !important;
}

.bottom {
    margin-top: 30px !important;
    margin-bottom: 0 !important;
}

#vision {
    margin-top: 0 !important;
    padding-top: 100px !important;
    padding-bottom: 10px !important;
}

#vision .section-head {
    margin-top: 0 !important;
    margin-bottom: 60px;
}

#vision .section-head h2 {
    position: relative;
    top: -20px;
    text-align: center;
}

#vision .section-head p {
    position: relative;
    top: -10px;
    font-size: 18px;
}

/* =========================================
   EXTENSION SECTION HEADER
   ========================================= */

#extension .section-head {
    width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 auto;
    padding: 0;
}

#extension .section-head .eyebrow {
    display: inline-block;
    margin: 0 0 14px 0;
    padding: 8px 14px;
}

#extension .section-head h2 {
    width: 100%;
    margin: 0;
    padding: 0;
    text-align: center;
    font-size: 52px;
    line-height: 1.1;
}

#extension .section-head p {
    max-width: 700px;
    margin: 16px auto 0;
    text-align: center;
    line-height: 1.6;
    color: #8b8d98;
}


/* =========================================
   EXTENSION CARDS
   2 TOP + 1 FULL WIDTH BOTTOM
   ========================================= */

.extension-cards {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin-top: 40px;
}

.extension-cards article {
    min-height: 300px;
}

/* Third card goes across the entire bottom */
.extension-cards article:nth-child(3) {
    grid-column: 1 / -1;
    min-height: 220px;
}


/* =========================================
   MOBILE
   ========================================= */

@media (max-width: 700px) {

    .extension-cards {
        grid-template-columns: 1fr;
    }

    .extension-cards article:nth-child(3) {
        grid-column: auto;
    }

    #extension .section-head h2 {
        font-size: 40px;
    }
}

/* =========================================
   ONLY THE CARDS UNDER SUPERCHARGE YOUR BROWSER
   2 TOP + 1 WIDE BOTTOM
   ========================================= */

#extension .cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    width: 100%;
    margin-top: 40px;
}

/* First card - top left */
#extension .cards article:nth-child(1) {
    grid-column: 1 !important;
    min-height: 320px !important;
}

/* Second card - top right */
#extension .cards article:nth-child(2) {
    grid-column: 2 !important;
    min-height: 320px !important;
}

/* Third card - full width underneath */
#extension .cards article:nth-child(3) {
    grid-column: 1 / -1 !important;
    min-height: 220px !important;
}


/* =========================================================
   SUPERCHARGE YOUR BROWSER
   1 TALL CARD + 4 SMALL CARDS
   ========================================================= */

#extension {
    width: min(1100px, calc(100% - 40px));
    margin: 0 auto;
    padding-top: 80px;
    padding-bottom: 100px;
}


/* =========================
   SECTION TITLE
   ========================= */

#extension .extension-head {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;

    margin: 0 auto 45px;
}

#extension .extension-head .eyebrow {
    margin-bottom: 14px;
}

#extension .extension-head h2 {
    margin: 0;

    text-align: center;

    font-size: 52px;
    line-height: 1.1;
    letter-spacing: -2px;

    color: #f5f5f7;
}

#extension .extension-head p {
    max-width: 700px;

    margin: 16px auto 0;

    text-align: center;

    color: #8b8d98;

    font-size: 15px;
    line-height: 1.6;
}


/* =========================================================
   SUPERCHARGE SECTION
========================================================= */

.supercharge-section {
    position: relative;
    width: 100%;

    padding-top: 120px;
    padding-bottom: 120px;

    z-index: 3;
}


/* =========================================================
   SECTION HEADER
========================================================= */

.supercharge-header {
    width: min(900px, calc(100% - 40px));

    margin: 0 auto 55px;

    text-align: center;
}


.supercharge-eyebrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 14px;

    padding: 7px 13px;

    border: 1px solid rgba(255, 255, 255, 0.09);

    border-radius: 999px;

    background: rgba(255, 255, 255, 0.025);

    color: #5865f2;

    font-size: 12px;
    line-height: 1;
}


.supercharge-header h2 {
    margin: 0;

    color: #f5f5f7;

    font-size: 52px;
    line-height: 1.08;

    font-weight: 800;

    letter-spacing: -2.8px;

    text-align: center;
}


.supercharge-header p {
    width: min(680px, 100%);

    margin: 20px auto 0;

    color: #8f929f;

    font-size: 16px;

    line-height: 1.55;

    text-align: center;
}


/* =========================================================
   MAIN CARD CONTAINER
========================================================= */

.feature-cards {

    width: min(1180px, calc(100% - 40px));

    margin: 0 auto;

    display: grid;

    /*
       LEFT = 1 large card
       RIGHT = 2 smaller cards
    */

    grid-template-columns:
        0.88fr
        1fr
        1fr;

    grid-template-rows:
        245px
        245px;

    column-gap: 14px;
    row-gap: 14px;

    position: relative;

    align-items: stretch;
}


/* =========================================================
   BASE CARD
========================================================= */

.feature-card {

    position: relative;

    overflow: hidden;

    min-width: 0;
    min-height: 0;

    border: 1px solid rgba(255, 255, 255, 0.10);

    border-radius: 16px;

    background-color: #05060b;

    background-repeat: no-repeat;

    background-position: center;

    background-size: cover;

    isolation: isolate;

    box-sizing: border-box;

    transition:
        transform 0.35s cubic-bezier(.2,.7,.2,1),
        border-color 0.35s ease,
        box-shadow 0.35s ease;
}


/* =========================================================
   CARD DARK OVERLAY
========================================================= */

.feature-card::before {

    content: "";

    position: absolute;

    inset: 0;

    z-index: -1;

    background:
        linear-gradient(
            180deg,
            rgba(3, 4, 12, 0.16) 0%,
            rgba(3, 4, 12, 0.32) 45%,
            rgba(3, 4, 12, 0.82) 100%
        );
}


/* =========================================================
   BLUE ATMOSPHERIC GLOW
========================================================= */

.feature-card::after {

    content: "";

    position: absolute;

    inset: 0;

    z-index: -1;

    pointer-events: none;

    background:
        radial-gradient(
            circle at 50% 100%,
            rgba(50, 70, 255, 0.25),
            transparent 62%
        );
}


/* =========================================================
   SUPERCHARGE SECTION
   ========================================================= */

.extension-section {
    position: relative;
    z-index: 3;

    width: min(1200px, calc(100% - 40px));

    margin: 0 auto;

    padding: 100px 0 120px;
}


/* =========================================================
   TITLE
   ========================================================= */

.extension-head {
    width: 100%;
    max-width: 800px;

    margin: 0 auto 55px;

    text-align: center;
}

.extension-eyebrow {
    display: inline-block;

    margin-bottom: 14px;
    padding: 7px 13px;

    border: 1px solid rgba(255,255,255,0.09);
    border-radius: 999px;

    background: rgba(255,255,255,0.02);

    color: #566cff;

    font-size: 12px;
}

.extension-head h2 {
    margin: 0;

    color: #f5f5f7;

    font-size: 52px;
    line-height: 1.1;
    letter-spacing: -2.5px;
    font-weight: 800;
}

.extension-head p {
    max-width: 700px;

    margin: 18px auto 0;

    color: #8b8d98;

    font-size: 16px;
    line-height: 1.6;
}


/* =========================================================
   MAIN LAYOUT
   BIG CARD + FOUR SMALL CARDS
   ========================================================= */

.extension-layout {
    display: grid;

    grid-template-columns: 1fr 2fr;

    gap: 14px;

    width: 100%;

    min-height: 680px;
}


/* =========================================================
   FOUR SMALL CARDS
   ========================================================= */

.extension-small-grid {
    display: grid;

    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;

    gap: 14px;

    min-width: 0;
}


/* =========================================================
   ALL NEW CARDS
   ========================================================= */

.extension-card {
    position: relative;

    min-width: 0;
    min-height: 0;

    overflow: hidden;

    box-sizing: border-box;

    border: 1px solid rgba(255,255,255,0.10);

    border-radius: 16px;

    background:
        radial-gradient(
            circle at 70% 25%,
            rgba(170,170,180,0.13),
            transparent 45%
        ),
        linear-gradient(
            145deg,
            #15161a 0%,
            #0d0e12 50%,
            #08090c 100%
        );

    box-shadow:
        inset 0 0 70px rgba(255,255,255,0.025);
}


/* =========================================================
   BIG LEFT CARD
   ========================================================= */

.extension-card-large {
    min-height: 680px;
}


/* =========================================================
   CARD CONTENT
   ========================================================= */

.extension-card-content {
    position: relative;
    z-index: 2;

    padding: 24px;
}

.extension-card h3 {
    margin: 0 0 10px;

    color: #f5f5f7;

    font-size: 20px;
    line-height: 1.25;

    font-weight: 650;

    letter-spacing: -0.5px;
}

.extension-card p {
    margin: 0;

    max-width: 430px;

    color: rgba(210,211,220,0.70);

    font-size: 14px;

    line-height: 1.6;
}


/* =========================================================
   SUBTLE GREY GLOW
   ========================================================= */

.extension-card::before {
    content: "";

    position: absolute;

    inset: 0;

    background:
        radial-gradient(
            circle at 50% 100%,
            rgba(170,170,180,0.10),
            transparent 65%
        );

    pointer-events: none;
}


/* =========================================================
   HOVER
   ========================================================= */

.extension-card {
    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}

.extension-card:hover {
    transform: translateY(-4px);

    border-color: rgba(255,255,255,0.18);

    box-shadow:
        0 20px 60px rgba(0,0,0,0.35),
        inset 0 0 70px rgba(255,255,255,0.035);
}


/* =========================================================
   SCROLL ANIMATION
   ========================================================= */

.extension-section .scroll-reveal {
    opacity: 0;

    transform: translateY(30px);

    transition:
        opacity 0.8s ease,
        transform 0.8s cubic-bezier(.2,.7,.2,1);
}

.extension-section .scroll-reveal.visible {
    opacity: 1;

    transform: translateY(0);
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 900px) {

    .extension-layout {
        grid-template-columns: 1fr;

        min-height: auto;
    }

    .extension-card-large {
        min-height: 450px;
    }

    .extension-small-grid {
        min-height: 600px;
    }
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 600px) {

    .extension-section {
        width: calc(100% - 24px);

        padding-top: 0px;
    }

    .extension-head h2 {
        font-size: 38px;

        letter-spacing: -1.8px;
    }

    .extension-head p {
        font-size: 14px;
    }

    .extension-layout {
        display: flex;

        flex-direction: column;

        gap: 12px;
    }

    .extension-card-large {
        min-height: 400px;
    }

    .extension-small-grid {
        display: flex;

        flex-direction: column;

        gap: 12px;

        min-height: auto;
    }

    .extension-small-grid .extension-card {
        min-height: 300px;
    }
}

.floating-card {
    position: relative;
    overflow: hidden;
}

.floating-symbol {
    position: absolute;
    bottom: -700px;
    left: 50%;
    transform: translateX(-50%);

    width: 1000px;
    height: 1000px;

    object-fit: contain;
    opacity: 0.85;

    pointer-events: none;
}


.floating-symbol {
    -webkit-mask-image: linear-gradient(
        to bottom,
        transparent 0%,
        rgba(0, 0, 0, 0.3) 25%,
        #000 40%,
        #000 100%
    );

    mask-image: linear-gradient(
        to bottom,
        transparent 0%,
        rgba(0, 0, 0, 0.3) 25%,
        #000 40%,
        #000 100%S
    );
}

/* =========================================
   EXTENSION SECTION — REMOVE LARGE GAP
   ========================================= */

.extension-section {
    width: min(1100px, calc(100% - 40px));
    margin: 0 auto;
    padding: 0;
}

.extension-head {
    margin: 0 auto 35px;
    padding: 0;
    text-align: center;
}

.extension-head h2 {
    margin: 0;
}

.extension-head p {
    margin: 14px auto 0;
}

.new-features-section {
    width: min(1100px, calc(100% - 40px));
    margin: 100px auto 0;
}

.new-features-head {
    text-align: center;
    margin-bottom: 35px;
}

.new-features-head h2 {
    margin: 0;
    font-size: 48px;
    line-height: 1.1;
}

.new-features-head p {
    margin: 14px auto 0;
    color: #8d8d98;
}


/* FULL-SIZE VIDEO BOX */

.new-features-box {
    width: 100%;
    max-width: 4000px;
    height: 600px;

    border: 1px solid rgba(255,255,255,.1);
    border-radius: 22px;

    overflow: hidden;

    background: #090a0d;
}

.new-features-video {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
    object-position: center;
}

.new-features-video {
    width: 100%;
    height: 100%;
    object-fit: contain;
}


/* =========================
   FOOTER
   ========================= */

.site-footer {
    width: 100%;
    min-height: 130px;

    margin-top: 180px;
    padding: 28px 32px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    box-sizing: border-box;

    background: #050506;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}


/* =========================
   LEFT SIDE
   ========================= */

.footer-left {
    display: flex;
    align-items: center;
    gap: 70px;
}


/* LOGO */

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;

    color: #ffffff;

    font-size: 18px;
    font-weight: 700;

    white-space: nowrap;
}

.footer-logo-box {
    width: 36px;
    height: 36px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 9px;

    background: #4c4cff;
    color: #ffffff;

    font-size: 21px;
    font-weight: 700;
}


/* COPYRIGHT */

.footer-copy {
    margin: 0;

    width: 170px;

    color: #ffffff;

    font-size: 14px;
    line-height: 1.5;
}


/* =========================
   LINKS
   ========================= */

.footer-links {
    display: flex;
    align-items: center;

    gap: 34px;

    white-space: nowrap;
}

.footer-links a {
    color: #ffffff;

    text-decoration: none;

    font-size: 14px;
    font-weight: 400;

    transition: opacity 0.2s ease;
}

.footer-links a:hover {
    opacity: 0.65;
}


/* =========================
   MOBILE
   ========================= */

@media (max-width: 800px) {

    .site-footer {
        margin-top: 100px;
        padding: 35px 24px;

        flex-direction: column;
        align-items: flex-start;

        gap: 30px;
    }

    .footer-left {
        gap: 30px;
    }

    .footer-links {
        flex-wrap: wrap;
        gap: 18px 28px;
    }
}

/* Keep the Login button's original styling */

/* Login button - match the original pill style */
a#loginBtn.btn.secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  height: 48px;
  padding: 0 18px;

  background: #17171a;
  color: #ffffff;
  border: 1px solid #303035;
  border-radius: 999px;

  text-decoration: none;
  font-size: 14px;
  font-weight: 600;

  cursor: pointer;
  box-sizing: border-box;
}

a#loginBtn.btn.secondary:hover {
  background: #1d1d21;
}

a#loginBtn.btn.secondary b {
  display: flex;
  align-items: center;
  justify-content: center;
}

a#loginBtn.btn.secondary svg {
  width: 18px;
  height: 18px;
  display: block;
}

/* Fix Login button arrow */
a#loginBtn.btn.secondary b {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: auto;
    height: auto;
    padding: 0;
    margin: 0;

    background: transparent;
    border: none;
    border-radius: 0;
    box-shadow: none;
}

a#loginBtn.btn.secondary b svg {
    width: 18px;
    height: 18px;
    display: block;
}

/* Scroll fade-up animation */
.scroll-fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}

.scroll-fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Slight stagger for the extension cards */
.extension-small-grid .extension-card:nth-child(1) {
  transition-delay: 0.05s;
}

.extension-small-grid .extension-card:nth-child(2) {
  transition-delay: 0.15s;
}

.extension-small-grid .extension-card:nth-child(3) {
  transition-delay: 0.25s;
}

.extension-small-grid .extension-card:nth-child(4) {
  transition-delay: 0.35s;
}

/* =========================
   SECURE INFRASTRUCTURE CARD
========================= */

/* =========================================
   SECURE INFRASTRUCTURE IMAGE
========================================= */

.secure-card {
    position: relative;
    overflow: hidden;
    isolation: isolate;
}


/* Lock image */
.secure-card .secure-lock {
    position: absolute;

    width: 140%;
    height: 140%;

    left: -20%;
    top: -5%;

    object-fit: cover;
    object-position: center;

    z-index: 0;

    display: block;

    opacity: 1;

    pointer-events: none;
}


/* Dark overlay goes ABOVE image */
.secure-card::before {
    z-index: 1 !important;
}


/* Glow layer */
.secure-card::after {
    z-index: 1 !important;
}


/* Text stays above everything */
.secure-card-content {
    position: relative;
    z-index: 2;
}

/* =========================================
   SCROLL REVEAL - BELOW UXENTO VISION
========================================= */

.scroll-reveal {
    opacity: 0;
    transform: translateY(45px);
    transition:
        opacity 0.8s ease,
        transform 0.8s ease;
    will-change: opacity, transform;
}

.scroll-reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.btn.primary {
    color: white;
}

#loginBtn2 {
    background: linear-gradient(135deg, #263cff, #5865f2);
    color: white;
}

/* =========================================================
   FINAL NAVBAR SCROLL FIX
   ========================================================= */

/* =========================================================
   AMBIENT BUBBLES — KEEP BEHIND VIDEO
   ========================================================= */

.ambient,
.ambient-bubble,
.bubble,
.ambient-bubbles {
    z-index: 0 !important;
    pointer-events: none !important;
}


/* Keep the video above the bubbles */

video {
    position: relative;
    z-index: 2;
}


/* Keep normal page content above the bubbles */

main,
section,
.hero,
.video-section {
    position: relative;
    z-index: 1;
}


/* Navbar stays above absolutely everything */

.nav {
    z-index: 99999 !important;
}

/* =========================================================
   REMOVE AMBIENT EFFECT FROM OVER VIDEO
   ========================================================= */

/* Video section sits above ambient effects */
.video-section {
    position: relative !important;
    z-index: 10 !important;
    isolation: isolate !important;
}

/* Video itself */
.video-section video {
    position: relative !important;
    z-index: 20 !important;
    opacity: 1 !important;
    filter: none !important;
}


/* Remove pseudo-element overlays */
.video-section::before,
.video-section::after {
    content: none !important;
    display: none !important;
}


/* Keep ambient effects behind */
.ambient,
.ambient-bubble,
.bubble,
.ambient-bubbles {
    z-index: -1 !important;
    pointer-events: none !important;
}

/* =========================================
   TOP STAR FIELD
========================================= */

.stars {
    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 100vh;

    pointer-events: none;

    z-index: 0;

    opacity: 0.38;

    background-image:
        radial-gradient(
            circle,
            rgba(255, 255, 255, 0.32) 0.6px,
            transparent 1px
        );

    background-size: 24px 24px;
    background-position: 6px 9px;
    background-repeat: repeat;

    /* Fade the stars toward the bottom */
    -webkit-mask-image: linear-gradient(
        to bottom,
        #000 0%,
        #000 45%,
        rgba(0, 0, 0, 0.65) 65%,
        rgba(0, 0, 0, 0.2) 82%,
        transparent 100%
    );

    mask-image: linear-gradient(
        to bottom,
        #000 0%,
        #000 45%,
        rgba(0, 0, 0, 0.65) 65%,
        rgba(0, 0, 0, 0.2) 82%,
        transparent 100%
    );

    animation: none;
    transform: none;
}


/* =========================================
   VIDEO CONTROLS FIX
========================================= */

.new-features-box {
    position: relative;
    z-index: 10;
}

.new-features-video {
    position: relative;
    z-index: 20;

    display: block;
    width: 100%;

    pointer-events: auto !important;

    opacity: 1;
    filter: none;
}


/* Background effects must not catch clicks */
.ambient,
.stars,
.vignette {
    pointer-events: none !important;
}