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

:root {
  --teal: #00b3b3;
  --teal-dark: #009999;
  --dark: #0a0e27;
  --gray: #64748b;
  --light-gray: #f1f5f9;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #ffffff;
  color: var(--dark);
  margin: 0;
  padding: 0;
  min-height: 100vh;
  overflow-x: hidden;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 179, 179, 0.1);
  z-index: 100;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--teal);
  letter-spacing: -0.5px;
}

.logo-img {
  height: 32px;
  width: auto;
  display: block;
}

.nav-badge {
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  color: white;
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hero {
  padding: 8rem 2rem 6rem;
  text-align: center;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: linear-gradient(180deg, #f0feff 0%, #fafeff 40%, #ffffff 100%);
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at top, rgba(0, 179, 179, 0.08), transparent 65%);
  z-index: 0;
}

.hero-content {
  max-width: 920px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 0 1.5rem;
}

.launch-badge {
  display: inline-block;
  background: rgba(0, 179, 179, 0.08);
  color: #2d3748;
  padding: 0.5rem 1.25rem;
  border-radius: 25px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 2rem;
  border: 1px solid rgba(0, 179, 179, 0.15);
}

h1 {
  font-size: 3.75rem;
  font-weight: 700;
  color: #1a202c;
  margin-bottom: 2rem;
  line-height: 1.15;
  letter-spacing: -1.5px;
}

.gradient-text {
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
}

.hero-subtitle {
  font-size: 1.3rem;
  font-weight: 400;
  color: #4a5568;
  margin-bottom: 1rem;
  line-height: 1.65;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.hero-tagline {
  font-size: 0.95rem;
  font-weight: 400;
  color: #718096;
  margin-bottom: 3.5rem;
  font-style: italic;
}

#waitlistContainer {
  margin: 0 0 1.25rem;
}

#emailForm {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: nowrap;
  max-width: 620px;
  margin: 0 auto;
}

.waitlist-note {
  margin-top: 1.25rem;
  margin-bottom: 3.5rem;
  font-size: 0.875rem;
  color: #718096;
}

input[type="email"],
input[type="text"] {
  padding: 1rem 1.5rem;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  font-size: 1rem;
  font-family: inherit;
  transition: all 0.3s ease;
  flex: 1;
  min-width: 0;
  background: white;
  height: 56px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

input[type="email"]:focus,
input[type="text"]:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(0, 179, 179, 0.1), 0 1px 3px rgba(0, 0, 0, 0.05);
}

button {
  padding: 1rem 2rem;
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  color: white;
  border: none;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: inherit;
  box-shadow: 0 4px 14px rgba(0, 179, 179, 0.3), 0 2px 6px rgba(0, 179, 179, 0.2);
  height: 56px;
  white-space: nowrap;
}

button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 179, 179, 0.4), 0 3px 8px rgba(0, 179, 179, 0.25);
}

button:active {
  transform: translateY(0);
}

.demo-cta {
  margin: 0 auto 0;
  padding: 0.875rem 2rem;
  font-size: 0.9375rem;
  background: transparent;
  color: #4a5568;
  border: 1.5px solid #cbd5e0;
  box-shadow: none;
  display: inline-block;
  font-weight: 500;
  height: auto;
}

.demo-cta:hover {
  background: rgba(0, 0, 0, 0.02);
  border-color: #718096;
  color: #2d3748;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
  transform: translateY(0);
}

.how-it-works {
  margin: 0 auto 4rem;
  max-width: 720px;
  padding: 0 1.5rem;
}

.how-it-works p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #718096;
  font-weight: 300;
  margin: 0;
  text-align: center;
}

.success-message {
  background: linear-gradient(135deg, #d4edda, #c3e6cb);
  color: #155724;
  padding: 1.25rem 2rem;
  border-radius: 12px;
  margin: 2rem auto 1.5rem;
  font-weight: 500;
  max-width: 500px;
  box-shadow: 0 4px 14px rgba(21, 87, 36, 0.1);
}

.success-message p {
  margin: 0;
}

.intent-card {
  background: white;
  border: 1.5px solid rgba(0, 179, 179, 0.2);
  border-radius: 14px;
  padding: 1.75rem;
  margin: 1.5rem auto 2rem;
  max-width: 560px;
  box-shadow: 0 2px 12px rgba(0, 179, 179, 0.08);
  animation: fadeIn 0.4s ease;
}

.intent-question {
  font-size: 1rem;
  font-weight: 600;
  color: #2d3748;
  margin: 0 0 1.25rem 0;
  text-align: center;
}

.intent-buttons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}

.intent-btn {
  padding: 0.75rem 1rem;
  background: white;
  color: #4a5568;
  border: 1.5px solid #e2e8f0;
  border-radius: 10px;
  font-size: 0.9375rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: none;
  height: auto;
  white-space: nowrap;
}

