:root {
  --dining: #D4E820;
  --travel: #F89030;
  --nightlife: #E4388D;
  --movies: #8830D8;
  --tbd: #20C8A0;

  --bg: #FFFFFF;
  --surface: #F4F5F7;
  --surface-2: #E8EAF0;
  --text-primary: #0F1A2E;
  --text-sec: #6B7A8E;
  --border: #E2E5EA;
  --footer: #0F1A2E;

  --font-display: 'Plus Jakarta Sans', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  --spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);

  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-pill: 999px;
}

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

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.5;
  color: var(--text-primary);
  background: var(--bg);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
a:hover { text-decoration: underline; }
button { font-family: inherit; font-size: inherit; cursor: pointer; border: none; background: none; }

.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px clamp(20px, 5vw, 64px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.brand-logo { width: 32px; height: 32px; }
.brand-wordmark {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  letter-spacing: -0.01em;
  color: var(--text-primary);
}

.lang-toggle {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--text-sec);
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border);
  background: var(--bg);
  transition: color 200ms var(--ease-out), border-color 200ms var(--ease-out);
}
.lang-toggle:hover {
  color: var(--text-primary);
  border-color: var(--text-primary);
}

main { flex: 1; }

.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: clamp(32px, 8vw, 72px) clamp(20px, 5vw, 64px) clamp(40px, 8vw, 64px);
  max-width: 720px;
  margin: 0 auto;
  width: 100%;
}

.hero-logo {
  width: clamp(140px, 28vw, 200px);
  height: clamp(140px, 28vw, 200px);
  margin-bottom: 24px;
  filter: drop-shadow(0 12px 32px rgba(228, 56, 141, 0.18));
  animation: fadeUp 700ms var(--spring) both;
}

.tagline {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(28px, 5vw, 48px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  margin-bottom: 16px;
  animation: fadeUp 700ms var(--spring) 80ms both;
}

.subhead {
  font-size: clamp(15px, 1.6vw, 18px);
  line-height: 1.55;
  color: var(--text-sec);
  max-width: 540px;
  margin: 0 auto 32px;
  animation: fadeUp 700ms var(--spring) 160ms both;
}

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

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

.waitlist {
  width: 100%;
  max-width: 480px;
  animation: fadeUp 700ms var(--spring) 240ms both;
}

.waitlist-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}

.waitlist input[type="email"] {
  flex: 1;
  min-width: 220px;
  padding: 14px 18px;
  font-family: inherit;
  font-size: 15px;
  color: var(--text-primary);
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  outline: none;
  transition: border-color 200ms var(--ease-out), box-shadow 200ms var(--ease-out);
}
.waitlist input[type="email"]::placeholder { color: var(--text-sec); }
.waitlist input[type="email"]:focus {
  border-color: var(--nightlife);
  box-shadow: 0 0 0 3px rgba(228, 56, 141, 0.14);
}

.btn-primary {
  padding: 14px 24px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  color: white;
  background: var(--nightlife);
  border-radius: var(--radius-pill);
  transition: transform 120ms var(--ease-out), box-shadow 200ms var(--ease-out);
  box-shadow: 0 4px 14px rgba(228, 56, 141, 0.25);
  white-space: nowrap;
}
.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(228, 56, 141, 0.35);
}
.btn-primary:active { transform: scale(0.96); }
.btn-primary:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.form-success,
.form-error {
  margin-top: 16px;
  padding: 12px 16px;
  border-radius: var(--radius-md);
  font-size: 14px;
  font-weight: 500;
}
.form-success {
  background: rgba(32, 200, 160, 0.12);
  color: #0a8a6c;
}
.form-error {
  background: rgba(228, 56, 141, 0.10);
  color: var(--nightlife);
}

.coming-soon {
  padding: clamp(24px, 4vw, 40px) clamp(20px, 5vw, 64px) clamp(40px, 6vw, 56px);
  text-align: center;
  font-size: 16px;
  color: var(--text-sec);
}

.site-footer {
  background: var(--footer);
  color: white;
  padding: 28px clamp(20px, 5vw, 64px);
  text-align: center;
  font-size: 14px;
}
.site-footer a { color: white; opacity: 0.9; }
.site-footer a:hover { opacity: 1; }
.site-footer .sep { opacity: 0.35; margin: 0 12px; }

@media (max-width: 480px) {
  .waitlist-row { flex-direction: column; }
  .waitlist input[type="email"], .btn-primary { width: 100%; }
  .site-footer .sep { margin: 0 8px; }
}
