*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: linear-gradient(135deg, #f8fafc, #eff6ff, #f1f5f9);
  overflow-x: hidden;
  color: #0f172a;
}

.bg-primary {
  background-color: #1d4ed8;
}

.text-blue-100 {
  color: #dbeafe;
}

.text-blue-600 {
  color: #2563eb;
}

.text-purple-600 {
  color: #9810fa;
}

.text-orange-600 {
  color: #f54a00;
}

.bg-blue-100 {
  background-color: #dbeafe;
}

.bg-blue-50 {
  background-color: #eff6ff;
}

.bg-green-50 {
  background-color: #f0fdf4;
}

.bg-red-50 {
  background-color: #fee2e2;
}

.bg-indigo-50 {
  background-color: #eef2ff;
}

.text-green-600 {
  color: #16a34a;
}

.text-red-600 {
  color: #dc2626;
}

.text-indigo-600 {
  color: #4f46e5;
}

.bg-white-10 {
  background-color: rgba(255, 255, 255, 0.1);
}

.bg-purple-50 {
  background-color: #faf5ff;
}

.bg-orange-50 {
  background-color: #fff7ed;
}

.text-yellow {
  color: #fde047;
}

.text-purple {
  color: #d8b4fe;
}

.text-blue {
  color: #93c5fd;
}

.text-green {
  color: #6ee7b7;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Manrope", sans-serif;
}

p {
  font-family: "Roboto", sans-serif;
}

h1, h2 {
  font-weight: 700;
}

h3 {
  font-weight: 600;
}

.hero-section {
  padding: 4rem 0;
}

.beta-card {
  background-color: #1d4ed8;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.beta-form {
  width: 100%;
  max-width: 550px;
}
.beta-form .beta-input {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  height: 48px;
  padding-left: 16px;
  width: 1000px;
}
.beta-form .beta-input::-moz-placeholder {
  color: rgba(255, 255, 255, 0.65);
}
.beta-form .beta-input::placeholder {
  color: rgba(255, 255, 255, 0.65);
}
.beta-form .beta-input:focus {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.35);
  box-shadow: 0 0 0 0.25rem rgba(255, 255, 255, 0.15);
}
.beta-form .beta-btn {
  height: 48px;
  padding: 0 20px;
  font-weight: 600;
  border-radius: 12px;
  background: #fff;
  color: #2563eb;
  transition: 0.25s ease;
}
.beta-form .beta-btn:hover {
  background: #e0e7ff;
  transform: translateY(-1px);
}
.beta-form .beta-btn svg {
  stroke: currentColor;
  width: 20px;
  height: 20px;
}

.hero-icon,
.beta-icon {
  width: 5rem;
  height: 5rem;
  background: rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: blur(12px);
          backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
}
.hero-icon i,
.beta-icon i {
  width: 2rem;
  height: 2rem;
}

.icon-box {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.icon-box i {
  width: 1.75rem;
  height: 1.75rem;
}

.icon-sm {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.icon-sm i {
  width: 1.25rem;
  height: 1.25rem;
}

.feature-pill,
.beta-form .form-control,
.beta-form .btn {
  border-radius: 9999px;
}

.feature-pill {
  background: rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: blur(12px);
          backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0.75rem 1.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #fff;
}
.feature-pill:hover {
  cursor: pointer;
  border: 1px solid white;
  background: rgba(255, 255, 255, 0.2);
}

.feature-card {
  border-radius: 20px;
}

.feature-card,
.preview-card,
.client-card {
  transition: all 0.3s ease;
}
.feature-card:hover,
.preview-card:hover,
.client-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
  border-color: #93c5fd;
}

.interested-feature {
  padding: 24px 32px;
  border-radius: 20px;
}
.interested-feature a {
  text-decoration: none !important;
}
.interested-feature:hover {
  background-color: #dbeafe;
  border-color: #93c5fd;
  cursor: pointer;
}

.footer-section a {
  text-decoration: none;
}
.footer-section a:hover {
  text-decoration: underline;
}

.z-2 {
  z-index: 2;
}/*# sourceMappingURL=styles.css.map */