body {
  background: #151718;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  color: #ECEDEE;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
}

::selection {
  background: #FFD700;
  color: #ec4899;
}

h1, h2, h3, h4, h5, h6 {
  color: #ECEDEE;
  font-weight: 700;
}

h1 {
  font-size: 28px;
  line-height: 1.2;
}
@media (max-width: 992px) {
  h1 {
    font-size: 2rem;
  }
}

p {
  line-height: 1.5;
  color: #ECEDEE;
}

.row {
  margin-left: 0;
  margin-right: 0;
}

.main-wrapper {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
}

.bg-darker {
  background-color: #0d0e0f;
}

.text-cyan {
  color: #3BF0A5;
}

.text-letter-spacing-1 {
  letter-spacing: 1px;
}

.hover-cyan:hover {
  color: #3BF0A5 !important;
  text-shadow: 0 0 6px rgba(59, 240, 165, 0.3);
}

.hover-glow:hover {
  box-shadow: 0 0 12px rgba(59, 240, 165, 0.5);
  transform: translateY(-5px);
}

.bg-gradient-dark {
  background: linear-gradient(180deg, rgba(21, 23, 24, 0.8) 0%, rgba(10, 187, 234, 0.1) 100%);
}

.bg-glow-cyan {
  background: rgba(59, 240, 165, 0.2);
  filter: blur(60px);
  z-index: -1;
}

.bg-glow-purple {
  background: rgba(139, 92, 246, 0.2);
  filter: blur(80px);
}

.transition-all {
  transition: all 0.3s ease;
}

.object-fit-cover {
  object-fit: cover;
}

.store-logo {
  height: 50px;
}

@media (min-width: 992px) {
  .translate-lg-middle-y {
    transform: translateY(-50%);
  }
  .translate-lg-top-y {
    transform: translateY(0%);
  }
  .top-lg-25 {
    top: 25%;
  }
}
@media (min-width: 768px) {
  .top-md-0 {
    top: 0;
  }
  .top-md-5 {
    top: 5%;
  }
  .top-md-25 {
    top: 25%;
  }
}
label {
  color: #ECEDEE;
  font-size: 14px;
}

input, textarea {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid #9BA1A6;
  color: #ECEDEE;
  font-size: 14px;
  padding: 10px;
  border-radius: 4px;
}
input::placeholder, textarea::placeholder {
  color: #9BA1A6;
  font-size: 14px;
  font-weight: 400;
}
input:focus, textarea:focus {
  outline: none;
  border-color: #3BF0A5;
  box-shadow: 0 0 6px rgba(59, 240, 165, 0.3);
}

.form-description {
  color: #ECEDEE;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
}

.btn {
  border-radius: 8px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  text-align: center;
  transition: all 0.3s ease;
  color: #FFF;
  padding: 12px 24px;
  display: inline-block;
  text-decoration: none;
}
.btn.btn-small {
  padding: 8px 16px;
  font-size: 12px;
}
.btn.btn-medium {
  padding: 10px 20px;
  font-size: 14px;
}
.btn.btn-large {
  padding: 14px 28px;
  font-size: 16px;
}
.btn.btn-primary, .btn.btn-gradient-1 {
  background: linear-gradient(90deg, rgba(59, 240, 165, 0.15) 0%, rgba(10, 187, 234, 0.5) 100%);
  color: #FFF;
  border: none;
}
.btn.btn-primary:hover, .btn.btn-gradient-1:hover {
  box-shadow: 0 0 20px rgba(59, 240, 165, 0.7);
  transform: translateY(-2px);
  color: #FFF;
}
.btn.btn-secondary, .btn.btn-gradient-2 {
  background: linear-gradient(90deg, rgba(255, 99, 71, 0.15) 0%, rgba(236, 72, 153, 0.5) 100%);
  color: #FFF;
}
.btn.btn-secondary:hover, .btn.btn-gradient-2:hover {
  box-shadow: 0 0 20px rgba(139, 92, 246, 0.7);
  transform: translateY(-2px);
  color: #FFF;
}
.btn.btn-outline {
  background: transparent;
  border: 1px solid #3BF0A5;
  color: #3BF0A5;
  box-shadow: none;
}
.btn.btn-outline:hover {
  background: rgba(59, 240, 165, 0.1);
  box-shadow: 0 0 6px rgba(59, 240, 165, 0.3);
  color: #3BF0A5;
}

