/* ==========================================================================
   rovo - Design System & Stylesheet
   Inspired by Airbnb, Bolt, Stripe, and Linear
   ========================================================================== */

/* --- CSS Variables & Design Tokens --- */
:root {
  /* Colors */
  --primary-green: #22C55E;
  --primary-green-hover: #16A34A;
  --primary-green-soft: #DCFCE7;
  --text-dark: #0F172A;
  --text-secondary: #475569;
  --text-muted: #64748B;
  --text-light: #94A3B8;
  --bg-white: #FFFFFF;
  --bg-muted: #F8FAFC;
  --border-color: #E2E8F0;
  --border-color-hover: #CBD5E1;
  --glow-color: rgba(34, 197, 94, 0.08);

  /* Typography */
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-display: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  /* Shadows (Stripe-like subtle layering) */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 10px 15px -3px rgba(15, 23, 42, 0.04), 0 4px 6px -4px rgba(15, 23, 42, 0.04);
  --shadow-xl: 0 20px 25px -5px rgba(15, 23, 42, 0.06), 0 8px 10px -6px rgba(15, 23, 42, 0.06);
  --shadow-premium: 0 25px 50px -12px rgba(0, 0, 0, 0.12);

  /* Transitions */
  --transition-fast: 0.15s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-normal: 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-slow: 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-bounce: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* --- Base Resets & Layout --- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  background-color: var(--bg-white);
  color: var(--text-dark);
  font-family: var(--font-sans);
}

body {
  font-family: var(--font-sans);
  overflow-x: hidden;
  min-height: 100vh;
  position: relative;
}

input, button, select, textarea {
  font-family: inherit;
}

/* --- Background Glow Effects --- */
.bg-glow {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1400px;
  height: 600px;
  background: radial-gradient(circle 400px at 80% 100px, var(--glow-color), transparent 80%),
              radial-gradient(circle 350px at 20% -50px, rgba(34, 197, 94, 0.04), transparent 70%);
  z-index: -1;
  pointer-events: none;
}

/* --- Structure --- */
.page-wrapper {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* --- Navbar (Simple, Minimal) --- */
.navbar {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 48px);
  max-width: 1232px;
  height: 80px;
  display: flex;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.6);
  z-index: 100;
}

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

.logo-link {
  text-decoration: none;
  display: flex;
  align-items: center;
  transition: transform var(--transition-fast);
}

.logo-link:hover {
  transform: scale(0.98);
}

.logo-img {
  height: 54px;
  width: auto;
  display: block;
  object-fit: contain;
}

.btn-secondary {
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  background-color: var(--bg-muted);
  padding: 8px 16px;
  border-radius: 9999px;
  border: 1px solid var(--border-color);
  transition: all var(--transition-fast);
}

.btn-secondary:hover {
  color: var(--text-dark);
  background-color: var(--bg-white);
  border-color: var(--border-color-hover);
  box-shadow: var(--shadow-sm);
}

/* --- Hero Section Layout --- */
.hero-section {
  padding: 170px 0 120px 0;
}

.hero-container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: flex-start;
}

/* Desktop line break utility */
.desktop-only {
  display: block;
}

/* --- Left Column: Copy & Form --- */
.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/* Modern Badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: var(--bg-muted);
  border: 1px solid rgba(226, 232, 240, 0.8);
  padding: 6px 14px;
  border-radius: 9999px;
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
}

.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--primary-green);
  box-shadow: 0 0 8px var(--primary-green);
}

.badge-text {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
  letter-spacing: -0.1px;
}

/* Headline styling */
.hero-headline {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 54px;
  line-height: 1.15;
  color: var(--text-dark);
  letter-spacing: -2px;
  margin-bottom: 24px;
}

/* Subheadline styling */
.hero-subheadline {
  font-size: 18px;
  line-height: 1.6;
  color: var(--text-secondary);
  margin-bottom: 40px;
  max-width: 540px;
}

/* Waitlist Form */
.waitlist-form-container {
  width: 100%;
  max-width: 480px;
  margin-bottom: 16px;
  position: relative;
}

