/* CSS Variables */
:root {
  /* Colors */
  --bg-main: #09090b;
  --bg-secondary: #0f0f11;
  --bg-card: #18181b;
  --bg-glass: rgba(255, 255, 255, 0.03);
  
  --text-main: #f8fafc;
  --text-muted: #a1a1aa;
  --text-blue: #60a5fa;
  --text-success: #4ade80;
  
  --border: rgba(255, 255, 255, 0.1);
  --border-light: rgba(255, 255, 255, 0.2);
  
  --primary: #3b82f6;
  --primary-hover: #2563eb;
  
  --gradient-1: linear-gradient(135deg, #3b82f6, #8b5cf6);
  --gradient-glow: rgba(59, 130, 246, 0.4);
  
  /* Layout constraints */
  --max-width: 1200px;
  --nav-height: 80px;
  
  /* Spacing */
  --spacing-sm: 0.5rem;
  --spacing-md: 1rem;
  --spacing-lg: 2rem;
  --spacing-xl: 4rem;
  --spacing-2xl: 8rem;
  
  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 24px;
}

/* Base Reset */
*, *::before, *::after {
  box-sizing: border-box;
}

body, h1, h2, h3, h4, p, ul {
  margin: 0;
  padding: 0;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.3s ease;
}

ul {
  list-style: none;
}

/* Typography */
h1 {
  font-size: clamp(3rem, 6vw, 5rem);
  line-height: 1.1;
  font-weight: 600;
  letter-spacing: -0.03em;
  margin-bottom: var(--spacing-lg);
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.2;
  font-weight: 500;
  letter-spacing: -0.02em;
  margin-bottom: var(--spacing-md);
}

h3 {
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: var(--spacing-sm);
}

.subtitle {
  font-size: 1.125rem;
  color: var(--text-muted);
  max-width: 600px;
  margin-bottom: var(--spacing-xl);
}

.text-gradient {
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.text-muted { color: var(--text-muted); }
.text-blue { color: var(--text-blue); }
.text-success { color: var(--text-success); }

/* Layout & Containers */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 5%;
}

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

.section-dark {
  background-color: var(--bg-secondary);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.section-header {
  max-width: 700px;
  margin: 0 auto;
}

.section-title {
  margin-bottom: var(--spacing-md);
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 1.125rem;
}

.center { text-align: center; }
.pt-4 { padding-top: var(--spacing-xl); }
.mt-2 { margin-top: var(--spacing-md); }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: var(--spacing-lg); }
.mb-4 { margin-bottom: var(--spacing-lg); }

.grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-lg);
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--spacing-lg);
}

/* Background Effects */
.bg-gradient-top {
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 600px;
  background: radial-gradient(circle, var(--gradient-glow) 0%, transparent 70%);
  filter: blur(80px);
  z-index: -1;
  pointer-events: none;
}

