/* Happy Hour Map — Marketing Site */
:root {
  --bg: #0a0a0a;
  --bg-alt: #111111;
  --bg-card: #161616;
  --border: #1f1f1f;
  --text: #e2e8f0;
  --text-dim: #94a3b8;
  --text-muted: #64748b;
  --teal: #00c4b8;
  --teal-bright: #2cd9cd;
  --orange: #ffa500;
  --amber: #f39c12;
  --navy: #0d4a50;
  --gradient: linear-gradient(135deg, #00c4b8 0%, #2cd9cd 50%, #ffa500 100%);
  --shadow-brand: 0 10px 40px -10px rgba(0, 196, 184, 0.35);
  --shadow-brand-hover: 0 18px 55px -12px rgba(0, 196, 184, 0.5);
  --grain: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='128' height='128'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/></filter><rect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/></svg>");
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  position: relative;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: var(--grain);
  opacity: 0.04;
  pointer-events: none;
  z-index: 1;
}

h1, h2, h3, h4 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

a {
  color: var(--teal-bright);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--orange);
}

img {
  max-width: 100%;
  display: block;
}

/* ===== NAV ===== */
nav.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
}

.nav-logo img {
  width: 38px;
  height: 38px;
  border-radius: 9px;
}

.nav-logo span {
  font-family: 'Montserrat', sans-serif;
  font-size: 20px;
  font-weight: 800;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

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

.nav-links a {
  color: var(--text-dim);
  font-size: 15px;
  font-weight: 500;
}

.nav-links a:hover {
  color: var(--text);
}

.nav-cta {
  background: var(--gradient);
  color: #0a0a0a !important;
  padding: 9px 18px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 14px;
  box-shadow: var(--shadow-brand);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-brand-hover);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  padding: 100px 32px 80px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  z-index: 2;
}

.hero h1 {
  font-size: clamp(36px, 6vw, 64px);
  margin-bottom: 24px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.hero h1 .gradient {
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero p.subhead {
  font-size: clamp(17px, 1.6vw, 21px);
  color: var(--text-dim);
  max-width: 680px;
  margin: 0 auto 40px;
}

.hero-cta-row {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.app-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #161616;
  border: 1px solid var(--border);
  color: var(--text);
  padding: 14px 22px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 15px;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), border-color 0.3s ease, box-shadow 0.3s ease;
}

.app-badge:hover {
  transform: translateY(-3px);
  border-color: var(--teal);
  box-shadow: var(--shadow-brand);
  color: var(--text);
}

.app-badge .badge-label {
  font-size: 11px;
  color: var(--text-muted);
  display: block;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.app-badge .badge-store {
  font-size: 17px;
  font-weight: 800;
}

/* ===== STORE BADGES (official Apple / Google Play look) ===== */
.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #000;
  color: #fff !important;
  border: 1px solid #a6a6a6;
  border-radius: 10px;
  padding: 10px 18px;
  min-width: 180px;
  text-decoration: none;
  font-family: -apple-system, 'Helvetica Neue', Arial, sans-serif;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease, border-color 0.3s ease;
}

.store-badge:hover {
  transform: translateY(-3px);
  border-color: #fff;
  box-shadow: 0 14px 40px -10px rgba(0, 196, 184, 0.45);
  color: #fff !important;
}

.store-badge-icon {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
}

.store-badge-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.store-badge-line1 {
  font-size: 11px;
  font-weight: 400;
  margin-bottom: 4px;
}

.store-badge-android .store-badge-line1 {
  font-size: 10px;
  letter-spacing: 1px;
}

.store-badge-line2 {
  font-size: 19px;
  font-weight: 600;
  letter-spacing: -0.5px;
}

.hero-image-wrap {
  margin-top: 24px;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 30px 80px -20px rgba(0, 196, 184, 0.25);
}

.hero-image-wrap img {
  width: 100%;
  height: auto;
}

/* ===== STATS BAR ===== */
.stats-bar {
  padding: 60px 32px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-alt);
  position: relative;
  z-index: 2;
}

.stats-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  text-align: center;
}

.stat-num {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 900;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
}

.stat-label {
  font-size: 14px;
  color: var(--text-dim);
  margin-top: 8px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ===== SECTIONS ===== */
section.content-section {
  padding: 100px 32px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

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

.section-eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  color: var(--teal-bright);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-header h2 {
  font-size: clamp(30px, 4vw, 44px);
  margin-bottom: 16px;
}

.section-header p {
  font-size: 18px;
  color: var(--text-dim);
  max-width: 640px;
  margin: 0 auto;
}

/* ===== FEATURES ===== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), border-color 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: var(--teal);
  box-shadow: var(--shadow-brand);
}

.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 13px;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 20px;
}

.feature-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.feature-card p {
  color: var(--text-dim);
  font-size: 15px;
}

/* ===== SCREENSHOTS ===== */
.screenshot-row {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  padding: 20px 4px 32px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--teal) var(--bg-card);
}

.screenshot-row::-webkit-scrollbar {
  height: 8px;
}

.screenshot-row::-webkit-scrollbar-track {
  background: var(--bg-card);
  border-radius: 4px;
}

.screenshot-row::-webkit-scrollbar-thumb {
  background: var(--teal);
  border-radius: 4px;
}

.screenshot-row img {
  flex: 0 0 auto;
  width: 260px;
  height: auto;
  aspect-ratio: 1080 / 2120;
  border-radius: 22px;
  border: 1px solid var(--border);
  box-shadow: 0 20px 50px -15px rgba(0, 196, 184, 0.3);
  scroll-snap-align: center;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
}

.screenshot-row img:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 28px 70px -15px rgba(0, 196, 184, 0.45);
}

