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

:root {
  --primary: #6366F1;
  --primary-dark: #4F46E5;
  --text: #0F172A;
  --text-muted: #64748B;
  --border: #E2E8F0;
  --bg: #FAFAFA;
  --surface: #FFFFFF;
  --radius: 16px;
  --radius-lg: 24px;
  --shadow: 0 1px 3px rgba(0,0,0,.06), 0 4px 16px rgba(0,0,0,.04);
  --shadow-lg: 0 8px 32px rgba(0,0,0,.10), 0 2px 8px rgba(0,0,0,.04);
}

html { scroll-behavior: smooth; }
body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  font-size: 16px;
}

.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }

/* ── Nav ── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo { text-decoration: none; }
.nav-links { display: flex; gap: 32px; }
.nav-links a {
  text-decoration: none;
  color: var(--text-muted);
  font-weight: 500;
  font-size: 15px;
  transition: color 0.15s;
}
.nav-links a:hover { color: var(--text); }

/* ── Hero ── */
.hero {
  position: relative;
  padding: 100px 24px 120px;
  text-align: center;
  overflow: hidden;
  background: linear-gradient(160deg, #F0F4FF 0%, #FDF4FF 50%, #FFF7F0 100%);
}
.hero-inner { position: relative; z-index: 2; max-width: 720px; margin: 0 auto; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 24px;
  box-shadow: var(--shadow);
}
.hero h1 {
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -1.5px;
  margin-bottom: 20px;
  color: var(--text);
}
.gradient-text {
  background: linear-gradient(135deg, #6366F1, #EC4899, #F59E0B);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero p {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto 36px;
  line-height: 1.7;
}
.hero-buttons { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* Bubbles */
.hero-bubbles { position: absolute; inset: 0; pointer-events: none; }
.bubble {
  position: absolute;
  border-radius: 50%;
  opacity: 0.15;
  filter: blur(40px);
}
.b1 { width: 400px; height: 400px; background: #6366F1; top: -100px; left: -100px; }
.b2 { width: 300px; height: 300px; background: #EC4899; top: 50px; right: -50px; }
.b3 { width: 250px; height: 250px; background: #F59E0B; bottom: -50px; left: 30%; }
.b4 { width: 200px; height: 200px; background: #10B981; bottom: 0; right: 20%; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 100px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s;
  border: none;
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, #6366F1, #8B5CF6);
  color: white;
  box-shadow: 0 4px 14px rgba(99,102,241,.35);
}
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(99,102,241,.45); }
.btn-ghost { background: white; color: var(--text); border: 1px solid var(--border); }
.btn-ghost:hover { background: #F8FAFC; }
.btn-dark { background: #0F172A; color: white; }
.btn-dark:hover { background: #1E293B; }
.btn-outline { background: transparent; color: var(--primary); border: 2px solid var(--primary); }
.btn-outline:hover { background: #EEF2FF; }
.btn-sm { padding: 8px 18px; font-size: 13px; }

/* ── Apps Section ── */
.apps { padding: 100px 0; }
.section-header { text-align: center; margin-bottom: 60px; }
.section-badge {
  display: inline-block;
  background: linear-gradient(135deg, #EEF2FF, #F5F3FF);
  color: var(--primary);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 16px;
}
.section-header h2 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 12px;
}
.section-header p { font-size: 17px; color: var(--text-muted); max-width: 480px; margin: 0 auto; }

.apps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}

.app-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.app-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.app-card.featured {
  border: 2px solid #6366F1;
  background: linear-gradient(160deg, #FAFBFF, white);
}
.app-card.more-coming {
  background: linear-gradient(135deg, #F8FAFF, #FDF4FF);
  border: 2px dashed var(--border);
  align-items: center;
  text-align: center;
  justify-content: center;
  min-height: 280px;
}

.app-icon {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: 0 4px 12px rgba(0,0,0,.15);
}
.app-tag {
  display: inline-block;
  background: #ECFDF5;
  color: #059669;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 3px 10px;
  border-radius: 100px;
  width: fit-content;
}
.app-tag.coming-soon { background: #FFF7ED; color: #D97706; }

.app-card h3 { font-size: 20px; font-weight: 700; letter-spacing: -0.3px; }
.app-card p { color: var(--text-muted); font-size: 14px; line-height: 1.6; }

.app-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}
.app-features li { font-size: 13px; color: var(--text-muted); }

.app-buttons { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 4px; }

.more-dots { display: flex; gap: 8px; margin-bottom: 8px; }
.more-dots span {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: block;
}
.more-coming h3 { font-size: 20px; font-weight: 700; }
.more-coming p { color: var(--text-muted); font-size: 14px; max-width: 220px; }

/* ── About ── */
.about {
  padding: 100px 0;
  background: linear-gradient(160deg, #F8FAFF, #FDF4FF);
}
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-text .section-badge { display: inline-block; margin-bottom: 16px; }
.about-text h2 {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
  line-height: 1.2;
}
.about-text p { color: var(--text-muted); font-size: 15px; line-height: 1.7; margin-bottom: 12px; }

.about-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.about-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow);
  transition: transform 0.2s;
}
.about-card:hover { transform: translateY(-2px); }
.about-icon { font-size: 28px; margin-bottom: 10px; }
.about-card h4 { font-size: 15px; font-weight: 700; margin-bottom: 4px; color: var(--c, var(--primary)); }
.about-card p { font-size: 13px; color: var(--text-muted); }

/* ── Contact ── */
.contact { padding: 100px 0; }
.contact-inner { text-align: center; max-width: 600px; margin: 0 auto; }
.contact-inner .section-badge { display: inline-block; margin-bottom: 16px; }
.contact-inner h2 {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 12px;
}
.contact-inner > p { color: var(--text-muted); font-size: 17px; margin-bottom: 36px; }

.contact-options { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.contact-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 28px;
  text-decoration: none;
  color: var(--text);
  box-shadow: var(--shadow);
  transition: all 0.2s;
  min-width: 220px;
}
.contact-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); border-color: #6366F1; }
.contact-icon { font-size: 28px; }
.contact-card strong { display: block; font-size: 15px; font-weight: 700; }
.contact-card span { font-size: 13px; color: var(--text-muted); }

/* ── Footer ── */
.footer {
  background: #0F172A;
  padding: 40px 0;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-links { display: flex; gap: 24px; }
.footer-links a {
  color: #64748B;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.15s;
}
.footer-links a:hover { color: white; }
.footer-copy { color: #475569; font-size: 13px; }

/* ── Responsive ── */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hero { padding: 70px 24px 80px; }
  .apps-grid { grid-template-columns: 1fr; }
  .about-inner { grid-template-columns: 1fr; gap: 40px; }
  .about-cards { grid-template-columns: 1fr 1fr; }
  .footer-inner { flex-direction: column; text-align: center; }
  .footer-links { justify-content: center; }
}