.bg-gradient-bottom {
  position: absolute;
  bottom: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 600px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.3) 0%, transparent 70%);
  filter: blur(80px);
  z-index: -1;
  pointer-events: none;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  height: var(--nav-height);
  background: rgba(9, 9, 11, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  z-index: 100;
  display: flex;
  align-items: center;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand {
  font-size: 1.25rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-links {
  display: none;
  gap: 2rem;
}

@media (min-width: 768px) {
  .nav-links { display: flex; }
}

.nav-links a {
  color: var(--text-muted);
  font-size: 0.875rem;
}

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

.nav-actions {
  display: flex;
  gap: 1rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.25rem;
  border-radius: var(--radius-sm);
  font-weight: 500;
  font-size: 0.875rem;
  cursor: pointer;
}

.btn-lg {
  padding: 0.8rem 1.5rem;
  font-size: 1rem;
}

.btn-primary {
  background: var(--text-main);
  color: var(--bg-main);
}

.btn-primary:hover {
  background: #e2e8f0;
}

.btn-outline {
  background: transparent;
  color: var(--text-main);
  border: 1px solid var(--border-light);
}

.btn-outline:hover {
  background: var(--bg-glass);
  border-color: var(--text-muted);
}

/* Badges */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  border-radius: 20px;
  background: var(--bg-glass);
  border: 1px solid var(--border);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: var(--spacing-sn);
}

.glow-badge {
  border-color: rgba(59, 130, 246, 0.3);
  box-shadow: 0 0 20px rgba(59, 130, 246, 0.1);
}

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

@keyframes pulse {
  0% { transform: scale(0.95); opacity: 0.7; }
  50% { transform: scale(1.05); opacity: 1; }
  100% { transform: scale(0.95); opacity: 0.7; }
}

/* Hero */
.hero {
  padding: calc(var(--nav-height) + var(--spacing-2xl)) 0 var(--spacing-xl);
  text-align: center;
  position: relative;
}

.hero .badge {
  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: var(--spacing-2xl);
}

/* Logos */
.trusted-by {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.logos {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
  opacity: 0.6;
}

.logo i {
  font-size: 2rem;
}

/* Cards */
.glass-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 2rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.glass-card:hover {
  border-color: var(--border-light);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.glass-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-light), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.glass-card:hover::before {
  opacity: 1;
}

.card-icon {
  background: var(--bg-secondary);
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  border: 1px solid var(--border);
  color: var(--text-blue);
}

/* Feature Rows */
.feature-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-lg);
  align-items: center;
  margin-bottom: var(--spacing-2xl);
}

@media (min-width: 768px) {
  .feature-row {
    grid-template-columns: 1fr 1fr;
  }
  .feature-row.reverse .feature-content {
    order: 2;
  }
}

.feature-content h2 {
  font-size: 2.5rem;
}

.feature-content p {
  color: var(--text-muted);
  font-size: 1.125rem;
}

.feature-visual {
  height: 350px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--bg-card);
  overflow: hidden;
  position: relative;
}

/* Mini Code Block */
.code-snippet {
  padding: 2rem;
  background: #0d1117;
  height: 100%;
  font-family: monospace;
  font-size: 0.875rem;
  color: #c9d1d9;
}

