:root {
  --bg-primary: #050816;
  --bg-secondary: #0b1026;
  --bg-elevated: rgba(255, 255, 255, 0.05);
  --accent-violet: #7c3aed;
  --accent-cyan: #22d3ee;
  --accent-purple: #a78bfa;
  --text-primary: #e5e7eb;
  --text-secondary: #a1a1aa;
  --text-muted: #6b7280;
  --glass-bg: rgba(11, 16, 38, 0.7);
  --glass-border: rgba(124, 58, 237, 0.2);
  --glass-border-light: rgba(255, 255, 255, 0.08);
  --gradient-primary: linear-gradient(135deg, #7c3aed, #22d3ee);
  --gradient-aurora: linear-gradient(135deg, #050816, #0b1026, #0d1535);
  --shadow-violet: 0 0 30px rgba(124, 58, 237, 0.15);
  --shadow-cyan: 0 0 30px rgba(34, 211, 238, 0.15);
  --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.4);
  --radius-sm: 10px;
  --radius-md: 14px;
  --radius-lg: 18px;
  --radius-xl: 24px;
  --font-heading: 'Space Grotesk', 'Sora', sans-serif;
  --font-body: 'Inter', sans-serif;
  --max-width: 1320px;
  --section-spacing: 110px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-body);
  line-height: 1.7;
  overflow-x: hidden;
}

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

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: var(--font-body);
}

/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  line-height: 1.2;
  color: var(--text-primary);
}

h1 { font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 700; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 700; }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; }

p {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.75;
}

/* === CONTAINER === */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 32px;
}

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--gradient-primary);
  color: #fff;
  box-shadow: 0 4px 20px rgba(124, 58, 237, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(124, 58, 237, 0.5), 0 0 20px rgba(34, 211, 238, 0.2);
  filter: brightness(1.1);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-primary);
  border: 1px solid var(--glass-border-light);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--accent-violet);
  transform: translateY(-2px);
  box-shadow: var(--shadow-violet);
}

.btn-outline {
  background: transparent;
  color: var(--accent-purple);
  border: 1px solid var(--accent-violet);
}

.btn-outline:hover {
  background: rgba(124, 58, 237, 0.15);
  transform: translateY(-2px);
  box-shadow: var(--shadow-violet);
}

/* === GLASS CARD === */
.glass-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border-light);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: var(--shadow-card);
  transition: var(--transition);
}

.glass-card:hover {
  border-color: var(--glass-border);
  box-shadow: var(--shadow-card), var(--shadow-violet);
  transform: translateY(-4px);
}

/* === SECTION HEADER === */
.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 70px;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-purple);
  background: rgba(124, 58, 237, 0.12);
  border: 1px solid rgba(124, 58, 237, 0.25);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.section-label::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--accent-purple);
  border-radius: 50%;
  display: inline-block;
}

.section-title {
  margin-bottom: 16px;
}

.gradient-text {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* === HEADER / NAV === */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0;
  transition: var(--transition);
}

.site-header.scrolled {
  background: rgba(5, 8, 22, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border-light);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  padding: 0 32px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
}

.nav-logo-icon {
  width: 36px;
  height: 36px;
  background: var(--gradient-primary);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 20px rgba(124, 58, 237, 0.4);
}

.nav-logo-icon svg {
  width: 20px;
  height: 20px;
  fill: #fff;
}

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

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  position: relative;
  transition: var(--transition);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--gradient-primary);
  transition: width 0.3s ease;
  border-radius: 2px;
}

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

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-links a.active {
  color: var(--text-primary);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-secondary);
  border-radius: 2px;
  transition: var(--transition);
}

/* === MOBILE NAV === */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: min(320px, 85vw);
  height: 100vh;
  background: rgba(11, 16, 38, 0.97);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  border-left: 1px solid var(--glass-border-light);
  z-index: 2000;
  padding: 80px 32px 40px;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  flex-direction: column;
  gap: 12px;
}

.mobile-nav.open {
  right: 0;
}

.mobile-nav a {
  display: block;
  padding: 14px 0;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--glass-border-light);
  transition: var(--transition);
}

.mobile-nav a:hover {
  color: var(--text-primary);
  padding-left: 8px;
}

.mobile-nav-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border-light);
  color: var(--text-secondary);
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  font-size: 1.1rem;
}

.mobile-nav-close:hover {
  color: var(--text-primary);
  border-color: var(--accent-violet);
}

