/* Scouted Landing Page Styles */
:root {
  --primary: #0f766e;
  --primary-hover: #115e59;
  --accent: #2dd4bf;
  --accent-green: #27ae60;
  --accent-green-hover: #219653;
  --bg-dark: #0f172a;
  --bg-card: rgba(30, 41, 59, 0.7);
  --text-light: #f8fafc;
  --text-muted: #94a3b8;
  --radius-lg: 20px;
  --radius-md: 12px;
  --shadow-glow: 0 10px 30px -5px rgba(45, 212, 191, 0.25);
  --shadow-card: 0 20px 25px -5px rgba(0, 0, 0, 0.3), 0 8px 10px -6px rgba(0, 0, 0, 0.3);
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f766e 100%);
  background-attachment: fixed;
  color: var(--text-light);
  min-height: 100vh;
  line-height: 1.6;
  overflow-x: hidden;
}

/* Header Navbar */
.landing-header {
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: #ffffff;
}

.brand-icon {
  font-size: 2rem;
}

.brand-name {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, #ffffff 0%, #2dd4bf 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.mobile-menu-btn {
  display: none;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #ffffff;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  cursor: pointer;
  transition: all 0.2s ease;
  z-index: 1001;
}

.mobile-menu-btn:hover,
.mobile-menu-btn.active {
  background: rgba(45, 212, 191, 0.2);
  border-color: rgba(45, 212, 191, 0.4);
  color: var(--accent);
}

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

.nav-link {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
  transition: color 0.2s ease;
}

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

.nav-cta {
  background: rgba(45, 212, 191, 0.15);
  color: var(--accent);
  border: 1px solid rgba(45, 212, 191, 0.4);
  padding: 8px 18px;
  border-radius: 20px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s ease;
}

.nav-cta:hover {
  background: var(--accent);
  color: #0f172a;
}

/* Hero Section */
.hero-section {
  max-width: 1100px;
  margin: 60px auto 40px;
  padding: 0 32px;
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(15, 118, 110, 0.3);
  border: 1px solid rgba(45, 212, 191, 0.3);
  color: var(--accent);
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 24px;
}

