/* [project]/src/app/page.css [app-client] (css) */
.landing-root {
  color: #e2e8f0;
  background: #0a0e1a;
  min-height: 100vh;
  font-family: Inter, system-ui, -apple-system, sans-serif;
  position: relative;
  overflow: hidden;
}

.map-bg {
  z-index: 1;
  opacity: .45;
  width: 100%;
  height: 100%;
  transition: opacity .5s;
  position: fixed;
  top: 0;
  left: 0;
}

.orb {
  filter: blur(100px);
  z-index: 1;
  pointer-events: none;
  border-radius: 50%;
  position: fixed;
}

.orb-1 {
  background: #38bdf81f;
  width: 500px;
  height: 500px;
  animation: 15s ease-in-out infinite alternate orbFloat1;
  top: -10%;
  left: -5%;
}

.orb-2 {
  background: #6366f11f;
  width: 400px;
  height: 400px;
  animation: 18s ease-in-out infinite alternate orbFloat2;
  top: 40%;
  right: -10%;
}

.orb-3 {
  background: #a855f714;
  width: 300px;
  height: 300px;
  animation: 20s ease-in-out infinite alternate orbFloat3;
  bottom: -5%;
  left: 30%;
}

@keyframes orbFloat1 {
  to {
    transform: translate(50px, 80px);
  }
}

@keyframes orbFloat2 {
  to {
    transform: translate(-60px, -40px);
  }
}

@keyframes orbFloat3 {
  to {
    transform: translate(40px, -60px);
  }
}

.nav {
  z-index: 100;
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  background: #0a0e1a80;
  border-bottom: 1px solid #ffffff0a;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 3rem;
  display: flex;
  position: relative;
}

.nav-brand {
  align-items: center;
  gap: .75rem;
  display: flex;
}

