/* GenieAI Theme */
:root {
  --bg: #030712;
  --bg-2: #060d1f;
  --surface: #0d1a3a;
  --fg: #e2e8f0;
  --fg-muted: #94a3b8;
  --accent: #7C3AED;
  --accent-2: #A78BFA;
  --green: #34D399;
  --green-dark: #10B981;
}

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'Outfit', system-ui, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

/* NAV */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  padding: 1.25rem 2rem;
  backdrop-filter: blur(12px);
  background: rgba(3,7,18,0.7);
  border-bottom: 1px solid rgba(124,58,237,0.15);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: var(--fg);
}
.logo-text {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: -0.02em;
}
.nav-tag {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-2);
  background: rgba(124,58,237,0.15);
  padding: 0.3rem 0.75rem;
  border-radius: 100px;
  border: 1px solid rgba(124,58,237,0.3);
}

/* HERO */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8rem 2rem 5rem;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
}
.orb-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, #7C3AED 0%, transparent 70%);
  top: -200px; left: -150px;
}
.orb-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, #10B981 0%, transparent 70%);
  bottom: -100px; right: -100px;
  opacity: 0.2;
}
.grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(124,58,237,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(124,58,237,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black 30%, transparent 100%);
}
.hero-content {
  position: relative;
  text-align: center;
  max-width: 800px;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-2);
  margin-bottom: 2rem;
}
.eyebrow-dot {
  width: 6px; height: 6px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--green);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}
.hero-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(3.5rem, 10vw, 7rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
  color: #fff;
  margin-bottom: 1.75rem;
}
.hero-title em {
  font-style: normal;
  background: linear-gradient(135deg, #A78BFA 0%, #34D399 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: var(--fg-muted);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* SERVICES */
.services {
  padding: 6rem 2rem;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
}
.services-header {
  text-align: center;
  margin-bottom: 4rem;
}
.services-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: #fff;
  margin-bottom: 1rem;
}
.services-sub {
  color: var(--fg-muted);
  font-size: 1.05rem;
  max-width: 480px;
  margin: 0 auto;
}
.services-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.service-card {
  background: var(--surface);
  border: 1px solid rgba(124,58,237,0.2);
  border-radius: 16px;
  padding: 2rem;
  transition: border-color 0.3s ease, transform 0.3s ease;
}
.service-card:hover {
  border-color: rgba(124,58,237,0.5);
  transform: translateY(-4px);
}
.service-card--accent {
  border-color: rgba(52,211,153,0.2);
}
.service-card--accent:hover {
  border-color: rgba(52,211,153,0.4);
}
.card-icon {
  margin-bottom: 1.25rem;
}
.card-title {
  font-family: 'Syne', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.75rem;
}
.card-desc {
  color: var(--fg-muted);
  font-size: 0.9rem;
  margin-bottom: 1.25rem;
  line-height: 1.6;
}
.card-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.card-list li {
  font-size: 0.85rem;
  color: var(--fg-muted);
  padding-left: 1.1rem;
  position: relative;
}
.card-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 5px; height: 5px;
  background: var(--accent-2);
  border-radius: 50%;
}
.service-card--accent .card-list li::before {
  background: var(--green);
}

/* DIFFERENTIATION */
.diff {
  padding: 6rem 2rem;
  background: var(--bg-2);
}
.diff-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.diff-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: #fff;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}
.diff-body {
  color: var(--fg-muted);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}
.diff-stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
.stat {
  border-left: 2px solid var(--accent);
  padding-left: 1.5rem;
}
.stat-number {
  font-family: 'Syne', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, #A78BFA 0%, #34D399 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 0.4rem;
}
.stat-label {
  font-size: 0.85rem;
  color: var(--fg-muted);
}

/* CLOSING */
.closing {
  padding: 7rem 2rem;
  background: var(--bg);
}
.closing-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.closing-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #fff;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}
.closing-body {
  color: var(--fg-muted);
  font-size: 1.1rem;
  line-height: 1.8;
}

/* FOOTER */
.footer {
  padding: 3rem 2rem;
  border-top: 1px solid rgba(124,58,237,0.1);
  background: var(--bg);
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.footer-name {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: #fff;
}
.footer-sub {
  font-size: 0.8rem;
  color: var(--fg-muted);
}

/* Responsive */
@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
  .diff-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .hero {
    padding: 7rem 1.5rem 4rem;
  }
}