@import "https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap";
/* [project]/app/landing.css [app-client] (css) */
:root {
  --landing-bg: #fff;
  --landing-text: #1a1a2e;
  --landing-muted: #64748b;
  --landing-border: #e2e8f0;
  --landing-emerald: #10b981;
  --landing-emerald-dark: #059669;
  --landing-emerald-light: #d1fae5;
  --landing-teal: #14b8a6;
  --landing-gradient: linear-gradient(135deg, #10b981 0%, #14b8a6 50%, #0ea5e9 100%);
  --landing-gradient-soft: linear-gradient(135deg, #f0fdf4 0%, #f0fdfa 50%, #f0f9ff 100%);
  --landing-shadow: 0 4px 24px #0000000f;
  --landing-shadow-lg: 0 12px 40px #00000014;
  --landing-radius: 16px;
}

.landing * {
  box-sizing: border-box;
}

.landing {
  color: var(--landing-text);
  background: var(--landing-bg);
  min-height: 100vh;
  font-family: Inter, -apple-system, BlinkMacSystemFont, sans-serif;
  overflow-x: hidden;
}

.landing-nav {
  z-index: 100;
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--landing-border);
  background: #ffffffd9;
  transition: all .3s;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
}

.landing-nav__inner {
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  height: 72px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
}

.landing-nav__logo {
  color: var(--landing-text);
  align-items: center;
  gap: 10px;
  text-decoration: none;
  display: flex;
}

.landing-nav__logo-icon {
  background: var(--landing-gradient);
  color: #fff;
  letter-spacing: -1px;
  border-radius: 12px;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  font-size: 18px;
  font-weight: 800;
  display: flex;
}

.landing-nav__logo-text {
  letter-spacing: -.5px;
  font-size: 22px;
  font-weight: 700;
}

.landing-nav__logo-text span {
  color: var(--landing-emerald);
}

.landing-nav__cta {
  background: var(--landing-gradient);
  color: #fff;
  cursor: pointer;
  border: none;
  border-radius: 12px;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: all .3s;
  display: inline-flex;
  box-shadow: 0 2px 12px #10b9814d;
}

.landing-nav__cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 20px #10b98166;
}

.landing-hero {
  text-align: center;
  background: var(--landing-gradient-soft);
  padding: 160px 24px 100px;
  position: relative;
  overflow: hidden;
}

.landing-hero:before {
  content: "";
  pointer-events: none;
  background: radial-gradient(#10b9810f 0%, #0000 70%);
  width: 60%;
  height: 200%;
  position: absolute;
  top: -50%;
  left: -20%;
}

.landing-hero:after {
  content: "";
  pointer-events: none;
  background: radial-gradient(#0ea5e90d 0%, #0000 70%);
  width: 50%;
  height: 160%;
  position: absolute;
  top: -30%;
  right: -20%;
}

.landing-hero__inner {
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.landing-hero__badge {
  background: var(--landing-emerald-light);
  color: var(--landing-emerald-dark);
  border-radius: 100px;
  align-items: center;
  gap: 8px;
  margin-bottom: 32px;
  padding: 8px 20px;
  font-size: 14px;
  font-weight: 600;
  animation: .8s landing-fade-down;
  display: inline-flex;
}

.landing-hero__badge-dot {
  background: var(--landing-emerald);
  border-radius: 50%;
  width: 8px;
  height: 8px;
  animation: 2s infinite landing-pulse;
}

.landing-hero h1 {
  letter-spacing: -1.5px;
  color: var(--landing-text);
  margin: 0 0 24px;
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 800;
  line-height: 1.1;
  animation: .8s .1s both landing-fade-up;
}

.landing-hero h1 .landing-gradient-text {
  background: var(--landing-gradient);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
}

.landing-hero__subtitle {
  color: var(--landing-muted);
  max-width: 600px;
  margin: 0 auto 48px;
  font-size: clamp(17px, 2.5vw, 20px);
  line-height: 1.7;
  animation: .8s .2s both landing-fade-up;
}

.landing-hero__actions {
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  animation: .8s .3s both landing-fade-up;
  display: flex;
}

.landing-hero__btn-primary {
  background: var(--landing-gradient);
  color: #fff;
  cursor: pointer;
  border: none;
  border-radius: 14px;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  font-size: 17px;
  font-weight: 700;
  text-decoration: none;
  transition: all .3s;
  display: inline-flex;
  box-shadow: 0 4px 20px #10b98159;
}

.landing-hero__btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px #10b98173;
}

.landing-hero__btn-primary svg {
  transition: transform .3s;
}

.landing-hero__btn-primary:hover svg {
  transform: translateX(4px);
}

.landing-hero__btn-secondary {
  color: var(--landing-text);
  border: 2px solid var(--landing-border);
  cursor: pointer;
  background: #fff;
  border-radius: 14px;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  font-size: 17px;
  font-weight: 600;
  text-decoration: none;
  transition: all .3s;
  display: inline-flex;
}

.landing-hero__btn-secondary:hover {
  border-color: var(--landing-emerald);
  color: var(--landing-emerald-dark);
  box-shadow: var(--landing-shadow);
  transform: translateY(-2px);
}

.landing-stats {
  z-index: 2;
  margin-top: -40px;
  padding: 0 24px;
  position: relative;
}

.landing-stats__inner {
  border-radius: var(--landing-radius);
  max-width: 900px;
  box-shadow: var(--landing-shadow-lg);
  border: 1px solid var(--landing-border);
  background: #fff;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin: 0 auto;
  padding: 32px 48px;
  display: grid;
}

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

.landing-stat__number {
  background: var(--landing-gradient);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  margin-bottom: 8px;
  font-size: 40px;
  font-weight: 800;
  line-height: 1;
}

.landing-stat__label {
  color: var(--landing-muted);
  font-size: 14px;
  font-weight: 500;
}

.landing-features {
  padding: 120px 24px;
}

.landing-section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 64px;
}

.landing-section-header__tag {
  background: var(--landing-emerald-light);
  color: var(--landing-emerald-dark);
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 100px;
  margin-bottom: 20px;
  padding: 6px 16px;
  font-size: 13px;
  font-weight: 700;
  display: inline-block;
}

.landing-section-header h2 {
  letter-spacing: -1px;
  color: var(--landing-text);
  margin: 0 0 16px;
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
}

.landing-section-header p {
  color: var(--landing-muted);
  margin: 0;
  font-size: 17px;
  line-height: 1.6;
}

.landing-features__grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
}