.dot {
  display: inline-block;
  width: 12px; height: 12px;
  border-radius: 50%;
  margin-right: 6px;
  margin-bottom: 1.5rem;
}
.dot.red { background: #ff5f56; }
.dot.yellow { background: #ffbd2e; }
.dot.green { background: #27c93f; }

.c-purple { color: #d2a8ff; }
.c-blue { color: #79c0ff; }
.c-yellow { color: #d2a8ff; } 
.c-green { color: #a5d6ff; }

/* Integrated Apps Visual */
.integrated-apps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
.app-icon {
  width: 60px; height: 60px;
  border-radius: 16px;
  background: #27272a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  border: 1px solid rgba(255,255,255,0.1);
}
.main-app {
  width: 80px; height: 80px;
  font-size: 3rem;
  background: var(--primary);
  border-color: var(--primary);
}
.line {
  height: 2px;
  width: 40px;
  background: var(--border-light);
}

/* Center Content */
.center-content {
  display: flex;
  align-items: center;
  justify-content: center;
}
.huge-icon {
  font-size: 8rem;
}

/* Info Cards List */
.info-card {
  display: flex;
  gap: 1rem;
  border-bottom: 1px solid var(--border);
  padding: 1.5rem 0;
}
.info-card:last-child {
  border-bottom: none;
}
.info-icon {
  font-size: 2rem;
  color: var(--text-blue);
  flex-shrink: 0;
}
.info-text p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* Pricing */
.pricing-card {
  display: flex;
  flex-direction: column;
}
.pricing-header {
  border-bottom: 1px solid var(--border);
  padding-bottom: 1.5rem;
  margin-bottom: 1.5rem;
}
.pricing-header h3 {
  font-size: 1.2rem;
  color: var(--text-muted);
}
.price {
  font-size: 3.5rem;
  font-weight: 600;
  line-height: 1;
  margin: 0.5rem 0;
}
.interval {
  font-size: 1.25rem;
  color: var(--text-muted);
}
.pricing-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  color: var(--text-main);
}
.highlight-card {
  border: 1px solid var(--primary);
  background: rgba(59, 130, 246, 0.05);
}

/* Table */
.table-container {
  overflow-x: auto;
  border-radius: var(--radius-md);
  background: var(--bg-card);
}
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}
.comparison-table th, .comparison-table td {
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--border);
}
.comparison-table th {
  color: var(--text-muted);
  font-weight: 500;
}
.comparison-table tr:last-child td {
  border-bottom: none;
}
.highlight-th, .highlight-td {
  background: rgba(59, 130, 246, 0.1);
}

/* Timeline */
.timeline {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

@media (min-width: 768px) {
  .timeline {
    flex-direction: row;
    gap: 1.5rem;
  }
}

.timeline-item {
  flex: 1;
}
.timeline-marker {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-weight: 600;
  margin-bottom: 0.5rem;
  padding-left: 0.5rem;
  border-left: 2px solid var(--primary);
}
.timeline-content {
  padding: 1.5rem;
  height: 100%;
}
.timeline-content p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* Resources */
.resource-card {
  display: block;
}
.resource-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  margin-bottom: 1rem;
}
.resource-card h3 {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
}
.resource-date {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* FAQ */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
}
.accordion-item {
  border-bottom: 1px solid var(--border);
}
.accordion-header {
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}
.accordion-header h4 {
  font-size: 1.125rem;
  font-weight: 500;
}
.accordion-header i {
  color: var(--text-muted);
  transition: transform 0.3s;
}
.accordion-item.active .accordion-header i {
  transform: rotate(45deg);
}
.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}
.accordion-content p {
  padding-bottom: 1.5rem;
  color: var(--text-muted);
}

/* CTA */
.section-cta {
  position: relative;
  text-align: center;
  padding: var(--spacing-2xl) 0;
}
.cta-content {
  max-width: 600px;
  position: relative;
  z-index: 10;
}
.section-cta h2 {
  font-size: clamp(2.5rem, 5vw, 4rem);
}
.section-cta p {
  color: var(--text-muted);
  font-size: 1.25rem;
}

/* Footer */
.footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  padding: 4rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}
@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 2fr 3fr;
  }
}
.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.footer-links h4 {
  margin-bottom: 1rem;
  font-size: 1rem;
}
.footer-links a {
  display: block;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}
.footer-links a:hover {
  color: var(--text-main);
}
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 2rem;
  text-align: left;
  color: var(--text-muted);
  font-size: 0.875rem;
}

/* User Overrides */
/* The background glow effect */
.hero-section {
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at 50% -20%, #1a1a1a 0%, #050505 70%);
  padding: 8rem 0 4rem;
  text-align: center;
}

.hero-btns {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
  margin-bottom: 3rem;
}

.hero-mockup img {
  max-width: 100%;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.5);
  border: 1px solid rgba(255,255,255,0.1);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  padding: 0.8rem 1.5rem;
  border-radius: var(--radius-sm);
  font-weight: 500;
  font-size: 1rem;
  cursor: pointer;
  background: transparent;
  color: var(--text-main);
  border: 1px solid var(--border-light);
  transition: all 0.3s ease;
}

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

/* Gradient Text logic */
.gradient-text {
  background: linear-gradient(to right, #ffffff, #a1a1aa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Pricing Grid Base */
.pricing-section {
  padding: 6rem 0;
  background-color: var(--bg-secondary);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  border-radius: 20px;
  background: var(--bg-glass);
  border: 1px solid var(--border);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.card-title {
  font-size: 1.25rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.price-sub {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.per-month {
  font-size: 1.2rem;
  color: var(--text-muted);
}

/* Feature List Styling */
.features {
  list-style: none;
  padding: 0;
  margin-top: 2rem;
  text-align: left;
}

.features li {
  color: var(--text-muted);
  margin-bottom: 10px;
  padding-left: 24px;
  position: relative;
}

/* Custom Checkmark */
.features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #3b82f6;
  font-weight: bold;
}