.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1999;
  backdrop-filter: blur(2px);
}

.mobile-overlay.open {
  display: block;
}

/* === HERO === */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 72px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.aurora-gradient {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% -20%, rgba(124, 58, 237, 0.2) 0%, transparent 70%),
              radial-gradient(ellipse 50% 40% at 80% 60%, rgba(34, 211, 238, 0.1) 0%, transparent 60%),
              radial-gradient(ellipse 40% 30% at 20% 80%, rgba(167, 139, 250, 0.08) 0%, transparent 60%),
              var(--bg-primary);
}

.particle-field {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 80px 0;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-left {
  max-width: 600px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(124, 58, 237, 0.1);
  border: 1px solid rgba(124, 58, 237, 0.3);
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent-purple);
  margin-bottom: 28px;
  letter-spacing: 0.05em;
}

.hero-badge-dot {
  width: 7px;
  height: 7px;
  background: var(--accent-cyan);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}

.hero-title {
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.hero-subtitle {
  font-size: 1.1rem;
  line-height: 1.75;
  color: var(--text-secondary);
  margin-bottom: 40px;
  max-width: 480px;
}

.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-trust-text {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.hero-trust-avatars {
  display: flex;
}

.hero-trust-avatar {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 2px solid var(--bg-primary);
  background: linear-gradient(135deg, var(--accent-violet), var(--accent-cyan));
  margin-left: -8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 700;
  color: #fff;
}

.hero-trust-avatar:first-child { margin-left: 0; }

/* === DASHBOARD MOCK === */
.hero-right {
  position: relative;
}

.dashboard-mockup {
  background: rgba(11, 16, 38, 0.9);
  border: 1px solid var(--glass-border-light);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5), 0 0 60px rgba(124, 58, 237, 0.1);
  position: relative;
}

.mock-topbar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid var(--glass-border-light);
}

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

