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

:root {
  --bg: #0b0f17;
  --bg2: #111622;
  --bg3: #181f30;
  --text: #f8fafc;
  --text-muted: #64748b;
  --primary: #3b82f6;
  --secondary: rgba(255, 255, 255, 0.04);
  --accent: #00f2fe;
  --glass: #111622;
  --glass-border: rgba(255, 255, 255, 0.05);
  --font: 'Outfit', 'Inter', -apple-system, sans-serif;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background-color: var(--bg);
  background-image: 
    radial-gradient(circle at 15% 50%, rgba(59, 130, 246, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 85% 30%, rgba(0, 242, 254, 0.08) 0%, transparent 50%);
  color: var(--text);
  font-family: var(--font);
  line-height: 1.5;
  overflow-x: hidden;
  position: relative;
  -webkit-font-smoothing: antialiased;
}

/* Background effects */
.bg-orbs { display: none; }

/* Typography */
h1, h2, h3 { line-height: 1.2; font-weight: 700; }
.text-gradient {
  background: linear-gradient(135deg, #3b82f6, #00f2fe);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.text-gradient-primary {
  color: var(--primary);
}

/* Nav */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  padding: 0 max(20px, calc(50vw - 480px));
  height: 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 100;
  background: rgba(11, 15, 23, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--glass-border);
}
.logo {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: var(--text);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo-icon {
  width: 28px; height: 28px;
  background: linear-gradient(135deg, #3b82f6, #00f2fe);
  border-radius: 8px;
  display: inline-block;
  box-shadow: 0 0 15px rgba(0, 242, 254, 0.4);
}
.nav-links { display: flex; gap: 24px; align-items: center; }
.nav-link { color: var(--text-muted); text-decoration: none; font-weight: 600; font-size: 15px; transition: var(--transition); }
.nav-link:hover { color: var(--text); }

.btn {
  padding: 12px 24px;
  border-radius: 12px;
  font-weight: 600;
  font-family: var(--font);
  font-size: 15px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  cursor: pointer;
  border: none;
}
.btn-primary {
  background: var(--primary);
  color: #fff;
}
.btn-primary:hover {
  background: #2563eb;
}
.btn-glow {
  background: linear-gradient(135deg, #3b82f6, #00f2fe);
  color: #fff;
  box-shadow: 0 0 20px rgba(59, 130, 246, 0.4);
}
.btn-glow:hover {
  box-shadow: 0 0 35px rgba(0, 242, 254, 0.6);
  transform: translateY(-2px);
}
.btn-outline {
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.btn-outline:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

/* Hero */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 80px 5% 40px;
  position: relative;
}
.hero-badge {
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.2);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 700;
  color: #60a5fa;
  margin-bottom: 24px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 0 15px rgba(59, 130, 246, 0.15);
}
.hero h1 {
  font-size: clamp(40px, 6vw, 72px);
  max-width: 800px;
  margin-bottom: 24px;
  font-weight: 800;
  letter-spacing: -1px;
}
.hero p {
  font-size: clamp(16px, 2vw, 18px);
  color: var(--text-muted);
  max-width: 600px;
  margin-bottom: 32px;
}
.hero-btns {
  display: flex; gap: 16px;
}

/* Section */
.section {
  padding: 80px 5%;
  position: relative;
}
.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 40px;
}
.section-tag {
  color: var(--text-muted);
  font-weight: 500;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
  display: block;
}
.section-title {
  font-size: 28px;
  margin-bottom: 16px;
}

/* Bento Grid */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 240px;
  gap: 16px;
  max-width: 960px;
  margin: 0 auto;
}
.bento-item {
  background: var(--bg2);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  padding: 24px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.bento-item:hover {
  border-color: rgba(59, 130, 246, 0.3);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4), inset 0 0 20px rgba(59, 130, 246, 0.05);
}
.bento-item.large { grid-column: span 2; }
.bento-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: rgba(59, 130, 246, 0.1);
  color: var(--primary);
  display: flex; align-items: center; justify-content: center;
  font-size: 24px;
  margin-bottom: auto;
}
.bento-title { font-size: 18px; font-weight: 600; margin-bottom: 8px; color: var(--text); }
.bento-desc { color: var(--text-muted); font-size: 14px; line-height: 1.5; }

/* Pricing */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 960px;
  margin: 0 auto;
}
.pricing-card {
  background: var(--bg2);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}
.pricing-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.1);
}
.pricing-card.popular {
  border-color: var(--primary);
  box-shadow: 0 0 30px rgba(59, 130, 246, 0.15);
}
.p-name { font-size: 18px; font-weight: 700; margin-bottom: 12px; color: var(--text); }
.p-price { font-size: 40px; font-weight: 800; margin-bottom: 24px; display: flex; align-items: flex-end; gap: 8px; color: var(--text); }
.p-price span { font-size: 14px; color: var(--text-muted); margin-bottom: 8px; font-weight: 500; }
.p-features { list-style: none; margin-bottom: 32px; flex: 1; }
.p-features li { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; color: var(--text-muted); font-size: 14px; }
.p-features li i { color: var(--primary); font-size: 16px; font-style: normal; font-weight: 700;}

/* Footer */
footer {
  padding: 40px 5%;
  text-align: center;
  color: var(--text-muted);
  font-size: 14px;
}

@media (max-width: 900px) {
  .bento-grid { grid-template-columns: 1fr; }
  .bento-item.large { grid-column: span 1; }
  .pricing-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 40px; }
}