.landing-feature-card {
  border: 1px solid var(--landing-border);
  border-radius: var(--landing-radius);
  background: #fff;
  padding: 36px 28px;
  transition: all .4s;
  position: relative;
  overflow: hidden;
}

.landing-feature-card:before {
  content: "";
  background: var(--landing-gradient);
  opacity: 0;
  height: 4px;
  transition: opacity .3s;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

.landing-feature-card:hover {
  box-shadow: var(--landing-shadow-lg);
  border-color: #0000;
  transform: translateY(-4px);
}

.landing-feature-card:hover:before {
  opacity: 1;
}

.landing-feature-card__icon {
  border-radius: 14px;
  justify-content: center;
  align-items: center;
  width: 56px;
  height: 56px;
  margin-bottom: 20px;
  font-size: 26px;
  display: flex;
}

.landing-feature-card__icon--emerald {
  color: #059669;
  background: #d1fae5;
}

.landing-feature-card__icon--blue {
  color: #2563eb;
  background: #dbeafe;
}

.landing-feature-card__icon--purple {
  color: #7c3aed;
  background: #ede9fe;
}

.landing-feature-card h3 {
  color: var(--landing-text);
  margin: 0 0 12px;
  font-size: 20px;
  font-weight: 700;
}

.landing-feature-card p {
  color: var(--landing-muted);
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
}

.landing-steps {
  background: var(--landing-gradient-soft);
  padding: 100px 24px 120px;
}

.landing-steps__grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  position: relative;
}

.landing-steps__grid:before {
  content: "";
  background: linear-gradient(90deg, var(--landing-emerald), var(--landing-teal), #0ea5e9);
  opacity: .3;
  height: 2px;
  position: absolute;
  top: 50px;
  left: 16%;
  right: 16%;
}

.landing-step {
  text-align: center;
  position: relative;
}

.landing-step__number {
  border: 3px solid var(--landing-emerald);
  width: 64px;
  height: 64px;
  color: var(--landing-emerald-dark);
  z-index: 1;
  background: #fff;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  margin: 0 auto 24px;
  font-size: 24px;
  font-weight: 800;
  display: flex;
  position: relative;
  box-shadow: 0 4px 16px #10b98126;
}

.landing-step h3 {
  color: var(--landing-text);
  margin: 0 0 12px;
  font-size: 20px;
  font-weight: 700;
}

.landing-step p {
  color: var(--landing-muted);
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
}

.landing-pricing {
  padding: 120px 24px;
}

.landing-pricing__grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
}

.landing-price-card {
  border: 2px solid var(--landing-border);
  border-radius: var(--landing-radius);
  text-align: center;
  background: #fff;
  padding: 36px 28px;
  transition: all .3s;
  position: relative;
}

.landing-price-card--featured {
  border-color: var(--landing-emerald);
  transform: scale(1.03);
  box-shadow: 0 8px 32px #10b98126;
}

.landing-price-card--featured .landing-price-card__badge {
  display: block;
}

.landing-price-card__badge {
  background: var(--landing-gradient);
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 100px;
  padding: 6px 20px;
  font-size: 12px;
  font-weight: 700;
  display: none;
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
}

