@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&display=swap');

:root {
  --primary-color: #0053d3;
  --secondary-color: #003a99;
  --bg-dark: #ffffff;
  --bg-card: #f8fafc;
  --text-main: #1e293b;
  --text-muted: #64748b;
  --accent-gold: #f59e0b;
  --glass-border: rgba(0, 83, 211, 0.15);
}

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

body {
  font-family: 'Outfit', sans-serif;
  background-color: var(--bg-dark);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Background Gradients */
.bg-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--secondary-color) 0%, rgba(0,0,0,0) 70%);
  top: -200px;
  left: -200px;
  opacity: 0.15;
  z-index: -1;
  filter: blur(50px);
}

.bg-glow-2 {
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--primary-color) 0%, rgba(0,0,0,0) 70%);
  bottom: 20%;
  right: -100px;
  opacity: 0.1;
  z-index: -1;
  filter: blur(60px);
}

/* Navbar */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 5%;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--glass-border);
}

.logo {
  font-size: 1.8rem;
  font-weight: 700;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  color: var(--text-main);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: var(--primary-color);
}

.btn {
  background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
  color: white;
  padding: 0.8rem 1.5rem;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: inline-block;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 210, 255, 0.3);
}

/* Hero Section */
.hero {
  padding: 12rem 5% 5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 100vh;
}

.hero-content {
  flex: 1;
  max-width: 600px;
}

.hero-badge {
  display: inline-block;
  padding: 0.4rem 1rem;
  background: rgba(251, 191, 36, 0.1);
  color: var(--accent-gold);
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(251, 191, 36, 0.2);
}

.hero h1 {
  font-size: 4rem;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: var(--text-main);
}

.hero p {
  font-size: 1.2rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
}

.hero-image {
  flex: 1;
  display: flex;
  justify-content: center;
  position: relative;
  animation: float 6s ease-in-out infinite;
}

.hero-image img {
  max-width: 100%;
  border-radius: 20px;
  box-shadow: 0 25px 50px -12px rgba(0, 83, 211, 0.15);
  border: 1px solid var(--glass-border);
}

/* Float Animation */
@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
  100% { transform: translateY(0px); }
}

/* Sections Common */
section {
  padding: 6rem 5%;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.section-header p {
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

/* Glass Cards */
.glass-card {
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 2.5rem;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 83, 211, 0.05);
}

.glass-card:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 83, 211, 0.3);
  box-shadow: 0 15px 40px rgba(0, 83, 211, 0.1);
}

/* Features */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: rgba(0, 83, 211, 0.1);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
  color: var(--primary-color);
}

.glass-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.glass-card p {
  color: var(--text-muted);
}

/* Two Column Layout */
.split-section {
  display: flex;
  align-items: center;
  gap: 4rem;
  margin-bottom: 6rem;
}

.split-section.reverse {
  flex-direction: row-reverse;
}

.split-content {
  flex: 1;
}

.split-content h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.split-content ul {
  list-style: none;
  margin-top: 1.5rem;
}

.split-content ul li {
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--text-muted);
}

.split-content ul li::before {
  content: '✓';
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
  border-radius: 50%;
  color: white;
  font-size: 0.8rem;
  flex-shrink: 0;
}

.split-image {
  flex: 1;
  display: flex;
  justify-content: center;
}

.split-image img {
  max-width: 100%;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 83, 211, 0.15);
  border: 1px solid var(--glass-border);
}

/* Mobile App Mockup Tweaks */
.mobile-mockup {
  max-width: 300px !important;
  border-radius: 35px !important;
}

/* Call to Action */
.cta {
  text-align: center;
  background: linear-gradient(135deg, rgba(0, 83, 211, 0.05), rgba(0, 83, 211, 0.1));
  border-radius: 30px;
  padding: 5rem 2rem;
  margin: 0 5% 5rem;
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(10px);
}

.cta h2 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.cta p {
  font-size: 1.2rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Download App Section */
.download-section {
  background: rgba(248, 250, 252, 0.8);
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
}

.app-showcase {
  display: flex;
  justify-content: center;
  gap: 4rem;
  flex-wrap: wrap;
}

.app-platform {
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 2.5rem;
  text-align: center;
  flex: 1;
  min-width: 300px;
  max-width: 400px;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 83, 211, 0.05);
}

.app-platform:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 83, 211, 0.3);
  box-shadow: 0 15px 40px rgba(0, 83, 211, 0.1);
}

.app-screenshot {
  max-width: 180px;
  border-radius: 20px;
  margin-bottom: 1.5rem;
  box-shadow: 0 10px 30px rgba(0, 83, 211, 0.15);
  border: 1px solid var(--glass-border);
}

.app-platform h3 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
}

.btn-outline:hover {
  background: rgba(0, 83, 211, 0.1);
  box-shadow: 0 5px 15px rgba(0, 83, 211, 0.2);
}

/* Footer */
footer {
  text-align: center;
  padding: 2rem;
  border-top: 1px solid var(--glass-border);
  color: var(--text-muted);
}

/* Responsive */
@media (max-width: 968px) {
  .hero {
    flex-direction: column;
    text-align: center;
    padding-top: 8rem;
  }
  .hero h1 {
    font-size: 3rem;
  }
  .hero-content {
    margin-bottom: 3rem;
  }
  .split-section, .split-section.reverse {
    flex-direction: column;
    text-align: center;
  }
  .split-content ul li {
    text-align: left;
  }
  .nav-links {
    display: none; /* simple mobile nav hide for demo */
  }
}