.hero-title {
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  background: linear-gradient(180deg, #ffffff 0%, #cbd5e1 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--text-muted);
  max-width: 780px;
  margin: 0 auto 36px;
  font-weight: 400;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-hero-primary {
  background: var(--accent-green);
  color: #ffffff;
  padding: 16px 36px;
  border-radius: 30px;
  font-size: 1.05rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  box-shadow: 0 10px 25px -5px rgba(39, 174, 96, 0.4);
  transition: all 0.25 ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.btn-hero-primary:hover {
  background: var(--accent-green-hover);
  transform: translateY(-2px);
  box-shadow: 0 14px 30px -5px rgba(39, 174, 96, 0.5);
}

.btn-hero-secondary {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  padding: 16px 32px;
  border-radius: 30px;
  font-size: 1.05rem;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.2);
  text-decoration: none;
  transition: all 0.2s ease;
}

.btn-hero-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
}

/* Split Value Proposition Section */
.value-prop-section {
  max-width: 1100px;
  margin: 80px auto;
  padding: 0 32px;
}

.section-title {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 48px;
  color: #ffffff;
}

.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

@media (max-width: 768px) {
  .landing-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 12px 16px;
    background: rgba(15, 23, 42, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

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

  .nav-link {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    color: #f8fafc;
    padding: 6px 10px;
    border-radius: 8px;
    text-align: center;
  }

  .nav-cta {
    display: inline-block;
    padding: 6px 12px;
    font-size: 0.85rem;
  }
}
    text-align: center;
    padding: 14px 20px;
    font-size: 1rem;
    border-radius: 12px;
    background: linear-gradient(135deg, #0f766e 0%, #0d9488 100%);
    color: #ffffff;
    box-shadow: 0 6px 20px rgba(15, 118, 110, 0.4);
    margin-top: 4px;
  }

  .hero-section {
    margin: 32px auto 24px;
    padding: 0 20px;
  }

  .hero-title {
    font-size: clamp(1.8rem, 6.5vw, 2.4rem);
    line-height: 1.2;
    margin-bottom: 18px;
  }

  .hero-subtitle {
    font-size: 1.02rem;
    margin-bottom: 28px;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
    gap: 12px;
  }

  .btn-hero-primary,
  .btn-hero-secondary {
    width: 100%;
    max-width: 360px;
    justify-content: center;
    padding: 14px 24px;
    font-size: 1rem;
  }

  .value-prop-section {
    margin: 40px auto;
    padding: 0 20px;
  }

  .split-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .value-card {
    padding: 28px 20px;
  }

  .launch-app-fab {
    display: flex !important;
    position: fixed;
    bottom: 20px;
    right: 20px;
    left: auto;
    padding: 12px 22px;
    font-size: 0.92rem;
    border-radius: 25px;
    box-shadow: 0 8px 24px rgba(39, 174, 96, 0.45);
    z-index: 100;
  }

  .landing-footer {
    padding: 24px 20px 80px;
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .auth-modal-card {
    padding: 24px 18px;
    max-height: 90vh;
    overflow-y: auto;
  }
}

@keyframes menuSlideDown {
  from {
    opacity: 0;
    transform: translateY(-12px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.value-card {
  background: rgba(30, 41, 59, 0.6);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-card);
  transition: transform 0.3s ease, border-color 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.value-card:hover {
  transform: translateY(-4px);
  border-color: rgba(45, 212, 191, 0.4);
}

.card-tag {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 12px;
  border-radius: 12px;
  margin-bottom: 16px;
}

.tag-traveler {
  background: rgba(45, 212, 191, 0.15);
  color: var(--accent);
}

.tag-creator {
  background: rgba(245, 158, 11, 0.15);
  color: #f59e0b;
}

.card-title {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: #ffffff;
}

.card-copy {
  font-size: 1.02rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 24px;
}

.feature-list {
  list-style: none;
  margin-bottom: 32px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: #e2e8f0;
  margin-bottom: 10px;
}

.feature-icon {
  color: var(--accent);
  font-weight: 700;
}

/* Floating Action Button (FAB) */
.launch-app-fab {
  position: fixed;
  bottom: 30px;
  right: 30px;
  padding: 15px 25px;
  border-radius: 30px;
  background: #27ae60;
  color: white;
  font-weight: bold;
  font-size: 1rem;
  box-shadow: 0 6px 20px rgba(39, 174, 96, 0.4);
  border: none;
  cursor: pointer;
  z-index: 100;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.launch-app-fab:hover {
  background: #219653;
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(39, 174, 96, 0.6);
}

/* Authentication Modal */
.modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(15, 23, 42, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.auth-modal-card {
  background: #1e293b;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 440px;
  padding: 32px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  position: relative;
  animation: modalPop 0.3s ease-out;
}

@keyframes modalPop {
  from {
    opacity: 0;
    transform: scale(0.95) translateY(10px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.close-modal-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-muted);
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.close-modal-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
}

.modal-header {
  text-align: center;
  margin-bottom: 28px;
}

.modal-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 6px;
}

.modal-subtitle {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.auth-path-section {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.path-label {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--accent);
}

.btn-guest {
  width: 100%;
  padding: 14px;
  background: #27ae60;
  color: #ffffff;
  border: none;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: background 0.2s ease;
}

.btn-guest:hover {
  background: #219653;
}

.btn-signin {
  width: 100%;
  padding: 12px;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: background 0.2s ease;
}

.btn-signin:hover {
  background: rgba(255, 255, 255, 0.18);
}

.modal-divider {
  display: flex;
  align-items: center;
  text-align: center;
  margin: 20px 0;
  color: var(--text-muted);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.modal-divider::before,
.modal-divider::after {
  content: '';
  flex: 1;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.modal-divider span {
  padding: 0 12px;
}

.btn-creator {
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, #0f766e 0%, #0d9488 100%);
  color: #ffffff;
  border: 1px solid rgba(45, 212, 191, 0.3);
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-creator:hover {
  background: linear-gradient(135deg, #115e59 0%, #0f766e 100%);
  box-shadow: 0 6px 20px rgba(15, 118, 110, 0.4);
}

/* Landing Footer */
.landing-footer {
  max-width: 1100px;
  margin: 60px auto 30px;
  padding: 24px 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--text-muted);
  font-size: 0.85rem;
}
