@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Fira+Sans:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');


:root {
  --primary-color:#161e29 /* #4b46ff /*#605cfa*/;
  --primary-color-dark: #db6f35;
  --body-background:#F9FAFC /* #f4f5f7 /*#FAF5F1*/;
  --element-background: #ffffff;
  --text-dark: #161e29;
  --text-light: #4e5562;
  --mobile-background:rgba(250, 250, 252, 0.8);
  --white: #ffffff;
  --opacity: 1;
  --max-width: 1140px;
  --header-font: "Bebas Neue", sans-serif;
  --main-font: /*"Nunito", serif*/ "Inter", sans-serif; /*"Fira Sans", serif*/
  --font-weight: 400;
}

[data-theme="dark"] {
  --primary-color: #4ade80 /* #cbf36e*/;
  --primary-color-dark: #db6f35;
  --body-background: #0d1011;
  --element-background: #090a0b;
  --text-dark: #ffffff;
  --text-light: #b9b7c0;
  --mobile-background:rgba(22, 22, 23, 0.88);
  --white: #ffffff;
  --opacity: 0;
  --max-width: 1140px;
  --header-font: "Bebas Neue", sans-serif;
  --main-font: /*"Nunito", serif*/ "Inter", sans-serif; /*"Fira Sans", serif*/
  --font-weight: 300;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

a {
  text-decoration: none;
  transition: 0.3s;
  color: var(--text-light);
}

body {
  font-family: var(--main-font);
  background: var(--body-background);
  font-size: 13px;
  line-height: 1.5;
  transition: background-color 0.3s, color 0.3s;
}

nav {
  position: fixed;
  isolation: isolate;
  width: 100%;
  padding: 1rem 2rem;
  background: transparent;
  display: flex;
  align-items: center;
  z-index: 9;
  place-content: space-between;
  
}

@media only screen and (max-width: 760px) {
  nav {
    background: var(--mobile-background);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    backdrop-filter: saturate(180%) blur(20px);
  }
}



























































.nav__logo a {
  font-size: 1.75rem;
  font-weight: 400;
  font-family: var(--header-font);
  color: var(--text-dark);
}
.nav__logo a span {
  color: var(--primary-color);
}

.header__container {
  max-width: var(--max-width);
  margin: auto;
  padding-block: 7rem 2rem;
  padding-inline: 2rem;
  display: grid;
  gap: 2rem;
}

.header__image {
  position: relative;
  isolation: isolate;
  grid-area: 2;
}

.header__content h1 {
  margin-bottom: 1rem;
  font-size: 4.5rem;
  font-weight: 400;
  font-family: var(--header-font);
  color: var(--text-dark);
  line-height: 5rem;
  text-align: center;
}

.header__content h1 span {
  color: var(--primary-color);
  /*background: linear-gradient(90deg, #43FFEC 0%, #FFB84D 50%, #FF0080 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;*/
}

.header__content p {
  margin-bottom: 2rem;
  columns: var(--text-light);
  line-height: 1.75rem;
  text-align: center;
}

/* Action Buttons */
.actions {
  display: flex;
  gap: 1rem;
}

.action-btn {
  flex: 1;
  position: relative;
  padding: 0.8rem;
  border: none;
  outline: none;
  border-radius: 0.8rem;
  font-size: 1rem;
  font-weight: 400;
  cursor: pointer;
  overflow: hidden;
  white-space: nowrap;
  transition: all 0.3s ease;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.action-btn span {
  position: relative;
  z-index: 1;
}

.btn-effect {
  position: absolute;
  inset: 0;
  transition: opacity 0.3s ease;
}

.primary {
  background: linear-gradient(45deg, #60a5fa20, #a78bfa20);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.primary .btn-effect {
  /*background: linear-gradient(45deg, #2ca6f8, #2ca6f8);*/
  background: linear-gradient(45deg, #000000, #004c9c);
  opacity: var(--opacity);
}

.primary:hover .btn-effect {
  opacity: 0.2;
}

.secondary {
  background: transparent;
  color: var(--text-light) /*#94a3b8*/;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.secondary .btn-effect {
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.5);
  opacity: var(--opacity);
}

.secondary:hover .btn-effect {
  opacity: 1;
}

@media (width > 768px) {
  nav {
    position: static;
    padding-block: 2rem 0;
    padding-inline: 2rem;
    max-width: var(--max-width);
    margin-inline: auto;
    display: flex;
    align-items: center;
    gap: 2rem;
  }

  .header__container {
    padding-block: 4rem;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
  }

  .header__image {
    grid-area: 1/2;
  }

  .header__content :is(h1, p) {
    text-align: left;
  }
}





























.iphone-x {
  position: relative;
  margin: 0px auto;
  width: 100%;
  height: 100vh;
  border-radius: 0;
  box-shadow: 0px 0px 0px 11px #121212, 0px 0px 0px 13px #2d2d2d, 0px 0px 0px 20px #00000059, 0 55px 40px rgb(0 0 0 / 60%);
}
@media (min-width: 375px) {
  .iphone-x {
    margin: auto;
    border-radius: 40px;
    height: 640px;
    width: 308px;
  }
}
.iphone-x:before, .iphone-x:after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
/*
.iphone-x:after {
  bottom: 7px;
  width: 80px;
  height: 4px;
  background-color: #ffffff;
  border-radius: 10px;
  z-index: 3;
}*/
.iphone-x:before {
  top: 10px;
  width: 32%;
  height: 28px;
  background-color: #121212;;
  border-radius: 40px;
  z-index: 2;
}

.iphone-x b,
.iphone-x s,
.iphone-x .content {
  position: absolute;
  display: block;
  color: transparent;
}

.iphone-x b {
  left: 7%;
  top: 11px;
  transform: translate(160px, 4px);
  width: 18px;
  height: 18px;
  background-color: #000000;
  border-radius: 12px;
  box-shadow: inset 0px -3px 2px 0px rgba(255, 255, 255, 0.2);
  z-index: 3;
  opacity: .2;
}
.iphone-x b:after {
  content: "";
  position: absolute;
  background-color: #4858a5;
  width: 12px;
  height: 12px;
  top: 2px;
  left: 2px;
  top: 3px;
  left: 3px;
  display: block;
  border-radius: 12px;
}
.iphone-x .content {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  z-index: 1;
  color: rgb(255, 255, 255);
  /*background: rgb(243 183 44);
  background: #6236FF; 
  background: #e3e4ea;*/
  position: relative;
  border-radius: 0;
}
@media (min-width: 375px) {
  .iphone-x .content {
    border-radius: 40px;
  }
}
main {
  color: #fbfbfb;
  position: relative;
  height: 100%;
}

.intro {
  position: absolute;
  bottom: 0;
  width: 100%;
  left: 0;
  height: 35%;
  padding: 1rem;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.intro__title {
  text-align: center;
  font-weight: 500;
  /*color: #4e54c8 !important;*/
  margin-bottom: 1rem;
  padding:0.25em 0.725em;
  border-radius: 0.7em;
  background: rgba(0, 0, 0, 0.2) !important;
}
.launch {
  overflow: hidden;
  position: relative;
  height: 100%;
}





















.l-content {
  position: absolute;
  width: 100%;
  margin: 0 auto;
}
.l-footer__copyright {
margin: 0 auto 35px;
max-width: 674px;
overflow: hidden;
text-align: center;
}
.l-footer__copyright p {
margin: 0;
font-size: .75rem !important;
color: var(--text-light) !important;
font-weight: var(--font-weight);
}
@media screen and (max-width: 768px) {
.l-footer__copyright {
  padding: 0 15px;
  margin: 0 auto 35px;
}
}





.text-rotator {
  white-space: nowrap;
  opacity: 1;
  /* the transition durations should match the animation durations */
  transition: opacity 0.5s ease, width 0.5s ease-in-out;
  display: inline-block;
}

.text-rotator.fade-out {
  opacity: 0;
}













































.hero {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-end;
  padding: 1rem;
}

.hero img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 180px;
  width: 180px;
  object-fit: contain;
}

.hero svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 160px;
  object-fit: contain;

}
























.wrapper-of-wrapper {
  filter: blur(100px);
  pointer-events: none;
  position: fixed;
  min-width: 100%;
  margin-top: 0px;
  height: 180%;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  z-index: -999 !important;
  opacity: 0.15;
  transition: opacity .8s;
}
[data-theme="dark"] .wrapper-of-wrapper {
  opacity: 0.3;
}
.wrapper {
  border-radius: 99999px;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;
  min-width: 1000px;
  height: 100vh;
  transform: translate(-50%, -50%) scale(0.6);
  overflow: hidden;
}
.rainbow {
  animation: ColorBlobs_spin__CbrXa 8s linear infinite;
  background: conic-gradient(
    from 0deg,
    #08f,
    #FFC107,
    #ff5520,
    #4c00ff,
    #ab2666,
    #09f,#fb0094
  );  
  /*
  --color-1: #6328da;
  --color-2: #ff1bf1;
  --color-3: #008cea;*/
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 100vw;
  transform: translate(-50%, -50%);
}
@keyframes ColorBlobs_spin__CbrXa {
  0% {
    transform: translate(-50%, -50%) rotate(0deg) scale(2);
  }

  to {
    transform: translate(-50%, -50%) rotate(1turn) scale(2);
  }
}

























.theme-toggle {
  background: none;
  border: none;
  color: var(--text-dark);
  cursor: pointer;
  padding: 0.5rem;
  font-size: 1.25rem;
  position: relative;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--element-background);
  transition: all 0.3s ease;
  overflow: hidden;
}

.theme-toggle:hover {
  color: var(--primary-color);
  transform: translateY(-2px);
}

.theme-toggle i {
  transition: transform 0.3s, opacity 0.3s;
  position: absolute;
  font-size: 1.25rem;
  color: var(--primary-color);
}

.sun-icon {
  position: absolute;
  opacity: 0;
  transform: translateY(20px);
}

[data-theme="dark"] .moon-icon {
  opacity: 0;
  transform: translateY(-20px);
}

[data-theme="dark"] .sun-icon {
  opacity: 1;
  transform: translateY(0);
}

















.card {
  margin-bottom: 1rem;
}

.cards-details {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem;
}
.new {
  color: var(--primary-color);
  text-align: center;
  font-weight: 400;
  letter-spacing: 0.35em;
  text-transform: uppercase;
}
.price-content {
  align-self: flex-end !important;
  color: var(--text-dark);
}
.price-discount {
  font-size: 1rem;
  display: flex;
  justify-content: space-between;
}
.badge-discount {
  color: var(--text-dark);
  letter-spacing: .7px;
  padding: 0em 0.625em;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 0.1875rem;
  margin-right: 10px;
  font-weight: 400;
}
.Price-amount {
  text-decoration: line-through;
  color: var(--text-dark);
}
.priceTag {
  display: flex;
  align-items: center;
  font-size: 2rem;
  line-height: 1;
  font-weight: 300;
  color: var(--text-dark);
}
.priceTag span {
  color: var(--primary-color);
  font-size: 1.4rem;
}
















































:root {
  --baseSize: 16px;
  --baseLineHeight: 1.5;
}


.card__header {
  display: flex;
  gap: 12px;
  align-items: center;
}
.card h2 {
  color: var(--text-dark);
  font-size: 1.2rem;
  line-height: 1.2;
  font-weight: 300;
  margin: 0;
  flex-grow: 1;
}
.card__desc {
  margin: 1.5rem 0 0;
  color: var(--text-light);
}

.label {
  line-height: 1.25;
  font-size: 1rem;
  text-align: center;
  padding: 0.625rem 1.125rem;
  border-radius: 12px;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  background-color: #fdb72e;;
  color: #000;

  display: inline-block;
  padding: .375rem .75rem;
  width: fit-content;
  /* align-self: center; */
  font-size: 12px;
  border-radius: 16px;
  text-align: center;
  border-radius: 0.7em;
  font-weight: 500;
}
.featureList {
  --height: 0.875rem;
  margin: 0 0 2.75rem;
  padding: 0;
}
.featureList li {
  color: var(--text-light);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
}
.featureList li:last-child {
  margin-bottom: 0;
}
@media screen and (min-width: 641px) and (max-width: 768px) {
  :root {
    --baseSize: 12px;
  }
}
@media screen and (min-width: 769px) and (max-width: 1080px) {
  :root {
    --baseSize: 14px;
  }
}
























svg {
  display: block;
}
.mr-3 {
  margin-right: 0.75rem;
}
.flex {
  display: flex;
}
.h-3 {
  height: 0.75rem;
}
.w-3 {
  width: 0.75rem;
}
.shrink-0 {
  flex-shrink: 0;
}
.feature-item {
  align-items: center;
}
.fill-emerald-500 {
  fill: var(--primary-color);
}




.card__icon svg {
  display: inline-block;
  transform: translateY(0.1em);
  fill: #2ca6f8;
  width: auto;
  height: 2em;
}

























.sliders {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
  padding: 25px;
  border-radius: 5px;
  background: #ffffff;
  border-radius: 25px;
  box-shadow: 0 1px 4px rgba(18, 22, 33, 0.12);
  
}

input {
  -webkit-appearance: none;
  width: 14rem;
  background: transparent;
  margin-top: 30px;
  border-radius: 5px;
}
input:nth-child(1) {
  margin-top: 0;
}

/* Track Styles  */
/* chrome, safari, edge, firefox */
input::-webkit-slider-runnable-track {
  height: 2px;
  border-radius: 20px;
  box-shadow: inset 1px 1px 2px #57575780;
}

input::-moz-range-track {
  height: 2px;
  border-radius: 20px;
  box-shadow: inset 1px 1px 2px #57575780;
}
/* red track */
input:first-child::-webkit-slider-runnable-track {
  background: #ff5e5e;
}
input:first-child::-moz-range-track {
  background: #ff5e5e;
}

/* green track */
input:nth-child(2)::-webkit-slider-runnable-track {
  background: #66ed85;
}
input:nth-child(2)::-moz-range-track {
  background: #66ed85;
}

/* blue track  */
input:nth-child(3)::-webkit-slider-runnable-track {
  background: #69b6ff;
}

input:nth-child(3)::-moz-range-track {
  background: #69b6ff;
}

/* Thumb Styles  */
input::-moz-range-thumb:hover {
  cursor: grab;
}
input::-webkit-slider-thumb:hover {
  cursor: grab;
}

input::-webkit-slider-thumb {
  -webkit-appearance: none;
  height: 20px;
  width: 20px;
  border-radius: 50%;
  border: none;
  background-color: white;
  transform: translateY(-10px);
  border: 2px solid black;
}

input::-moz-range-thumb {
  -webkit-appearance: none;
  height: 20px;
  width: 20px;
  border-radius: 50%;
  border: none;
  background-color: white;
  box-shadow: inset 0.5px 0.5px 1px #57575780;
}

.sliders span {
  padding-top: 10px;
  color: #2e2e2e;
  font-size: 11px;
  letter-spacing: 1px;
}



