@media (max-width: 760px) {
  .screenshot-row img { width: 220px; }
}

/* ===== HOW IT WORKS ===== */
.how-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 32px;
  counter-reset: step;
}

.how-step {
  text-align: center;
  padding: 24px;
  position: relative;
}

.how-step::before {
  counter-increment: step;
  content: counter(step);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--gradient);
  color: #0a0a0a;
  font-family: 'Montserrat', sans-serif;
  font-size: 22px;
  font-weight: 900;
  margin-bottom: 20px;
  box-shadow: var(--shadow-brand);
}

.how-step h3 {
  font-size: 19px;
  margin-bottom: 10px;
}

.how-step p {
  color: var(--text-dim);
  font-size: 15px;
}

/* ===== POPULAR CITIES GRID ===== */
.popular-cities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 14px;
}

.popular-city-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--text);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), border-color 0.3s ease, box-shadow 0.3s ease;
}

.popular-city-card:hover {
  transform: translateY(-3px);
  border-color: var(--teal);
  box-shadow: var(--shadow-brand);
  color: var(--text);
}

.popular-city-card h3 {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0;
}

.popular-city-card span {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 600;
  letter-spacing: 0.05em;
}

/* ===== FAQ ===== */
.faq-list {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px 28px;
  transition: border-color 0.3s ease;
}

.faq-item:hover {
  border-color: var(--teal);
}

.faq-item h3 {
  font-size: 17px;
  margin-bottom: 8px;
  color: var(--text);
}

.faq-item p {
  color: var(--text-dim);
  font-size: 15px;
}

/* ===== CTA SECTION ===== */
.cta-section {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 32px;
  text-align: center;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 196, 184, 0.05) 100%);
  border-top: 1px solid var(--border);
  position: relative;
  z-index: 2;
}

.cta-section h2 {
  font-size: clamp(30px, 4vw, 44px);
  margin-bottom: 20px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.cta-section h2 .gradient {
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.cta-section p {
  font-size: 18px;
  color: var(--text-dim);
  margin-bottom: 36px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== FOOTER ===== */
footer.site-footer {
  padding: 60px 32px 40px;
  border-top: 1px solid var(--border);
  background: var(--bg-alt);
  position: relative;
  z-index: 2;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-brand p {
  color: var(--text-dim);
  font-size: 14px;
  max-width: 320px;
}

.footer-col h4 {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col a {
  color: var(--text-dim);
  font-size: 14px;
}

.footer-col a:hover {
  color: var(--teal-bright);
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 32px;
  border-top: 1px solid var(--border);
  text-align: center;
  color: var(--text-muted);
  font-size: 13px;
}

/* ===== INNER PAGES ===== */
.page-hero {
  padding: 80px 32px 60px;
  text-align: center;
  border-bottom: 1px solid var(--border);
  position: relative;
  z-index: 2;
}

.page-hero h1 {
  font-size: clamp(34px, 5vw, 52px);
  margin-bottom: 16px;
}

.page-hero h1 .gradient {
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.page-hero p {
  font-size: 18px;
  color: var(--text-dim);
  max-width: 640px;
  margin: 0 auto;
}

.legal-content, .about-content {
  max-width: 760px;
  margin: 60px auto;
  padding: 0 32px;
  position: relative;
  z-index: 2;
}

.legal-content h2, .about-content h2 {
  font-size: 24px;
  margin-top: 40px;
  margin-bottom: 14px;
  color: var(--text);
}

.legal-content h2:first-child, .about-content h2:first-child {
  margin-top: 0;
}

.legal-content p, .about-content p {
  margin-bottom: 14px;
  color: var(--text-dim);
}

.legal-content ul, .about-content ul {
  margin: 14px 0 14px 24px;
  color: var(--text-dim);
}

.legal-content li, .about-content li {
  margin-bottom: 8px;
}

.legal-content strong, .about-content strong {
  color: var(--text);
}

/* ===== CONTACT ===== */
.contact-card {
  max-width: 560px;
  margin: 60px auto;
  padding: 40px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 18px;
  text-align: center;
  position: relative;
  z-index: 2;
}

.contact-card h2 {
  font-size: 24px;
  margin-bottom: 14px;
}

.contact-card p {
  color: var(--text-dim);
  margin-bottom: 24px;
}

.email-btn {
  display: inline-block;
  background: var(--gradient);
  color: #0a0a0a !important;
  padding: 14px 28px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 16px;
  box-shadow: var(--shadow-brand);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
}

.email-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-brand-hover);
  color: #0a0a0a !important;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 760px) {
  .nav-links { gap: 18px; }
  .nav-links a:not(.nav-cta) { display: none; }
  .hero { padding: 60px 20px 50px; }
  section.content-section { padding: 70px 20px; }
  .stats-inner { grid-template-columns: 1fr; gap: 24px; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .nav-inner { padding: 14px 20px; }
}

/* ===== FADE-UP ANIMATION ===== */
.fade-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
