/* Atlaskit-inspired CSS Variables */
:root {
  --font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  
  /* Atlaskit Colors */
  --blue-500: #0052CC;
  --blue-600: #0747A6;
  --blue-700: #003884;
  --blue-900: #091E42;
  
  --neutral-0: #FFFFFF;
  --neutral-100: #F4F5F7;
  --neutral-200: #EBECF0;
  --neutral-300: #DFE1E6;
  --neutral-400: #C1C7D0;
  --neutral-500: #B3BAC5;
  --neutral-600: #A5ADBA;
  --neutral-700: #97A0AF;
  --neutral-800: #6B778C;
  --neutral-900: #42526E;
  --neutral-1000: #091E42;
  
  --teal-500: #00875A;
  --purple-500: #6554C0;
  --red-500: #DE350B;
  --yellow-500: #FFAB00;
  --green-500: #36B37E;
  
  /* Design tokens */
  --background-primary: var(--neutral-0);
  --background-secondary: var(--blue-900);
  --text-primary: var(--neutral-1000);
  --text-secondary: var(--neutral-800);
  --text-accent: var(--blue-500);
  --text-inverse: var(--neutral-0);
  
  --border-radius: 8px;
  --shadow-raised: 0px 1px 1px rgba(9, 30, 66, 0.25), 0px 0px 1px rgba(9, 30, 66, 0.31);
  --shadow-overlay: 0px 4px 8px rgba(9, 30, 66, 0.25), 0px 0px 1px rgba(9, 30, 66, 0.31);
}

/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-family);
  line-height: 1.5;
  color: var(--text-primary);
  background: var(--background-primary);
}

/* Coming Soon Container */
.coming-soon-container {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--blue-900) 0%, var(--blue-700) 50%, var(--blue-500) 100%);
  position: relative;
  overflow: hidden;
}

.coming-soon-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

/* Content wrapper */
.content {
  text-align: center;
  padding: 2rem;
  max-width: 600px;
  width: 100%;
  position: relative;
  z-index: 2;
}

/* Logo styling */
.logo h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--text-inverse);
  margin-bottom: 3rem;
  letter-spacing: -0.02em;
}

.logo .faint {
  opacity: 0.7;
}

/* Main content */
.main-content {
  padding: 3rem 2rem;
  margin: 2rem auto;
}

.coming-soon-title {
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  font-weight: 600;
  color: var(--text-inverse);
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  white-space: nowrap;
}

.coming-soon-subtitle {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 2.5rem;
  line-height: 1.6;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}

.launch-info {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--text-inverse);
  padding: 1rem 2rem;
  border-radius: 12px;
  display: inline-block;
  font-weight: 600;
  font-size: 1.125rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.launch-info:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
  background: rgba(255, 255, 255, 0.18);
}

.launch-info::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  animation: shimmer 2s infinite;
}

@keyframes shimmer {
  0% { left: -100%; }
  100% { left: 100%; }
}

.launch-info p {
  margin: 0;
  position: relative;
  z-index: 1;
}

/* Responsive design */
@media (max-width: 768px) {
  .content {
    padding: 1rem;
  }
  
  .main-content {
    padding: 2rem 1.5rem;
    margin: 1rem auto;
  }
  
  .coming-soon-subtitle {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .logo h1 {
    margin-bottom: 2rem;
  }
  
  .main-content {
    padding: 1.5rem 1rem;
  }
  
  .launch-info {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
  }
}

/* Accessibility improvements */
@media (prefers-reduced-motion: reduce) {
  .launch-info::before {
    animation: none;
  }
  
  .launch-info {
    transition: none;
  }
  
  .launch-info:hover {
    transform: none;
  }
}

/* Focus states for accessibility */
*:focus-visible {
  outline: 2px solid var(--blue-500);
  outline-offset: 2px;
}