/* ============================
   Tonda Ventures — Under Renovation
   ============================ */

/* Reset & Base */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
  overflow: hidden;
}

body {
  font-family: 'Inter', sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0a0a1a 0%, #0d1b2a 30%, #1b1b3a 60%, #0a0a1a 100%);
  background-size: 400% 400%;
  animation: gradientShift 15s ease infinite;
  color: #e0e0e0;
  position: relative;
}

/* Animated background gradient */
@keyframes gradientShift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Ambient glow orbs behind the card */
body::before,
body::after {
  content: '';
  position: fixed;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.25;
  z-index: 0;
  pointer-events: none;
}

body::before {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, #00e5ff 0%, transparent 70%);
  top: -10%;
  right: -5%;
  animation: orbFloat1 12s ease-in-out infinite alternate;
}

body::after {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, #c6ff00 0%, transparent 70%);
  bottom: -10%;
  left: -5%;
  animation: orbFloat2 10s ease-in-out infinite alternate;
}

@keyframes orbFloat1 {
  0%   { transform: translate(0, 0) scale(1); }
  100% { transform: translate(-60px, 40px) scale(1.15); }
}

@keyframes orbFloat2 {
  0%   { transform: translate(0, 0) scale(1); }
  100% { transform: translate(50px, -30px) scale(1.1); }
}

/* ============================
   Glassmorphism Card
   ============================ */
.card {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 3.5rem 3rem 3rem;
  max-width: 520px;
  width: 90%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 28px;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  animation: cardFadeIn 1.2s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  opacity: 0;
  transform: translateY(30px);
}

@keyframes cardFadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================
   Logo
   ============================ */
.logo-wrapper {
  position: relative;
  margin-bottom: 2rem;
}

/* Glow behind logo */
.logo-wrapper::before {
  content: '';
  position: absolute;
  width: 160px;
  height: 160px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle,
    rgba(0, 229, 255, 0.35) 0%,
    rgba(198, 255, 0, 0.2) 40%,
    transparent 70%
  );
  border-radius: 50%;
  filter: blur(30px);
  animation: glowPulse 4s ease-in-out infinite;
  z-index: -1;
}

@keyframes glowPulse {
  0%, 100% { opacity: 0.6; transform: translate(-50%, -50%) scale(1); }
  50%      { opacity: 1;   transform: translate(-50%, -50%) scale(1.15); }
}

.logo {
  width: 130px;
  height: 130px;
  object-fit: contain;
  animation: logoFloat 6s ease-in-out infinite;
  filter: drop-shadow(0 4px 20px rgba(0, 229, 255, 0.2));
}

@keyframes logoFloat {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}

/* ============================
   Typography
   ============================ */
.company-name {
  font-size: 1.85rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-bottom: 1.25rem;
  background: linear-gradient(135deg, #ffffff 0%, #b0bec5 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: textFadeIn 1.4s 0.3s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  opacity: 0;
}

.message {
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(224, 224, 224, 0.75);
  font-weight: 400;
  max-width: 400px;
  animation: textFadeIn 1.4s 0.5s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  opacity: 0;
}

@keyframes textFadeIn {
  to { opacity: 1; }
}

/* Decorative divider */
.divider {
  width: 60px;
  height: 2px;
  margin: 1.5rem 0;
  border: none;
  border-radius: 2px;
  background: linear-gradient(90deg, #00e5ff, #c6ff00);
  opacity: 0.6;
  animation: textFadeIn 1.4s 0.45s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  opacity: 0;
}

/* ============================
   Contact
   ============================ */
.divider--contact {
  animation-delay: 0.55s;
}

.contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  animation: textFadeIn 1.4s 0.65s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  opacity: 0;
}

.contact-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(224, 224, 224, 0.7);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 400;
  letter-spacing: 0.01em;
  transition: color 0.3s ease, filter 0.3s ease;
}

.contact-link:hover {
  color: #00e5ff;
  filter: drop-shadow(0 0 6px rgba(0, 229, 255, 0.3));
}

.contact-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* ============================
   Footer
   ============================ */
.footer {
  position: fixed;
  bottom: 1.5rem;
  left: 0;
  right: 0;
  text-align: center;
  font-size: 0.8rem;
  color: rgba(224, 224, 224, 0.3);
  z-index: 1;
  animation: textFadeIn 1.4s 0.7s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  opacity: 0;
}

/* ============================
   Responsive
   ============================ */
@media (max-width: 480px) {
  .card {
    padding: 2.5rem 1.75rem 2rem;
    border-radius: 22px;
  }

  .logo {
    width: 100px;
    height: 100px;
  }

  .logo-wrapper::before {
    width: 120px;
    height: 120px;
  }

  .company-name {
    font-size: 1.5rem;
  }

  .message {
    font-size: 0.95rem;
  }
}
