/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Typography */
  --font-heading: 'Alice', serif;
  --font-body: 'Lora', 'Georgia', serif;
  
  /* Primary Bright Golden Yellow Tones */
  --primary-color: #E6B00F;
  --primary-hover: #C7960C;
  --primary-dark: #664D00;
  
  /* Neutral Backgrounds (Pampas & White) */
  --bg-cream: #F4F3EE;
  --bg-light: #F9F8F6;
  --bg-white: #FFFFFF;
  --secondary-color: #EBE8E2;
  
  /* Text Colors */
  --text-dark: #2E2C2A;
  --text-darker: #1A1918;
  --text-light: #6D6A63;
  --text-lighter: #99968E;
  
  /* Border & Accent Colors */
  --border-color: #D6D3CD;
  --accent-brown: #E6B00F;
  --accent-caramel: #F5CC47;
  
  /* Gradients */
  --gradient-from: #E6B00F;
  --gradient-to: #F5CC47;
  
  /* Shadows */
  --shadow-sm: 0 1px 3px 0 rgba(46, 44, 42, 0.08);
  --shadow-md: 0 4px 8px -2px rgba(46, 44, 42, 0.12);
  --shadow-lg: 0 10px 20px -5px rgba(46, 44, 42, 0.15);
  --shadow-xl: 0 20px 30px -8px rgba(46, 44, 42, 0.18);
}

