:root {
  /* Dark Theme Colors */
  --bg-color: #050810;
  --bg-color-elevated: #0f1523;
  --text-main: #ffffff;
  --text-muted: #8b99b5;
  
  /* Neon Accents based on the logo */
  --neon-red: #ff3366;
  --neon-blue: #00e5ff;
  --neon-purple: #9d00ff;
  
  --border-color: rgba(255, 255, 255, 0.08);
  --font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

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

body {
  background-color: var(--bg-color);
  color: var(--text-main);
  font-family: var(--font-family);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

/* Background Effects */
.background-effects {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}

#space-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.glow {
  position: absolute;
  width: 60vw;
  height: 60vw;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.15;
}

.red-glow {
  top: -20vh;
  left: -10vw;
  background: radial-gradient(circle, var(--neon-red) 0%, transparent 70%);
}

.blue-glow {
  bottom: -20vh;
  right: -10vw;
  background: radial-gradient(circle, var(--neon-blue) 0%, transparent 70%);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Hero Section */
.hero {
  text-align: center;
  padding: 120px 0 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.logo-container {
  position: relative;
  width: 250px;
  height: 250px;
  margin-bottom: 24px;
  display: flex;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  /* Subtle ring glow around the logo to match the new green aesthetic */
  box-shadow: 0 0 60px rgba(119, 255, 51, 0.2), inset 0 0 60px rgba(119, 255, 51, 0.1);
  background: radial-gradient(circle at center, rgba(119,255,51,0.1) 0%, transparent 70%);
  animation: pulse 4s infinite alternate;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 60px rgba(119, 255, 51, 0.2), inset 0 0 60px rgba(119, 255, 51, 0.1);
  }
  100% {
    box-shadow: 0 0 80px rgba(119, 255, 51, 0.4), inset 0 0 80px rgba(119, 255, 51, 0.3);
  }
}

.main-logo {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  /* Add a stylish neon dropshadow to the image itself */
  filter: drop-shadow(0 0 20px rgba(119, 255, 51, 0.4));
  border-radius: 20px;
  animation: elasticHover 4s infinite cubic-bezier(0.28, 0.84, 0.42, 1);
}

@keyframes elasticHover {
  0% { transform: translateY(0) scale(1, 1); }
  10% { transform: translateY(5px) scale(1.05, 0.95); } /* squish before jumping */
  25% { transform: translateY(-30px) scale(0.9, 1.1); } /* stretch and jump high */
  40% { transform: translateY(10px) scale(1.05, 0.95); } /* squish on land */
  50% { transform: translateY(-10px) scale(0.95, 1.05); } /* small bounce up */
  60% { transform: translateY(0) scale(1, 1); } /* land flat */
  100% { transform: translateY(0) scale(1, 1); } /* pause before next cycle */
}

.title {
  font-size: 3.5rem;
  font-weight: 700;
  letter-spacing: -1px;
  margin-bottom: 8px;
  animation: titleFlicker 6s infinite alternate;
}

@keyframes titleFlicker {
  0%   { opacity: 1;   }
  15%  { opacity: 0.8; }
  30%  { opacity: 1;   }
  45%  { opacity: 0.5; }
  60%  { opacity: 0.9; }
  75%  { opacity: 1;   }
  85%  { opacity: 0.3; }
  100% { opacity: 1;   }
}

.title-apps {
  color: #00e5ff;
}

.title-builtwith {
  color: #ff6688; /* Faded red/pink */
  opacity: 0.9;
}

.powered-by {
  font-size: 1.2rem;
  color: #6a7c9c;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 32px;
  font-weight: 500;
  animation: pulsateText 2s infinite ease-in-out;
}

@keyframes pulsateText {
  0% { opacity: 0.7; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.02); }
  100% { opacity: 0.7; transform: scale(1); }
}

.powered-by strong {
  text-transform: uppercase;
}

.brand-claw {
  color: #ff88aa;
  font-weight: 700;
  letter-spacing: 2px;
}

.brand-johnson {
  color: #ff3366;
  font-weight: 700;
  letter-spacing: 2px;
}

.tagline {
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 16px;
  color: #fff;
}

.description {
  font-size: 1.125rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 40px;
}

.cta-group {
  display: flex;
  gap: 16px;
  justify-content: center;
}

.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1rem;
}

.btn-primary {
  background: var(--text-main);
  color: var(--bg-color);
  box-shadow: 0 4px 20px rgba(255, 255, 255, 0.2);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(255, 255, 255, 0.3);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-main);
  border: 1px solid var(--border-color);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
}

/* Sections Common */
.section-header {
  margin-bottom: 40px;
  text-align: center;
}

.section-title {
  font-size: 2rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.accent-text {
  color: var(--neon-red);
  font-weight: 700;
}

/* Testimonials Marquee */
.testimonials {
  padding: 80px 0;
  overflow: hidden;
  position: relative;
}

/* Fading edges */
.testimonials::before,
.testimonials::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 200px;
  z-index: 2;
  pointer-events: none;
}

.testimonials::before {
  left: 0;
  background: linear-gradient(to right, var(--bg-color), transparent);
}

.testimonials::after {
  right: 0;
  background: linear-gradient(to left, var(--bg-color), transparent);
}

.testimonials-track {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.testimonials-row {
  display: flex;
  gap: 24px;
  width: max-content;
}

.row-1 {
  animation: scrollLeft 40s linear infinite;
}

.row-2 {
  animation: scrollRight 45s linear infinite;
  margin-left: -200px;
}

@keyframes scrollLeft {
  0% { transform: translateX(0); }
  /* 5 elements per row roughly, plus gap. Value needs tune based on width */
  100% { transform: translateX(-50%); } 
}

@keyframes scrollRight {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

.testimonial-card {
  background: var(--bg-color-elevated);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 24px;
  width: 400px;
  display: flex;
  gap: 16px;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.testimonial-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--neon-blue), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.row-1 .testimonial-card::before {
  background: linear-gradient(90deg, transparent, var(--neon-red), transparent);
}


.testimonial-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  z-index: 10;
}

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

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.testimonial-content {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.testimonial-quote {
  font-size: 0.95rem;
  color: var(--text-main);
  line-height: 1.5;
}

.testimonial-author {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* Features Grid */
.features {
  padding: 80px 0 120px;
}

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

.feature-card {
  background: rgba(15, 21, 35, 0.5);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 32px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.feature-card:hover {
  background: rgba(15, 21, 35, 0.8);
  border-color: rgba(0, 229, 255, 0.3);
  box-shadow: 0 10px 30px rgba(0, 229, 255, 0.05);
}

.feature-icon {
  font-size: 2rem;
  margin-bottom: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  border: 1px solid var(--border-color);
}

.feature-card h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
  color: var(--text-main);
}

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

/* Footer */
footer {
  border-top: 1px solid var(--border-color);
  padding: 40px 0;
  text-align: center;
  font-size: 0.95rem;
}

.terminal-footer {
  color: #77ff33; /* Neon green */
  font-family: 'Courier New', Courier, monospace; /* Terminal look */
  text-shadow: 0 0 8px rgba(119, 255, 51, 0.4);
}

.blinking-cursor {
  animation: blink 1s step-end infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

/* Responsive */
@media (max-width: 768px) {
  .title {
    font-size: 2.5rem;
  }
  
  .tagline {
    font-size: 1.25rem;
  }
  
  .testimonials::before,
  .testimonials::after {
    width: 60px;
  }
}
