/* Main Landing Page Styles */
@import url('shared.css');

:root {
  --dark-bg: #08111f;
  --dark-bg2: #131b2f;
  --cyan: #67e8f9;
  --violet: #a78bfa;
  --pink: #f472b6;
  --light: #f8fafc;
  --muted: #94a3b8;
}

body {
  font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
  background: linear-gradient(135deg, var(--dark-bg), var(--dark-bg2));
  color: var(--light);
  line-height: 1.6;
}

/* Hero */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 2rem;
}

.hero-logo {
  width: min(600px, 80vw);
  margin-bottom: 2rem;
  animation: fadeUp 1s ease-out;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  text-align: center;
  background: linear-gradient(135deg, var(--cyan), var(--violet), var(--pink));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: fadeUp 1s ease-out 0.2s both;
}

.hero p {
  color: var(--muted);
  font-size: 1.1rem;
  margin-top: 0.75rem;
  animation: fadeUp 1s ease-out 0.4s both;
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  width: 28px;
  height: 44px;
  border: 2px solid rgba(167, 139, 250, 0.4);
  border-radius: 14px;
  animation: fadeUp 1s ease-out 0.6s both;
}
.scroll-indicator::after {
  content: '';
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 10px;
  background: var(--violet);
  border-radius: 2px;
  animation: scrollDot 1.8s ease-in-out infinite;
}

/* Examples Grid */
.examples {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem 6rem;
}

.examples h2 {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.examples .subtitle {
  text-align: center;
  color: var(--muted);
  margin-bottom: 3rem;
}

.grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  overflow: hidden;
  backdrop-filter: blur(12px);
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
  display: flex;
  flex-direction: column;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  border-color: rgba(255, 255, 255, 0.15);
}

.card-band {
  height: 6px;
}

.card-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.card-body h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.15rem;
}

.card-type {
  font-size: 0.8rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.75rem;
}

.card-body p {
  color: #cbd5e1;
  font-size: 0.92rem;
  line-height: 1.5;
  flex: 1;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--cyan);
  transition: gap 0.2s;
}

.card:hover .card-link {
  gap: 0.7rem;
}

/* About */
.about {
  max-width: 720px;
  margin: 0 auto;
  padding: 4rem 2rem;
  text-align: center;
}

.about-logo {
  width: 120px;
  margin: 0 auto 1.5rem;
}

.about h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.about p {
  color: var(--muted);
  line-height: 1.7;
}

/* Footer */
.main-footer {
  text-align: center;
  padding: 3rem 2rem;
  position: relative;
}

.main-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(400px, 80%);
  height: 2px;
  background: linear-gradient(90deg, var(--cyan), var(--violet), var(--pink));
  border-radius: 1px;
}

.main-footer p {
  color: var(--muted);
  font-size: 0.85rem;
}

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

@keyframes scrollDot {
  0%, 100% { opacity: 1; transform: translate(-50%, 0); }
  50% { opacity: 0.3; transform: translate(-50%, 14px); }
}

/* Responsive */
@media (max-width: 768px) {
  .grid {
    grid-template-columns: 1fr;
  }
  .hero h1 {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .card-body {
    padding: 1.25rem;
  }
  .examples {
    padding: 2rem 1rem 4rem;
  }
  .hero p {
    font-size: 0.95rem;
  }
  .examples h2 {
    font-size: 1.6rem;
  }
}
