/* Listizy Coming Soon - Retro Space Age Theme */

/* Import Space Grotesk font */
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&display=swap');

/* CSS Variables */
:root {
  --navy: #1d3c4c;
  --navy-light: #2a4f63;
  --teal: #50a8b8;
  --teal-dark: #4999a9;
  --teal-darker: #3f8697;
  --orange: #f57235;
  --orange-dark: #f0681f;
  --peach: #fadac1;
  --red: #c8383d;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;
}

/* Reset and Base Styles */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--gray-900);
  line-height: 1.6;
  background: linear-gradient(to bottom, #d6dbdc, #ffffff);
  min-height: 100vh;
}

a {
  color: var(--teal);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--teal-dark);
  text-decoration: underline;
}

/* Header */
.header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: white;
  border-bottom: 1px solid var(--gray-200);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.header-container {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  align-items: center;
  height: 4rem;
}

.logo {
  height: 2.5rem;
  width: auto;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-left: auto;
}

.header-nav a {
  color: var(--gray-700);
  font-weight: 500;
  font-size: 0.9375rem;
}

.header-nav a:hover {
  color: var(--orange);
  text-decoration: none;
}

/* Hero Section - Coming Soon */
.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - 4rem - 200px);
  padding: 4rem 1.5rem;
  text-align: center;
}

.hero-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 1rem;
  line-height: 1.1;
}

.hero-tagline {
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--teal);
  margin-bottom: 1rem;
}

.hero-description {
  font-size: 1.125rem;
  color: var(--gray-600);
  max-width: 36rem;
  margin: 0 auto 2.5rem;
}

/* Email Signup Form */
.signup-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  width: 100%;
  max-width: 28rem;
  margin: 0 auto;
}

.signup-form-row {
  display: flex;
  gap: 0.75rem;
  width: 100%;
}

.signup-input {
  flex: 1;
  padding: 0.875rem 1rem;
  font-size: 1rem;
  font-family: inherit;
  border: 2px solid var(--gray-200);
  border-radius: 0.5rem;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.signup-input:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(80, 168, 184, 0.2);
}

.signup-input::placeholder {
  color: var(--gray-400);
}

.signup-button {
  padding: 0.875rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  font-family: inherit;
  color: white;
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
  border: none;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.signup-button:hover {
  background: linear-gradient(135deg, var(--teal-dark) 0%, var(--teal-darker) 100%);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(80, 168, 184, 0.3);
}

.signup-button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.signup-message {
  font-size: 0.875rem;
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  width: 100%;
  text-align: center;
}

.signup-message.success {
  background: #d1fae5;
  color: #059669;
}

.signup-message.error {
  background: #fee2e2;
  color: #dc2626;
}

.signup-note {
  font-size: 0.8125rem;
  color: var(--gray-500);
}

/* Footer */
.footer {
  background: var(--gray-900);
  color: var(--gray-300);
  padding: 3rem 1.5rem;
}

.footer-container {
  max-width: 80rem;
  margin: 0 auto;
}

.footer-top {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-brand {
  max-width: 24rem;
}

.footer-logo {
  height: 2.5rem;
  width: auto;
  filter: brightness(0) invert(1);
  margin-bottom: 1rem;
}

.footer-brand p {
  color: var(--gray-400);
  font-size: 0.9375rem;
  line-height: 1.6;
}

.footer-links {
  display: flex;
  gap: 3rem;
}

.footer-links-column h3 {
  color: white;
  font-weight: 600;
  margin-bottom: 1rem;
  font-size: 0.9375rem;
}

.footer-links-column ul {
  list-style: none;
}

.footer-links-column li {
  margin-bottom: 0.5rem;
}

.footer-links-column a {
  color: var(--gray-400);
  font-size: 0.875rem;
}

.footer-links-column a:hover {
  color: white;
  text-decoration: none;
}

.footer-bottom {
  border-top: 1px solid var(--gray-800);
  padding-top: 2rem;
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.footer-legal a {
  color: var(--gray-400);
  font-size: 0.875rem;
}

.footer-legal a:hover {
  color: white;
}

.footer-copyright {
  text-align: center;
}

.footer-copyright p {
  color: var(--gray-500);
  font-size: 0.8125rem;
  margin-bottom: 0.5rem;
}

/* Prose Styles for Legal Pages */
.prose {
  max-width: 56rem;
  margin: 0 auto;
  padding: 3rem 1.5rem 4rem;
}

.prose h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 0.5rem;
}

.prose .last-updated {
  color: var(--gray-500);
  font-size: 0.875rem;
  margin-bottom: 2rem;
}

.prose h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

.prose h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.prose p {
  color: var(--gray-700);
  margin-bottom: 1rem;
  line-height: 1.7;
}

.prose ul {
  color: var(--gray-700);
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}

.prose li {
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

.prose strong {
  color: var(--gray-900);
  font-weight: 600;
}

.prose a {
  color: var(--teal);
}

.prose a:hover {
  text-decoration: underline;
}

.prose hr {
  border: none;
  border-top: 1px solid var(--gray-200);
  margin: 2rem 0;
}

.prose .disclaimer {
  text-transform: uppercase;
  font-weight: 700;
}

/* Main content wrapper for legal pages */
.main-legal {
  min-height: 100vh;
  background: white;
}

/* Responsive */
@media (min-width: 640px) {
  .header-container {
    padding: 0 1.5rem;
  }

  .hero h1 {
    font-size: 4rem;
  }

  .signup-form-row {
    flex-direction: row;
  }

  .footer-top {
    flex-direction: row;
    justify-content: space-between;
  }
}

@media (min-width: 1024px) {
  .header-container {
    padding: 0 2rem;
  }

  .prose {
    padding: 4rem 3rem 5rem;
  }
}

@media (max-width: 639px) {
  .hero h1 {
    font-size: 2.5rem;
  }

  .hero-tagline {
    font-size: 1.25rem;
  }

  .signup-form-row {
    flex-direction: column;
  }

  .signup-button {
    width: 100%;
  }

  .footer-links {
    flex-direction: column;
    gap: 2rem;
  }

  .header-nav {
    gap: 1rem;
  }

  .header-nav a {
    font-size: 0.8125rem;
  }
}
