
body {
  font-family: 'Sole Sans', sans-serif;
  min-height: 100vh;
  background-color: #030011;
  overflow-y: auto;
  overflow-x: hidden;
  scrollbar-width: none; 
  -ms-overflow-style: none;
  width: 100%;
  margin: 0;
  padding: 0;

}

html {
  margin: 0;
  padding: 0;
  width: 100%;
  overflow-x: hidden;
}

.tilted_dots {
  position: absolute; /* Use fixed so it stays in place even when scrolling */
  top: 111%;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
}

.mini_button {
  height: 25%;
  width: auto;
  aspect-ratio: 1/1;
}

.video {
  position: absolute;
  top: 102%;
  width: clamp(20rem, 80%, 40rem);
  transform: translate(-50%);
}
.tilted_dots::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background-image: radial-gradient(#fed7ff 1px, transparent 2px);
  background-size: 10vh 10vh;
  transform: rotate(-45deg);
  z-index: -1;
  pointer-events: none;
  filter: blur(1px); /* makes the dots glow */
  opacity: 0.8;
}

.grid {
  position: absolute;
  width: 100%;
  height: 110%;
  background-color: #030011;
  background-image: 
    linear-gradient(to right, #8888881e 0.5px, transparent .0.5px),
    linear-gradient(to bottom, #8888881e 0.5px, transparent 0.5px);
  background-size: 10vh 10vh;
  z-index: -2;
}
@font-face {
  font-family: 'Sole Sans';
  src: url('/fonts/SoleSans-Regular.woff2') format('woff2'),
       url('/fonts/SoleSans-Regular.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}

.Blackhole {
  position: absolute; 
  width: 50vw;
  height: auto;
  z-index: -1;
}
.Blackhole_center {
  position: absolute;
  top: 110%;
  left: 50%;
  transform: translate(-50%, -50%);
}


.neon-line {
  width: 100vw;
  height: 0.05vh;
  background: #fb78ff;
  box-shadow:
    0 0 5px 2px #de8bef,
    0 0 20px 5px #b95eed,
    0 0 50px 10px #7930e8;

    position: absolute;
    top: 110%;  
    right: 0%;
}
  
.hero {
  width: 70vw;
  height: fit-content;
  font-size: clamp(2rem, 5vw + 1.5rem, 6rem);
  text-align: center;
} 

.highlight {  
  background: linear-gradient(180deg, #ad8dff, #732592);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.normal {
  color: white;
}

.acrylic-background{
    /* Semi‑transparent fill so light can pass through */
    background: rgba(255, 255, 255, 0.037);
    border-radius: 1rem;
  
    /* Core glassmorphism */
    backdrop-filter: blur(3.5px) saturate(160%);
    -webkit-backdrop-filter: blur(3.5px) saturate(160%);
  
    /* A bit of depth */
    box-shadow: 0 4px 30px rgba(0,0,0,.1);
  
    /* We’ll clip the pseudo‑element grain to this rect */
    position: relative;
    overflow: hidden;
  }



.icon-background {
  position: absolute;
  right: 10px;
  width: 15vh;
  height: 15vh;
}

.logo {
  width: 90%;
  height: 90%;
  position: relative;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.patent {
  position: relative;
  left: 50%;
  transform: translate(-50%);
  width: fit-content;
  height: fit-content;
  background: linear-gradient(-35deg, #ca39a7, #b22cf2);
  text-align: center;
  padding-top: 7px;
  padding-bottom: 7px;
  border-radius: 10rem;
}

.hero_container {
  position: absolute;
  top: 35%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: fit-content;
  height: fit-content;
  justify-content: center;
  text-align: center;
}

.patentno {
  color: white;
  margin-right: 15px;
  margin-left: 15px;
}

.minicard_image {
  width: 100%;
  height: 70%;
}


.section{
  width: clamp(350px,22%, 90%);
  aspect-ratio: 2/1;
  border: 1px solid #ababab34;
  border-radius: 1rem;
  padding: 12px 0 0 10px;
  transition: top .6s ease, left .6s ease,
              width .6s ease, height .6s ease,
              transform .6s ease;
}

.section.expanded{
  backdrop-filter: blur(20.5px) saturate(60%);
  -webkit-backdrop-filter: blur(20.5px) saturate(60%);
  /* NO fixed / top / left / transform here – we control those inline */
}

.section.placeholder{
  visibility:hidden;        /* takes up space, but isn’t seen */
  pointer-events:none;      /* just in case */
}

.Section_Title {
  position: relative;
  font-size: clamp(1rem, 200%, 3rem);
  font-weight: bold;
  width: 100%;
  transition: font-size 0.6s ease;
}

.Section_body {
  position: relative;
  color: rgb(136, 136, 136);
  font-size: clamp(0.77rem, 1.5vw, 1.2rem);
}

.Section_button {
  border-width: 0;
  background: linear-gradient(-35deg, #ca39a7, #b22cf2);
  position: absolute;
  bottom: 5px;
  right: 5px;
  width: 15%;
  max-width: 100px;
  aspect-ratio: 1 / 1;
  cursor: pointer;
  border-radius: 25%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.1s ease;
}
.section_container{
  position: absolute;
  top: 120%;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;

}
.Section_button:active {
  transform: scale(0.9);
}

.arrow {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.expanded_body {
  position: relative;
  color: rgb(255, 255, 255);
  font-size: clamp(0.5rem, 3vw, 4rem);
  overflow-y: scroll;
}

.Iterations_Button {
  border-width: 0;
  width: 200px;
  height: 100px;
  background: linear-gradient(-35deg, #ca39a7, #b22cf2);
  position: absolute;
  color: white;
  font-weight: bold;
  left: 5px;
  top: 60px;
  height: 40px;
  cursor: pointer;
  border-radius: 0.6rem;
  transition: transform 0.1s ease;
}

.flex_container {
  display: flex;
  flex-wrap: wrap;
  overflow-y: scroll;
  gap: 10px; /* optional spacing between cards */
}

.scrollable-div::-webkit-scrollbar {
  display: none;             /* Safari and Chrome */
}

.minicard {
  width: clamp(100px, 22vw, 160px);
  aspect-ratio: 1/1;
  border-radius: 1rem;
  overflow: hidden;
  background: rgba(20, 20, 20, 0.55);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  position: relative; /* important for absolute child positioning */
}

@media (min-width:768px){          /* desktop-ish breakpoint */
  .minicard_text{
    font-size:clamp(0.1rem, 4vw, 1.4rem);
  }

  .minicard_image {
    margin-bottom: -25px;
  }
}

.site-footer{
  margin-top: 1%;
  text-align: center;
  width:100%;
  font-size: 1rem;
  color:#ffffff;
  font-weight: light;    /* or transparent if you prefer */
}
@media (max-width:768px){          /* desktop-ish breakpoint */
  .minicard_text{
    font-size: clamp(0.8rem, 1.3vw, 1.8rem); 
    margin-bottom: 0px;
  }
}

.minicard_text{
  margin: 0;                      /* no big push‑down */
  color: white;
  text-align: center;
  height: fit-content;
}

.cost_img {
  position:relative;
  left: 50%;
  transform: translate(-50%);
  width: 500px;
  height: auto;
}