@font-face {
  font-family: 'Geist';
  src: url('https://monarchlauncher.s3.amazonaws.com/Geist/GeistVF.ttf') format('truetype');
}

@font-face {
  font-family: 'Inter';
  src: url('/static/Inter_font/static/Inter-Regular.ttf') format('truetype');
}

:root {
  font-family: 'Inter';
}

button:hover {
  cursor: pointer;
}
body {
  /* background-color: #0D0213; */
  margin: 0;
  min-height: 100vh;
  background-color: #080808;
  /* background: linear-gradient(to bottom, #0f0f1a, #000000); */
  width: 100%;
  overflow-x: hidden;
}

h2,
h3,
h4,
h5,
h6 {
  font-weight: 400;
}

h2,
h3,
h5,
h6,
p,
a {
  color: #c8d4eac7;
}

video,
img {
  pointer-events: none;
}

#herovideo {
  height: 100vh;
  width: 100vw;
  position: absolute;
  top: -20%;
  left: 0;
  z-index: -2;
  opacity: 0.35;
  object-fit: cover;
}

.hero-btn {
  position: relative;
  z-index: 100;
}

.hero-btn:hover {
  cursor: pointer;
}

.page-with-nav {
  padding: 0 16%;
  padding-top: 6%;
}

.nova {
  position: absolute;
  top: -50%;
  left: 50%;
  z-index: 0;
  width: 1200px;
  height: 900px;
  filter: blur(100px);
  transform-origin: center center;
  border-radius: 50%;
  transform: skewY(-5deg) translate(-48%, -50%) scale(0.7) translateZ(0);
  pointer-events: none;
  animation: fadeIn 2.5s cubic-bezier(0.4, 0, 0.3, 1) forwards;
}

.nova-blue {
  width: 1200px;
  height: 900px;
  max-width: 100%;
  border: 15px solid blue;
    /* background: linear-gradient(to bottom, #080808, #080808, #080808, #858585, #eee, rgb(75, 135, 155), rgb(40, 40, 40)); */
  background: linear-gradient(to bottom, #080808, #080808, #080808, #0a1642, #0a1f48, rgb(75, 135, 155), rgb(160, 58, 160));
}

.nova-light {
  filter: blur(240px);
}

section {
  position: relative;
  margin-bottom: 8%;
  z-index: 1;
}

.download-btn {
}

.download-btn:focus {
  outline: none;
}

.brand-name-home {
  font-size: 16px;
  text-align: center;
  font-weight: 600;
  background: linear-gradient(to bottom right, silver, goldenrod, rgba(176, 176, 176, 0.8));
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  filter: blur(5px);
  opacity: 0;
  text-shadow: 0px 4px 10px #fff;
  margin-top: 5em;
  margin-bottom: 0;
}

.text-animate {
  animation: focusText 0.5s forwards;
  animation-delay: 1.1s;
}

@keyframes focusText {
  50% { 
    opacity: 1;
  }

  75% {
    filter: blur(0);
  }

  100% {
    opacity: 1;
    filter: blur(0);
    text-shadow: none;
  }
}

.h1 {
  font-size: 3.3em;
  margin-bottom: 0.1em;
  margin-top: 0.3em;
  text-align: center;
  font-weight: 500;
  /* color: #F66263; */
  background: linear-gradient(to bottom right, #fff, #e2e2ff, rgba(176, 176, 176, 0.3));
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  opacity: 1;
  /* user-select: none; */
  position: relative;
  animation: titleFadeInUp 1s cubic-bezier(0.4, 0, 0.3, 1) forwards;
}

.h2 {
  background: linear-gradient(to bottom right, #fff, #e2e2ff, rgba(176, 176, 176, 0.3));
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  opacity: 1;
  font-weight: 500;
  text-align: center;
  font-size: 2.6em;
  margin-bottom: 1.25%;
}

.sect-tagline {
  display: block;
  margin: 0 auto;
  margin-bottom: 4%;
  font-size: 1.3em;
  text-align: center;
  max-width: 70%;
  text-wrap: balance;
  line-height: 30px;
  color: #c8d4eac7;
  opacity: 0.8;
}

@keyframes flashingCaret {
  0% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }
}

.flashing-caret {
  animation: flashingCaret 1s ease-in-out reverse infinite;
}

@keyframes titleFadeInUp {
  from {
    opacity: 0;
    transform: translateY(3.25vh);
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
}

.jumbotron {
  margin-top: 10%;
}

.tagline {
  margin: 0 auto;
  margin-top: 1em;
  margin-bottom: 2em;
  font-size: 1.3em;
  font-weight: 400;
  /* line-height: 50px; */
  /* opacity: 0.75; */
  /* user-select: none; */
  text-align: center;
  text-wrap: balance;
  width: 70ch;
  line-height: 1.8em;
  opacity: 0;
  animation: titleFadeInUp 1s cubic-bezier(0.4, 0, 0.3, 1) forwards;
  animation-delay: 0.3s;
  color: #c8d4eac7;
}

.p {
  font-size: 2em;
}

.bordered-feat {
  border: 1px solid #858585;
  padding: 12px;
}


.feature-preview-box {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100px;
  margin: 0 auto;
  margin-bottom: 4%;
  gap: 1.6%;
}

.feature-box {
  color: #f5f5f5;
  border: 1px solid #505050;
  background-color: rgba(124, 146, 255, 0.05);
  background: rgb(186, 207, 227, 0.05);
  backdrop-filter: blur(2px);
  height: 100%;
  box-sizing: border-box;
  width: 150px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-radius: 8px;
  border-color: transparent;
  user-select: none;
  padding-top: 0.5%;
  animation-delay: 1.3s;
  animation: fadeIn 2.8s ease-in-out forwards;
  /* border-top-color: #505050; */
}

.feature-box p {
  opacity: 1;
  align-self: center;
  font-size: 0.95em;
  color: #bbb;
  margin: 0;
}

.feature-img {
  height: auto;
  width: 36px;
  display: block;
  margin: 0 auto;
  opacity: 0.7;
  margin-bottom: 6%;
}

.special-message {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  text-align: center;
}

#nav {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  display: flex;
  color: #fff;
  width: 100%;
  justify-content: center;
  align-items: center;
  /* border-bottom: 0.5px solid #50505090; */
  border-bottom: 0.5px solid transparent;
  padding: 0.8rem 8.4rem;
  box-sizing: border-box;
  height: 60px;
  backdrop-filter: blur(15px) !important;
  /* background-color: rgba(58, 58, 58, 0.127) */
}

#nav a, #nav .flink {
  color: #bbbbbb;
  /* color: #e2e2ff; */
  text-decoration: none;
  font-size: 0.9em;
  opacity: 1;
  transition: color 0.3s ease-in-out;
}

#nav:hover {
  cursor: default;
}

