/* styles.css */

/* Reset */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  font-family: 'Inter', sans-serif;
  background: #070811;
  color: rgba(255,255,255,0.9);
  overflow-x: hidden;
}

/* Animated Gradient Base */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: linear-gradient(
    120deg,
    #070811,
    #0b0f2a,
    #140a22,
    #0b102f
  );
  background-size: 300% 300%;
  animation: gradientShift 18s ease infinite;
  z-index: -3;
}

@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 60%; }
  100% { background-position: 0% 50%; }
}

/* Blob Background */
.bg {
  position: fixed;
  inset: 0;
  overflow: hidden;
  z-index: -2;
}

.blob {
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.35;
  animation: float 22s infinite ease-in-out;
}

.blob1 {
  background: radial-gradient(circle, #ff3cac, transparent 70%);
  top: -100px;
  left: -100px;
}

.blob2 {
  background: radial-gradient(circle, #784dff, transparent 70%);
  bottom: -120px;
  right: -120px;
  animation-delay: 6s;
}

.blob3 {
  background: radial-gradient(circle, #00d4ff, transparent 70%);
  top: 40%;
  left: 60%;
  animation-delay: 12s;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px) translateX(0px);
  }
  50% {
    transform: translateY(-40px) translateX(30px);
  }
}

/* Layout */
.container {
  min-height: calc(100vh - 60px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  padding: 24px;
}

/* Founder Image Section */
.founder-wrapper {
  position: relative;
  width: 160px;
  height: 160px;
  animation: founderFloat 6s ease-in-out infinite;
}

.founder-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  position: relative;
  z-index: 2;
  border: 2px solid rgba(255,255,255,0.15);
  box-shadow:
    0 0 30px rgba(120,77,255,0.4),
    0 0 60px rgba(0,212,255,0.25);
}

/* Glow Behind Founder */
.founder-glow {
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  background: conic-gradient(
    #ff3cac,
    #784dff,
    #00d4ff,
    #ff3cac
  );
  filter: blur(20px);
  opacity: 0.7;
  animation: rotateGlow 10s linear infinite;
}

/* Ring Animation */
.founder-ring {
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  animation: pulseRing 3s ease-out infinite;
}

@keyframes rotateGlow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes pulseRing {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }
  70% {
    transform: scale(1.2);
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

@keyframes founderFloat {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* Glass Card */
.card {
  width: 100%;
  max-width: 560px;
  padding: 36px 28px 30px;
  border-radius: 18px;

  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);

  border: 1px solid rgba(255,255,255,0.08);

  box-shadow:
    0 0 40px rgba(120, 77, 255, 0.15),
    inset 0 0 20px rgba(255,255,255,0.03);

  animation: cardFade 1.2s ease forwards;
  transform: translateY(20px);
  opacity: 0;
}

@keyframes cardFade {
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}

.logo-circle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff3cac, #784dff, #00d4ff);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
}

.logo-text {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  letter-spacing: 1px;
  opacity: 0.9;
}

/* Typography */
h1 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.9rem;
  line-height: 1.3;
  margin: 0 0 14px 0;
}

.lead {
  font-size: 0.98rem;
  opacity: 0.9;
  margin-bottom: 12px;
}

.support {
  font-size: 0.9rem;
  opacity: 0.75;
  margin-bottom: 10px;
}

.teaser {
  font-size: 0.9rem;
  opacity: 0.8;
  margin-bottom: 10px;
}

.micro {
  font-size: 0.8rem;
  opacity: 0.6;
  margin-bottom: 0;
}

/* Footer */
.footer {
  text-align: center;
  font-size: 0.75rem;
  opacity: 0.45;
  padding: 12px;
}

/* Responsive */
@media (max-width: 480px) {

  .founder-wrapper {
    width: 130px;
    height: 130px;
  }

  .card {
    padding: 28px 20px;
  }

  h1 {
    font-size: 1.6rem;
  }
}