/* CSS extracted from mini-landing.html */
:root {
  --primary: #7F5AF0; /* Vibrant Purple */
  --secondary: #2CB67D; /* Emerald Green */
  --accent: #F5F7FF; /* Soft White */
  --bg-gradient: linear-gradient(135deg, #F5F7FF 0%, #E0EAFC 100%);
  --hero-gradient: linear-gradient(120deg, #7F5AF0 0%, #2CB67D 100%);
  --card-bg: #fff;
  --shadow: 0 8px 32px rgba(127,90,240,0.08);
  --radius: 24px;
  --font: 'Inter', Arial, sans-serif;
  --text-dark: #16161A;
  --text-light: #fff;
  --muted: #72757E;
  --divider: #E0EAFC;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: var(--font);
  background: var(--bg-gradient);
  color: var(--text-dark);
  min-height: 100vh;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
.container {
  width: 92%;
  max-width: 1200px;
  margin: 0 auto;
}
/* Header */
header {
  background: rgba(255,255,255,0.98);
  box-shadow: 0 2px 16px rgba(127,90,240,0.07);
  border-radius: 0 0 24px 24px;
  position: sticky;
  top: 0;
  z-index: 10;
  transition: box-shadow 0.2s;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0 14px 0;
}
.logo-text {
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: -1px;
  color: var(--primary);
  margin-left: 10px;
}
header .nav-link {
  color: var(--primary);
  font-weight: 600;
  font-size: 1.08rem;
  opacity: 0.85;
  transition: color 0.2s, opacity 0.2s;
  border-bottom: 2px solid transparent;
  padding-bottom: 2px;
  border-radius: 4px;
  padding: 6px 12px;
}
header .nav-link:hover {
  color: var(--secondary);
  background: rgba(44,182,125,0.08);
  border-bottom: 2px solid var(--secondary);
}
/* Hero Section */
.hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 90vh;
  text-align: center;
  margin-bottom: 40px;
  background: var(--hero-gradient);
  box-shadow: 0 8px 32px rgba(127,90,240,0.10);
  position: relative;
  overflow: hidden;
  animation: heroFadeIn 1.2s cubic-bezier(.4,0,.2,1);
  color: var(--text-light);
}
.hero-animated-bg {
  display: none;
}
@keyframes gradientMove {
  0% { background-position: 0% 50%; }
  100% { background-position: 100% 50%; }
}
@keyframes heroFadeIn {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: none; }
}
.hero-bg-blob {
  position: absolute;
  top: -80px; left: -120px;
  width: 340px; height: 340px;
  background: radial-gradient(circle at 60% 40%, #fff 0%, #6C63FF 80%, transparent 100%);
  opacity: 0.18;
  z-index: 0;
  filter: blur(8px);
  pointer-events: none;
}
.hero-content {
  width: 100%;
  max-width: 650px;
  margin: 0 auto;
  padding: 0px 0 56px 0;
  position: relative;
  z-index: 1;
  color: var(--text-light);
}
.hero-title {
  font-size: 3.2rem;
  font-weight: 800;
  margin-bottom: 22px;
  letter-spacing: -1.5px;
  color: var(--text-light);
  text-shadow: 0 2px 12px rgba(44,62,80,0.18);
  background: none;
  -webkit-background-clip: unset;
  -webkit-text-fill-color: unset;
  background-clip: unset;
  text-fill-color: unset;
  line-height: 1.1;
}
.hero-subtitle {
  color: #e0eafc;
  font-size: 1.35rem;
  margin-bottom: 38px;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 500;
  text-shadow: 0 1px 8px rgba(44,62,80,0.10);
}
.cta-btn {
  background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
  color: #fff;
  border: none;
  font-size: 1.22rem;
  font-weight: 700;
  padding: 18px 54px;
  border-radius: 36px;
  box-shadow: 0 4px 24px rgba(79,141,253,0.13);
  cursor: pointer;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  outline: none;
  letter-spacing: 0.5px;
  margin-top: 8px;
}
.cta-btn:hover, .cta-btn:focus {
  background: linear-gradient(90deg, var(--secondary) 0%, var(--primary) 100%);
  color: #fff;
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 8px 32px rgba(79,141,253,0.18);
}
/* Section Divider */
.section-divider {
  border: none;
  height: 3px;
  background: linear-gradient(90deg, #e0eafc 0%, #7F5AF0 100%);
  border-radius: 2px;
  margin: 0 0 32px 0;
  opacity: 0.85;
}
/* How It Works */
.features-section {
  margin: 48px 0 60px 0;
  text-align: center;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 4px 24px rgba(127,90,240,0.07);
  padding: 40px 0 32px 0;
}
.section-title {
  color: var(--primary);
  font-size: 2.1rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 28px;
  text-shadow: 0 1px 8px rgba(44,62,80,0.07);
}
.features-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 36px;
}
.feature-card {
  background: var(--accent);
  border-radius: 20px;
  box-shadow: 0 4px 24px rgba(44,62,80,0.10);
  border: 1.5px solid #E0EAFC;
  padding: 38px 28px 28px 28px;
  width: 280px;
  min-width: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: box-shadow 0.2s, transform 0.2s, background 0.2s;
  position: relative;
  overflow: hidden;
}
.feature-card:before {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 90px; height: 90px;
  background: radial-gradient(circle, var(--secondary) 0%, transparent 80%);
  opacity: 0.13;
  z-index: 0;
}
.feature-card:hover {
  background: #f3f0ff;
  box-shadow: 0 12px 36px rgba(127,90,240,0.13);
  transform: translateY(-6px) scale(1.045);
}
.feature-icon {
  color: var(--secondary);
  font-size: 2.6rem;
  margin-bottom: 14px;
  z-index: 1;
}
.feature-title {
  color: var(--primary);
  font-size: 1.22rem;
  font-weight: 700;
  margin-bottom: 10px;
  z-index: 1;
}
.feature-desc {
  color: var(--muted);
  font-size: 1.05rem;
  z-index: 1;
}
/* Use Cases */
.usecases-section {
  margin: 0 0 48px 0;
  text-align: center;
}
.usecases-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px;
  margin-top: 28px;
}
.usecase-card {
  background: var(--accent);
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(127,90,240,0.07);
  border: 1.5px solid #E0EAFC;
  padding: 32px 18px 18px 18px;
  width: 150px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: box-shadow 0.2s, transform 0.2s, background 0.2s;
  font-size: 1.13rem;
  font-weight: 600;
  position: relative;
  overflow: hidden;
}
.usecase-card:before {
  content: '';
  position: absolute;
  bottom: -30px; left: -30px;
  width: 70px; height: 70px;
  background: radial-gradient(circle, var(--primary) 0%, transparent 80%);
  opacity: 0.10;
  z-index: 0;
}
.usecase-card span {
  color: var(--primary);
  font-size: 2.3rem;
  margin-bottom: 12px;
  z-index: 1;
}
.usecase-card:hover {
  background: #e0eaff;
  box-shadow: 0 8px 28px rgba(127,90,240,0.13);
  transform: translateY(-4px) scale(1.06);
}
/* Mobile-First Showcase */
.mobile-showcase-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 0 56px 0;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 4px 24px rgba(127,90,240,0.07);
  padding: 40px 0 32px 0;
}
.mobile-mockup {
  background: #fff;
  border-radius: 36px;
  box-shadow: var(--shadow);
  border: 10px solid #E0EAFC;
  width: 240px;
  height: 440px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  margin-bottom: 18px;
  overflow: hidden;
  animation: float 3s ease-in-out infinite alternate;
  transition: box-shadow 0.3s, border 0.3s, transform 0.2s;
}
.mobile-mockup-header {
  width: 100%;
  height: 52px;
  background: var(--hero-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 8px rgba(44,62,80,0.07);
  padding: 0;
}
.mobile-mockup-header img {
  height: 32px;
  width: auto;
  display: block;
  margin: 0 auto;
}
.mobile-mockup-content {
  flex: 1;
  width: 100%;
  padding: 22px 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #555;
  font-size: 1.08rem;
  text-align: center;
}
.mobile-mockup:hover {
  box-shadow: 0 16px 48px rgba(90,79,243,0.18), 0 2px 12px rgba(44,62,80,0.10);
  border: 10px solid var(--primary);
  transform: scale(1.04);
}
@keyframes float {
  0% { transform: translateY(0); }
  100% { transform: translateY(-18px); }
}
/* Call to Action */
.cta-section {
  background: linear-gradient(90deg, #7F5AF0 60%, #2CB67D 100%);
  color: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-align: center;
  padding: 56px 0 44px 0;
  margin: 0 0 56px 0;
  position: relative;
  overflow: hidden;
}
.cta-section:before {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 120px; height: 120px;
  background: radial-gradient(circle, #fff 0%, transparent 80%);
  opacity: 0.08;
  z-index: 0;
}
.cta-section h2 {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 22px;
  z-index: 1;
  position: relative;
}
.cta-section p {
  font-size: 1.18rem;
  margin-bottom: 32px;
  color: #E0EAFC;
  z-index: 1;
  position: relative;
}
.cta-section .cta-btn {
  background: linear-gradient(90deg, var(--secondary) 0%, var(--primary) 100%);
  color: #fff;
  font-size: 1.13rem;
  padding: 16px 40px;
  border-radius: 32px;
  box-shadow: 0 2px 16px rgba(255,101,132,0.18);
  font-weight: 700;
  z-index: 1;
  position: relative;
}
/* Footer */
footer {
  background: #F5F7FF;
  color: var(--primary);
  padding: 36px 0 20px 0;
  text-align: center;
  font-size: 1.05rem;
  border-radius: 28px 28px 0 0;
  margin-top: 36px;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 28px;
  margin-bottom: 14px;
}
.footer-links a {
  color: var(--primary);
  opacity: 0.85;
  font-weight: 600;
  transition: opacity 0.2s, color 0.2s;
  border-radius: 4px;
  padding: 4px 10px;
}
.footer-links a:hover {
  color: var(--secondary);
  opacity: 1;
  text-decoration: underline;
}
.footer-social {
  margin-top: 10px;
}
.footer-social a {
  margin: 0 10px;
  color: var(--primary);
  font-size: 1.4rem;
  opacity: 0.7;
  transition: opacity 0.2s, color 0.2s;
}
.footer-social a:hover {
  opacity: 1;
  color: var(--secondary);
}
.footer-copy {
  margin-top: 12px;
  font-size: 0.98rem;
  color: var(--muted);
}
/* Responsive */
@media (max-width: 900px) {
  .features-grid, .usecases-grid {
    flex-direction: column;
    align-items: center;
  }
  header .container {
    flex-direction: column;
    gap: 12px;
  }
  nav {
    gap: 18px !important;
  }
  .hero-title {
    font-size: 2.2rem;
  }
  .hero-content {
    padding: 38px 0 32px 0;
  }
}
@media (max-width: 600px) {
  .hero-title {
    font-size: 1.8rem;
  }
  .section-title {
    font-size: 1.8rem;
  }
  .hero-section, .cta-section {
    padding: 18px 0 10px 0;
  }
  .mobile-mockup {
    width: 225px;
    max-width: 320px;
    height: 465px;
  }
  .container {
    width: 98%;
  }
  header .container {
    padding: 10px 0;
  }
  .features-section, .usecases-section {
    margin: 24px 0 32px 0;
  }
  .cta-section {
    padding: 100px 50px;
  }
}
.main-logo {
  text-align: center;
  width: 100%;
}
.main-logo img {
  width: 200px;
  height: 100px;
  padding: 20px;
}
