
/* Standard Navbar Styles injected */
.navbar { position: fixed; top: 0; left: 0; width: 100%; padding: 1.5rem 0; z-index: 1000; background: rgba(15, 23, 42, 0.8); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); border-bottom: 1px solid var(--border-color); }
.nav-container { display: flex; justify-content: space-between; align-items: center; max-width: 1280px; margin: 0 auto; padding: 0 2rem; width: 100%; }
.logo-text { font-size: 1.5rem; font-weight: 800; background: linear-gradient(135deg, #4F46E5, #06B6D4); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; text-decoration: none; font-family: sans-serif; }
.nav-links { display: flex; gap: 2rem; list-style: none; align-items: center; margin: 0; padding: 0; }
.nav-links a { text-decoration: none; color: #F8FAFC; font-weight: 500; font-size: 0.95rem; font-family: sans-serif; }
.nav-links a:hover { color: #06B6D4; }

/* Dropdown */
.dropdown { position: relative; display: inline-block; }
.dropdown-content { display: none; position: absolute; background-color: #1E293B; min-width: 200px; box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.5); z-index: 1; border-radius: 8px; overflow: hidden; top: 100%; left: 0; border: 1px solid rgba(255,255,255,0.1); }
.dropdown-content a { color: #F8FAFC; padding: 12px 16px; text-decoration: none; display: block; font-size: 0.9rem; }
.dropdown-content a:hover { background-color: rgba(255,255,255,0.05); color: #06B6D4; }
.dropdown:hover .dropdown-content { display: block; }

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;800&family=JetBrains+Mono&display=swap');

:root {
  --bg-color: #0f111a;
  --text-main: #f8fafc;
  --text-muted: #94a3b8;
  --accent-blue: #3b82f6;
  --accent-purple: #8b5cf6;
  --card-bg: rgba(30, 41, 59, 0.5);
  --border-color: rgba(255, 255, 255, 0.1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Outfit', sans-serif;
  background-color: var(--bg-color);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Background Glow */
.bg-glow {
  position: absolute;
  top: -10%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 400px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.2) 0%, rgba(139, 92, 246, 0.1) 40%, rgba(15, 17, 26, 0) 70%);
  z-index: -1;
  pointer-events: none;
}

/* Hero Section */
.hero {
  text-align: center;
  padding: 10rem 5% 4rem;
  max-width: 900px;
  margin: 0 auto;
}

.badge {
  display: inline-block;
  padding: 0.4rem 1rem;
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.3);
  border-radius: 50px;
  color: #60a5fa;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 2rem;
  letter-spacing: 0.5px;
}

h1 {
  font-size: 4rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.gradient-text {
  background: linear-gradient(to right, #60a5fa, #c084fc, #f472b6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--text-muted);
  max-width: 700px;
  margin: 0 auto 3rem;
}

/* CTA Buttons */
.cta-group {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  margin-bottom: 4rem;
}

.btn {
  padding: 1rem 2rem;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-blue), var(--accent-purple));
  color: white;
  border: none;
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.6);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-main);
  border: 1px solid var(--border-color);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

/* Visual Proof Section */
.visual-proof {
  max-width: 1000px;
  margin: 0 auto 6rem;
  position: relative;
  border-radius: 12px;
  padding: 10px;
  background: linear-gradient(180deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 100%);
}

.app-window {
  background: #0f111a;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
}

.window-header {
  height: 30px;
  background: #1e293b;
  display: flex;
  align-items: center;
  padding: 0 1rem;
  gap: 6px;
  border-bottom: 1px solid var(--border-color);
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.dot.r { background: #ef4444; }
.dot.y { background: #eab308; }
.dot.g { background: #22c55e; }

.app-screenshot {
  width: 100%;
  height: auto;
  display: block;
}

/* Feature Grid */
.features {
  max-width: 1200px;
  margin: 0 auto 6rem;
  padding: 0 5%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.feature-card {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  padding: 2.5rem;
  border-radius: 16px;
  backdrop-filter: blur(10px);
  transition: transform 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  border-color: rgba(139, 92, 246, 0.3);
}

.feature-icon {
  width: 50px;
  height: 50px;
  background: rgba(59, 130, 246, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
}

.feature-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.feature-card p {
  color: var(--text-muted);
}

.stat-highlight {
  display: inline-block;
  margin-top: 1rem;
  font-family: 'JetBrains Mono', monospace;
  color: #a78bfa;
  font-size: 0.9rem;
  background: rgba(167, 139, 250, 0.1);
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
}

/* Footer CTA */
.bottom-cta {
  text-align: center;
  padding: 6rem 5%;
  background: linear-gradient(0deg, rgba(15,17,26,1) 0%, rgba(30,41,59,0.5) 100%);
  border-top: 1px solid var(--border-color);
}

.bottom-cta h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

/* Footer CSS */
.ib-footer {
  background: rgba(15, 23, 42, 0.9);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 5rem 0 2rem;
  margin-top: 4rem;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: #F8FAFC;
  text-align: left;
}
.ib-container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}
.ib-footer-grid {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: nowrap;
  gap: 2rem;
  margin-bottom: 4rem;
}
.ib-footer-col {
  flex: 1;
}
.ib-footer-col:first-child {
  flex: 2;
}
.ib-footer-col h4 {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  color: white;
  font-family: 'Outfit', system-ui, sans-serif;
  font-weight: 700;
}
.ib-footer-col ul { list-style: none; padding: 0; margin: 0; }
.ib-footer-col ul li { margin-bottom: 0.75rem; }
.ib-footer-col ul li a {
  color: #CBD5E1;
  text-decoration: none;
  transition: all 0.3s ease;
}
.ib-footer-col ul li a:hover {
  color: #0891b2;
  padding-left: 5px;
}
.ib-footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  color: #CBD5E1;
}
.ib-logo {
  font-family: 'Outfit', system-ui, sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, #4F46E5, #0891b2);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-decoration: none;
}
@media (max-width: 992px) { .ib-footer-grid { flex-wrap: wrap; } .ib-footer-col { flex: 1 1 45%; } }
@media (max-width: 768px) { .ib-footer-col { flex: 1 1 100%; } }

/* Responsive */
@media (max-width: 768px) {
  h1 { font-size: 2.5rem; }
  .cta-group { flex-direction: column; }
}
