:root {
  /* Colors - Deep Space & Neon Palette */
  --bg-deep: #050507;
  --bg-card: rgba(15, 15, 20, 0.7);
  --accent-primary: #00f2ff; /* Neon Cyan */
  --accent-secondary: #7000ff; /* Electric Purple */
  --text-main: #ffffff;
  --text-muted: #a0a0b0;
  --border-glass: rgba(255, 255, 255, 0.1);
  --glow-primary: rgba(0, 242, 255, 0.5);
  --glow-secondary: rgba(112, 0, 255, 0.5);

  /* Spacing */
  --space-unit: 8px;
  --section-gap: 160px;
  --container-max: 1400px;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;

  /* Typography */
  --font-display: 'Inter', system-ui, -apple-system, sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  cursor: none; /* Custom cursor implementation */
}

body {
  background-color: var(--bg-deep);
  color: var(--text-main);
  font-family: var(--font-display);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Custom Cursor */
.cursor-dot {
  width: 8px;
  height: 8px;
  background: var(--accent-primary);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  transition: transform 0.1s;
}

.cursor-outline {
  width: 40px;
  height: 40px;
  border: 1px solid var(--accent-primary);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9998;
  transition: transform 0.2s cubic-bezier(0.23, 1, 0.32, 1);
  box-shadow: 0 0 15px var(--glow-primary);
}

/* Layout Utilities */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 40px;
}

section {
  margin-top: var(--section-gap);
  position: relative;
}

main > section:first-child {
  margin-top: 0;
}

/* Typography */
h1, h2, h3 {
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.text-gradient {
  background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Navigation */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 32px 0;
  z-index: 1000;
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-glass);
}

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

.logo {
  font-size: 24px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-links {
  display: flex;
  gap: 48px;
}

.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color 0.3s;
}

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

/* Hero Section */
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-bg-fx {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: 
    radial-gradient(circle at 20% 30%, rgba(0, 242, 255, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(112, 0, 255, 0.05) 0%, transparent 50%);
}

.hero-content {
  max-width: 900px;
  animation: fadeIn 1.5s ease-out;
}

.hero h1 {
  font-size: clamp(48px, 8vw, 96px);
  margin-bottom: 24px;
}

.hero p {
  font-size: clamp(18px, 2vw, 24px);
  color: var(--text-muted);
  margin-bottom: 48px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Buttons */
.btn {
  padding: 20px 48px;
  border-radius: 4px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  display: inline-block;
  text-decoration: none;
  border: none;
}

.btn-primary {
  background: var(--accent-primary);
  color: var(--bg-deep);
  box-shadow: 0 0 30px var(--glow-primary);
}

.btn-primary:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 50px var(--glow-primary);
}

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

.btn-outline:hover {
  border-color: var(--accent-primary);
  background: rgba(0, 242, 255, 0.05);
}

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

.glass-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent-primary), transparent);
  transform: translateX(-100%);
  transition: 0.6s;
}

.glass-card:hover::before {
  transform: translateX(100%);
}

.glass-card:hover {
  border-color: rgba(0, 242, 255, 0.3);
  transform: translateY(-10px);
}

/* Grid Layouts */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .services-grid { grid-template-columns: 1fr; }
}

/* Section Headers */
.section-header {
  margin-bottom: 80px;
  max-width: 600px;
}

.section-header .tag {
  color: var(--accent-primary);
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: 12px;
  margin-bottom: 16px;
  display: block;
}

.section-header h2 {
  font-size: 48px;
}

/* Process Steps */
.process-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}

.process-item {
  text-align: center;
  position: relative;
}

.process-number {
  font-size: 64px;
  font-weight: 900;
  color: rgba(255,255,255,0.05);
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 0;
}

.process-label {
  position: relative;
  z-index: 1;
  font-size: 18px;
  font-weight: 600;
}

/* Stats Section */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.stat-item {
  text-align: center;
  padding: 32px;
  border-left: 1px solid var(--border-glass);
}

.stat-item:first-child { border-left: none; }

.stat-value {
  font-size: 48px;
  font-weight: 900;
  display: block;
  margin-bottom: 8px;
}

.stat-label {
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 12px;
}

/* Projects List */
.project-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 80px;
}

.project-card.reverse {
  direction: rtl;
}

.project-card.reverse > * {
  direction: ltr;
}

/* Pricing Tables */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.pricing-card {
  padding: 48px;
  display: flex;
  flex-direction: column;
}

.pricing-card.featured {
  border-color: var(--accent-primary);
  background: linear-gradient(180deg, rgba(0, 242, 255, 0.05) 0%, transparent 100%), var(--bg-card);
}

.price {
  font-size: 56px;
  font-weight: 800;
  margin: 24px 0;
}

.price span {
  font-size: 16px;
  color: var(--text-muted);
  font-weight: 400;
}

.feature-list {
  list-style: none;
  margin-bottom: 40px;
  flex-grow: 1;
}

.feature-list li {
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-muted);
}

.feature-list li svg {
  color: var(--accent-primary);
  flex-shrink: 0;
}

/* Footer */
.footer {
  padding: 120px 0 60px;
  border-top: 1px solid var(--border-glass);
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 80px;
}

.footer-brand p {
  color: var(--text-muted);
  margin-top: 24px;
  max-width: 300px;
}

.footer-col h4 {
  margin-bottom: 32px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 14px;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 16px;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--accent-primary);
}

.footer-bottom {
  margin-top: 120px;
  padding-top: 40px;
  border-top: 1px solid var(--border-glass);
  display: flex;
  justify-content: space-between;
  color: var(--text-muted);
  font-size: 14px;
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Custom Effects */
.glow-box {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: var(--glow-primary);
  filter: blur(150px);
  opacity: 0.1;
  pointer-events: none;
}

.parallax-container {
  overflow: hidden;
}

.floating-element {
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}

.placeholder-image.neural {
  background: radial-gradient(circle at center, var(--accent-primary) 1px, transparent 1px);
  background-size: 30px 30px;
  opacity: 0.2;
}

/* Custom Cursor Visibility Logic - Triggered by body hover in this static environment */
body:hover .cursor-dot, body:hover .cursor-outline {
  opacity: 1;
}

.cursor-dot, .cursor-outline {
  opacity: 0;
}

/* Additional Booking Page Utility Classes */
.booking-grid {
  display: grid; 
  grid-template-columns: 1fr 1fr; 
  gap: 80px; 
  align-items: start;
}

.booking-form-grid {
  display: grid; 
  grid-template-columns: 1fr 1fr; 
  gap: 24px;
}

.form-input {
  background: rgba(255,255,255,0.05); 
  border: 1px solid var(--border-glass); 
  padding: 16px; 
  color: white; 
  border-radius: 4px;
  font-family: inherit;
}

.form-input:focus {
  outline: none;
  border-color: var(--accent-primary);
}

.full-width {
  grid-column: span 2;
}

.industry-list {
  display: flex; 
  flex-wrap: wrap; 
  justify-content: center; 
  gap: 40px; 
  opacity: 0.6;
}

.industry-item {
  font-size: 24px; 
  font-weight: 700;
}

.founder-grid {
  display: grid; 
  grid-template-columns: 350px 1fr; 
  gap: 60px; 
  align-items: center; 
  padding: 60px;
}