.waitlist-form {
  display: flex;
  gap: 12px;
  width: 100%;
  position: relative;
  z-index: 2;
  transition: opacity var(--transition-normal), transform var(--transition-normal);
}

.input-group {
  position: relative;
  flex: 1;
  display: flex;
  align-items: center;
}

.email-icon {
  position: absolute;
  left: 16px;
  color: var(--text-light);
  pointer-events: none;
  transition: color var(--transition-fast);
}

#email-input {
  width: 100%;
  height: 52px;
  padding: 0 16px 0 48px;
  font-family: var(--font-sans);
  font-size: 15px;
  color: var(--text-dark);
  background-color: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  outline: none;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-fast);
}

#email-input:hover {
  border-color: var(--border-color-hover);
}

#email-input:focus {
  border-color: var(--primary-green);
  box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.12), var(--shadow-sm);
}

#email-input:focus + .email-icon {
  color: var(--primary-green);
}

/* Primary CTA Button */
.btn-primary {
  height: 52px;
  padding: 0 24px;
  background-color: var(--primary-green);
  color: var(--bg-white);
  border: none;
  border-radius: 12px;
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 4px 14px rgba(34, 197, 94, 0.25);
  transition: all var(--transition-fast);
  position: relative;
  overflow: hidden;
}

.btn-primary:hover {
  background-color: var(--primary-green-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(34, 197, 94, 0.35);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-arrow {
  transition: transform var(--transition-fast);
}

.btn-primary:hover .btn-arrow {
  transform: translateX(3px);
}

/* Spinner Loader for Submit Button */
.btn-loader {
  display: none;
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: var(--bg-white);
  animation: spin 0.8s linear infinite;
  position: absolute;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.form-helper-text {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 12px;
  margin-left: 4px;
}

/* Host CTA Banner */
.host-cta-banner {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
  padding: 8px 4px;
}

.host-icon-wrapper {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: #F0FDF4;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-green);
  flex-shrink: 0;
}

.host-icon-svg {
  display: block;
}

.host-cta-content {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  line-height: 1;
}

.host-cta-text {
  color: var(--text-secondary);
  font-weight: 500;
}

.host-cta-link {
  color: var(--primary-green);
  font-weight: 600;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: color var(--transition-fast);
}

.host-cta-link:hover {
  color: var(--primary-green-hover);
}

.chevron-svg {
  transition: transform var(--transition-fast);
}

.host-cta-link:hover .chevron-svg {
  transform: translateX(2px);
}

/* Success Message Area */
.success-message {
  display: none; /* Shown dynamically via JS */
  align-items: flex-start;
  gap: 16px;
  background-color: var(--bg-white);
  border: 1px solid rgba(34, 197, 94, 0.3);
  padding: 20px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(34, 197, 94, 0.06);
  opacity: 0;
  transform: scale(0.95);
  transition: all var(--transition-bounce);
}

.success-message.show {
  display: flex;
  opacity: 1;
  transform: scale(1);
}

.success-icon-container {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--primary-green-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-green);
  flex-shrink: 0;
}

.success-content {
  flex: 1;
}

.success-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.success-desc {
  font-size: 14px;
  line-height: 1.5;
  color: var(--text-secondary);
}

/* Minimal Features Footer */
.hero-features-footer {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 64px;
  border-top: 1px solid rgba(226, 232, 240, 0.6);
  padding-top: 24px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-green);
  flex-shrink: 0;
}

.feature-svg {
  display: block;
}

.feature-label {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
}

.feature-divider {
  width: 4px;
  height: 4px;
  background-color: var(--border-color);
  border-radius: 50%;
}

/* --- Right Column: Mockup & Layout --- */
.hero-visual {
  position: sticky;
  top: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10;
  width: 100%;
}

.hero-visual-inner {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Glow behind phone */
.visual-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(34, 197, 94, 0.08) 0%, transparent 70%);
  z-index: 1;
  pointer-events: none;
}

/* Phone Mockup Frame */
.phone-mockup, .phone-mockup-wrapper {
  position: relative;
  width: 336px;
  height: 670px;
  z-index: 2;
  animation: floatPhone 6s ease-in-out infinite;
}

