/* Base Variables & Reset */
:root {
  --bg-main: #050505;
  --bg-secondary: #0a0a0c;
  --bg-glass: rgba(10, 10, 12, 0.7);
  --border-glass: rgba(255, 255, 255, 0.05);
  --border-glass-light: rgba(255, 255, 255, 0.1);
  --text-primary: #f3f4f6;
  --text-secondary: #9ca3af;
  --text-muted: #6b7280;
  --primary: #8b5cf6; /* Indigo/Purple */
  --primary-hover: #7c3aed;
  --primary-glow: rgba(139, 92, 246, 0.3);
  --secondary: #1f2937;
  --secondary-hover: #374151;
  --accent: #10b981; /* Emerald */
}

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

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--bg-main);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.text-center { text-align: center; }

/* Background Orbs for dynamic modern look */
.bg-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  z-index: -1;
  opacity: 0.6;
  pointer-events: none;
}
.orb-1 {
  top: -10%;
  left: -10%;
  width: 600px;
  height: 600px;
  background: rgba(139, 92, 246, 0.15); /* Purple */
}
.orb-2 {
  top: 40%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: rgba(16, 185, 129, 0.08); /* Emerald */
}
.orb-3 {
  bottom: -10%;
  left: 30%;
  width: 700px;
  height: 700px;
  background: rgba(59, 130, 246, 0.1); /* Blue */
}

/* Glassmorphism Panel */
.glass-panel {
  background: var(--bg-glass);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-glass-light);
  border-radius: 16px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 500;
  font-size: 0.95rem;
  transition: all 0.2s ease;
  cursor: pointer;
}
.btn-primary {
  background-color: var(--primary);
  color: white;
  box-shadow: 0 0 15px var(--primary-glow);
}
.btn-primary:hover {
  background-color: var(--primary-hover);
  box-shadow: 0 0 25px var(--primary-glow);
  transform: translateY(-1px);
}
.btn-secondary {
  background-color: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border-glass-light);
}
.btn-secondary:hover {
  background-color: var(--border-glass);
}
.lg-btn {
  padding: 1rem 2rem;
  font-size: 1.05rem;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: rgba(5, 5, 5, 0.6);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-glass);
}
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.brand .logo-text {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #fff, #9ca3af);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
  font-size: 0.95rem;
  color: var(--text-secondary);
}
.nav-links a:not(.nav-btn-primary):hover {
  color: var(--text-primary);
  transition: color 0.2s;
}

/* Hero Section */
.hero {
  padding: 12rem 0 6rem;
  text-align: center;
}
.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.badge {
  display: inline-block;
  padding: 0.35rem 0.85rem;
  background: rgba(139, 92, 246, 0.1);
  border: 1px solid rgba(139, 92, 246, 0.2);
  color: #c4b5fd;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 2rem;
}
.hero-title {
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}
.text-gradient {
  background: linear-gradient(to right, #8b5cf6, #3b82f6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-subtitle {
  font-size: 1.25rem;
  color: var(--text-secondary);
  max-width: 700px;
  margin-bottom: 3rem;
}
.hero-cta {
  display: flex;
  gap: 1rem;
}

/* Generic Section Styles */
.section {
  padding: 6rem 1.5rem;
}
.section-header {
  margin-bottom: 4rem;
}
.section-header h2 {
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}
.section-header p {
  color: var(--text-secondary);
  font-size: 1.15rem;
  max-width: 600px;
  margin: 0 auto;
}

/* Grids */
.grid {
  display: grid;
  gap: 2rem;
}
.features-grid { grid-template-columns: repeat(3, 1fr); }
.use-cases-grid { grid-template-columns: repeat(2, 1fr); }
.careers-grid { grid-template-columns: repeat(3, 1fr); }

/* Cards */
.card {
  padding: 2.5rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  border-color: rgba(255,255,255,0.2);
}
.icon-wrapper {
  display: inline-flex;
  padding: 1rem;
  border-radius: 12px;
  background: rgba(139, 92, 246, 0.1);
  color: var(--primary);
  margin-bottom: 1.5rem;
}
.number-badge {
    font-size: 1.2rem;
    font-weight: 700;
    font-variant-numeric: tabular-nums;
    padding: 0.5rem 1.25rem;
}
.card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--text-primary);
}
.card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Careers Card specifics */
.careers-card .meta {
  color: var(--primary);
  font-weight: 500;
  font-size: 0.85rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.apply-link {
  display: inline-block;
  margin-top: 1.5rem;
  color: white;
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.2s;
}
.apply-link:hover { color: var(--primary); }

/* CTA Banner */
.banner-content {
  text-align: center;
  padding: 5rem 2rem;
  position: relative;
  overflow: hidden;
  border-color: rgba(139, 92, 246, 0.3);
  box-shadow: 0 0 40px rgba(139, 92, 246, 0.05);
}
.banner-content::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.1) 0%, transparent 60%);
  z-index: 0;
  pointer-events: none;
}
.banner-content h2, .banner-content p, .banner-content a {
  position: relative;
  z-index: 10;
}
.banner-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.banner-content p {
  color: var(--text-secondary);
  font-size: 1.15rem;
  margin-bottom: 2rem;
}

/* Footer */
.footer {
  background: var(--bg-secondary);
  padding: 4rem 0 2rem;
  border-top: 1px solid var(--border-glass);
  margin-top: 4rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
}
.footer-brand p {
  color: var(--text-secondary);
  margin-top: 1rem;
  max-width: 400px;
}
.footer-contact h4 {
  margin-bottom: 1rem;
  font-size: 1.1rem;
}
address {
  font-style: normal;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 1rem;
}
.email-link { color: var(--text-secondary); transition: color 0.2s; }
.email-link:hover { color: var(--primary); }
.footer-bottom {
  border-top: 1px solid var(--border-glass-light);
  padding-top: 2rem;
  color: var(--text-muted);
  font-size: 0.9rem;
  text-align: center;
}

/* Founder Section */
.flex-row {
  display: flex;
  gap: 3rem;
  align-items: center;
}
.founder-card {
  padding: 3rem;
}
.founder-image-wrapper {
  flex-shrink: 0;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid var(--border-glass-light);
  box-shadow: 0 0 25px rgba(139, 92, 246, 0.2);
}
.founder-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.founder-content h3 {
  font-size: 2rem;
  font-weight: 700;
  margin-top: 0.5rem;
  color: var(--text-primary);
}
.founder-content .meta {
  color: var(--primary);
  font-weight: 500;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}
.founder-content p {
  color: var(--text-secondary);
  line-height: 1.7;
}

/* Responsive */
@media (max-width: 900px) {
  .features-grid, .careers-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-title { font-size: 3rem; }
}
@media (max-width: 768px) {
  .features-grid, .careers-grid, .footer-grid { grid-template-columns: 1fr; }
  .nav-links a:not(.nav-btn-primary) { display: none; }
  .hero-cta { flex-direction: column; width: 100%; max-width: 320px; }
  .hero-title { font-size: 2.5rem; }
}
