/* ==========================================================================
   TRANSCEND - Minimalist Temporary Landing Page
   Brand Aesthetic: High-Vibration Energy Healing & Wellness
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800&family=Plus+Jakarta+Sans:wght@400;500;600;700&display=swap');

:root {
  /* Brand Colors from main app */
  --royal-blue: #2b64b3;
  --ocean-cyan: #4ca8d3;
  --ice-blue: #a9effe;
  --forest-green: #437748;
  --leaf-green: #5e953d;
  --lime-mint: #bce585;

  --color-bg: #FAFCFE;
  --text-primary: #0A1320;
  --text-secondary: #435E70;

  /* V27 Custom Gradients matching main app */
  --gradient-hero-title: linear-gradient(135deg, #2B64B3 0%, #4CA8D3 45%, #5E953D 100%);
  --gradient-subtle-canvas: linear-gradient(135deg, #FAFCFD 0%, #F0F7FA 50%, #E7F3F8 100%);

  /* Typography */
  --font-family-header: 'Outfit', 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-family-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
}

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

html {
  font-family: var(--font-family-body);
  color: var(--text-primary);
  background-color: var(--color-bg);
  background-image: var(--gradient-subtle-canvas);
  background-attachment: fixed;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  min-height: 100%;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  position: relative;
  overflow-x: hidden;
  padding: clamp(1.5rem, 3vh, 2.5rem) clamp(1rem, 4vw, 2.5rem);
}

/* Atmospheric Ambient Glowing Orbs */
.ambient-glow {
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  filter: blur(100px);
  will-change: transform;
}

.ambient-glow-top {
  width: clamp(320px, 50vw, 650px);
  height: clamp(320px, 50vw, 650px);
  top: -15vw;
  left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(76, 168, 211, 0.25) 0%, rgba(169, 239, 254, 0.12) 50%, transparent 70%);
  animation: floatAura 12s ease-in-out infinite alternate;
}

.ambient-glow-bottom-left {
  width: clamp(260px, 40vw, 550px);
  height: clamp(260px, 40vw, 550px);
  bottom: -5vw;
  left: -10vw;
  background: radial-gradient(circle, rgba(188, 229, 133, 0.22) 0%, rgba(94, 149, 61, 0.1) 50%, transparent 70%);
  animation: floatAuraGreen 14s ease-in-out infinite alternate;
}

.ambient-glow-bottom-right {
  width: clamp(280px, 42vw, 560px);
  height: clamp(280px, 42vw, 560px);
  bottom: 0;
  right: -8vw;
  background: radial-gradient(circle, rgba(43, 100, 179, 0.18) 0%, rgba(76, 168, 211, 0.1) 50%, transparent 70%);
  animation: floatAuraBlue 16s ease-in-out infinite alternate;
}

@keyframes floatAura {
  0% { transform: translate(-50%, 0) scale(1); }
  100% { transform: translate(-48%, 20px) scale(1.06); }
}

@keyframes floatAuraGreen {
  0% { transform: translateY(0) scale(1); }
  100% { transform: translateY(-25px) scale(1.08); }
}

@keyframes floatAuraBlue {
  0% { transform: translateY(0) scale(1); }
  100% { transform: translateY(20px) scale(0.95); }
}

/* Main Content Wrapper */
.landing-container {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 960px;
  margin: auto;
  text-align: center;
  padding: 1rem 0;
}

/* Status Badge matching main app .hero-badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(188, 229, 133, 0.35);
  border: 1px solid rgba(94, 149, 61, 0.4);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 0.45rem 1.3rem;
  border-radius: 9999px;
  color: #213C12;
  font-size: clamp(0.78rem, 1.8vw, 0.85rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: clamp(1.2rem, 2.5vh, 1.8rem);
  box-shadow: 0 2px 10px rgba(94, 149, 61, 0.12);
  animation: fadeInDown 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background: #5E953D;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(94, 149, 61, 0.7);
  animation: pulseGlow 2s infinite;
}

@keyframes pulseGlow {
  0% {
    box-shadow: 0 0 0 0 rgba(94, 149, 61, 0.7);
  }
  70% {
    box-shadow: 0 0 0 8px rgba(94, 149, 61, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(94, 149, 61, 0);
  }
}

/* Hero Title - Formatted exactly like main app */
.hero-title {
  font-family: var(--font-family-header);
  font-size: clamp(2rem, 5.2vw, 3.5rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--text-primary);
  max-width: 820px;
  margin: 0 auto clamp(1.75rem, 3.5vh, 2.75rem) auto;
  animation: fadeInDown 0.85s cubic-bezier(0.16, 1, 0.3, 1) 0.1s both;
}

/* Vibrance Gradient from main app */
.vibrance-gradient {
  background: var(--gradient-hero-title);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline;
}

/* Central Hero Logo Container */
.logo-centerpiece-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  animation: fadeInUp 0.95s cubic-bezier(0.16, 1, 0.3, 1) 0.2s both;
}

/* Soft backlight glow aura behind the logo */
.logo-centerpiece-wrapper::before {
  content: '';
  position: absolute;
  inset: -15px;
  border-radius: 36px;
  background: radial-gradient(circle, rgba(76, 168, 211, 0.3) 0%, rgba(94, 149, 61, 0.2) 55%, transparent 75%);
  filter: blur(28px);
  z-index: 0;
  opacity: 0.85;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.logo-centerpiece-wrapper:hover::before {
  opacity: 1;
  transform: scale(1.03);
}

/* Logo Card */
.logo-card {
  position: relative;
  z-index: 1;
  width: clamp(280px, 48vw, 480px);
  height: clamp(280px, 48vw, 480px);
  background: #ffffff;
  border-radius: clamp(22px, 3.5vw, 32px);
  padding: clamp(0.75rem, 2vw, 1.5rem);
  box-shadow: 
    0 20px 50px -12px rgba(43, 100, 179, 0.15),
    0 0 0 1px rgba(255, 255, 255, 0.9),
    0 4px 16px rgba(43, 100, 179, 0.06);
  border: 1px solid rgba(43, 100, 179, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
}

.logo-card:hover {
  transform: translateY(-4px);
  box-shadow: 
    0 30px 65px -15px rgba(43, 100, 179, 0.22),
    0 0 0 1px rgba(255, 255, 255, 1),
    0 8px 24px rgba(76, 168, 211, 0.15);
}

.central-logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: clamp(16px, 2.5vw, 24px);
  display: block;
}

/* Quiet Footer Note */
.landing-footer {
  position: relative;
  z-index: 1;
  width: 100%;
  text-align: center;
  padding-top: clamp(1.5rem, 3vh, 2.5rem);
  animation: fadeInUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.3s both;
}

.copyright-text {
  font-size: clamp(0.8rem, 1.8vw, 0.88rem);
  color: #64748B;
  letter-spacing: 0.01em;
}

/* Keyframes */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