.phone-mockup {
  background: #000000;
  border-radius: 48px;
  padding: 10px; /* Bezel size */
  box-shadow: var(--shadow-premium), 0 30px 60px -15px rgba(15, 23, 42, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.phone-mockup-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 25px 50px rgba(15, 23, 42, 0.15));
}

.host-phone-image {
  transform: scale(1.36) !important;
  transform-origin: center center !important;
}

/* Floating animation for device */
@keyframes floatPhone {
  0%, 100% { transform: translateY(0px) rotate(0.5deg); }
  50% { transform: translateY(-12px) rotate(-0.5deg); }
}

.phone-inner {
  position: relative;
  width: 100%;
  height: 100%;
  background-color: var(--bg-white);
  border-radius: 38px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* Phone Status Bar */
.phone-status-bar {
  height: 40px;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  z-index: 10;
  position: relative;
}

.phone-time {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: -0.2px;
  color: var(--text-dark);
}

.phone-notch {
  width: 100px;
  height: 20px;
  background-color: #000000;
  border-bottom-left-radius: 14px;
  border-bottom-right-radius: 14px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
}

.phone-icons {
  display: flex;
  align-items: center;
  gap: 5px;
  color: var(--text-dark);
}

/* App Screen Content */
.app-screen {
  flex: 1;
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background-color: #F8FAFC;
}

/* Map visual */
.app-map {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.map-svg-background {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

/* Location pulse dot */
.user-pulse-marker {
  position: absolute;
  width: 24px;
  height: 24px;
  transform: translate(-50%, -50%);
  z-index: 2;
}

.pulse-dot {
  width: 10px;
  height: 10px;
  background-color: #3B82F6;
  border-radius: 50%;
  border: 2px solid #FFFFFF;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 8px rgba(59, 130, 246, 0.6);
}

.pulse-ring {
  border: 3px solid rgba(59, 130, 246, 0.35);
  border-radius: 30px;
  height: 30px;
  width: 30px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: pulsate 1.8s ease-out infinite;
  opacity: 0;
}

@keyframes pulsate {
  0% { transform: translate(-50%, -50%) scale(0.1); opacity: 0.0; }
  50% { opacity: 0.8; }
  100% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.0; }
}

/* Custom interactive markers on Map */
.map-marker {
  position: absolute;
  transform: translate(-50%, -100%);
  background-color: var(--bg-white);
  border: 1px solid rgba(15, 23, 42, 0.1);
  padding: 6px 10px;
  border-radius: 9999px;
  box-shadow: var(--shadow-md), 0 4px 10px rgba(15, 23, 42, 0.06);
  cursor: pointer;
  z-index: 3;
  transition: all var(--transition-bounce);
  outline: none;
}

.marker-price {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  color: var(--text-dark);
  letter-spacing: -0.2px;
  display: flex;
  align-items: baseline;
}

.price-unit {
  font-size: 9px;
  font-weight: 500;
  color: var(--text-muted);
  margin-left: 1px;
}

/* Selected active marker styles */
.map-marker.active {
  background-color: var(--primary-green);
  color: var(--bg-white);
  border-color: var(--primary-green);
  transform: translate(-50%, -100%) scale(1.1);
  box-shadow: 0 8px 20px rgba(34, 197, 94, 0.3);
  z-index: 5;
}

.map-marker.active .marker-price {
  color: var(--bg-white);
}

.map-marker.active .price-unit {
  color: rgba(255, 255, 255, 0.8);
}

.map-marker:hover {
  transform: translate(-50%, -100%) scale(1.08);
}

.map-marker.active:hover {
  transform: translate(-50%, -100%) scale(1.12);
}

/* Add a triangle indicator to marker */
.map-marker::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid var(--bg-white);
  transition: border-top-color var(--transition-fast);
}

.map-marker.active::after {
  border-top-color: var(--primary-green);
}

/* Floating Search Bar on App Mockup */
.app-search-bar {
  position: absolute;
  top: 56px;
  left: 16px;
  right: 16px;
  height: 46px;
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(226, 232, 240, 0.8);
  border-radius: 14px;
  box-shadow: var(--shadow-lg);
  z-index: 6;
  display: flex;
  align-items: center;
  padding: 0 14px;
  gap: 10px;
}

.search-icon {
  color: var(--text-muted);
  display: flex;
  align-items: center;
}

.search-placeholder {
  flex: 1;
  font-size: 13px;
  color: var(--text-secondary);
  font-weight: 500;
}

.filter-btn {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background-color: var(--bg-muted);
  color: var(--text-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-color);
  cursor: pointer;
}

/* Floating status indicators */
.floating-badge {
  position: absolute;
  padding: 6px 12px;
  background-color: rgba(15, 23, 42, 0.9);
  backdrop-filter: blur(8px);
  color: #FFFFFF;
  font-size: 10px;
  font-weight: 600;
  border-radius: 9999px;
  box-shadow: var(--shadow-md);
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 6px;
  pointer-events: none;
}

.map-live-indicator {
  top: 114px;
  left: 16px;
  background-color: rgba(255, 255, 255, 0.95);
  border: 1px solid var(--border-color);
  color: var(--text-dark);
}

.map-popular-indicator {
  top: 200px;
  right: 16px;
}

/* Pulse Green Indicator */
.pulse-green {
  width: 6px;
  height: 6px;
  background-color: var(--primary-green);
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 6px var(--primary-green);
  animation: pulseGreenAnim 1.6s infinite;
}

@keyframes pulseGreenAnim {
  0% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.3); opacity: 0.5; }
  100% { transform: scale(1); opacity: 1; }
}