.brand-text {
  background: linear-gradient(135deg, #38bdf8, #818cf8);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  font-size: 1.5rem;
  font-weight: 700;
}

@keyframes heroFadeIn {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero {
  z-index: 10;
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: calc(100vh - 80px);
  padding: 2rem 1.5rem;
  animation: 1s cubic-bezier(.16, 1, .3, 1) forwards heroFadeIn;
  display: flex;
  position: relative;
}

.hero-badge {
  color: #10b981;
  letter-spacing: .5px;
  text-transform: uppercase;
  background: #10b98114;
  border: 1px solid #10b98133;
  border-radius: 999px;
  align-items: center;
  gap: .5rem;
  margin-bottom: 2rem;
  padding: .5rem 1.2rem;
  font-size: .85rem;
  font-weight: 600;
  display: inline-flex;
}

.badge-dot {
  background: #10b981;
  border-radius: 50%;
  width: 8px;
  height: 8px;
  animation: 2s infinite blink;
  box-shadow: 0 0 8px #10b981;
}

@keyframes blink {
  0%, 100% {
    opacity: 1;
  }

  50% {
    opacity: .3;
  }
}

.hero-title {
  background: linear-gradient(135deg, #f8fafc 0%, #38bdf8 50%, #818cf8 100%);
  -webkit-text-fill-color: transparent;
  letter-spacing: -2px;
  -webkit-background-clip: text;
  background-clip: text;
  margin: 0;
  font-size: clamp(3rem, 8vw, 5.5rem);
  font-weight: 800;
  line-height: 1.1;
}

.hero-subtitle {
  color: #94a3b8;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin: .75rem 0 1.5rem;
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  font-weight: 300;
}

.hero-desc {
  color: #64748b;
  max-width: 600px;
  margin: 0 0 2rem;
  font-size: 1.1rem;
  line-height: 1.7;
}

.hero-features {
  flex-wrap: wrap;
  justify-content: center;
  gap: .75rem;
  margin-bottom: 2.5rem;
  display: flex;
}

.feature-tag {
  color: #cbd5e1;
  background: #38bdf80f;
  border: 1px solid #38bdf81f;
  border-radius: 8px;
  align-items: center;
  gap: .4rem;
  padding: .5rem 1rem;
  font-size: .85rem;
  font-weight: 500;
  display: flex;
}

.beta-form-wrap {
  width: 100%;
  max-width: 560px;
}

.beta-form {
  gap: .5rem;
  width: 100%;
  display: flex;
}

.beta-input {
  color: #f8fafc;
  background: #0f172ab3;
  border: 1px solid #94a3b826;
  border-radius: 10px;
  outline: none;
  flex: 1;
  min-width: 0;
  padding: .75rem 1rem;
  font-size: .9rem;
  transition: all .2s;
}

.beta-input:focus {
  border-color: #38bdf8;
  box-shadow: 0 0 0 3px #38bdf826;
}

.beta-input::placeholder {
  color: #475569;
}

.beta-btn {
  color: #fff;
  cursor: pointer;
  white-space: nowrap;
  background: linear-gradient(135deg, #38bdf8 0%, #6366f1 100%);
  border: none;
  border-radius: 10px;
  padding: .75rem 1.5rem;
  font-size: .9rem;
  font-weight: 700;
  transition: all .3s;
  box-shadow: 0 4px 15px #6366f14d;
}

.beta-btn:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px #6366f166;
}

.beta-btn:disabled {
  opacity: .6;
  cursor: not-allowed;
}

.beta-msg {
  text-align: center;
  margin: .75rem 0 0;
  font-size: .85rem;
}

.beta-msg.ok {
  color: #10b981;
}

.beta-msg.err {
  color: #ef4444;
}

.lang-wrapper {
  z-index: 200;
  position: relative;
}

.lang-trigger {
  -webkit-backdrop-filter: blur(16px);
  color: #94a3b8;
  cursor: pointer;
  background: #1e293bbf;
  border: 1px solid #ffffff14;
  border-radius: 12px;
  align-items: center;
  gap: .5rem;
  padding: .55rem 1rem;
  font-family: inherit;
  font-size: .85rem;
  font-weight: 600;
  transition: all .3s cubic-bezier(.16, 1, .3, 1);
  display: flex;
  box-shadow: 0 4px 20px #0000004d;
}

.lang-trigger:hover {
  color: #e2e8f0;
  background: #1e293be6;
  border-color: #38bdf833;
  transform: translateY(-1px);
  box-shadow: 0 4px 25px #38bdf826;
}

.lang-trigger.open {
  color: #e2e8f0;
  background: #1e293bf2;
  border-color: #38bdf84d;
}

.lang-trigger-flag {
  font-size: 1.25rem;
  line-height: 1;
}

.lang-trigger-code {
  letter-spacing: .5px;
}

.lang-trigger-chevron {
  opacity: .6;
  transition: transform .3s;
}

.lang-trigger.open .lang-trigger-chevron {
  transform: rotate(180deg);
}

.lang-menu {
  -webkit-backdrop-filter: blur(24px);
  background: #0f172aeb;
  border: 1px solid #ffffff14;
  border-radius: 16px;
  min-width: 320px;
  padding: .75rem;
  animation: .25s cubic-bezier(.16, 1, .3, 1) forwards menuSlideIn;
  position: absolute;
  top: calc(100% + .75rem);
  right: 0;
  box-shadow: 0 20px 60px #00000080, 0 0 0 1px #38bdf80d, inset 0 1px #ffffff0a;
}

@keyframes menuSlideIn {
  0% {
    opacity: 0;
    transform: translateY(8px)scale(.96);
  }

  100% {
    opacity: 1;
    transform: translateY(0)scale(1);
  }
}

.lang-menu-header {
  border-bottom: 1px solid #ffffff0f;
  justify-content: space-between;
  align-items: center;
  margin-bottom: .6rem;
  padding: .25rem .5rem .6rem;
  display: flex;
}

.lang-menu-title {
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: .5px;
  font-size: .78rem;
  font-weight: 600;
}

.lang-grid {
  scrollbar-width: thin;
  scrollbar-color: #94a3b826 transparent;
  grid-template-columns: repeat(5, 1fr);
  gap: 4px;
  max-height: 340px;
  display: grid;
  overflow-y: auto;
}

.lang-grid::-webkit-scrollbar {
  width: 4px;
}

.lang-grid::-webkit-scrollbar-track {
  background: none;
}

.lang-grid::-webkit-scrollbar-thumb {
  background: #94a3b826;
  border-radius: 4px;
}

.lang-item {
  cursor: pointer;
  color: #94a3b8;
  background: none;
  border: 1px solid #0000;
  border-radius: 10px;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  padding: .5rem .25rem;
  font-family: inherit;
  transition: all .2s;
  display: flex;
}

.lang-item:hover {
  color: #e2e8f0;
  background: #38bdf814;
  border-color: #38bdf826;
  transform: translateY(-1px);
}

.lang-item.active {
  color: #38bdf8;
  background: #38bdf81f;
  border-color: #38bdf84d;
  box-shadow: 0 0 12px #38bdf81f;
}

.lang-item-flag {
  font-size: 1.35rem;
  line-height: 1;
}

.lang-item-code {
  letter-spacing: .5px;
  font-size: .65rem;
  font-weight: 700;
}

@media (max-width: 768px) {
  .nav {
    padding: 1rem 1.5rem;
  }

  .hero {
    padding: 1.5rem 1rem;
  }

  .hero-features {
    gap: .5rem;
  }

  .feature-tag {
    padding: .4rem .75rem;
    font-size: .75rem;
  }

  .beta-form {
    flex-direction: column;
  }

  .beta-input {
    width: 100%;
  }

  .lang-menu {
    min-width: 280px;
    right: -.5rem;
  }

  .lang-grid {
    grid-template-columns: repeat(4, 1fr);
    max-height: 300px;
  }
}

@media (max-width: 400px) {
  .lang-menu {
    min-width: 250px;
  }

  .lang-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.surveys-section {
  text-align: left;
  border-top: 1px solid #ffffff0f;
  width: 100%;
  max-width: 800px;
  margin-top: 5rem;
  padding-top: 3rem;
}

.surveys-header {
  margin-bottom: 2rem;
}

.surveys-badge {
  color: #38bdf8;
  letter-spacing: .5px;
  background: #38bdf81a;
  border: 1px solid #38bdf833;
  border-radius: 8px;
  margin-bottom: .75rem;
  padding: .35rem .8rem;
  font-size: .75rem;
  font-weight: 700;
  display: inline-block;
}

.surveys-title {
  color: #f8fafc;
  margin: 0;
  font-size: 1.75rem;
  font-weight: 800;
}

.surveys-grid {
  grid-template-columns: 1fr;
  gap: 1.25rem;
  display: grid;
}

.survey-card {
  -webkit-backdrop-filter: blur(16px);
  background: #0f172a80;
  border: 1px solid #ffffff0d;
  border-radius: 20px;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem;
  text-decoration: none;
  transition: all .3s cubic-bezier(.16, 1, .3, 1);
  display: flex;
  position: relative;
  overflow: hidden;
}

.survey-card:hover {
  background: #0f172ab3;
  border-color: #38bdf84d;
  transform: translateY(-4px)scale(1.01);
  box-shadow: 0 12px 30px #0000004d;
}

.survey-card-icon {
  background: linear-gradient(135deg, #38bdf833, #6366f11a);
  border: 1px solid #38bdf833;
  border-radius: 16px;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 56px;
  height: 56px;
  font-size: 1.5rem;
  display: flex;
}

.survey-card-title {
  color: #f8fafc;
  margin: 0 0 .4rem;
  font-size: 1.1rem;
  font-weight: 700;
}

.survey-card-desc {
  color: #94a3b8;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  margin: 0 0 1rem;
  font-size: .88rem;
  line-height: 1.5;
  display: -webkit-box;
  overflow: hidden;
}

.survey-card-footer {
  align-items: center;
  gap: 1rem;
  display: flex;
}

.survey-points {
  color: #f59e0b;
  align-items: center;
  gap: 4px;
  font-size: .82rem;
  font-weight: 700;
  display: flex;
}

.survey-points:before {
  content: "🪙";
  margin-right: 4px;
}

.survey-meta {
  color: #64748b;
  font-size: .78rem;
}

.survey-card-arrow {
  color: #38bdf8;
  opacity: 0;
  margin-left: auto;
  font-size: 1.5rem;
  transition: all .3s;
  transform: translateX(-10px);
}

.survey-card:hover .survey-card-arrow {
  opacity: 1;
  transform: translateX(0);
}

@media (max-width: 640px) {
  .survey-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem;
  }

  .survey-card-arrow {
    display: none;
  }
}

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