/* Extracted common styles for ZeroOneEta */
:root {
  --primary: #2563eb;
  --primary-light: #3b82f6;
  --secondary: #0f3057;
  --dark: #0f172a;
  --darker: #020617;
  --light: #f8fafc;
  --gray: #94a3b8;
  --card-bg: #1e293b;
  --border: #334155;
  --text-light: #f1f5f9;
  --text-secondary: #cbd5e1;
  --success: #10b981;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}
body {
  font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: var(--dark);
  color: var(--text-light);
  line-height: 1.6;
  overflow-x: hidden;
}
@supports (font-variation-settings: normal) {
  body { font-family: 'Inter var', sans-serif; }
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.section {
  padding: 100px 0;
  position: relative;
}
.section-title {
  font-size: 2.5rem;
  color: var(--text-light);
  margin-bottom: 20px;
  font-weight: 700;
  text-align: center;
  position: relative;
}
.section-subtitle {
  font-size: 1.25rem;
  color: var(--text-secondary);
  max-width: 700px;
  margin: 0 auto 60px;
  text-align: center;
  line-height: 1.7;
}
.btn {
  display: inline-block;
  padding: 14px 32px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  text-align: center;
}
.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.3);
}
.btn-primary:hover {
  background: var(--primary-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(37, 99, 235, 0.4);
}
.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}
.btn-outline:hover {
  background: rgba(37, 99, 235, 0.1);
  transform: translateY(-2px);
}
nav {
  background-color: rgba(15, 23, 42, 0.95);
  padding: 18px 0;
  display: flex;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  border-bottom: 1px solid var(--border);
}
.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.logo img {
  height: 40px;
}
.logo-text {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-light);
}
.nav-links {
  display: flex;
  gap: 32px;
}
nav a {
  color: var(--text-light);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  padding: 8px 0;
  transition: color 0.3s ease;
  position: relative;
}
nav a:hover {
  color: var(--primary);
}
nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.3s ease;
}
nav a:hover::after {
  width: 100%;
}
.nav-cta {
  display: flex;
  gap: 16px;
  align-items: center;
}
.hero {
  background: radial-gradient(ellipse at top, rgba(37, 99, 235, 0.1), transparent 70%),
              radial-gradient(ellipse at bottom, rgba(15, 23, 42, 0.8), var(--dark));
  padding: 160px 0 100px;
  text-align: center;
  position: relative;
}
/* Add other extracted styles... */