/* Floating Bottom Card: Spot details */
.app-detail-card {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--bg-white);
  border-top-left-radius: 24px;
  border-top-right-radius: 24px;
  box-shadow: 0 -10px 30px rgba(15, 23, 42, 0.08);
  z-index: 7;
  padding: 16px 20px 24px 20px;
  transition: transform var(--transition-bounce);
}

.card-drag-indicator {
  width: 36px;
  height: 4px;
  background-color: var(--border-color);
  border-radius: 9999px;
  margin: 0 auto 16px auto;
}

.spot-header {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 12px;
}

.spot-visual-wrapper {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}

.spot-icon-bg {
  width: 100%;
  height: 100%;
  background-color: rgba(34, 197, 94, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-green);
  transition: all var(--transition-normal);
}

.spot-titles {
  display: flex;
  flex-direction: column;
}

.spot-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  color: var(--text-dark);
  letter-spacing: -0.2px;
}

.spot-meta {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  color: var(--text-secondary);
  margin-top: 1px;
}

.spot-rating {
  font-weight: 600;
  color: #F59E0B; /* Golden Orange star */
}

.meta-dot {
  color: var(--text-light);
}

.spot-stats {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
}

.stat-badge {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 4px 8px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 500;
}

.stat-badge.availability {
  background-color: var(--bg-muted);
  color: var(--text-secondary);
}

.stat-badge.security {
  background-color: var(--bg-muted);
  color: var(--text-secondary);
}

/* Booking Row inside app */
.booking-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--border-color);
  padding-top: 14px;
}

.price-container {
  display: flex;
  align-items: baseline;
}

.price-value {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 20px;
  color: var(--text-dark);
}

.price-lbl {
  font-size: 12px;
  color: var(--text-secondary);
  margin-left: 2px;
}

/* App CTA Reservation Button */
.btn-app-reserve {
  height: 42px;
  padding: 0 18px;
  background-color: var(--text-dark);
  color: var(--bg-white);
  border: none;
  border-radius: 10px;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all var(--transition-fast);
}

.btn-app-reserve:hover {
  background-color: #1E293B; /* Slate 800 */
  transform: translateY(-0.5px);
}

.btn-app-reserve:active {
  transform: translateY(0);
}

/* Booking success inside the phone app visual */
.btn-app-reserve .reserve-success-text {
  display: none;
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.btn-app-reserve.reserved {
  background-color: var(--primary-green);
  color: var(--bg-white);
  box-shadow: 0 4px 12px rgba(34, 197, 94, 0.2);
  pointer-events: none;
}

.btn-app-reserve.reserved .reserve-text {
  display: none;
}

.btn-app-reserve.reserved .reserve-success-text {
  display: inline-block;
  opacity: 1;
}

/* Simulation progress line for reserving */
.reserve-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  background-color: var(--primary-green);
  width: 0%;
}