#nav .flink:hover {
  color: #fff;
  cursor: pointer;
}

.nav-btn {
  padding: 8px 24px;
  padding-right: 28px;
  margin-right: -12px;
  border: 1.5px solid #505050;
  border-radius: 8px;
  transition: border 0.3s ease-in-out;
  display: block;
}

.plain-btn {
  border-color: transparent;
  border-bottom: 1.5px solid #C6C6C6;
  color: #252525;
}


.nav-btn:hover {
  border-color: #fff;
}

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

.nav-left {
}

.nav-center {
  display: flex;
  justify-content: center;
  flex: 5;
  gap: 5%;
  margin-left: 5%;
}

.nav-center div {
  display: inline;
}

.nav-right {
}

#nav-brand {
  font-weight: 500;
  font-size: 16px;
  vertical-align: middle;
}

#curtain {
  width: 100vw;
  height: 100vh;
  background-color: #080808;
  position: fixed;
  z-index: 2;
  top: 0;
  left: 0;
  animation: curtainFade 2s ease-in-out forwards;
}

@keyframes curtainFade {
  to {
    opacity: 0;
  }
}

.app-stats {

}

.stat-seperator {
  width: 1.5px;
  height: 10px;
  background-color: whitesmoke;
  align-self: center;
  opacity: 0.5;
}

.sep-push-right {
  margin-right: 8px;
}

.sep-push-left {
  margin-left: 8px;
}


.logo-img {
  display: block;
  margin: 0 auto;
  margin-top: -2%;
  margin-bottom: -2%;
  height: auto;
  width: 60px;
  border: 4.5px solid #EDEDFE;
  border-radius: 20px;
  opacity: 0;
  /* border-radius: 50%; */
  transform: scale(0.9);
  position: relative;
  z-index: 1;
  animation: titleFadeInUp 1.3s cubic-bezier(0.4, 0, 0.3, 1) forwards 0.3s, will-glow 2s cubic-bezier(0.4, 0, 0.3, 1) forwards 0.6s;
}

.bg-img-cont {
  position: absolute;
  top: -26%;
  width: 100%;
  height: auto;
}

.bg-img {
  display: block;
  margin: 0 auto;
  z-index: 0;
  opacity: 0.04;
  width: 680px;
  height: 700px;
  filter: blur(2px);
}

.first-section {
  position: relative;
  top: -100px;
  margin-bottom: 0;
}

.ux-section {
  max-width: 1240px;
  margin: 0 auto;
  margin-bottom: 160px;
}

.ux-grid {
  display: flex;
  gap: 1.4rem;
  width: 65%;
  margin: 0 auto;
}

.calc-img-2 {
  width: 100%;
}

.calc-img-1 {
  width: 100%;
  filter: contrast(100%);
}

.bento-title {
  font-size: 1.2em;
  margin: 0;
  color: #d8ecf8;
}