.intent-btn:hover {
  background: rgba(0, 179, 179, 0.05);
  border-color: var(--teal);
  color: var(--teal-dark);
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(0, 179, 179, 0.15);
}

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

.intent-thanks {
  color: var(--teal-dark);
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
  margin: 0;
  animation: fadeIn 0.3s ease;
}

.chat-intent-buttons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.625rem;
  margin-top: 0.75rem;
}

.chat-intent-btn {
  padding: 0.625rem 0.875rem;
  background: white;
  color: #4a5568;
  border: 1.5px solid #e2e8f0;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: none;
  height: auto;
  white-space: nowrap;
}

.chat-intent-btn:hover {
  background: rgba(0, 179, 179, 0.05);
  border-color: var(--teal);
  color: var(--teal-dark);
  transform: translateY(-1px);
  box-shadow: 0 2px 6px rgba(0, 179, 179, 0.12);
}

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

.chat-intent-thanks {
  color: var(--teal-dark);
  font-size: 0.9375rem;
  font-weight: 600;
  margin: 0.75rem 0 0;
  padding: 0.75rem 1rem;
  background: rgba(0, 179, 179, 0.05);
  border-radius: 8px;
  animation: fadeIn 0.3s ease;
}

.chat-intent-custom {
  margin-top: 0.75rem;
  display: flex;
  gap: 0.625rem;
  animation: fadeIn 0.3s ease;
}

.chat-intent-input {
  flex: 1;
  padding: 0.75rem 1rem;
  border: 1.5px solid #e2e8f0;
  border-radius: 8px;
  font-size: 0.9375rem;
  font-family: inherit;
  transition: all 0.2s ease;
  background: white;
  height: auto;
  min-width: 0;
}

.chat-intent-input:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(0, 179, 179, 0.1);
}

.chat-intent-submit {
  padding: 0.75rem 1.5rem;
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 0.9375rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 2px 8px rgba(0, 179, 179, 0.25);
  height: auto;
  white-space: nowrap;
}

.chat-intent-submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 179, 179, 0.35);
}

.chat-intent-submit:active {
  transform: translateY(0);
}

.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin-top: 5rem;
  padding: 3rem 0;
}

.feature-item {
  text-align: center;
  padding: 2rem 1.5rem;
  background: white;
  border-radius: 16px;
  border: 1px solid rgba(0, 179, 179, 0.1);
  cursor: default;
}

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.feature-item h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.5rem;
}

.feature-item p {
  font-size: 0.95rem;
  color: var(--gray);
  line-height: 1.5;
  margin: 0;
}


.footer {
  text-align: center;
  padding: 2rem;
  background: var(--light-gray);
  color: var(--gray);
  font-size: 0.875rem;
  border-top: 1px solid rgba(0, 179, 179, 0.1);
}

#chatSection {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(10, 14, 39, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  backdrop-filter: blur(8px);
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.chat-container {
  background: white;
  border-radius: 20px;
  width: 90%;
  max-width: 650px;
  height: 85vh;
  max-height: 750px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 25px 70px rgba(10, 14, 39, 0.4);
  animation: slideUp 0.4s ease;
}

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