.mock-dot-red { background: #ff5f57; }
.mock-dot-yellow { background: #ffbd2e; }
.mock-dot-green { background: #28ca41; }

.mock-title-bar {
  margin-left: 12px;
  font-size: 0.78rem;
  color: var(--text-muted);
  font-family: var(--font-heading);
  font-weight: 500;
}

.mock-body {
  display: grid;
  grid-template-columns: 200px 1fr;
  height: 360px;
}

.mock-sidebar {
  background: rgba(255, 255, 255, 0.02);
  border-right: 1px solid var(--glass-border-light);
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.mock-sidebar-item {
  padding: 9px 12px;
  border-radius: var(--radius-sm);
  font-size: 0.78rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: var(--transition);
}

.mock-sidebar-item.active {
  background: rgba(124, 58, 237, 0.15);
  color: var(--accent-purple);
  border: 1px solid rgba(124, 58, 237, 0.2);
}

.mock-sidebar-icon {
  width: 14px;
  height: 14px;
  border-radius: 3px;
  background: currentColor;
  opacity: 0.5;
  flex-shrink: 0;
}

.mock-sidebar-item.active .mock-sidebar-icon {
  background: var(--accent-purple);
  opacity: 1;
}

.mock-main {
  padding: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.mock-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.mock-stat {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--glass-border-light);
  border-radius: var(--radius-sm);
  padding: 12px;
}

.mock-stat-value {
  font-size: 1.3rem;
  font-weight: 700;
  font-family: var(--font-heading);
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.mock-stat-label {
  font-size: 0.68rem;
  color: var(--text-muted);
  margin-top: 2px;
}

.mock-task-list {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.mock-task {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--glass-border-light);
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  color: var(--text-secondary);
}

.mock-task-check {
  width: 14px;
  height: 14px;
  border-radius: 4px;
  border: 1.5px solid var(--glass-border);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mock-task-check.done {
  background: var(--gradient-primary);
  border: none;
}

.mock-task-check.done::after {
  content: '✓';
  font-size: 0.6rem;
  color: #fff;
  font-weight: 700;
}

.mock-task-badge {
  margin-left: auto;
  padding: 2px 8px;
  border-radius: 100px;
  font-size: 0.65rem;
  font-weight: 600;
}

.badge-ai {
  background: rgba(124, 58, 237, 0.2);
  color: var(--accent-purple);
  border: 1px solid rgba(124, 58, 237, 0.3);
}

.badge-done {
  background: rgba(34, 197, 94, 0.15);
  color: #4ade80;
  border: 1px solid rgba(34, 197, 94, 0.2);
}

.badge-pending {
  background: rgba(234, 179, 8, 0.1);
  color: #facc15;
  border: 1px solid rgba(234, 179, 8, 0.2);
}

.mock-ai-bar {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: rgba(124, 58, 237, 0.08);
  border: 1px solid rgba(124, 58, 237, 0.2);
  border-radius: var(--radius-sm);
}

.mock-ai-dot {
  width: 8px;
  height: 8px;
  background: var(--accent-cyan);
  border-radius: 50%;
  flex-shrink: 0;
  animation: pulse-dot 1.5s ease-in-out infinite;
}

.mock-ai-text {
  font-size: 0.72rem;
  color: var(--accent-purple);
  font-style: italic;
}

.mock-floating-widget {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: rgba(11, 16, 38, 0.95);
  border: 1px solid rgba(34, 211, 238, 0.2);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  backdrop-filter: blur(20px);
  box-shadow: 0 8px 30px rgba(34, 211, 238, 0.1);
  min-width: 180px;
}

.widget-label {
  font-size: 0.7rem;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.widget-value {
  font-size: 1.5rem;
  font-weight: 700;
  font-family: var(--font-heading);
  color: var(--accent-cyan);
}

.widget-sublabel {
  font-size: 0.68rem;
  color: var(--text-muted);
}

.mock-floating-badge {
  position: absolute;
  top: -16px;
  left: -20px;
  background: rgba(11, 16, 38, 0.95);
  border: 1px solid rgba(124, 58, 237, 0.3);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-violet);
  display: flex;
  align-items: center;
  gap: 8px;
}

.badge-icon {
  font-size: 1rem;
}

.badge-text {
  font-size: 0.72rem;
  color: var(--text-secondary);
  font-weight: 500;
}

/* === FEATURES SECTION === */
.features-section {
  padding: var(--section-spacing) 0;
  position: relative;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.feature-card {
  padding: 36px;
}

.feature-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  position: relative;
}

.feature-icon-wrap.violet {
  background: rgba(124, 58, 237, 0.15);
  box-shadow: 0 0 20px rgba(124, 58, 237, 0.2);
}

.feature-icon-wrap.cyan {
  background: rgba(34, 211, 238, 0.1);
  box-shadow: 0 0 20px rgba(34, 211, 238, 0.15);
}

.feature-icon-wrap.purple {
  background: rgba(167, 139, 250, 0.12);
  box-shadow: 0 0 20px rgba(167, 139, 250, 0.15);
}

.feature-icon-wrap.mixed {
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.15), rgba(34, 211, 238, 0.1));
  box-shadow: var(--shadow-violet);
}

.feature-icon {
  font-size: 1.4rem;
}

.feature-card h3 {
  margin-bottom: 12px;
}

.feature-tag {
  display: inline-block;
  margin-top: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent-purple);
  background: rgba(124, 58, 237, 0.1);
  border: 1px solid rgba(124, 58, 237, 0.2);
  padding: 4px 12px;
  border-radius: 100px;
}

/* === HOW IT WORKS === */
.how-section {
  padding: var(--section-spacing) 0;
  position: relative;
}

.how-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
}

.how-steps::before {
  content: '';
  position: absolute;
  top: 32px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--glass-border), var(--accent-violet), var(--glass-border), transparent);
  z-index: 0;
}

.how-step {
  text-align: center;
  padding: 36px 24px;
  position: relative;
  z-index: 1;
}

.step-number {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  margin: 0 auto 24px;
  box-shadow: 0 0 30px rgba(124, 58, 237, 0.4);
  position: relative;
}

.step-number::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1px solid rgba(124, 58, 237, 0.2);
}

.step-icon {
  font-size: 1.5rem;
  display: block;
  margin-bottom: 16px;
}

.how-step h3 {
  margin-bottom: 10px;
  font-size: 1.05rem;
}

/* === DASHBOARD PREVIEW === */
.dashboard-section {
  padding: var(--section-spacing) 0;
  position: relative;
  overflow: hidden;
}

.dashboard-bg-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(124, 58, 237, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.dashboard-preview-wrap {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: visible;
  margin-top: 60px;
}

.dashboard-frame {
  background: rgba(11, 16, 38, 0.95);
  border: 1px solid var(--glass-border-light);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5), 0 0 80px rgba(124, 58, 237, 0.08);
}