.intro-banner {
  position: relative;
  background-color: #151718;
  padding: 4rem 0;
}
@media (max-width: 768px) {
  .intro-banner {
    padding: 2rem 0;
  }
}
.intro-banner .row.front {
  position: relative;
  z-index: 100;
}
.intro-banner .banner-image {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 0 12px rgba(59, 240, 165, 0.5);
}
.intro-banner .card {
  background: transparent;
  border: none;
}
.intro-banner .card-body {
  padding: 0;
}
.intro-banner .card-title {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  font-size: 4rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #FFF;
  margin-bottom: 1.5rem;
  text-shadow: 0 0 20px rgba(59, 240, 165, 0.3);
}
@media (max-width: 992px) {
  .intro-banner .card-title {
    font-size: 2.5rem;
  }
}
.intro-banner .card-title span {
  color: #3BF0A5;
}
.intro-banner .card-text {
  color: #ECEDEE;
  font-size: 1.25rem;
  margin-bottom: 2rem;
  max-width: 600px;
}
.intro-banner.hero-quote {
  text-align: center;
  padding: 6rem 0;
}
.intro-banner.hero-quote .bg-gradient-light-blue {
  background: linear-gradient(180deg, rgba(21, 23, 24, 0) 0%, rgba(10, 187, 234, 0.05) 100%);
  z-index: -1;
}
.intro-banner.hero-quote .font-serif {
  font-family: serif;
}
.intro-banner.hero-quote .card-text {
  font-size: 1.5rem;
  font-style: italic;
  color: #3BF0A5;
  margin: 0 auto 2rem auto;
}

.footer {
  background-color: #0d0e0f;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 4rem;
  padding-bottom: 2rem;
}
.footer-navigation {
  margin-bottom: 3rem;
}
.footer-subtitle {
  color: #3BF0A5;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  letter-spacing: 1px;
}
.footer-text {
  color: #9BA1A6;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 1rem;
}
.footer .nav-link {
  color: #ECEDEE;
  font-size: 14px;
  font-weight: 400;
  padding: 0;
  transition: color 0.3s ease;
}
.footer .nav-link:hover {
  color: #3BF0A5;
  text-shadow: 0 0 8px rgba(59, 240, 165, 0.3);
}
.footer .nav-item {
  margin-bottom: 0.75rem;
  padding: 0;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 2rem;
  margin-top: 2rem;
}
.footer-bottom .footer-text {
  color: #9BA1A6;
  font-size: 12px;
  margin: 0;
}
.footer .nav {
  padding: 0;
}

