/* Site CSS - Landing Page Styles (No Tailwind) */

/* ========== Reset & Base Styles ========== */
html {
  height: 100%;
  overscroll-behavior: none;
}

body {
  height: 100%;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  overscroll-behavior: none;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: #ccc;
}

* {
  box-sizing: border-box;
}

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

@keyframes pulseSlow {
  0%, 100% {
    opacity: 0.2;
  }
  50% {
    opacity: 0.4;
  }
}

.animate-fade-in-up {
  animation: fadeInUp 0.8s ease-out forwards;
  opacity: 0;
}

.animate-pulse-slow {
  animation: pulseSlow 4s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

/* ========== Main Container ========== */
.main-container {
  position: relative;
  display: flex;
  min-height: 100vh;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(135deg, #581c87 0%, #1e3a8a 50%, #312e81 100%); /* purple-900 → blue-900 → indigo-900 */
  padding: 1rem;
}

.main-container::before {
  content: '';
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 0;
}

.main-container::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(126, 34, 206, 0.2) 0%, rgba(153, 27, 102, 0.2) 100%); /* purple-800/20 → pink-800/20 */
  z-index: 0;
}

/* ========== Background Shapes ========== */
#interactive-background {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.interactive-shape {
  position: absolute;
  height: 18rem;
  width: 18rem;
  border-radius: 50%;
  opacity: 0.2;
  filter: blur(80px);
  mix-blend-mode: multiply;
  transition: transform 0.03s ease-out;
}

.interactive-shape:nth-child(1) {
  top: 2.5rem;
  left: 2.5rem;
  background-color: #a855f7; /* purple-500 */
}

.interactive-shape:nth-child(2) {
  top: 5rem;
  right: 2.5rem;
  background-color: #3b82f6; /* blue-500 */
}

.interactive-shape:nth-child(3) {
  bottom: 2.5rem;
  left: 5rem;
  background-color: #ec4899; /* pink-500 */
}

/* ========== Content Area ========== */
.content-wrapper {
  position: relative;
  z-index: 10;
  margin-left: auto;
  margin-right: auto;
  max-width: 56rem; /* max-w-4xl */
  padding-top: 2rem;
  text-align: center;
}

@media (min-width: 768px) {
  .content-wrapper {
    padding-top: 3rem;
  }
}

/* ========== Brand Section ========== */
.brand-section {
  margin-bottom: 2rem;
}

.brand-section[data-animate] {
  animation: fadeInUp 0.8s ease-out forwards;
}

.logo-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.logo-icon {
  display: inline-flex;
  height: 5rem;
  width: 5rem;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #a855f7 0%, #ec4899 100%); /* purple-500 → pink-500 */
  margin-bottom: 1.5rem;
}

.logo-icon img {
  width: 60%;
  height: 60%;
}

.logo-text {
  text-align: center;
}

.page-title {
  margin-top: 0;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #c084fc 0%, #f472b6 100%); /* purple-400 → pink-400 */
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  padding-bottom: 0.5rem;
  font-size: 3rem;
  font-weight: bold;
  line-height: 1.2;
}

@media (min-width: 768px) {
  .page-title {
    font-size: 4.5rem;
  }
}

.page-subtitle {
  font-size: 1.25rem;
  line-height: 1.75rem;
  font-weight: 300;
  font-style: italic;
  color: #d8b4fe; /* purple-200 */
}

@media (min-width: 768px) {
  .page-subtitle {
    font-size: 1.5rem;
    line-height: 2rem;
  }
}

/* ========== Coming Soon Section ========== */
.coming-soon {
  margin-bottom: 3rem;
}

.coming-soon[data-animate] {
  animation: fadeInUp 0.8s ease-out forwards;
  animation-delay: 0.3s;
}

.coming-soon[data-animate] {
  animation-fill-mode: backwards;
}

.coming-soon-text {
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2rem;
  max-width: 48rem; /* max-w-3xl */
  font-size: 1.125rem;
  color: #c084fc; /* purple-300 */
}

.coming-soon-text p {
  margin-bottom: 1rem;
}

.coming-soon-text p:last-child {
  margin-bottom: 0;
}

.services-heading {
  margin-bottom: 2rem;
  margin-top: 3rem;
  font-size: 2.25rem;
  font-weight: bold;
  color: #ffffff;
}

@media (min-width: 768px) {
  .services-heading {
    font-size: 3rem;
  }
}

/* ========== Services Grid ========== */
.services-grid {
  margin-left: auto;
  margin-right: auto;
  max-width: 56rem; /* max-w-4xl */
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

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

.service-card {
  border-radius: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background-color: rgba(255, 255, 255, 0.1);
  padding: 1.5rem;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.service-icon {
  margin-bottom: 0.75rem;
  font-size: 1.875rem;
  color: #c084fc; /* purple-300 */
}

.service-title {
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: #ffffff;
}

.service-description {
  font-size: 0.875rem;
  color: #d8b4fe; /* purple-200 */
}

/* ========== Footer ========== */
.footer-section {
  margin-top: 4rem;
  text-align: center;
}

.footer-section[data-animate] {
  animation: fadeInUp 0.8s ease-out forwards;
  animation-delay: 1.5s;
  animation-fill-mode: backwards;
}

.footer-text {
  font-size: 0.875rem;
  color: #c084fc; /* purple-300 */
}

/* ========== Responsive Adjustments ========== */
@media (max-width: 640px) {
  .page-title {
    font-size: 2.25rem;
  }

  .page-subtitle {
    font-size: 1rem;
  }

  .services-heading {
    font-size: 1.875rem;
  }

  .coming-soon-text {
    font-size: 1rem;
  }

  .main-container {
    padding: 1rem;
  }
}