/* Bento text container */
.bt1 {
  margin-top: 2.5em;
}

.bt2 {

}

.bt3 {

}

.bt4 {

}

.bento-desc {
  background: transparent;
  font-size: 1em;
  line-height: 1.5em;
}


.bbox-1 .bento-text-cont {
  width: 35%;
  padding-left: 2.4em;
  position: relative;
  top: 2%;
}

.bbox-2, .bbox-4 {
  display: grid;
  place-items: center;
}


.bbox-2 .bento-text-cont {
  padding: 0.4em 2em;
  padding-top: 0;
  width: 95%;
  box-sizing: border-box;
  text-wrap: balance;
  position: relative;
  top: 3%;
}

.bbox-3 .bento-text-cont {
  position: relative;
  top: 8%;
  text-align: center;
  text-wrap: balance;
  width: 80%;
  margin: 0 auto;
}

.bbox-4 .bento-text-cont {
  padding: 0.4em 2em;
  padding-top: 0;
  width: 95%;
  box-sizing: border-box;
  text-wrap: balance;
}

.bento-browsers {
  margin-top: 1em;
  margin-bottom: 1em;
}
.bento-browsers img {
  margin-right: 8px;
}

.b-1 {
  margin-bottom: 1.4em;
}

.b-2 {
  flex-direction: row-reverse;
}

.shade-layer {
  position: absolute;
  z-index: 3;
  width: 100%;
  height: 45%;
  top: 48%;
}

.ux-grid div[class^='ux-'] {
  border: 1px solid transparent;
  border-radius: 12px;
  height: 340px;
  background-color: rgb(18, 19, 19);
  position: relative;
  z-index: 2;
  overflow: hidden;
}

.bento-img-cont-1 {
  width: 600px;
  height: auto;
  top: -70%;
  opacity: 0.75;
  left: 45%;
  position: relative;
}

.bento-img-cont-2 {
  width: 500px;
  height: auto;
  top: 10%;
  opacity: 0.75;
  left: 9.3%;
  position: relative;
}

.slayer-1 {
  background: linear-gradient(to bottom, rgba(18, 19, 19, 0), rgba(18, 19, 19, 0.88), rgba(18, 19, 19, 1));
}

.slayer-2 {
  width: 100%;
  height: 35%;
  top: 45%;
  background: linear-gradient(to bottom, rgba(18, 19, 19, 0), rgba(18, 19, 19, 0.9), rgba(18, 19, 19, 1));
}

.ux-1 {
  flex: 2;
  overflow: hidden;
}

.ux-2 {
  flex: 1;
}

.ux-3 {
  flex: 1.8;
}

.ux-4 {
  flex: 1;
}

.story-grid {

}

.laptopimg {
  width: 85%;
  max-width: 1100px;
  height: auto;
  display: block;
  margin: 0 auto;
}

@keyframes will-glow {
  0% {
    box-shadow: none;
  }

  100% {
    box-shadow: 0px 0px 12px 2px #EDEDFE;
  }
}

.will-glow {
  animation: will-glow 1s cubic-bezier(0.4, 0, 0.3, 1) forwards;
  animation-delay: 1.1s;
}

.des-break {
  display: block;
}

.mob-break {
  display: none;
}

.img-placeholder {
  margin: 0 auto;
  display: block;
  width: 750px;
  height: 430px;
  border-radius: 12px;
  border: 1px solid #505050;
}

.feat-spotlight-img {
  display: block;
  margin: 0 auto;
  margin-top: -1em;
  width: 100%;
  max-width: 900px;
  user-select: none;
  pointer-events: none;
}

h2.cb-hist {
  margin-top: 3.5em;
  margin-bottom: 1em;
}

.feat-spotlight-img-2 {
  max-width: 760px;
}

.sect-tagline-bottom {
  /* margin-top: -4em; */
  margin-top: -1em;
  font-size: 1.2em;
  max-width: 960px;
  z-index: 5;
  position: relative;
  /*color: #d8ecf8; */
}

.feat-img-cb-hist {
  position: relative;
  z-index: 2;
  height: auto;
  margin: 0 auto;
  max-width: max-content;
}

.slayer-3 {
  width: 760px;
  position: absolute;
  height: 50%;
  bottom: 0;
  z-index: 3;
  background: linear-gradient(to bottom, transparent, rgba(8, 8, 8, 0.4), rgba(8, 8, 8, 0.5), rgba(8, 8, 8, 0.7), rgba(8,8, 8, 0.95), rgba(8, 8, 8, 1));
}

.feat-name-grid {
  display: flex;
  flex-wrap: wrap;
  row-gap: 1.8rem;
  column-gap: 1.8rem;
  margin: 0 auto;
  justify-content: center;
  width: 1240px;
}

.feat-item {
  width: 380px;
  /* padding: 0 0.8rem; */
  padding-left: 0;
}