.dashboard-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  background: rgba(255, 255, 255, 0.02);
  border-bottom: 1px solid var(--glass-border-light);
}

.dash-logo {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.dash-nav-pills {
  display: flex;
  gap: 4px;
}

.dash-pill {
  padding: 5px 14px;
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition);
}

.dash-pill.active {
  background: rgba(124, 58, 237, 0.2);
  color: var(--accent-purple);
  border: 1px solid rgba(124, 58, 237, 0.3);
}

.dash-user {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  color: var(--text-muted);
}

.dash-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 700;
  color: #fff;
}

.dashboard-content {
  display: grid;
  grid-template-columns: 240px 1fr 280px;
  height: 420px;
}

.dash-left-panel {
  border-right: 1px solid var(--glass-border-light);
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.dash-section-title {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  padding: 8px 12px 4px;
}

.dash-nav-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  border-radius: var(--radius-sm);
  font-size: 0.78rem;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition);
}

.dash-nav-item.active {
  background: rgba(124, 58, 237, 0.12);
  color: var(--accent-purple);
  border: 1px solid rgba(124, 58, 237, 0.15);
}

.dash-nav-icon { font-size: 0.9rem; }

.dash-center {
  padding: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.dash-center-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.dash-center-title {
  font-size: 0.9rem;
  font-weight: 700;
  font-family: var(--font-heading);
  color: var(--text-primary);
}

.dash-add-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: var(--gradient-primary);
  border-radius: var(--radius-sm);
  font-size: 0.72rem;
  font-weight: 600;
  color: #fff;
  cursor: pointer;
  box-shadow: 0 2px 12px rgba(124, 58, 237, 0.35);
}

.dash-workflow-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.workflow-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--glass-border-light);
  border-radius: var(--radius-md);
  padding: 14px;
  cursor: pointer;
  transition: var(--transition);
}

.workflow-card:hover {
  border-color: var(--glass-border);
  background: rgba(124, 58, 237, 0.06);
}

.workflow-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.workflow-icon {
  font-size: 1.1rem;
}

.workflow-status {
  width: 7px;
  height: 7px;
  border-radius: 50%;
}

.workflow-status.running { background: var(--accent-cyan); box-shadow: 0 0 8px var(--accent-cyan); }
.workflow-status.paused { background: #facc15; }
.workflow-status.error { background: #f87171; }

.workflow-name {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.workflow-meta {
  font-size: 0.68rem;
  color: var(--text-muted);
}

.dash-right-panel {
  border-left: 1px solid var(--glass-border-light);
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  overflow: hidden;
}

.dash-ai-chat {
  background: rgba(124, 58, 237, 0.06);
  border: 1px solid rgba(124, 58, 237, 0.15);
  border-radius: var(--radius-md);
  padding: 14px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
  overflow: hidden;
}

.ai-chat-title {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent-purple);
  display: flex;
  align-items: center;
  gap: 6px;
}

.ai-chat-message {
  font-size: 0.72rem;
  line-height: 1.5;
  padding: 8px 10px;
  border-radius: var(--radius-sm);
}

.ai-msg {
  background: rgba(124, 58, 237, 0.12);
  color: var(--text-secondary);
  border: 1px solid rgba(124, 58, 237, 0.15);
}

.user-msg {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-secondary);
  border: 1px solid var(--glass-border-light);
  align-self: flex-end;
}

.ai-typing {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 10px;
}

.ai-typing-dot {
  width: 5px;
  height: 5px;
  background: var(--accent-purple);
  border-radius: 50%;
  animation: typing-bounce 1.2s ease-in-out infinite;
}

.ai-typing-dot:nth-child(2) { animation-delay: 0.2s; }
.ai-typing-dot:nth-child(3) { animation-delay: 0.4s; }

/* === STATS SECTION === */
.stats-section {
  padding: 80px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--glass-border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--glass-border-light);
}

.stat-item {
  text-align: center;
  padding: 48px 24px;
  background: var(--bg-secondary);
  transition: var(--transition);
}

