:root {
  --bg-dark: #020C1B;
  --bg-surface: #0A192F;
  --bg-card: #112240;
  --border-color: #233554;
  --mint: #64FFDA;
  --teal: #00E5FF;
  --text-primary: #F8FAFC;
  --text-secondary: #8892B0;
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
}

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

body {
  background-color: var(--bg-dark);
  color: var(--text-primary);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  background-image: 
    radial-gradient(circle at 50% 0%, rgba(0, 229, 255, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 100% 60%, rgba(100, 255, 218, 0.04) 0%, transparent 40%);
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(2, 12, 27, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-color);
  padding: 16px 24px;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--text-primary);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 20px;
  letter-spacing: -0.5px;
}

.logo-box {
  width: 36px;
  height: 36px;
  background: var(--bg-surface);
  border: 1px solid var(--mint);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--mint);
}

.logo-box svg {
  width: 20px;
  height: 20px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}

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

.btn-nav {
  background: rgba(100, 255, 218, 0.1);
  color: var(--mint) !important;
  border: 1px solid var(--mint);
  padding: 8px 16px;
  border-radius: 8px;
  font-weight: 600 !important;
}

.hero {
  padding: 100px 24px 60px;
  text-align: center;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.badge-pill {
  display: inline-block;
  background: rgba(0, 229, 255, 0.1);
  color: var(--teal);
  border: 1px solid rgba(0, 229, 255, 0.3);
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 24px;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.hero-subtitle {
  color: var(--text-secondary);
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 36px;
}

.hero-cta-group {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--mint);
  color: var(--bg-dark);
  font-weight: 700;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: 10px;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 6px 20px rgba(100, 255, 218, 0.25);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(100, 255, 218, 0.35);
}

.btn-secondary {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border-color);
  font-weight: 600;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: 10px;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s;
}

.btn-secondary:hover {
  background: var(--bg-surface);
  border-color: var(--text-secondary);
}

.section {
  padding: 80px 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.section.bg-alt {
  background: var(--bg-surface);
  border-radius: 24px;
  border: 1px solid var(--border-color);
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-eyebrow {
  color: var(--mint);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.section-header h2 {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 800;
  margin-top: 8px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 24px;
}

.product-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
  position: relative;
}

.product-card.featured {
  border-color: rgba(100, 255, 218, 0.4);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.4);
}

.product-card:hover {
  transform: translateY(-4px);
  border-color: var(--teal);
  box-shadow: 0 14px 40px rgba(0, 229, 255, 0.12);
}

.product-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.status-badge {
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.status-badge.live {
  background: rgba(100, 255, 218, 0.12);
  color: var(--mint);
  border: 1px solid rgba(100, 255, 218, 0.35);
}

.status-badge.live .dot {
  width: 6px;
  height: 6px;
  background: var(--mint);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--mint);
  animation: pulse-dot 2s infinite;
}

.status-badge.beta {
  background: rgba(0, 229, 255, 0.12);
  color: var(--teal);
  border: 1px solid rgba(0, 229, 255, 0.35);
}

.status-badge.beta .dot {
  width: 6px;
  height: 6px;
  background: var(--teal);
  border-radius: 50%;
}

.status-badge.enterprise {
  background: rgba(167, 139, 250, 0.12);
  color: #c4b5fd;
  border: 1px solid rgba(167, 139, 250, 0.35);
}

.status-badge.enterprise .dot {
  width: 6px;
  height: 6px;
  background: #c4b5fd;
  border-radius: 50%;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.85); }
}

.suite-callout {
  background: linear-gradient(135deg, rgba(10, 25, 47, 0.9) 0%, rgba(17, 34, 64, 0.9) 100%);
  border: 1px dashed rgba(100, 255, 218, 0.4);
  border-radius: 20px;
  padding: 32px;
  text-align: center;
  margin-top: 36px;
}

.suite-callout h3 {
  font-family: var(--font-heading);
  font-size: 22px;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.suite-callout p {
  color: var(--text-secondary);
  font-size: 14px;
  max-width: 650px;
  margin: 0 auto 20px;
}

.product-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.product-icon {
  width: 48px;
  height: 48px;
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-icon svg {
  width: 24px;
  height: 24px;
}

.product-tag {
  font-size: 11px;
  color: var(--mint);
  font-weight: 700;
  text-transform: uppercase;
}

.product-desc {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 24px;
  flex-grow: 1;
}

.feature-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.feature-tags span {
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  color: var(--text-secondary);
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 6px;
}

.product-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.btn-card {
  padding: 12px;
  border-radius: 8px;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
}

.btn-card.primary {
  background: var(--mint);
  color: var(--bg-dark);
}

.btn-card.secondary {
  background: transparent;
  border: 1px solid var(--border-color);
  color: var(--text-primary);
}

.btn-card.secondary:hover {
  background: rgba(255, 255, 255, 0.05);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 24px;
}

.service-icon {
  font-size: 28px;
  margin-bottom: 16px;
}

.service-card h4 {
  font-family: var(--font-heading);
  font-size: 18px;
  margin-bottom: 10px;
}

.service-card p {
  color: var(--text-secondary);
  font-size: 13px;
  line-height: 1.6;
}

/* About / Engineering Leadership Section */
.about-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 24px;
  padding: 48px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
}

.about-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--mint), var(--teal), transparent);
}

.about-hero-text {
  font-size: 18px;
  color: var(--text-primary);
  line-height: 1.7;
  margin-bottom: 32px;
  font-weight: 400;
}

.about-hero-text strong {
  color: var(--mint);
  font-weight: 600;
}

.competency-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-bottom: 36px;
}

.competency-item {
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: 14px;
  padding: 20px;
  transition: transform 0.2s, border-color 0.2s;
}

.competency-item:hover {
  transform: translateY(-2px);
  border-color: rgba(100, 255, 218, 0.4);
}

.competency-icon {
  font-size: 24px;
  margin-bottom: 10px;
}

.competency-item h4 {
  font-family: var(--font-heading);
  font-size: 16px;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.competency-item p {
  color: var(--text-secondary);
  font-size: 13px;
  line-height: 1.5;
}

.skill-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 12px;
  border-top: 1px solid var(--border-color);
}

.skill-pill {
  background: rgba(0, 229, 255, 0.08);
  border: 1px solid rgba(0, 229, 255, 0.25);
  color: var(--teal);
  font-size: 12px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.contact-box {
  background: radial-gradient(circle at 50% 50%, rgba(0, 229, 255, 0.1) 0%, transparent 80%), var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 24px;
  padding: 60px 24px;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.contact-box h2 {
  font-family: var(--font-heading);
  font-size: 32px;
  margin-bottom: 12px;
}

.contact-box p {
  color: var(--text-secondary);
  font-size: 15px;
  margin-bottom: 28px;
}

.footer {
  border-top: 1px solid var(--border-color);
  padding: 60px 24px 30px;
  margin-top: 60px;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 40px;
}

.footer-brand strong {
  font-family: var(--font-heading);
  font-size: 18px;
  color: var(--text-primary);
}

.footer-brand p {
  color: var(--text-secondary);
  font-size: 13px;
}

.footer-links {
  display: flex;
  gap: 20px;
}

.footer-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--mint);
}

.footer-bottom {
  text-align: center;
  color: var(--text-secondary);
  font-size: 12px;
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 34px;
  }
  .nav-links {
    display: none;
  }
}
