/* SmartBucket Landing Page Styles */

/* Design Tokens */
:root {
  /* Colors from brand system */
  --sb-teal-700: #2b4c5a;
  --sb-amber-400: #fbb040;
  --sb-slate-500: #64748b;
  --sb-white: #ffffff;
  --sb-teal-50: #e8f0f3;

  /* Semantic */
  --sb-bg-primary: var(--sb-white);
  --sb-text-brand: var(--sb-teal-700);
  --sb-text-secondary: var(--sb-slate-500);
  --sb-accent: var(--sb-amber-400);
}

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

/* Base */
html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  background-color: var(--sb-bg-primary);
  color: var(--sb-text-brand);
  line-height: 1.5;
  min-height: 100vh;
}

/* Main */
main {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 2rem;
}

/* Hero */
.hero {
  text-align: center;
  max-width: 720px;
  animation: fadeIn 0.8s ease-out;
}

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

/* Logo */
.logo {
  display: block;
  margin: 0 auto 2rem;
  width: clamp(280px, 40vw, 420px);
  height: auto;
}

/* Tagline */
.tagline {
  font-size: clamp(1.25rem, 3vw, 1.5rem);
  font-weight: 600;
  color: var(--sb-text-brand);
  margin-bottom: 1.5rem;
  letter-spacing: 0.02em;
}

/* Headline */
h1 {
  font-size: clamp(1.75rem, 5vw, 3rem);
  font-weight: 700;
  line-height: 1.25;
  color: var(--sb-text-brand);
  margin-bottom: 2rem;
  letter-spacing: -0.02em;
}

.accent {
  color: var(--sb-accent);
}

/* Flow text */
.flow {
  font-size: clamp(1.125rem, 3vw, 1.5rem);
  font-weight: 600;
  color: var(--sb-text-brand);
  margin-bottom: 3rem;
  letter-spacing: 0.1em;
}

/* Coming soon */
.coming-soon {
  font-size: 1rem;
  color: var(--sb-text-secondary);
  font-weight: 400;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .hero {
    animation: none;
  }
}

/* Responsive */
@media (max-width: 768px) {
  main {
    padding: 1.5rem;
  }

  .logo {
    width: 260px;
    margin-bottom: 1.5rem;
  }

  .tagline {
    margin-bottom: 1rem;
  }

  h1 {
    margin-bottom: 1.5rem;
  }

  .flow {
    margin-bottom: 2rem;
  }
}

@media (max-width: 480px) {
  .logo {
    width: 200px;
    margin-bottom: 1rem;
  }
}