body {
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: var(--text-dark);
  line-height: 1.7;
  background-color: var(--bg-cream);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Navigation */
.navbar {
  background-color: var(--bg-white);
  border-bottom: 1px solid var(--border-color);
  padding: 16px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(10px);
  background-color: rgba(255, 255, 255, 0.95);
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-brand .logo {
  font-size: 28px;
  font-weight: 700;
  font-family: var(--font-heading);
  color: var(--primary-color);
  letter-spacing: -0.5px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 500;
  font-family: var(--font-body);
  transition: all 0.3s ease;
}

.nav-link:hover {
  color: var(--primary-color);
}

/* Buttons */
.btn {
  padding: 12px 24px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 15px;
  font-family: var(--font-heading);
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  text-decoration: none;
  display: inline-block;
  letter-spacing: 0.3px;
}

.btn-large {
  padding: 16px 32px;
  font-size: 17px;
}

.btn-primary {
  background-color: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

.btn-primary:hover {
  background-color: var(--primary-hover);
  border-color: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-secondary {
  background-color: var(--bg-white);
  color: var(--text-dark);
  border: 2px solid var(--border-color);
}

.btn-secondary:hover {
  background-color: var(--secondary-color);
  border-color: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* Hero Section */
.hero {
  padding: 100px 0 140px;
  background: linear-gradient(180deg, var(--bg-cream) 0%, var(--bg-light) 100%);
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.hero-badge {
  display: inline-block;
  padding: 8px 20px;
  background-color: rgba(230, 176, 15, 0.15);
  color: var(--primary-color);
  border-radius: 24px;
  font-size: 14px;
  font-weight: 600;
  font-family: var(--font-body);
  margin-bottom: 28px;
  border: 1px solid rgba(230, 176, 15, 0.25);
}

.hero-title {
  font-size: 64px;
  font-weight: 700;
  font-family: var(--font-heading);
  line-height: 1.15;
  margin-bottom: 28px;
  color: var(--text-darker);
  letter-spacing: -1px;
}

.gradient-text {
  background: linear-gradient(135deg, var(--gradient-from) 0%, var(--gradient-to) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  font-size: 21px;
  color: var(--text-light);
  margin-bottom: 48px;
  line-height: 1.8;
  font-family: var(--font-body);
}

.hero-cta {
  display: flex;
  gap: 16px;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  gap: 48px;
}

.stat {
  text-align: left;
}

.stat-number {
  font-size: 42px;
  font-weight: 700;
  font-family: var(--font-heading);
  color: var(--primary-color);
}

.stat-label {
  font-size: 15px;
  color: var(--text-light);
  margin-top: 6px;
  font-family: var(--font-body);
}

/* Dashboard Preview */
.dashboard-preview {
  background: var(--bg-white);
  border-radius: 20px;
  box-shadow: var(--shadow-xl);
  overflow: hidden;
  border: 2px solid var(--border-color);
}

.preview-header {
  padding: 16px;
  background-color: var(--secondary-color);
  border-bottom: 1px solid var(--border-color);
}

.preview-dots {
  display: flex;
  gap: 8px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--text-lighter);
}

.preview-content {
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.preview-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  background-color: var(--bg-light);
  border-radius: 12px;
  border-left: 4px solid var(--accent-brown);
}

.card-icon {
  font-size: 24px;
}

.card-text {
  font-weight: 600;
  color: var(--text-dark);
}

/* Features Section */
.features {
  padding: 140px 0;
  background-color: var(--bg-cream);
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-title {
  font-size: 52px;
  font-weight: 700;
  font-family: var(--font-heading);
  margin-bottom: 20px;
  color: var(--text-darker);
  letter-spacing: -0.5px;
}

.section-description {
  font-size: 21px;
  color: var(--text-light);
  font-family: var(--font-body);
  line-height: 1.7;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.feature-card {
  padding: 36px;
  background-color: var(--bg-white);
  border-radius: 16px;
  border: 2px solid var(--border-color);
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: var(--accent-brown);
}

.feature-icon {
  font-size: 48px;
  margin-bottom: 16px;
}

.feature-title {
  font-size: 26px;
  font-weight: 700;
  font-family: var(--font-heading);
  margin-bottom: 14px;
  color: var(--text-darker);
}

.feature-description {
  color: var(--text-light);
  line-height: 1.8;
  font-family: var(--font-body);
}

/* How It Works Section */
.how-it-works {
  padding: 140px 0;
  background-color: var(--bg-light);
}

.steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  margin-top: 64px;
}

.step {
  flex: 1;
  max-width: 320px;
  text-align: center;
}

.step-number {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gradient-from) 0%, var(--gradient-to) 100%);
  color: white;
  font-size: 36px;
  font-weight: 700;
  font-family: var(--font-heading);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
  box-shadow: var(--shadow-md);
}

.step-title {
  font-size: 26px;
  font-weight: 700;
  font-family: var(--font-heading);
  margin-bottom: 14px;
  color: var(--text-darker);
}

.step-description {
  color: var(--text-light);
  line-height: 1.8;
  font-family: var(--font-body);
}

.step-arrow {
  font-size: 32px;
  color: var(--text-lighter);
  flex-shrink: 0;
}

/* Testimonials Section */
.testimonials {
  padding: 140px 0;
  background-color: var(--bg-cream);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 64px;
}

.testimonial-card {
  padding: 36px;
  background-color: var(--bg-white);
  border-radius: 16px;
  border: 2px solid var(--border-color);
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent-brown);
}

.testimonial-stars {
  font-size: 20px;
  margin-bottom: 16px;
}

.testimonial-text {
  color: var(--text-dark);
  line-height: 1.7;
  margin-bottom: 24px;
  font-size: 16px;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.testimonial-author strong {
  color: var(--text-dark);
  font-weight: 600;
}

.testimonial-author span {
  color: var(--text-light);
  font-size: 14px;
}

/* CTA Section */
.cta-section {
  padding: 120px 0;
  background: linear-gradient(135deg, var(--gradient-from) 0%, var(--gradient-to) 100%);
  color: white;
}

.cta-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.cta-title {
  font-size: 52px;
  font-weight: 700;
  font-family: var(--font-heading);
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.cta-description {
  font-size: 21px;
  font-family: var(--font-body);
  margin-bottom: 48px;
  opacity: 0.95;
  line-height: 1.7;
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons .btn {
  width: 100%;
}

.cta-section .btn-primary {
  background-color: var(--bg-white);
  color: var(--primary-color);
  border-color: var(--bg-white);
}

.cta-section .btn-primary:hover {
  background-color: var(--secondary-color);
  color: var(--primary-dark);
  border-color: var(--secondary-color);
}

.cta-section .btn-secondary {
  background-color: rgba(255, 255, 255, 0.15);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.8);
}

.cta-section .btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.25);
  border-color: white;
}

.cta-note {
  font-size: 14px;
  opacity: 0.8;
}

/* Footer */
.footer {
  padding: 80px 0 40px;
  background-color: var(--primary-dark);
  color: var(--secondary-color);
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 64px;
  margin-bottom: 48px;
}

.footer-brand .logo {
  color: var(--bg-cream);
  margin-bottom: 12px;
  font-family: var(--font-heading);
}

.footer-brand p {
  color: var(--text-lighter);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.footer-column h4 {
  font-size: 17px;
  font-weight: 600;
  font-family: var(--font-heading);
  margin-bottom: 18px;
  color: var(--bg-cream);
}

.footer-column a {
  display: block;
  color: var(--text-lighter);
  text-decoration: none;
  margin-bottom: 12px;
  transition: color 0.2s;
}

.footer-column a:hover {
  color: var(--bg-cream);
}

.footer-bottom {
  padding-top: 40px;
  border-top: 1px solid rgba(212, 196, 176, 0.3);
  text-align: center;
  color: var(--text-lighter);
  font-size: 14px;
}

/* Auth Buttons */
.auth-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 16px;
  max-width: 400px;
}

.btn-google {
  background-color: var(--bg-white);
  color: var(--text-dark);
  border: 2px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-weight: 600;
  font-family: var(--font-heading);
}

.btn-google:hover {
  background-color: var(--secondary-color);
  border-color: var(--primary-color);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.btn-github {
  background-color: #24292e;
  color: white;
  border: 2px solid #24292e;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-weight: 600;
  font-family: var(--font-heading);
}

.btn-github:hover {
  background-color: #1b1f23;
  border-color: #1b1f23;
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.btn-slack {
  background-color: #fff;
  color: #4A154B;
  border: 2px solid #ddd;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-weight: 600;
  font-family: var(--font-heading);
}

.btn-slack:hover {
  background-color: #fff;
  border-color: #4A154B;
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.btn-google-white {
  background-color: var(--bg-white);
  color: var(--text-dark);
  border: 2px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-weight: 600;
  font-family: var(--font-heading);
}

.btn-google-white:hover {
  background-color: var(--secondary-color);
  border-color: var(--accent-brown);
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.btn-secondary-white {
  background-color: rgba(255, 255, 255, 0.15);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.8);
  font-weight: 600;
  font-family: var(--font-heading);
}

.btn-secondary-white:hover {
  background-color: rgba(255, 255, 255, 0.25);
  border-color: white;
  transform: translateY(-2px);
}

.google-icon {
  flex-shrink: 0;
}

.auth-note {
  font-size: 14px;
  color: var(--text-light);
  text-align: left;
  margin-bottom: 32px;
}

/* Standard Page Layout */
.page-header {
  padding: 100px 0 60px;
  background: linear-gradient(180deg, var(--bg-cream) 0%, var(--bg-light) 100%);
  text-align: center;
}

.page-title {
  font-size: 48px;
  font-weight: 700;
  font-family: var(--font-heading);
  color: var(--text-darker);
  margin-bottom: 16px;
}

.page-subtitle {
  font-size: 20px;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
}

.page-content {
  padding: 60px 0 100px;
  background-color: var(--bg-white);
}

.page-content h2 {
  font-size: 32px;
  margin-top: 48px;
  margin-bottom: 24px;
  color: var(--text-darker);
  font-family: var(--font-heading);
}

.page-content p {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 24px;
  color: var(--text-dark);
}

.page-content ul {
  margin-bottom: 24px;
  padding-left: 24px;
}

.page-content li {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 12px;
  color: var(--text-dark);
}

/* Responsive Design */
@media (max-width: 968px) {
  .hero-content {
    grid-template-columns: 1fr;
  }

  .hero-title {
    font-size: 42px;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .steps {
    flex-direction: column;
  }

  .step-arrow {
    transform: rotate(90deg);
  }

  .nav-links {
    gap: 16px;
  }

  .footer-content {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .hero-title {
    font-size: 32px;
  }

  .hero-description {
    font-size: 16px;
  }

  .hero-cta {
    flex-direction: column;
  }

  .btn-large {
    width: 100%;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .section-title {
    font-size: 32px;
  }

  .cta-title {
    font-size: 32px;
  }

  .cta-buttons {
    flex-direction: column;
  }

  .nav-links {
    display: none;
  }
}
