:root {
  --bg: #0b0f17;
  --card: rgba(255,255,255,0.06);
  --text: rgba(255,255,255,0.92);
  --muted: rgba(255,255,255,0.65);
  --border: rgba(255,255,255,0.12);
}

* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial;
  background: radial-gradient(1000px 600px at 30% -10%, rgba(130,87,229,0.35), transparent 60%),
              radial-gradient(800px 500px at 110% 10%, rgba(59,130,246,0.25), transparent 60%),
              var(--bg);
  color: var(--text);
}

.wrap { max-width: 980px; margin: 0 auto; padding: 48px 18px; }
.header { display: flex; gap: 16px; align-items: center; margin-bottom: 28px; }
.logo {
  width: 56px; height: 56px; display: grid; place-items: center;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--card);
  font-weight: 800;
  letter-spacing: 0.5px;
}
h1 { margin: 0; font-size: 34px; line-height: 1.1; }
.tagline { margin: 6px 0 0; color: var(--muted); }

.hero { margin: 18px 0 26px; }
.one-liner { font-size: 18px; line-height: 1.6; color: var(--text); margin: 0; }

.pillars {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 20px 0;
}
.card {
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: var(--card);
  backdrop-filter: blur(10px);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.card h2 { margin: 0 0 8px; font-size: 16px; }
.card p { margin: 0; color: var(--muted); line-height: 1.55; }

.problems ul { margin: 10px 0 0; padding-left: 18px; color: var(--muted); }
.status { display: grid; gap: 10px; margin-top: 18px; }
.muted { color: var(--muted); margin: 0; }

/* Contact Section Styles */
.contact-section {
  margin-top: 16px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}

.contact-label {
  margin: 0 0 12px;
  font-size: 16px;
  color: var(--text);
}

.contact-email {
  color: rgba(130,87,229,0.95);
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(130,87,229,0.4);
  transition: all 0.2s ease;
}

.contact-email:hover {
  color: rgba(130,87,229,1);
  border-bottom-color: rgba(130,87,229,0.8);
}

.contact-fallback {
  margin: 0;
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  line-height: 1.5;
}

.contact-fallback a {
  color: rgba(59,130,246,0.9);
  text-decoration: none;
  border-bottom: 1px solid rgba(59,130,246,0.3);
  transition: all 0.2s ease;
}

.contact-fallback a:hover {
  color: rgba(59,130,246,1);
  border-bottom-color: rgba(59,130,246,0.7);
}


.btn {
  display: inline-block;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.10);
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
  width: fit-content;
}
.btn:hover { background: rgba(255,255,255,0.14); }

.footer { margin-top: 28px; color: var(--muted); font-size: 13px; }

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

/* Entrance Animations */
.header {
  animation: fadeInUp 0.8s ease-out forwards;
  animation-delay: 0.1s;
  opacity: 0;
}

.hero {
  animation: fadeInUp 0.8s ease-out forwards;
  animation-delay: 0.3s;
  opacity: 0;
}

.pillars .card:nth-child(1) {
  animation: fadeInUp 0.8s ease-out forwards;
  animation-delay: 0.5s;
  opacity: 0;
}

.pillars .card:nth-child(2) {
  animation: fadeInUp 0.8s ease-out forwards;
  animation-delay: 0.7s;
  opacity: 0;
}

.pillars .card:nth-child(3) {
  animation: fadeInUp 0.8s ease-out forwards;
  animation-delay: 0.9s;
  opacity: 0;
}

.problems {
  animation: fadeInUp 0.8s ease-out forwards;
  animation-delay: 1.1s;
  opacity: 0;
}

.status {
  animation: fadeInUp 0.8s ease-out forwards;
  animation-delay: 1.3s;
  opacity: 0;
}

.footer {
  animation: fadeInUp 0.8s ease-out forwards;
  animation-delay: 1.5s;
  opacity: 0;
}

/* Enhanced Card Hover Effects */
.card:hover {
  transform: scale(1.02);
  border-color: rgba(130,87,229,0.5);
  box-shadow: 0 8px 32px rgba(130,87,229,0.3),
              0 4px 16px rgba(59,130,246,0.2);
}

/* Respect user's motion preferences */
@media (prefers-reduced-motion: reduce) {
  .header,
  .hero,
  .pillars .card,
  .problems,
  .status,
  .footer {
    animation: none;
    opacity: 1;
  }
}

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