.feat-icon {
  width: 22px;
  vertical-align: middle;
  margin-right: 2px;
  margin-top: -2.5px;
  opacity: 0.5;
}

.feat-item h4 {
  color: #c8d4eac7;
  margin: 3.5% 0;
  font-size: 1.2rem;
  line-height: 1.3em;
}

.feat-item p {
  margin: 4% 0;
  font-size: 1rem;
  line-height: 1.5em;
  color: #c8d4eac7;
  opacity: 0.6;
}

.pricing-grid {
  display: flex;
  max-width: 900px;
  margin: 0 auto;
  gap: 1rem;
}

.p-old-price {
  color: #444;
}

.price-item {
  border: 1px solid transparent;
  border-radius: 24px;
  background: rgb(186, 207, 227, 0.05);
  backdrop-filter: blur(70%);
  padding: 1.4rem 1.4rem;
  min-height: 568px;
  display: flex;
  flex-direction: column;
}

.p-top {
  border-bottom: 1px solid #50505090;
}

.p-name {
  padding: 0.4rem 0.8rem;
  border: 1px solid gray;
  display: inline-block;
  font-size: 1rem;
  border-radius: 8px;
  color: #eee;
  margin-bottom: 14px;
}

.p-luna {
  background: linear-gradient(0deg, #d8ecf8, #98c0ef);
  color: transparent;
  background-clip: text;
  text-shadow: 0 1.5px 6px #98c0ef90;
}

.buy-btn {
  display: block;
  width: 100%;
  box-sizing: border-box;
  padding: 0.6rem 0.8rem;
  background: linear-gradient(to top, #252525, #444, rgba(176, 176, 176, 0.3));
  border: 1px solid #333;
  border-radius: 6px;
}

.buy-btn:focus {
  outline: none;
}

.btn-text {
  color: #e2e2ff;
  font-size: 1.15em;
  font-weight: 500;
}

.buy-active {
    background: linear-gradient(to bottom, rgb(34, 48, 89), rgba(41, 47, 72, 0.3));
    border-color: rgb(20, 27, 47);
}

.price-item h4 {
  color: #c8d4eac7;
  font-size: 3rem;
  margin: 1rem 0;
}

.p-benefits {
  flex-grow: 1;
}

.p-benefits > p {
    color: #c8d4eac7;
    line-height: 1.3em;
}

.price-check {
  width: 22px;
  vertical-align: middle;
  margin-right: 8px;
  margin-top: -3px;
}

.price-check-bg {
  border-radius: 50%;
    background: linear-gradient(to bottom, transparent, transparent);
}


.muted {
  filter: grayscale(100%);
}

.muted > *:hover {
  user-select: none;
  pointer-events: none;
}

.v0-price {
  flex: 1.5;
}

.active-price {
    background: linear-gradient(to bottom, #fff, #e2e2ff, rgba(176, 176, 176, 0.3));
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.v1-price {
  flex: 1;
  user-select: none;
  opacity: 0.55;
}

.a-link {
  color: #fff;
}

.footer {
  border-top: 1px solid #50505090;
  padding: 0 8.4rem;
  padding-top: 20px;
  padding-bottom: 32px;
  margin: 0 auto;
  position: relative;
  z-index: 4;
}

.footer p {
  color: #c8d4eac7;
  opacity: 0.7;
}

.footer-logo {
  filter: grayscale(100%);
}

.footer-top {
  display: flex;
  justify-content: space-between;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
}

.cl-cont {
  margin: 0 auto;
  max-width: 850px;
}

.cl-node, .cl-head-node {
  position: relative;
  margin-bottom: 24px;
}

.cl-head-node {
}

.cl-line {
  position: absolute;
  height: 85%;
  left: -40px;
  top: 16px;
  width: 2px;
  background: linear-gradient(to bottom, rgba(111, 173, 255, 0.1), #91c2ff, rgba(255, 255, 255, 0));
  border-radius: 12px;
  opacity: 0.9;
}

.cl-hero-line {
  height: 95%;
}

.cl-blip {
  position: absolute;
  top: 6px;
  left: 105px;
  border-radius: 50%;
  width: 6px;
  height: 6px;
  background-color: lightskyblue;
  border-color: #4291F3;
  box-shadow: 0px 0px 16px 4px #4291F3;
}

.cl-hero-card {
  position: relative;
  margin: 0 auto;
  height: 450px;
  height: max-content;
  width: 556px;
  border: 1px solid #50505090;
  border-radius: 12px;
}

.cl-card {
  position: relative;
  margin: 0 auto;
  height: max-content;
  width: 556px;
  border: 1px solid #50505090;
  border-radius: 12px;
}

.cl-hero-card-text {
  padding: 1rem;
  padding-bottom: 1.4rem;
}

.cl-hero-card-text h3 {
  color: #dfe9f9;
  margin-top: 8px;
  margin-bottom: 12px;
  font-size: 1.4em;
  line-height: 1.3em;
}

.cl-date {
  font-size: 1em;
  line-height: 1.3em;
  margin: 8px 0;
  position: absolute;
  min-width: 200px;
  max-width: max-content;
  text-align: right;
  z-index: 4;
  top: -5%;
  left: -13%;
  color: #dfe9f9;
  background: linear-gradient(to bottom right, #fff, #e2e2ff, #e2e2ff, #70b0ffba);
  color: transparent;
  background-clip: text;

}

.cl-hero-date {
  top: -2%;
}

.cl-desc {
  margin: 0;
  font-size: 1em;
  line-height: 1.5em;
  font-weight: 400;
}

.cl-hero-img {
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  min-height: 280px;
  max-height: 62%;
  width: 556px;
  box-sizing: border-box;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 20%;
  z-index: 4;
}

.cl-footer {
  margin: 0 auto;
  margin-top: 48px;
  font-size: 1.3em;
  width: max-content;
  transition: color 0.5s ease-in-out;
}

.cb-footer {
  margin: 0 auto;
  margin-top: -26px;
  margin-bottom: 8em;
  font-size: 1.3em;
  width: max-content;
  transition: color 0.5s ease-in-out;
}

.cl-footer:hover, .cb-footer:hover {
  cursor: pointer;
  color: #fff;
}

.faq-cont {
  max-width: 820px;
  margin: 0 auto;
  margin-top: 50px;
}

.q-cont {
  margin-bottom: 2.5em;
}

.faq-q {
  font-size: 1.4em;
  line-height: 1.5em;
  margin-bottom: 0.45em;
}

.faq-a {
  font-size: 1.1em;
  line-height: 1.55em;
  margin: 0.8em 0;
}

.faq-a b {
  font-weight: 600;
  color: #dfe9f9
}

.social-toolbelt {
  display: flex;
  column-gap: 12px;
}

.soc-img {
  width: 25px;
}

/* 320 - 414px */
@media screen and (min-width: 320px) and (max-width : 413px) {
  .footer {
    padding: 0 0.8em;
    padding-top: 24px;
    padding-bottom: 32px;
  }

  .footer-top, .footer-bottom {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .footer-top {
    row-gap: 1.2em;
    margin-bottom: 0.3em;
  }
  
  .footer-bottom {
    margin-top: 1em;
    row-gap: 1.2em;
  }

  .footer p {
    margin: 0;
    font-size: 0.9em;
  }

  .ux-section {
    margin-bottom: 110px;
  }
  
  .faq-h2 {
    margin-top: 25%;
    font-size: 1.6em !important;
  }

  .faq-cont {
    max-width: 90%;
    margin-top: 50px;
  }

  .q-cont {
    /* border-bottom: 1px solid #505050d0; */
  }

  .faq-q {
    font-size: 1.1em;
    margin-bottom: 0.55em;
  }

  .faq-a {
    font-size: 1em;
  }

  .pricing-grid {
    max-width: 92%;
    flex-direction: column;
    gap: 1rem;
  }

  .price-item {
    min-height: max-content;
  }

  .p-benefits {
    margin-bottom: 12px;
  }

  .price-desc {
    font-size: 0.8em;
  }

  .p-benefits > p {
    font-size: 0.8em;
    margin-bottom: 16px;
  }

  h2.cb-hist {
    margin-bottom: 1.4em;
  }

  .cl-footer {
    margin-top: 32px;
    margin-bottom: 20%;
  }

  .cb-footer {
    margin-top: -3em;
    margin-bottom: 8em;
    font-size: 1.05em;
  }


  .cl-cont {
    max-width: 95%;
  }

  .cl-node,
  .cl-card {
    width: 98%;
  }

  .cl-hero-card {
    width: 98%;
  }

  .cl-hero-img {
    width: 100%;
  }

  .cl-date,
  .cl-line,
  .cl-blip {
    display: none;
  }

  .feat-item h4 {
    font-size: 1.2em;
  }

  .feat-item p {
    width: 100%;
    font-size: 1em;
  }

  .feature-spotlight-sect {
    margin-bottom: 25%;
  }

  .feat-spotlight-img {
    width: 90%;
  }

  .feat-name-grid {
    flex-direction: column;
    width: 90%;
  }

  .feat-item {
    max-width: 100%;
    padding: 0;
  }

  .feat-item h4 {
    /*padding-left: 1em;*/
    font-size: 1em;
  }

  .feat-item p {
    margin: 0 auto;
  }

  .ux-grid {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    width: 90%;
    box-sizing: border-box;
    margin: 0 auto;
    margin-bottom: 45%;
  }

  .ux-1 {
    flex: 1;
  }

  .b-1 {
    margin-bottom: 0.7rem;
  }

  .bbox-2 {

  }

  .calc-img-2 {
    
  }

  .bbox-1 .bento-text-cont {
    width: 90%;
    box-sizing: border-box;
    height: 420px;
    margin-top: -2%;
  }

  .bento-text-cont p {
    font-size: 0.9em;
  }

  .bento-img-cont-1 {
    width: 600px;
    top: 55%;
    left: 10%;
    position: absolute;
  }

  .bbox-2 .bento-text-cont {
    padding: 24px 2em;
  }

  .bbox-4 .bento-text-cont {
    padding: 20px 2em;
  }

  .slayer-1 {
    height: 92%;
    top: 8%;
  }

  .bbox-3 .bento-text-cont {
    /* position: relative;
  top: 22%; */
    padding-top: 10%;
    width: 80%;
    margin: 0 auto;
    height: 300px;
  }

  .bento-img-cont-2 {
    width: 310px;
    height: auto;
    left: 4%;
    top: 48%;
    position: absolute;
  }

  .slayer-2 {
    height: 50%;
    top: 44%;
  }

  .bento-browsers {
    margin-top: 0.6em;
    margin-bottom: 0.6em;
  }

  .bento-browsers img {
    width: 28px;
    height: auto;
  }

  .ux-2 {
    flex: 1;
  }

  .ux-3 {
    flex: 1;
  }

  .ux-4 {
    flex: 1;
  }

  p.bento-desc {
    font-size: 0.9em;
  }

  .first-section {
    top: 120px;
  }

  .bg-img {
    top: 5%;
    left: 2%;
    width: 360px;
  }

  .logo-img {
    margin-top: -12%;
    width: 50px;
    border-radius: 12px;
  }

  .brand-name-home {
    margin-top: 4em;
  }

  .jumbotron {
    margin-top: 28%;
  }

  .h1 {
    font-size: 2.2em;
  }

  .tagline {
    font-size: 1em;
    width: 90%;
  }

  .h2 {
    font-size: 1.7em;
    margin-bottom: 0.5em;
  }

  .sect-tagline {
    font-size: 1em;
    line-height: 1.5em;
    max-width: 90%;
    margin-bottom: 2em;
  }

  .nova {
    top: -35%;
    left: 55%;
  }

  .nova-blue {
    position: absolute;
    height: 1500px;
  }

  .feature-preview-box {
    flex-wrap: wrap;
    width: 100%;
    gap: 8px;
  }

  .feature-box {
    width: 110px;
    text-align: center;
    font-size: 0.8em;
  }

  .mob-break {
    display: block;
  }

  .des-break {
    display: none;
  }

  .feat-spotlight-img-2 {
    max-width: 90%;
  }

  .feat-img-cb-hist {
    position: relative;
    z-index: 2;
    height: auto;
    margin: 0 auto;
    max-width: max-content;
  }

  .slayer-3 {
    width: 100%;
    position: absolute;
    height: 50%;
    bottom: 0;
    z-index: 3;
    background: linear-gradient(to bottom, transparent, rgba(8, 8, 8, 0.4), rgba(8, 8, 8, 0.5), rgba(8, 8, 8, 0.7), rgba(8, 8, 8, 0.95), rgba(8, 8, 8, 1));
  }

  .sect-tagline-bottom {
    margin-bottom: 5em;
    margin-top: 0.2em;
    font-size: 1.1em;
    max-width: 85%;
    text-align: left;
  }

  #img1, #img3 {
    display: none;
  }

  #img2 {
    width: 90%;
    border-radius: 6px;
  }
}

/* ------------- */
/* 414 - 768px */
@media screen and (min-width: 414px) and (max-width : 768px) {
  .footer {
    padding: 0 0.8em;
    padding-top: 24px;
    padding-bottom: 32px;
  }

  .footer-top, .footer-bottom {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .footer-top {
    row-gap: 1.2em;
    margin-bottom: 0.3em;
  }
  
  .footer-bottom {
    margin-top: 1em;
    row-gap: 1.2em;
  }

  .footer p {
    margin: 0;
    font-size: 0.9em;
  }
    h2.cb-hist {
      margin-bottom: 1.45em;
    }

    .cb-footer {
      margin-top: -2.6em;
      font-size: 1.2em;
    }
  
    .feat-spotlight-img-2 {
      max-width: 90%;
    }
  
    .feat-img-cb-hist {
      position: relative;
      z-index: 2;
      height: auto;
      margin: 0 auto;
      max-width: max-content;
    }
  
    .slayer-3 {
      width: 100%;
      position: absolute;
      height: 50%;
      bottom: 0;
      z-index: 3;
      background: linear-gradient(to bottom, transparent, rgba(8, 8, 8, 0.4), rgba(8, 8, 8, 0.5), rgba(8, 8, 8, 0.7), rgba(8, 8, 8, 0.95), rgba(8, 8, 8, 1));
    }
  
  .faq-h2 {
    margin-top: 25%;
    font-size: 1.7em !important;
  }
  
  .faq-cont {
    max-width: 90%;
    margin-top: 50px;
  }

  .q-cont {
    /* border-bottom: 1px solid #505050d0; */
  }

  .faq-q {
    font-size: 1.2em;
    margin-bottom: 0.55em;
  }

  .faq-a {
    font-size: 1em;
  }
  
  .pricing-grid {
    max-width: 95%;
    flex-direction: column;
    gap: 1rem;
  }
  
  .price-item {
    min-height: max-content;
  }

  .p-benefits {
    margin-bottom: 12px;
  }

  .p-benefits > p {
    font-size: 0.96em;
  }

  .cl-footer {
    margin-top: 32px;
    margin-bottom: 20%;
  }
  
  .cl-cont {
    max-width: 95%;
  }

  .cl-node, .cl-card {
    width: 98%;
  }

  .cl-hero-card {
    width: 98%;
  }

  .cl-hero-img {
    width: 100%;
  }

  .cl-date, .cl-line, .cl-blip {
    display: none;
  }

  .feature-spotlight-sect {
    margin-bottom: 25%;
  }

  .feat-spotlight-img {
    width: 90%;
  }

  .feat-name-grid {
    flex-direction: column;
    width: 90%;
  }

  .ux-grid {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    width: 90%;
    box-sizing: border-box;
    margin: 0 auto;
    margin-bottom: 45%;
  }

  .ux-1 {
    flex: 1;
  }

  .b-1 {
    margin-bottom: 0.7rem;
  }

  .bbox-2 {
    height: 630px;
  }

  .bbox-1 .bento-text-cont {
    width: 90%;
    box-sizing: border-box;
    top: -4%;
    height: 420px;
  }

  .bento-img-cont-1 {
    width: 600px;
    top: 55%;
    left: 10%;
    position: absolute;
  }

  .slayer-1 {
    height: 95%;
    top: 8%;
  }

  .bento-img-cont-2 {
    width: 300px;
    height: auto;
    top: 10%;
    left: 9.3%;
  }

  .slayer-2 {
    height: 35%;
    top: 55%;
  }

  .ux-2 {
    flex: 1;
  }

  .ux-3 {
    flex: 1;
  }

  .ux-4 {
    flex: 1;
  }

  .first-section {
    top: 120px;
  }

  .bg-img {
    top: 3%;
    left: 4%;
    width: 380px;
  }
  
  .logo-img {
    margin-top: -12%;
    width: 50px;
    border-radius: 12px;
  }

  .brand-name-home {
    margin-top: 4em;
  }
 
  .jumbotron {
    margin-top: 28%;
  }
  
  .h1 {
    font-size: 2.4em;
  }
  
  .tagline {
    font-size: 1em;
    width: 90%;
  }

  .h2 {
    font-size: 1.9em;
  }

  .sect-tagline {
    font-size: 1.1em;
    line-height: 1.5em;
    max-width: 96%;
    margin-bottom: 2em;
  }
  
  .nova {
    top: -35%;
    left: 55%;
  }

  .nova-blue {
    position: absolute;
    height: 1500px;
  }

  .feature-preview-box {
    flex-wrap: wrap;
    width: 100%;
    gap: 8px;
  }

  .feature-box {
    width: 110px;
    text-align: center;
    font-size: 0.8em;
  }

  .mob-break {
    display: block;
  }

  .des-break {
    display: none;
  }

  .sect-tagline-bottom {
    margin-bottom: 5em;
    margin-top: 0.2em;
    font-size: 1.1em;
    max-width: 85%;
    text-align: left;
  }
  #img1, #img3 {
    display: none;
  }

  #img2 {
    width: 90%;
    border-radius: 6px;
  }
}

/* extra */
p {
  color: #c8d4eac7;
}

#modal-overlay {
  position: fixed;
  background-color: #000;
  opacity: 0.8;
  z-index: 101;
  height: 100vh;
  width: 100%;
  top: 0;
  left: 0;
  filter: blur(25px);
}

@keyframes pmodal {
  to {
    opacity: 1;
    top: 50%;
  }
}

/* 🔥 NOW MAKE IT RESPONSIVE */

.pmodal {
  opacity: 0;
  position: fixed;
  border-radius: 12px;
  margin: 0 auto;
  border: 1px solid #333535;
  top: 53%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 640px;
  height: 710px;
  z-index: 102;
  padding: 0.8rem 2.4rem;
  background-color: #121313;
  overflow-y: scroll;
  color: white;
  animation: pmodal 0.5s forwards ease-in-out;
}

.shop-item {
  border: 1.5px solid #333535;
  border-radius: 12px;
  margin-bottom: 1rem;
  transition: transform 0.2s ease-in-out, border-color 0.3s ease-in-out;
}

.shop-top {
  display: flex;
  padding: 12px 12px;
  justify-content: space-between;
  border-bottom: 1px solid #333535;
}

.shop-item-price {
  font-size: 1.2rem;
}

.shop-body {
  padding: 12px 12px;
}

.shop-desc {
  font-size: 0.9rem;
}

.shop-item:hover {
  transform: scale(1.01);
  border-color: #98c0ef;
  cursor: pointer;
}

.dl-cont {
  display: flex;
  column-gap: 5%;
  width: 90%;
  margin: 0 auto;
}

.dl-left {
  flex: 2;
}

.dl-right {
  flex: 1;
}

.cpu-card {
  display: flex;
}

.changelog-notes {
  height: 300px;
  width: 100%;
  box-sizing: border-box;
  border: 1.5px solid gray;
  border-radius: 8px;
}

.arch-cont {
  display: flex;
  gap: 1.8em;
  justify-content: center;
}

.cpu-chip {
  position: relative;
  height: 210px;
  width: 210px;
  border: 1.5px solid gray;
  border-bottom-color: #444;
  border-radius: 2px;
  border-bottom-width: 2.5px;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
  transition: border-color 0.2s ease-in-out, transform 0.25s ease-in-out;
}

.cpu-chip:hover {
  transform: scale(1.067);
  cursor: pointer;
}

.chip-intel {
  position: absolute;
  left: 25px;
  top: 40px;
  height: auto;
  width: 78%;
  filter: grayscale(100%);
  opacity: 0.6;
  transition: filter 0.3s ease-in-out;
}

.intel-box:hover {
  border-color: #72CFFD;
  box-shadow: 0 0 16px #30A0DA;
  /* background-color: #105375; */
}

.cpu-chip:hover .intel-name {
  opacity: 1;
  text-shadow: 0 0 16px #30A0DA;
  color: #ffffffb0;
  /* color: #94DBFF; */
}

.cpu-chip:hover .silicon-name {
  opacity: 1;
  text-shadow: 0 0 16px hotpink;
  color: #ffffffb0;
  /* color: #94DBFF; */
}

.silicon-box:hover {
  border-color: #FF94C9;
  box-shadow: 0 0 16px hotpink;
  background-color: #111;
}

.intel-box, .silicon-box {
  transition: box-shadow 0.1s ease-in-out;
}

.cpu-chip:hover .chip-intel, .chip-silicon {
  filter: grayscale(0);
}

.cpu-chip:hover .chip-m {
  color: #f5f5f5;
  opacity: 0.85;
}

.chip-m {
  opacity: 0.5;
  filter: grayscale(100%);
  font-weight: 400;
  color: gray;
  transition: opacity 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.chip-silicon {
  position: absolute;
  left: 22px;
  top: 48px;
  height: auto;
  width: 76%;
  filter: grayscale(100%);
  /* opacity: 0.6; */
}


.chip-name {
  justify-self: flex-end;
  align-self: flex-end;
  color: #fff;
  opacity: 0.4;
  text-transform: uppercase;
  position: absolute;
  bottom: 12px;
  white-space: nowrap;
  display: block;
  text-align: center;
  width: 100%;
  font-size: 1em;
  /* font-family: monospace; */
}

.dl-backdrop {
  position: fixed;
  width: 100%;
  z-index: -1;
  top: 0;
  left: 0;
  height: 100vh;
}

.grad-text {
    background: linear-gradient(to bottom right, #fff, #e2e2ff, rgba(176, 176, 176, 0.3));
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;

}

.demo-cont {
  display: flex;
  justify-content: center;
  margin-top: 12.5%;
  margin-bottom: 13.5%;
  z-index: 8;
}

.hero-img {
  height: auto;
  width: 720px;
  color: white;
  border: 1px solid transparent;
  border-radius: 12px;
  user-select: none;
  pointer-events: all;
  transition: filter 0.2s ease-in-out, transform 0.2s ease-in-out, border-color 0.2s ease-in-out;
}

.demo-bg {
  z-index: 3;
  filter: brightness(50%);
  transform: scale(1) !important;
}

.demo-fg {
  z-index: 4 !important;
  /* #295DD6 */
  /* box-shadow: 0px 0px 20px #567DD7 !important; */
  box-shadow: 0 0 20px #295dd6 !important;
  border-color: #567DD7;
  transform: scale(1.033);
}


.hero1 {
  position: relative;
  top: 50px;
  left: 23.5%;
  z-index: 2;
}

.hero2 {
  position: relative;
  z-index: 3;
  box-shadow: 0px 15px 30px #000;
}

.hero3 {
  position: relative;
  z-index: 2;
  top: 50px;
  right: 23.5%;
}

.message-to-users p {
  font-size: 1.05rem;
  line-height: 2rem;
}

.hidden {
  display: none !important;
}

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 500;
}

.pmodal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #111;
  padding: 2rem;
  border-radius: 12px;
  z-index: 600;
  max-width: 480px;
  width: 90%;
}