.navigation {
  background-color: rgba(21, 23, 24, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1rem 0;
}
.navigation .nav-link {
  color: #ECEDEE;
  font-weight: 500;
  padding: 0.5rem 1rem;
  transition: all 0.3s ease;
}
.navigation .nav-link:hover, .navigation .nav-link.active {
  color: #3BF0A5;
  text-shadow: 0 0 8px rgba(59, 240, 165, 0.5);
  background: transparent;
}

.navbar-toggler {
  background: transparent;
  border: 1px solid #3BF0A5;
  color: #3BF0A5;
  border-radius: 4px;
}
.navbar-toggler:focus {
  box-shadow: 0 0 6px rgba(59, 240, 165, 0.3);
}
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(59, 240, 165, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.lang-link {
  text-decoration: none;
  color: #9BA1A6;
  padding: 2px 4px;
  transition: all 0.3s ease;
}
.lang-link:hover {
  color: #ECEDEE;
}
.lang-link.active {
  font-weight: bold;
  color: #3BF0A5;
  border-bottom: 2px solid #3BF0A5;
}

.card {
  background: #151718;
  border: none;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
}
.card-body {
  padding: 1.5rem;
}
.card-title {
  color: #ECEDEE;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.card-text {
  color: #ECEDEE;
  font-size: 14px;
  line-height: 1.5;
}

.card-gradient-border {
  background: linear-gradient(90deg, #3BF0A5 0%, #0ABBEA 100%);
  padding: 2px;
  border-radius: 8px;
  box-shadow: 0 0 12px rgba(59, 240, 165, 0.5);
  margin-bottom: 24px;
  transition: all 0.3s ease;
}
.card-gradient-border:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 20px rgba(59, 240, 165, 0.7);
}
.card-gradient-border:hover .card-img-zoom {
  transform: scale(1.05);
}
.card-gradient-border .card-inner {
  background: #151718;
  border-radius: 6px;
  padding: 24px;
  height: 100%;
}
.card-gradient-border.purple-pink {
  background: linear-gradient(90deg, #8b5cf6 0%, #ec4899 100%);
  box-shadow: 0 0 12px rgba(139, 92, 246, 0.5);
}

.card-img-container {
  height: 200px;
  overflow: hidden;
  border-radius: 6px;
}
.card-img-container .card-img-zoom {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.icon-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 24px;
  background: rgba(59, 240, 165, 0.05);
  border-radius: 8px;
  border: 1px solid rgba(59, 240, 165, 0.1);
  transition: all 0.3s ease;
}
.icon-card:hover {
  background: rgba(59, 240, 165, 0.1);
  box-shadow: 0 0 6px rgba(59, 240, 165, 0.3);
}
.icon-card .icon-placeholder {
  width: 48px;
  height: 48px;
  box-shadow: 0 0 10px rgba(59, 240, 165, 0.3);
}
.icon-card .icon {
  font-size: 32px;
  margin-bottom: 16px;
  color: #3BF0A5;
}
.icon-card .title {
  color: #ECEDEE;
  font-weight: 700;
  margin-bottom: 8px;
}
.icon-card .text {
  color: #9BA1A6;
  font-size: 12px;
}

.title.primary {
  color: #3BF0A5;
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
}
.title.secondary {
  color: #FFF;
  font-family: Inter;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
}
.title-footer {
  color: #FFF;
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%; /* 24px */
  text-transform: uppercase;
}

.contact-us {
  position: relative;
  padding-bottom: 4rem;
}
.contact-us-form {
  position: relative;
  border-radius: 16px;
  background: rgba(21, 23, 24, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 12px rgba(59, 240, 165, 0.5);
  padding: 48px 32px;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  margin: 0 auto;
}
.contact-us-form .gradient-border-top {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #3BF0A5 0%, #0ABBEA 100%);
  border-radius: 16px 16px 0 0;
}
@media (max-width: 992px) {
  .contact-us-form {
    width: 100%;
  }
}

.app-landing {
  color: #ECEDEE;
}
.app-landing .app-hero {
  padding: 64px 0;
  background: #151718;
}
.app-landing .app-hero .title {
  font-size: 28px;
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 12px;
  color: #ECEDEE;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.app-landing .app-hero .subtitle {
  font-size: 18px;
  color: #3BF0A5;
  margin-bottom: 20px;
}
.app-landing .app-hero .punchlines {
  margin-top: 16px;
  color: #9BA1A6;
}
.app-landing .app-hero .punchlines li {
  margin-bottom: 6px;
}
.app-landing .app-hero .app-shot {
  max-width: 420px;
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 0 12px rgba(59, 240, 165, 0.5);
}
.app-landing .app-hero .cta-buttons {
  margin-top: 8px;
  gap: 12px;
}
.app-landing .app-hero .store-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 10px;
  color: #0b0c0d;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.2s ease;
  background: #fff;
}
.app-landing .app-hero .store-btn.ios {
  background: linear-gradient(90deg, #ffffff, #e6fef5);
}
.app-landing .app-hero .store-btn.android {
  background: linear-gradient(90deg, #ffffff, #e6f7fe);
}
.app-landing .app-hero .store-btn .store-badge {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 6px;
  background: linear-gradient(90deg, #3BF0A5 0%, #0ABBEA 100%);
  color: #0b0c0d;
  font-weight: 800;
}
.app-landing .app-hero .store-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 6px rgba(59, 240, 165, 0.3);
}
.app-landing .app-hero .store-btn:active {
  transform: translateY(0);
}
.app-landing .app-screens {
  padding: 40px 0;
  background: radial-gradient(1200px 50% at 50% 0%, rgba(59, 240, 165, 0.08), rgba(10, 187, 234, 0) 70%), #151718;
}
.app-landing .app-screens .screen {
  max-width: 360px;
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 0 6px rgba(59, 240, 165, 0.3);
}
.app-landing .app-details {
  padding: 40px 0 64px;
  background: #151718;
}
.app-landing .app-details h2 {
  font-size: 22px;
  color: #3BF0A5;
  margin-bottom: 12px;
}
.app-landing .app-details h3 {
  color: #0ABBEA;
  margin: 16px 0 8px;
}
.app-landing .app-details p {
  color: #ECEDEE;
  margin: 8px 0;
}
.app-landing .app-details .features {
  margin: 8px 0 16px;
}
.app-landing .app-details .features li {
  margin: 6px 0;
  color: #ECEDEE;
}
.app-landing .app-details .cta-inline {
  font-weight: 700;
  color: #ec4899;
}
@media (max-width: 768px) {
  .app-landing .app-hero {
    text-align: center;
  }
}

/*# sourceMappingURL=main.css.map */