* {
  font-family: -apple-system, BlinkMacSystemFont, Roboto, Helvetica Neue, sans-serif;
  font-weight: 274;
}

body {
  background: #131313;
  color: #a78bfa;
  font-family: 'Inter', Arial, sans-serif;
  margin: 0;
  min-height: 100vh;
}

.thin {
  font-weight: 274;
}

.extra-thin {
  font-weight: 110;
}

.text-xl {
  font-size: 3.5rem;
}

.text-lg {
  font-size: 1.4rem;
}

.text-md {
  font-size: 1.1rem;
}

.text-sm {
  font-size: 0.9rem;
}

.text-primary {
  color: #A99EFF;
}

.text-secondary {
  color: #A097C1;
}

.text-tertiary {
  color: #b0b0b0;
}

.\-z-1 {
  z-index: -1;
}

.mb-8 {
  margin-bottom: 32px;
}

.mb-6 {
  margin-bottom: 24px;
}

.min-h-100vh {
  min-height: 100vh;
}

.min-h-80vh {
  min-height: 80vh;
}

.max-w-500 {
  max-width: 500px;
}

.max-w-full {
  max-width: 100%;
}

.w-full {
  width: 100%;
}

.w-250 {
  width: 250px;
}

.w-300 {
  width: 300px;
}

.h-300 {
  height: 300px;
}

.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

.w-50 {
  width: 50px;
}

.w-35 {
  width: 35px;
}

.flex {
  display: flex;
}

.flex-col {
  flex-direction: column;
}

.flex-row {
  flex-direction: row;
}

.gap-4 {
  gap: 16px;
}

.gap-6 {
  gap: 24px;
}

.gap-8 {
  gap: 32px;
}

.gap-130 {
  gap: 130px;
}

.\-mx-100 {
  margin-left: -100px;
  margin-right: -100px;
}

.\-mt-1 {
  margin-top: -4px;
}

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

.items-center {
  align-items: center;
}

.text-align-start {
  text-align: start;
}

.text-align-center {
  text-align: center;
}

.pt-100 {
  padding-top: 100px;
}

.pb-60 {
  padding-bottom: 60px;
}

.container {
  display: flex;
  flex-direction: column;
  margin: 0 auto;
  padding: 0 100px;
  overflow: hidden;
}

.text-gradient {
  background: -webkit-linear-gradient(300deg, #A99EFF, #7558EB);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.background-radial-gradient {
  background: radial-gradient(circle,#7A57FF 0%, transparent 50%);
}

.\-top-100\% {
  top: -100%;
}

.\-bottom-100\% {
  bottom: -100%;
}

.\-left-100\% {
  left: -100%;
}

.right-30\% {
  right: 30%;
}

.\-right-100\% {
  right: -100%;
}

.left-30\% {
  left: 30%;
}

h1 {
  margin-bottom: 32px;
}

h2 {
  margin-bottom: 32px;
}

.store-buttons {
  display: flex;
  gap: 16px;
}

.store-buttons img {
  height: 30px;
  width: auto;
  filter: brightness(0.95) contrast(1.1);
  transition: transform 0.2s;
}

.store-buttons a:hover img {
  transform: scale(1.05);
}

.phone-mockup {
  /* background-color: #00FF00; */
  display: flex;
  justify-content: center;
  align-items: center;
}

.phone-mockup img {
  width: 110%;
  object-fit: contain;
  height: auto;
}

.trademark-mobile {
  display: none;
}

@media (max-width: 800px) {
  .container {
    padding: 0 16px;
  }

  .phone-mockup {
    display: none;
  }

  .pro-mockup-2 {
    min-height: 50vh;
  }

  .pro-mockup-2 img {
    margin-left: 50px;
    margin-right: 50px;
  }

  .min-h-80vh {
    min-height: 60vh;
  }

  .left-gradient {
    left: -200%;
    right: -10%;
  }

  .right-gradient {
    left: -10%;
    right: -200%;
  }

  .founders-section {
    flex-direction: column;
  }

  .footer {
    flex-direction: column;
  }

  .footer .socials {
    flex-direction: row;
  }

  .footer .trademark {
    display: none;
  }

  .footer .trademark-mobile {
    display: block;
  }
}

/* @media (max-width: 900px) {
  .container {
    flex-direction: column;
    align-items: flex-start;
    padding: 40px 16px;
  }
  .phone-mockup {
    margin-top: 40px;
    width: 100%;
    justify-content: flex-start;
  }
  .phone-mockup img {
    width: 220px;
    transform: rotate(-12deg);
  }
}

@media (max-width: 600px) {
  h1, h2 {
    font-size: 2.1rem;
  }
  .phone-mockup img {
    width: 140px;
  }
} */

.features-list {
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 900px;
  margin-top: 48px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 28px;
}

.feature-icon {
  flex-shrink: 0;
  margin-top: 4px;
}

@media (max-width: 700px) {
  .features-description {
    font-size: 1rem;
  }
  .features-list {
    gap: 28px;
  }
}

.flex-1 {
  flex: 1;
}
.flex-4 {
  flex: 4;
}
.min-w-180 {
  min-width: 180px;
}
.text-right {
  text-align: right;
}
.text-left {
  text-align: left;
}
.items-start {
  align-items: flex-start;
}
.pt-60 {
  padding-top: 60px;
}
.pb-60 {
  padding-bottom: 60px;
}
.mb-24 {
  margin-bottom: 24px;
}
.mb-100 {
  margin-bottom: 100px;
}
.mt-12 {
  margin-top: 12px;
}
.mt-2 {
  margin-top: 2px;
}
.max-w-1200 {
  max-width: 1200px;
}
.mx-auto {
  margin-left: auto;
  margin-right: auto;
} 