/* Landing Page Styles */
:root {
  --background: #f8f8f8;
  --card: #fff;
  --border: #e4e4e7;
  --foreground: #09090b;
  --muted: #71717a;
  --accent: #f4f4f5;
  --primary: #111827;
  --radius-md: 16px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

.landing-container {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #e5e5e5 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
  padding: 20px;
}

.landing-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
  animation: fadeIn 0.8s ease-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.landing-logo-container {
  background: var(--card);
  padding: 48px 64px;
  border-radius: 24px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.landing-logo-container:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.landing-logo {
  max-width: 400px;
  width: 100%;
  height: auto;
  display: block;
}

.landing-login-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 48px;
  font-size: 16px;
  font-weight: 600;
  color: white;
  background: var(--primary);
  border: none;
  border-radius: 999px;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
  transition: all 0.2s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.landing-login-button::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transition: width 0.4s ease, height 0.4s ease;
  transform: translate(-50%, -50%);
  z-index: 0;
}

.landing-login-button:hover::before {
  width: 300px;
  height: 300px;
}

.landing-login-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.landing-login-button:active {
  transform: translateY(0);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
}

.landing-login-button span {
  position: relative;
  z-index: 1;
}

@media (max-width: 768px) {
  .landing-logo-container {
    padding: 32px 40px;
  }

  .landing-logo {
    max-width: 280px;
  }

  .landing-login-button {
    padding: 14px 40px;
    font-size: 15px;
  }
}
