:root {
  --navy: #070d24;
  --navy2: #0e1840;
  --teal: #00c4b4;
  --teal2: #00e5d4;
  --blue: #1a6cff;
  --gold: #f5a623;
  --red: #ff4d6a;
  --white: #ffffff;
  --gray: #8892aa;
  --light: #c8d6f0;
  --card: rgba(255,255,255,0.04);
  --border: rgba(0,196,180,0.18);
  --glass: rgba(14,24,64,0.7);
}

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

body {
  font-family: 'Inter', sans-serif;
  background: var(--navy);
  color: var(--white);
  min-height: 100vh;
  overflow-x: hidden;
}

.bg-effects {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.15;
}

.orb-teal {
  width: 500px;
  height: 500px;
  background: var(--teal);
  top: -100px;
  left: -100px;
}

.orb-blue {
  width: 600px;
  height: 600px;
  background: var(--blue);
  bottom: -200px;
  right: -100px;
}

.grid-bg {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(0,196,180,0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(0,196,180,0.05) 1px, transparent 1px);
  background-size: 60px 60px;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 20px 0;
  background: rgba(7, 13, 36, 0.8);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  z-index: 100;
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: white;
}

.logo-icon {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--teal), var(--blue));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 800;
  color: var(--navy);
}

.logo-text {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.dropdown {
  position: relative;
  display: inline-block;
}

.dropbtn {
  background: none;
  color: var(--light);
  font-family: inherit;
  font-size: 15px;
  font-weight: 500;
  border: none;
  cursor: pointer;
  padding: 8px 16px;
  border-radius: 8px;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  gap: 6px;
}

.dropbtn:hover {
  background: var(--card);
  color: white;
}

.arrow {
  font-size: 10px;
  transition: transform 0.2s;
}

.dropdown:hover .arrow {
  transform: rotate(180deg);
}

.dropdown-content {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  right: 0;
  top: 100%;
  margin-top: 10px;
  background: var(--navy2);
  min-width: 280px;
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  padding: 8px;
  transform: translateY(10px);
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.dropdown:hover .dropdown-content {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-content a {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px;
  text-decoration: none;
  border-radius: 8px;
  transition: background 0.2s;
}

.dropdown-content a:hover {
  background: var(--card);
}

.product-icon {
  font-size: 20px;
  background: rgba(255,255,255,0.05);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
}

.product-info {
  display: flex;
  flex-direction: column;
}

.product-title {
  color: white;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 4px;
}

.product-desc {
  color: var(--gray);
  font-size: 12px;
  line-height: 1.4;
}

/* Hero */
.hero {
  max-width: 1200px;
  margin: 140px auto 80px;
  padding: 0 24px;
}

.hero-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 80px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(0, 196, 180, 0.1);
  border: 1px solid rgba(0, 196, 180, 0.3);
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
  color: var(--teal);
  margin-bottom: 24px;
}

.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 8px var(--teal);
}

h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 700;
  line-height: 1.05;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.grad {
  background: linear-gradient(135deg, var(--teal2), var(--blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.subtitle {
  font-size: 18px;
  color: var(--light);
  line-height: 1.6;
  margin-bottom: 40px;
  font-weight: 400;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
}

.btn-primary {
  background: linear-gradient(135deg, var(--teal), var(--blue));
  color: white;
  box-shadow: 0 8px 24px rgba(0, 196, 180, 0.25);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0, 196, 180, 0.4);
}

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

.btn-secondary:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(0,196,180,0.4);
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.feature-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  transition: transform 0.3s, border-color 0.3s;
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0,196,180,0.4);
  background: rgba(255,255,255,0.06);
}

.icon-circle {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 20px;
}

.ic-teal { background: rgba(0,196,180,0.12); border: 1px solid rgba(0,196,180,0.25); }
.ic-blue { background: rgba(26,108,255,0.12); border: 1px solid rgba(26,108,255,0.25); }
.ic-gold { background: rgba(245,166,35,0.12); border: 1px solid rgba(245,166,35,0.25); }

.feature-card h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}

.feature-card p {
  color: var(--gray);
  line-height: 1.6;
  font-size: 15px;
}

/* Page Layouts for Products */
.product-hero {
  padding: 160px 24px 80px;
  max-width: 1200px;
  margin: 0 auto;
}

.product-hero .badge {
  margin-bottom: 20px;
}

.product-showcase {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px 100px;
}

.workflow-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 40px;
  position: relative;
  overflow: hidden;
}

.stat-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 48px;
  font-weight: 800;
  line-height: 1;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
}
.tag-teal { background: rgba(0,196,180,0.12); color: var(--teal); border: 1px solid rgba(0,196,180,0.3); }

/* Decorative */
.mockup-window {
  background: rgba(7, 13, 36, 0.9);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.mockup-bar {
  display: flex;
  gap: 6px;
  padding: 12px 16px;
  background: rgba(255,255,255,0.03);
  border-bottom: 1px solid var(--border);
}

.mockup-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