.btn-app-reserve.loading .reserve-progress {
  animation: loadProgress 1s ease-in-out forwards;
}

@keyframes loadProgress {
  to { width: 100%; }
}

.phone-home-indicator {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 5px;
  background-color: rgba(0, 0, 0, 0.8);
  border-radius: 9999px;
  z-index: 10;
}

/* --- Entrance & Timing Animations --- */
.fade-in-up {
  opacity: 0;
  transform: translateY(16px);
  animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.fade-in-right {
  opacity: 0;
  transform: translateX(20px);
  animation: fadeInRight 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInRight {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}


/* --- Host Page Specifics --- */
.badge-icon-wrapper {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: var(--primary-green-soft);
  color: var(--primary-green);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 4px;
}

.badge-icon-wrapper svg {
  display: block;
}

.text-accent {
  color: var(--primary-green);
}

.host-bullets-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 40px;
  width: 100%;
  max-width: 480px;
}

.bullet-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.bullet-icon-wrapper {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #F0FDF4;
  color: var(--primary-green);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(34, 197, 94, 0.04);
}

.bullet-icon-wrapper svg {
  display: block;
}

.bullet-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.bullet-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  color: var(--text-dark);
  margin-bottom: 2px;
}

.bullet-desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.4;
}

.host-trust-footer {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 64px;
  border-top: 1px solid rgba(226, 232, 240, 0.6);
  padding-top: 24px;
  width: 100%;
  max-width: 480px;
}

.trust-badge-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.trust-icon {
  color: var(--primary-green);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.trust-text-stack {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}

.trust-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dark);
}

.trust-sublabel {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
}

.trust-badge-divider {
  width: 1px;
  height: 24px;
  background-color: var(--border-color);
}


/* ==========================================================================
   Responsive Breakpoints & Adjustments
   ========================================================================== */

/* Tablet & Mobile Layouts */
@media (max-width: 1024px) {
  .hero-container {
    gap: 48px;
  }
  
  .hero-headline {
    font-size: 44px;
  }
}

@media (max-width: 900px) {
  .desktop-only {
    display: none;
  }

  .hero-container {
    grid-template-columns: 1fr;
    gap: 64px;
    text-align: center;
  }

  .hero-content {
    align-items: center;
  }

  .hero-subheadline {
    margin-left: auto;
    margin-right: auto;
  }

  .waitlist-form-container {
    margin-left: auto;
    margin-right: auto;
  }

  .host-cta-banner {
    justify-content: center;
  }

  .hero-features-footer {
    justify-content: center;
    width: 100%;
  }

  .hero-visual {
    position: relative;
    top: auto;
  }

  .phone-mockup, .phone-mockup-wrapper {
    margin: 0 auto;
  }

  .host-bullets-list {
    margin-left: auto;
    margin-right: auto;
  }

  .host-trust-footer {
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 500px) {
  .navbar {
    height: 70px;
    width: calc(100% - 32px);
  }
  
  .hero-section {
    padding: 130px 0 80px 0;
  }

  .hero-headline {
    font-size: 34px;
    letter-spacing: -1.2px;
  }

  .hero-subheadline {
    font-size: 15px;
    line-height: 1.5;
  }

  .waitlist-form {
    flex-direction: column;
    gap: 12px;
  }

  .btn-primary {
    width: 100%;
  }

  .hero-features-footer {
    flex-direction: column;
    gap: 12px;
    align-items: center;
  }

  .feature-divider {
    display: none;
  }
  
  .phone-mockup, .phone-mockup-wrapper {
    width: 300px;
    height: 600px;
  }
  
  .app-search-bar {
    top: 50px;
  }

  .host-trust-footer {
    flex-direction: column;
    gap: 16px;
    align-items: center;
  }

  .trust-badge-divider {
    display: none;
  }
}
