/* CSS Variables for WEGN Landing Page */
:root {
  --bg-dark: #070913;
  --bg-card: rgba(255, 255, 255, 0.03);
  --bg-card-hover: rgba(255, 255, 255, 0.06);
  --border-glass: rgba(255, 255, 255, 0.07);
  --text-primary: #f8fafc;
  --text-secondary: #94a3b8;
  
  /* Primary Gradients */
  --primary-gradient: linear-gradient(135deg, #6366f1 0%, #4f46e5 100%);
  --accent-gradient: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
  --glow-gradient-1: radial-gradient(circle, rgba(99, 102, 241, 0.15) 0%, rgba(0,0,0,0) 70%);
  --glow-gradient-2: radial-gradient(circle, rgba(245, 158, 11, 0.08) 0%, rgba(0,0,0,0) 75%);

  --font-title: 'Outfit', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  --transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  background: var(--bg-dark);
  font-family: var(--font-body);
  color: var(--text-primary);
  overflow-x: hidden;
}

body {
  position: relative;
  min-height: 100vh;
  line-height: 1.6;
}

/* Background Ambient Glows */
.glow {
  position: absolute;
  width: 800px;
  height: 800px;
  border-radius: 50%;
  pointer-events: none;
  z-index: -1;
  filter: blur(80px);
}

.glow-1 {
  top: -200px;
  right: -100px;
  background: var(--glow-gradient-1);
}

.glow-2 {
  bottom: 20%;
  left: -200px;
  background: var(--glow-gradient-2);
}

/* Common Layout Containers */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

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

/* Glassmorphism Base Card */
.glass-card {
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-glass);
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
  transition: var(--transition);
}

/* Navbar & Header */
header {
  position: sticky;
  top: 0;
  width: 100%;
  background: rgba(7, 9, 19, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  z-index: 100;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 72px;
}

.logo {
  font-family: var(--font-title);
  font-size: 24px;
  font-weight: 800;
  letter-spacing: 0.5px;
  color: var(--text-primary);
}

.logo span {
  color: #6366f1;
}

nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

nav a {
  text-decoration: none;
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 500;
  transition: var(--transition);
}

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

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  padding: 12px 28px;
  font-family: var(--font-title);
  font-size: 15px;
  font-weight: 600;
  border-radius: 4px;
  cursor: pointer;
  border: none;
  transition: var(--transition);
}

.btn-primary {
  background: var(--primary-gradient);
  color: #fff;
  box-shadow: 0 4px 20px rgba(99, 102, 241, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(99, 102, 241, 0.5);
}

.btn-primary-small {
  background: var(--primary-gradient);
  color: #fff;
  padding: 8px 18px;
  font-size: 13px;
}

.btn-primary-small:hover {
  box-shadow: 0 4px 15px rgba(99, 102, 241, 0.4);
}

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

.btn-outline:hover {
  background: var(--bg-card);
  border-color: rgba(255, 255, 255, 0.2);
}

.btn-block {
  display: flex;
  width: 100%;
}

/* Hero Section */
.hero-section {
  padding: 100px 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

.badge {
  display: inline-block;
  font-family: var(--font-title);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: #fbbf24;
  background: rgba(251, 191, 36, 0.1);
  padding: 4px 12px;
  margin-bottom: 20px;
  border: 1px solid rgba(251, 191, 36, 0.15);
}

.hero-content h1 {
  font-family: var(--font-title);
  font-size: 54px;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -1px;
  background: linear-gradient(180deg, #fff 0%, #cbd5e1 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-content p {
  font-size: 16px;
  color: var(--text-secondary);
  margin-bottom: 32px;
  line-height: 1.65;
}

.hero-content p strong {
  color: var(--text-primary);
}

.hero-actions {
  display: flex;
  gap: 16px;
}

.hero-image-wrapper {
  display: flex;
  justify-content: center;
  position: relative;
}

.image-card {
  padding: 8px;
  display: flex;
}

.hero-illustration {
  width: 100%;
  max-width: 440px;
  height: auto;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

/* Services Section */
.services-section {
  padding: 100px 0;
  position: relative;
}

.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 56px;
}

.section-header h2 {
  font-family: var(--font-title);
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.section-header p {
  color: var(--text-secondary);
  font-size: 15px;
}

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

.service-card {
  padding: 36px 28px;
  border-radius: 4px;
}

.service-card:hover {
  transform: translateY(-4px);
  background: var(--bg-card-hover);
  border-color: rgba(99, 102, 241, 0.3);
}

.service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: #6366f1;
}

.service-icon svg {
  width: 36px;
  height: 36px;
  stroke-width: 1.5;
}

.service-card h3 {
  font-family: var(--font-title);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.service-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* About / Philosophy Section */
.about-section {
  padding: 100px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: center;
}

.about-text h2 {
  font-family: var(--font-title);
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 18px;
  line-height: 1.2;
}

.about-text p {
  color: var(--text-secondary);
  font-size: 15px;
  margin-bottom: 24px;
}

.pillars-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pillars-list li {
  position: relative;
  padding-left: 24px;
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.5;
}

.pillars-list li strong {
  color: var(--text-primary);
  display: block;
  margin-bottom: 2px;
}

.pillars-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #6366f1;
  font-weight: bold;
}

.about-stats {
  padding: 40px;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.stat-item {
  display: flex;
  flex-direction: column;
  border-left: 3px solid #6366f1;
  padding-left: 20px;
}

.stat-num {
  font-family: var(--font-title);
  font-size: 28px;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-desc {
  font-size: 13px;
  color: var(--text-secondary);
}

/* Contact Section */
.contact-section {
  padding: 100px 0;
  background: radial-gradient(ellipse at bottom, rgba(99, 102, 241, 0.08) 0%, rgba(0,0,0,0) 70%);
}

.contact-card {
  padding: 48px;
  border-radius: 4px;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-family: var(--font-title);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--text-secondary);
}

.form-group input,
.form-group textarea {
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid var(--border-glass);
  color: var(--text-primary);
  padding: 12px 14px;
  font-family: var(--font-body);
  font-size: 14px;
  border-radius: 4px;
  outline: none;
  transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #6366f1;
  box-shadow: 0 0 0 1px rgba(99, 102, 241, 0.3);
}

/* Footer */
footer {
  padding: 40px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

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

.footer-content p {
  font-size: 13px;
  color: var(--text-secondary);
}

/* Responsive Queries */
@media (max-width: 968px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .hero-content h1 {
    font-size: 40px;
  }
  
  .hero-actions {
    justify-content: center;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .navbar {
    flex-direction: column;
    height: auto;
    padding: 16px 0;
    gap: 16px;
  }
  
  .footer-content {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}