.chat-header {
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  color: white;
  padding: 1.5rem 2rem;
  border-radius: 20px 20px 0 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.chat-header h2 {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0;
}

.close-btn {
  background: transparent;
  color: white;
  border: none;
  font-size: 1.75rem;
  padding: 0;
  width: 36px;
  height: 36px;
  cursor: pointer;
  transition: all 0.2s;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.close-btn:hover {
  background-color: rgba(255, 255, 255, 0.2);
  transform: rotate(90deg);
  box-shadow: none;
}

#chatWindow {
  flex: 1;
  overflow-y: auto;
  padding: 2rem;
  background: #fafbfc;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.message {
  display: flex;
  flex-direction: row;
  gap: 0.75rem;
  animation: messageSlide 0.3s ease;
}

.message-avatar {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.message-body {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex: 1;
  max-width: 100%;
}

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

.message strong {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--gray);
}

.message p {
  margin: 0;
  padding: 1rem 1.25rem;
  border-radius: 12px;
  line-height: 1.6;
  background: white;
  border: 1px solid #e2e8f0;
}

.user-message {
  align-self: flex-end;
  max-width: 70%;
  margin-left: auto;
  flex-direction: row;
}

.user-message .message-body {
  display: flex;
  flex-direction: column;
}

.user-message p {
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  color: white;
  border: none;
  border-radius: 18px 18px 4px 18px;
  text-align: left;
}

.user-avatar {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  flex-shrink: 0;
  margin-top: 0.25rem;
  object-fit: cover;
}

.fyn-message {
  align-self: flex-start;
  max-width: 90%;
}

.message-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.intro-text {
  padding: 0.75rem 1rem;
  background: white;
  border-radius: 10px;
  border: 1px solid #e2e8f0;
  line-height: 1.6;
  margin: 0;
}

.restaurant-card {
  background: white;
  border: 2px solid #e2e8f0;
  border-radius: 14px;
  padding: 1.25rem;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  line-height: 1.6;
}

.restaurant-card:hover {
  border-color: var(--teal);
  box-shadow: 0 8px 20px rgba(0, 179, 179, 0.15);
  transform: translateY(-3px);
}

.restaurant-name {
  margin: 0 0 0.75rem 0;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.4;
}

.restaurant-description {
  margin: 0 0 0.5rem 0;
  line-height: 1.6;
  color: #4a5568;
  font-size: 0.95rem;
}

.restaurant-perfect {
  margin: 0 0 0.5rem 0;
  font-size: 0.875rem;
  color: var(--gray);
  font-weight: 500;
}

.restaurant-price {
  margin: 0 0 0.75rem 0;
  font-size: 0.875rem;
  color: var(--gray);
  font-weight: 500;
}

.booking-btn {
  display: inline-block;
  background: linear-gradient(135deg, var(--teal) 0%, #00a0a0 100%);
  color: white;
  padding: 10px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.875rem;
  margin-top: 0.5rem;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 179, 179, 0.2);
}

.booking-btn:hover {
  background: linear-gradient(135deg, #00a0a0 0%, var(--teal) 100%);
  box-shadow: 0 4px 12px rgba(0, 179, 179, 0.3);
  transform: translateY(-2px);
}

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

.availability-section {
  margin-top: 1rem;
  padding-top: 0.75rem;
  border-top: 1px solid #e2e8f0;
}

.availability-label {
  margin: 0 0 0.5rem 0;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--dark);
}

.availability-loading {
  margin-top: 1rem;
  padding: 0.75rem;
  background: #f7fafc;
  border-radius: 8px;
}

.checking-text {
  margin: 0;
  font-size: 0.875rem;
  color: var(--gray);
  font-style: italic;
}

.time-slots {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.time-slot-btn {
  display: inline-block;
  background: white;
  color: var(--teal);
  border: 2px solid var(--teal);
  padding: 8px 16px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.875rem;
  transition: all 0.3s ease;
}

.time-slot-btn:hover {
  background: var(--teal);
  color: white;
  box-shadow: 0 4px 12px rgba(0, 179, 179, 0.25);
  transform: translateY(-2px);
}

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

.contact-info {
  margin-top: 0.75rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.contact-link {
  display: inline-block;
  background: white;
  color: var(--dark);
  border: 1px solid #e2e8f0;
  padding: 8px 16px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.875rem;
  transition: all 0.3s ease;
}

.contact-link:hover {
  background: #f7fafc;
  border-color: var(--teal);
  color: var(--teal);
  transform: translateY(-2px);
  box-shadow: 0 2px 8px rgba(0, 179, 179, 0.1);
}

.contact-link:active {
  transform: translateY(0);
}

.chat-input-container {
  padding: 1.5rem;
  background: white;
  border-top: 1px solid #e2e8f0;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border-radius: 0 0 20px 20px;
  position: relative;
}

.chat-input-container input {
  flex: 1;
  min-width: 0;
  border-radius: 10px;
  padding: 0.875rem 1rem;
  border: 1px solid #e2e8f0;
  font-size: 1rem;
}

.chat-input-container button {
  padding: 0.875rem 1.5rem;
  border-radius: 10px;
  flex-shrink: 0;
  width: auto;
  white-space: nowrap;
}

.date-picker-message {
  background: #f8fbfb;
  border: 1.5px solid var(--teal);
  border-radius: 12px;
  padding: 1.25rem;
  margin: 0.5rem 0;
  animation: fadeIn 0.3s ease;
}

.date-picker-message p {
  margin: 0 0 1rem 0;
  font-weight: 500;
  color: var(--teal-dark);
}

.date-picker-input-wrapper {
  margin-top: 0.75rem;
}

.date-picker-input-wrapper input {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  font-size: 1rem;
  cursor: pointer;
  background: white;
  font-family: inherit;
}

.date-picker-input-wrapper input:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(0, 179, 179, 0.1);
}

.flatpickr-calendar {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  border-radius: 12px;
  margin-top: 8px !important;
  border: 1px solid #e2e8f0;
}

.flatpickr-day.selected {
  background: var(--teal) !important;
  border-color: var(--teal) !important;
}

.flatpickr-day.selected:hover {
  background: var(--teal-dark) !important;
  border-color: var(--teal-dark) !important;
}

.flatpickr-day:hover {
  background: rgba(0, 179, 179, 0.1);
  border-color: rgba(0, 179, 179, 0.3);
}

.flatpickr-current-month .flatpickr-monthDropdown-months {
  background: var(--teal);
}

.flatpickr-time input:hover,
.flatpickr-time input:focus {
  background: rgba(0, 179, 179, 0.05);
}

.feedback-container {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 0.75rem;
  padding: 0.75rem;
  background-color: #f0f9f9;
  border-radius: 8px;
  border: 1px solid rgba(0, 179, 179, 0.15);
}

.feedback-container span {
  font-size: 0.875rem;
  color: var(--gray);
  font-weight: 500;
}

.feedback-btn {
  background: white;
  border: 1px solid #e2e8f0;
  padding: 0.5rem 0.9rem;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1.2rem;
  transition: all 0.2s;
  box-shadow: none;
}

.feedback-btn:hover {
  background-color: var(--teal);
  border-color: var(--teal);
  transform: scale(1.15);
  box-shadow: 0 2px 10px rgba(0, 179, 179, 0.25);
}

.feedback-btn:active {
  transform: scale(1);
}

.feedback-thanks {
  color: var(--teal);
  font-size: 0.875rem;
  font-weight: 600;
}

.hidden {
  display: none !important;
}

@media (max-width: 768px) {
  .navbar {
    padding: 1rem 1.5rem;
  }
  
  h1 {
    font-size: 2.5rem;
    letter-spacing: -1px;
    margin-bottom: 1.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.125rem;
    margin-bottom: 2.5rem;
  }
  
  .hero {
    padding: 6rem 1.5rem 4rem;
  }
  
  #emailForm {
    flex-wrap: wrap;
  }
  
  input[type="email"],
  button {
    width: 100%;
  }
  
  .features {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 3rem;
  }
  
  .chat-container {
    width: 100%;
    height: 100%;
    max-height: none;
    border-radius: 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
  }
  
  #chatSection.hidden + .chat-container {
    display: none;
  }
  
  #chatWindow {
    padding: 1.25rem;
    gap: 1.25rem;
  }
  
  .message {
    gap: 0.5rem;
  }
  
  .user-message {
    max-width: 85%;
  }
  
  .fyn-message {
    max-width: 95%;
  }
  
  .chat-header {
    padding: 1.25rem;
    border-radius: 0;
    position: sticky;
    top: 0;
    z-index: 10;
    /* Ensure header stays at top when keyboard opens, like WhatsApp */
  }
  
  .chat-header h3 {
    font-size: 1.125rem;
  }
  
  .chat-input-container {
    padding: 1rem;
    gap: 0.625rem;
    border-radius: 0;
    position: sticky;
    bottom: 0;
    z-index: 10;
    background: white;
    /* Keeps input at bottom when keyboard opens, like WhatsApp */
  }
  
  .chat-input-container input {
    font-size: 16px; /* Prevents zoom on iOS */
    padding: 0.75rem 0.875rem;
  }
  
  .chat-input-container button {
    padding: 0.75rem 1.125rem;
    font-size: 0.9375rem;
  }
  
  .restaurant-card {
    padding: 1rem;
  }
  
  .restaurant-name {
    font-size: 1rem;
  }
  
  .restaurant-description,
  .restaurant-perfect,
  .restaurant-price {
    font-size: 0.875rem;
  }
  
  .feedback-container {
    gap: 0.5rem;
  }
  
  .feedback-btn {
    width: 40px;
    height: 40px;
    font-size: 1.125rem;
  }
  
  .message-avatar {
    width: 28px;
    height: 28px;
  }
  
  .user-avatar {
    width: 28px;
    height: 28px;
  }
  
  input[type="email"] {
    min-width: 100%;
  }
  
  #emailForm {
    flex-direction: column;
  }
  
  .intent-buttons {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .chat-intent-buttons {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 1.875rem;
  }
  
  .launch-badge {
    font-size: 0.75rem;
    padding: 0.4rem 1rem;
  }
  
  /* Extra small mobile optimizations */
  #chatWindow {
    padding: 1rem;
    gap: 1rem;
  }
  
  .chat-input-container {
    padding: 0.75rem;
    gap: 0.5rem;
  }
  
  .chat-input-container input {
    padding: 0.625rem 0.75rem;
    font-size: 16px;
  }
  
  .chat-input-container button {
    padding: 0.625rem 0.875rem;
    font-size: 0.875rem;
  }
  
  .restaurant-card {
    padding: 0.875rem;
  }
  
  .restaurant-name {
    font-size: 0.9375rem;
  }
  
  .fyn-message p,
  .user-message p {
    font-size: 0.9375rem;
  }
  
  .intent-card h3,
  .intent-question {
    font-size: 0.9375rem;
  }
  
  .intent-btn {
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
  }
}