.stat-item:hover {
  background: rgba(124, 58, 237, 0.04);
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 700;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 10px;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

/* === TRUST SECTION === */
.trust-section {
  padding: var(--section-spacing) 0;
  background: var(--bg-secondary);
  position: relative;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.trust-card {
  padding: 32px;
}

.trust-icon {
  font-size: 2rem;
  margin-bottom: 16px;
  display: block;
}

.trust-card h3 {
  margin-bottom: 10px;
  font-size: 1.05rem;
}

/* === PRICING SECTION === */
.pricing-section {
  padding: var(--section-spacing) 0;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

.pricing-card {
  padding: 36px 30px;
  position: relative;
}

.pricing-card.featured {
  border-color: rgba(124, 58, 237, 0.4);
  background: rgba(124, 58, 237, 0.06);
  box-shadow: var(--shadow-card), 0 0 50px rgba(124, 58, 237, 0.12);
}

.pricing-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-primary);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 100px;
  white-space: nowrap;
  letter-spacing: 0.05em;
}

.pricing-plan-name {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.pricing-price {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1;
  margin-bottom: 6px;
}

.pricing-price span {
  font-size: 1.2rem;
  color: var(--text-muted);
  font-weight: 400;
}

.pricing-period {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 28px;
}

.pricing-divider {
  height: 1px;
  background: var(--glass-border-light);
  margin-bottom: 24px;
}

.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.pricing-feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.feature-check {
  width: 18px;
  height: 18px;
  border-radius: 5px;
  background: rgba(124, 58, 237, 0.15);
  border: 1px solid rgba(124, 58, 237, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.65rem;
  color: var(--accent-purple);
  margin-top: 1px;
}

/* === TESTIMONIALS === */
.testimonials-section {
  padding: var(--section-spacing) 0;
  background: var(--bg-secondary);
  overflow: hidden;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.testimonial-stars {
  display: flex;
  gap: 3px;
  color: #facc15;
  font-size: 0.85rem;
}

.testimonial-quote {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--text-secondary);
  font-style: italic;
  flex: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}

.author-name {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-primary);
  font-family: var(--font-heading);
}

.author-title {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* === CTA BAND === */
.cta-band {
  padding: var(--section-spacing) 0;
  position: relative;
  overflow: hidden;
}

.cta-band-inner {
  text-align: center;
  padding: 80px;
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.12), rgba(34, 211, 238, 0.06));
  border: 1px solid rgba(124, 58, 237, 0.2);
  border-radius: var(--radius-xl);
  position: relative;
  overflow: hidden;
}

.cta-band-glow {
  position: absolute;
  top: -40%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 300px;
  background: radial-gradient(ellipse, rgba(124, 58, 237, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.cta-band h2 {
  margin-bottom: 16px;
}

.cta-band p {
  max-width: 520px;
  margin: 0 auto 36px;
  font-size: 1.05rem;
}

.cta-band-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* === FOOTER === */
.site-footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--glass-border-light);
  padding: 80px 0 40px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 80px;
  margin-bottom: 60px;
}

.footer-brand p {
  font-size: 0.9rem;
  margin-top: 16px;
  max-width: 260px;
  line-height: 1.7;
}

.footer-socials {
  display: flex;
  gap: 10px;
  margin-top: 24px;
}

.social-link {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: var(--bg-elevated);
  border: 1px solid var(--glass-border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: var(--transition);
}

.social-link:hover {
  border-color: var(--accent-violet);
  color: var(--accent-purple);
  transform: translateY(-2px);
}

.footer-links-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.footer-col-title {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.footer-col-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col-links a {
  font-size: 0.88rem;
  color: var(--text-secondary);
  transition: var(--transition);
}

.footer-col-links a:hover {
  color: var(--text-primary);
  padding-left: 4px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 32px;
  border-top: 1px solid var(--glass-border-light);
  flex-wrap: wrap;
  gap: 16px;
}

.footer-copy {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.footer-legal {
  display: flex;
  gap: 24px;
}

.footer-legal a {
  font-size: 0.82rem;
  color: var(--text-muted);
  transition: var(--transition);
}

.footer-legal a:hover {
  color: var(--text-secondary);
}

/* === PAGE HERO (INNER PAGES) === */
.page-hero {
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 50% at 50% 0%, rgba(124, 58, 237, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.page-hero-content {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin: 0 auto;
}

.page-hero h1 {
  margin-bottom: 16px;
}

.page-hero p {
  font-size: 1.1rem;
}

/* === ABOUT PAGE === */
.about-story {
  padding: var(--section-spacing) 0;
}

.about-story-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-values {
  padding: var(--section-spacing) 0;
  background: var(--bg-secondary);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.value-card {
  padding: 30px;
  text-align: center;
}

.value-icon {
  font-size: 2.2rem;
  margin-bottom: 16px;
  display: block;
}

.team-section {
  padding: var(--section-spacing) 0;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.team-card {
  padding: 28px 24px;
  text-align: center;
}

.team-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
  margin: 0 auto 16px;
  font-family: var(--font-heading);
  box-shadow: 0 0 30px rgba(124, 58, 237, 0.3);
}

.team-name {
  font-size: 0.95rem;
  font-weight: 600;
  font-family: var(--font-heading);
  color: var(--text-primary);
  margin-bottom: 4px;
}

.team-role {
  font-size: 0.78rem;
  color: var(--accent-purple);
  margin-bottom: 10px;
}

.team-bio {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* === FEATURES PAGE === */
.features-hero-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
}

.feature-detail-card {
  padding: 32px;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 16px;
}

.feature-list-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--text-secondary);
}

.feature-list-dot {
  width: 5px;
  height: 5px;
  background: var(--accent-violet);
  border-radius: 50%;
  flex-shrink: 0;
}

/* === CONTACT PAGE === */
.contact-section {
  padding: var(--section-spacing) 0;
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: start;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 32px;
}

.contact-info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-info-icon {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-sm);
  background: rgba(124, 58, 237, 0.12);
  border: 1px solid rgba(124, 58, 237, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.contact-info-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.contact-info-value {
  font-size: 0.9rem;
  color: var(--text-primary);
}

.contact-form-card {
  padding: 40px;
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.form-control {
  width: 100%;
  padding: 13px 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--glass-border-light);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.9rem;
  transition: var(--transition);
  outline: none;
}

.form-control::placeholder {
  color: var(--text-muted);
}

.form-control:focus {
  border-color: var(--accent-violet);
  box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.1);
  background: rgba(124, 58, 237, 0.04);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

textarea.form-control {
  resize: vertical;
  min-height: 130px;
}

/* === DOCS PAGE === */
.docs-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 60px;
  padding: var(--section-spacing) 0;
  align-items: start;
}

.docs-sidebar {
  position: sticky;
  top: 100px;
}

.docs-sidebar-section {
  margin-bottom: 28px;
}

.docs-sidebar-title {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.docs-sidebar-links {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.docs-sidebar-links a {
  display: block;
  padding: 8px 12px;
  font-size: 0.85rem;
  color: var(--text-secondary);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.docs-sidebar-links a:hover,
.docs-sidebar-links a.active {
  background: rgba(124, 58, 237, 0.1);
  color: var(--accent-purple);
}

.docs-content h2 {
  font-size: 1.5rem;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--glass-border-light);
}

.docs-content h3 {
  font-size: 1.1rem;
  margin: 28px 0 12px;
}

.docs-content p {
  margin-bottom: 16px;
}

.docs-card {
  margin-bottom: 48px;
  padding: 32px;
}

.docs-code-block {
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid var(--glass-border-light);
  border-radius: var(--radius-md);
  padding: 20px;
  font-family: 'Courier New', monospace;
  font-size: 0.82rem;
  color: var(--accent-cyan);
  margin: 16px 0;
  overflow-x: auto;
}

/* === PRIVACY / TERMS === */
.legal-content {
  padding: var(--section-spacing) 0;
  max-width: 820px;
  margin: 0 auto;
}

.legal-section {
  margin-bottom: 48px;
  padding: 36px;
}

.legal-section h2 {
  font-size: 1.3rem;
  margin-bottom: 16px;
  color: var(--text-primary);
}

.legal-section p {
  margin-bottom: 12px;
  font-size: 0.92rem;
}

.legal-section ul {
  list-style: none;
  margin: 12px 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.legal-section ul li {
  display: flex;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text-secondary);
}

.legal-section ul li::before {
  content: '→';
  color: var(--accent-purple);
  flex-shrink: 0;
}

/* === INTEGRATIONS === */
.integrations-strip {
  padding: 60px 0;
  overflow: hidden;
  border-top: 1px solid var(--glass-border-light);
  border-bottom: 1px solid var(--glass-border-light);
}

.integrations-label {
  text-align: center;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 32px;
}

.integrations-row {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.integration-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border-light);
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: var(--transition);
  backdrop-filter: blur(10px);
}

.integration-pill:hover {
  border-color: var(--glass-border);
  color: var(--text-primary);
  transform: translateY(-2px);
}

.integration-icon {
  font-size: 1rem;
}