.landing-price-card__name {
  color: var(--landing-text);
  margin-bottom: 8px;
  font-size: 20px;
  font-weight: 700;
}

.landing-price-card__price {
  color: var(--landing-text);
  margin-bottom: 4px;
  font-size: 44px;
  font-weight: 800;
  line-height: 1;
}

.landing-price-card__price span {
  color: var(--landing-muted);
  font-size: 16px;
  font-weight: 500;
}

.landing-price-card__period {
  color: var(--landing-muted);
  margin-bottom: 24px;
  font-size: 14px;
}

.landing-price-card__features {
  text-align: left;
  margin: 0 0 32px;
  padding: 0;
  list-style: none;
}

.landing-price-card__features li {
  color: #475569;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  font-size: 14px;
  display: flex;
}

.landing-price-card__features li:before {
  content: "✓";
  color: var(--landing-emerald);
  font-size: 16px;
  font-weight: 700;
}

.landing-price-card__btn {
  text-align: center;
  cursor: pointer;
  border-radius: 12px;
  width: 100%;
  padding: 14px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: all .3s;
  display: block;
}

.landing-price-card__btn--outline {
  color: var(--landing-text);
  border: 2px solid var(--landing-border);
  background: #fff;
}

.landing-price-card__btn--outline:hover {
  border-color: var(--landing-emerald);
  color: var(--landing-emerald-dark);
}

.landing-price-card__btn--primary {
  background: var(--landing-gradient);
  color: #fff;
  border: none;
  box-shadow: 0 4px 16px #10b9814d;
}

.landing-price-card__btn--primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 24px #10b98166;
}

.landing-cta {
  background: var(--landing-gradient);
  text-align: center;
  padding: 100px 24px;
  position: relative;
  overflow: hidden;
}

.landing-cta:before {
  content: "";
  background: #ffffff14;
  border-radius: 50%;
  width: 300px;
  height: 300px;
  position: absolute;
  top: -80px;
  right: -60px;
}

.landing-cta:after {
  content: "";
  background: #ffffff0d;
  border-radius: 50%;
  width: 200px;
  height: 200px;
  position: absolute;
  bottom: -40px;
  left: -40px;
}

.landing-cta__inner {
  z-index: 1;
  max-width: 600px;
  margin: 0 auto;
  position: relative;
}

.landing-cta h2 {
  color: #fff;
  letter-spacing: -.5px;
  margin: 0 0 16px;
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
}

.landing-cta p {
  color: #ffffffd9;
  margin: 0 0 40px;
  font-size: 18px;
  line-height: 1.6;
}

.landing-cta__btn {
  color: var(--landing-emerald-dark);
  cursor: pointer;
  background: #fff;
  border: none;
  border-radius: 14px;
  align-items: center;
  gap: 10px;
  padding: 16px 40px;
  font-size: 17px;
  font-weight: 700;
  text-decoration: none;
  transition: all .3s;
  display: inline-flex;
  box-shadow: 0 4px 20px #00000026;
}

.landing-cta__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px #0003;
}

.landing-footer {
  text-align: center;
  border-top: 1px solid var(--landing-border);
  background: #fafafa;
  padding: 40px 24px;
}

.landing-footer p {
  color: var(--landing-muted);
  margin: 0;
  font-size: 14px;
}

@keyframes landing-fade-up {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes landing-fade-down {
  from {
    opacity: 0;
    transform: translateY(-16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes landing-pulse {
  0%, 100% {
    opacity: 1;
  }

  50% {
    opacity: .5;
  }
}

.landing-animate {
  animation: .8s both landing-fade-up;
}

.landing-animate:first-child {
  animation-delay: .1s;
}

.landing-animate:nth-child(2) {
  animation-delay: .2s;
}

.landing-animate:nth-child(3) {
  animation-delay: .3s;
}

.landing-animate:nth-child(4) {
  animation-delay: .4s;
}

@media (max-width: 768px) {
  .landing-nav__inner {
    height: 64px;
    padding: 0 16px;
  }

  .landing-nav__logo-text {
    font-size: 18px;
  }

  .landing-nav__cta {
    padding: 8px 18px;
    font-size: 14px;
  }

  .landing-hero {
    padding: 120px 16px 80px;
  }

  .landing-hero__actions {
    flex-direction: column;
    align-items: center;
  }

  .landing-hero__btn-primary, .landing-hero__btn-secondary {
    justify-content: center;
    width: 100%;
    max-width: 320px;
  }

  .landing-stats__inner {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 24px;
  }

  .landing-features__grid {
    grid-template-columns: 1fr;
  }

  .landing-steps__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .landing-steps__grid:before {
    display: none;
  }

  .landing-pricing__grid {
    grid-template-columns: 1fr;
    max-width: 400px;
  }

  .landing-price-card--featured {
    transform: none;
  }
}

@media (max-width: 480px) {
  .landing-hero h1, .landing-stat__number {
    font-size: 32px;
  }
}

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