/* ─── Design tokens (from Product/Design/CLAUDE.md) ─────────── */
:root {
  /* Paper + ink */
  --paper: #ffffff;
  --paper-soft: #f5f2ea;
  --paper-deep: #ece7dc;
  --ink: #382dc2;
  --ink-soft: #5046c5;
  --ink-mute: #8b86d6;
  --hairline: rgba(56, 45, 194, 0.15);
  --hairline-soft: rgba(56, 45, 194, 0.08);

  /* Accent */
  --accent: #f52a06;
  --accent-deep: #c21f00;

  /* Map palette */
  --map-land: #ece7dc;
  --map-land-2: #dcd4c2;
  --map-water: #c5d0dc;
  --map-road: #faf6ee;
  --map-road-line: rgba(56, 45, 194, 0.18);

  /* Category colors */
  --cat-music-bg: #fed4f0;
  --cat-music-fg: #b22789;
  --cat-outdoors-bg: #b6f7e5;
  --cat-outdoors-fg: #007e5f;
  --cat-food-bg: #fee8b5;
  --cat-food-fg: #8c6510;
  --cat-arts-bg: #ffd0c2;
  --cat-arts-fg: #b22206;
  --cat-sports-bg: #ddf0b5;
  --cat-sports-fg: #547314;
  --cat-nightlife-bg: #ddc5f2;
  --cat-nightlife-fg: #5226a2;
  --cat-wellness-bg: #c5eef2;
  --cat-wellness-fg: #047083;
  --cat-community-bg: #ffd7bf;
  --cat-community-fg: #b25622;

  /* Type */
  --font-display: "Bricolage Grotesque", system-ui, sans-serif;
  --font-body:
    "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* Radii */
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 20px;
  --r-xl: 28px;

  /* Spacing */
  --space-section: 120px;
  --container-max: 1200px;
  --container-pad: 32px;
}

/* ─── Reset + base ───────────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  padding: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  /* Sticky footer: keep the footer pinned to the bottom on short pages. */
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
img,
svg {
  display: block;
  max-width: 100%;
}
button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
}
input,
textarea,
select {
  font: inherit;
  color: inherit;
}
a {
  color: var(--ink);
  text-decoration: none;
}
a:hover {
  color: var(--accent);
}

/* ─── Typography ─────────────────────────────────────────────── */
h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin: 0;
}
h1 {
  font-size: clamp(40px, 6vw, 72px);
}
h2 {
  font-size: clamp(32px, 4vw, 48px);
}
h3 {
  font-size: clamp(22px, 2.5vw, 28px);
}
h4 {
  font-size: 18px;
  letter-spacing: -0.01em;
}
p {
  margin: 0;
}
.eyebrow {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.lede {
  font-size: clamp(18px, 1.6vw, 22px);
  color: var(--ink-soft);
  line-height: 1.5;
  max-width: 720px;
}

/* ─── Container ──────────────────────────────────────────────── */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

/* ─── Nav ────────────────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 0.5px solid var(--hairline-soft);
  z-index: 100;
}
.nav-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 14px var(--container-pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  text-decoration: none;
}
.nav-brand img {
  height: 36px;
  width: 36px;
}
.nav-brand-word {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.025em;
  line-height: 1;
  color: var(--ink);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
  padding: 0;
  margin: 0 0 0 auto;
}
.nav-links a {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  transition:
    background-color 0.15s ease,
    color 0.15s ease;
}
.nav-links a:hover {
  background: var(--paper-soft);
  color: var(--ink);
}
.nav-links a.is-active {
  color: var(--accent);
}

/* Solutions dropdown */
.nav-dropdown {
  position: relative;
}
.nav-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 8px 14px;
  border-radius: 999px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  background: transparent;
  border: 0;
  cursor: pointer;
  transition:
    background-color 0.15s ease,
    color 0.15s ease;
}
.nav-dropdown-toggle:hover {
  background: var(--paper-soft);
}
.nav-dropdown-toggle.is-active {
  color: var(--accent);
}
.nav-caret {
  width: 14px;
  height: 14px;
  transition: transform 0.15s ease;
}
.nav-dropdown:hover .nav-caret,
.nav-dropdown.is-open .nav-caret {
  transform: rotate(180deg);
}
.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  min-width: 200px;
  display: none;
  flex-direction: column;
  gap: 2px;
  padding: 6px;
  background: var(--paper);
  border: 0.5px solid var(--hairline);
  border-radius: 14px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}
.nav-dropdown-menu::before {
  content: "";
  position: absolute;
  top: -6px;
  left: 0;
  right: 0;
  height: 6px;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu,
.nav-dropdown.is-open .nav-dropdown-menu {
  display: flex;
}
.nav-dropdown-menu a {
  display: block;
  padding: 10px 14px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  transition:
    background-color 0.15s ease,
    color 0.15s ease;
}
.nav-dropdown-menu a:hover {
  background: var(--paper-soft);
}
.nav-dropdown-menu a.is-active {
  color: var(--accent);
}
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 18px;
  border-radius: 999px;
  background: transparent;
  border: 0.5px solid var(--hairline);
  color: var(--ink);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.01em;
  white-space: nowrap;
  transition:
    background-color 0.15s ease,
    border-color 0.15s ease,
    color 0.15s ease,
    transform 0.15s ease;
}
.nav-cta:hover {
  background: var(--paper-soft);
  border-color: var(--ink);
  color: var(--ink);
  transform: translateY(-1px);
}
.nav-hamburger {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 0.5px solid var(--hairline);
  align-items: center;
  justify-content: center;
}
.nav-hamburger svg {
  width: 20px;
  height: 20px;
  color: var(--ink);
}
.nav-hamburger:hover {
  background: var(--paper-soft);
}

/* Mobile menu */
.nav-mobile {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--paper);
  border-bottom: 0.5px solid var(--hairline);
  padding: 12px var(--container-pad) 20px;
}
.nav-mobile.is-open {
  display: block;
}
.nav-mobile ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}
.nav-mobile a {
  display: block;
  padding: 14px 8px;
  font-size: 17px;
  font-weight: 500;
  border-bottom: 0.5px solid var(--hairline-soft);
}
.nav-mobile a:last-child {
  border-bottom: 0;
}
.nav-mobile-label {
  padding: 14px 8px 6px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.nav-mobile-label + li a,
.nav-mobile ul li:nth-child(3) a,
.nav-mobile ul li:nth-child(4) a,
.nav-mobile ul li:nth-child(5) a {
  padding-left: 20px;
}

@media (max-width: 880px) {
  .nav-links {
    display: none;
  }
  .nav-cta {
    display: none;
  }
  .nav-hamburger {
    display: flex;
  }
}

/* ─── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.01em;
  transition:
    background-color 0.15s ease,
    color 0.15s ease,
    transform 0.15s ease;
  cursor: pointer;
  border: 0.5px solid transparent;
}
.btn-primary {
  background: var(--accent);
  color: #fff;
}
.btn-primary:hover {
  background: var(--accent-deep);
  color: #fff;
  transform: translateY(-1px);
}
.btn-tertiary {
  background: transparent;
  color: var(--ink);
  border-color: var(--hairline);
}
.btn-tertiary:hover {
  background: var(--paper-soft);
  color: var(--ink);
  border-color: var(--ink-mute);
}
.btn-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 500;
  font-size: 15px;
  color: var(--ink);
}
.btn-arrow:hover {
  color: var(--accent);
}
.btn-arrow::after {
  content: "→";
  transition: transform 0.15s ease;
}
.btn-arrow:hover::after {
  transform: translateX(3px);
}

/* ─── Sections ───────────────────────────────────────────────── */
.section {
  padding: var(--space-section) 0;
}
.section-sm {
  padding: 64px 0;
}
.section-soft {
  background: var(--paper-soft);
}
.section-header {
  max-width: 760px;
  margin-bottom: 56px;
}
.section-header .eyebrow {
  margin-bottom: 12px;
  display: block;
}
.section-header h2 {
  margin-bottom: 16px;
}

/* ─── Hero ───────────────────────────────────────────────────── */
.hero {
  padding: 80px 0 100px;
  position: relative;
}
.hero h1 {
  margin-bottom: 24px;
  max-width: 16ch;
}
.hero .lede {
  margin-bottom: 36px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}
.hero-eyebrow {
  color: var(--accent);
  margin-bottom: 18px;
  display: block;
}

/* ─── Product cards (Home) ───────────────────────────────────── */
.product-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.product-card {
  background: #fff;
  border: 0.5px solid var(--hairline);
  border-radius: var(--r-lg);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition:
    border-color 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
}
.product-card:hover {
  border-color: var(--ink-mute);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(56, 45, 194, 0.08);
}
.product-card-eyebrow {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.product-card h3 {
  font-size: 28px;
  line-height: 1.1;
}
.product-card p {
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.5;
}
.product-card .btn-arrow {
  margin-top: auto;
  padding-top: 4px;
}
.product-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
}
.product-card-icon.is-hospitality {
  background: var(--cat-arts-bg);
  color: var(--cat-arts-fg);
}
.product-card-icon.is-connect {
  background: var(--cat-outdoors-bg);
  color: var(--cat-outdoors-fg);
}
.product-card-icon.is-data {
  background: var(--cat-nightlife-bg);
  color: var(--cat-nightlife-fg);
}
.product-card-icon svg {
  width: 22px;
  height: 22px;
  stroke-width: 1.75;
}

.product-card-head {
  display: flex;
  align-items: center;
  gap: 12px;
}
.product-card-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  letter-spacing: -0.01em;
  color: var(--ink);
}

@media (max-width: 880px) {
  .product-cards {
    grid-template-columns: 1fr;
  }
}

/* ─── Integration logos strip (Hospitality) ──────────────────── */
.logo-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 32px;
}
.logo-strip-item {
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 0.5px solid var(--hairline);
  border-radius: var(--r-sm);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.02em;
  color: var(--ink-mute);
  padding: 12px;
  text-align: center;
}
.logo-strip-note {
  margin-top: 18px;
  font-size: 13px;
  color: var(--ink-mute);
  text-align: center;
}
@media (max-width: 880px) {
  .logo-strip {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ─── RTB stack ──────────────────────────────────────────────── */
.rtb-stack {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.rtb {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.rtb-number {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}
.rtb h3 {
  font-size: 22px;
  line-height: 1.2;
}
.rtb p {
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.55;
}

@media (max-width: 880px) {
  .rtb-stack {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* ─── Pull quote ─────────────────────────────────────────────── */
.pull-quote {
  background: var(--paper-soft);
  border-radius: var(--r-xl);
  padding: 64px 48px;
  position: relative;
}
.pull-quote::before {
  content: "“";
  position: absolute;
  top: 20px;
  left: 32px;
  font-family: var(--font-display);
  font-size: 96px;
  line-height: 1;
  color: var(--ink-mute);
  opacity: 0.5;
}
.pull-quote p {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.25;
  letter-spacing: -0.015em;
  color: var(--ink);
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

/* ─── Built-for grid ─────────────────────────────────────────── */
.built-for-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.built-for-item {
  background: #fff;
  border: 0.5px solid var(--hairline);
  border-radius: var(--r-md);
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: border-color 0.15s ease;
}
.built-for-item:hover {
  border-color: var(--ink-mute);
}
.built-for-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
}
.built-for-icon.is-dmo {
  background: var(--cat-outdoors-bg);
  color: var(--cat-outdoors-fg);
}
.built-for-icon.is-downtown {
  background: var(--cat-community-bg);
  color: var(--cat-community-fg);
}
.built-for-icon.is-arts {
  background: var(--cat-music-bg);
  color: var(--cat-music-fg);
}
.built-for-icon.is-media {
  background: var(--cat-nightlife-bg);
  color: var(--cat-nightlife-fg);
}
.surface-icon {
  width: 30px;
  height: 30px;
  color: var(--accent);
  display: block;
  margin-bottom: 2px;
}
.built-for-item h4 {
  font-size: 17px;
  line-height: 1.15;
}
.built-for-item p {
  font-size: 14px;
  line-height: 1.5;
  color: var(--ink-soft);
}

@media (max-width: 880px) {
  .built-for-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 520px) {
  .built-for-grid {
    grid-template-columns: 1fr;
  }
}

/* ─── Stats strip ────────────────────────────────────────────── */
.stats-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: #fff;
  border: 0.5px solid var(--hairline);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.stat {
  padding: 36px 32px;
  border-bottom: 0.5px solid var(--hairline-soft);
  display: flex;
  align-items: flex-start;
  gap: 18px;
}
.stat-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.stat-icon svg {
  width: 22px;
  height: 22px;
}
.stat-icon.is-events {
  background: var(--cat-arts-bg);
  color: var(--cat-arts-fg);
}
.stat-icon.is-venues {
  background: var(--cat-outdoors-bg);
  color: var(--cat-outdoors-fg);
}
.stat-icon.is-categories {
  background: var(--cat-nightlife-bg);
  color: var(--cat-nightlife-fg);
}
.stat-icon.is-coverage {
  background: var(--cat-wellness-bg);
  color: var(--cat-wellness-fg);
}
.stat-body {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.stat:nth-child(odd) {
  border-right: 0.5px solid var(--hairline-soft);
}
.stat:nth-last-child(-n + 2) {
  border-bottom: 0;
}
.stat-value {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(28px, 3vw, 40px);
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--ink);
}
.stat-label {
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.45;
}
@media (max-width: 520px) {
  .stats-strip {
    grid-template-columns: 1fr;
  }
  .stat {
    border-right: 0 !important;
    border-bottom: 0.5px solid var(--hairline-soft);
  }
  .stat:last-child {
    border-bottom: 0;
  }
}

/* ─── Use-case gallery ───────────────────────────────────────── */
.use-case-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.use-case {
  background: #fff;
  border: 0.5px solid var(--hairline);
  border-radius: var(--r-md);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.use-case-tag {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  display: inline-block;
  padding: 4px 10px;
  border-radius: 999px;
  width: max-content;
}
.use-case-tag.tag-loc {
  background: var(--cat-wellness-bg);
  color: var(--cat-wellness-fg);
}
.use-case-tag.tag-rate {
  background: var(--cat-sports-bg);
  color: var(--cat-sports-fg);
}
.use-case-tag.tag-content {
  background: var(--cat-music-bg);
  color: var(--cat-music-fg);
}
.use-case-tag.tag-ai {
  background: var(--cat-nightlife-bg);
  color: var(--cat-nightlife-fg);
}
.use-case-tag.tag-cre {
  background: var(--cat-food-bg);
  color: var(--cat-food-fg);
}
.use-case h4 {
  font-size: 17px;
  line-height: 1.2;
}
.use-case p {
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-soft);
}

@media (max-width: 880px) {
  .use-case-grid {
    grid-template-columns: 1fr;
  }
}

/* ─── Commercial shapes block ────────────────────────────────── */
.commercial-shapes {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.commercial-shape {
  background: #fff;
  border: 0.5px solid var(--hairline);
  border-radius: var(--r-md);
  padding: 24px 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.commercial-shape h4 {
  font-size: 17px;
  line-height: 1.2;
}
.commercial-shape p {
  font-size: 14px;
  line-height: 1.5;
  color: var(--ink-soft);
}
.commercial-shape-note {
  margin-top: 8px;
  font-size: 12px;
  color: var(--ink-mute);
  font-style: italic;
}
@media (max-width: 880px) {
  .commercial-shapes {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 520px) {
  .commercial-shapes {
    grid-template-columns: 1fr;
  }
}

/* ─── Coverage map, full-bleed ───────────────────────────────── */
.coverage-section {
  padding: 0;
}
.coverage-map-overlay {
  position: absolute;
  bottom: 18px;
  left: 18px;
  z-index: 500;
  background: rgba(255, 255, 255, 0.95);
  border: 0.5px solid var(--hairline-soft);
  border-radius: var(--r-sm);
  padding: 10px 14px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: 13px;
  color: var(--ink-soft);
}
.coverage-map-overlay a {
  color: var(--ink);
  font-weight: 600;
  text-decoration: none;
}
.coverage-map-overlay a:hover {
  text-decoration: underline;
}
.coverage-map-full {
  width: 100%;
  height: 600px;
  position: relative;
  border-top: 0.5px solid var(--hairline-soft);
  border-bottom: 0.5px solid var(--hairline-soft);
}
.coverage-map-full .leaflet-map {
  width: 100%;
  height: 100%;
}
@media (max-width: 880px) {
  .coverage-map-full {
    height: 420px;
  }
}

/* ─── Leaflet base ───────────────────────────────────────────── */
.leaflet-map {
  width: 100%;
  height: 100%;
  z-index: 1;
}
/* Leaflet overrides to fit brand */
.leaflet-container {
  background: var(--map-land);
  font-family: var(--font-body);
}
.leaflet-control-attribution {
  background: rgba(255, 255, 255, 0.85) !important;
  font-size: 10px !important;
  color: var(--ink-mute) !important;
}
.leaflet-control-attribution a {
  color: var(--ink-soft) !important;
}
.leaflet-bar a {
  background: #fff !important;
  color: var(--ink) !important;
  border-color: var(--hairline) !important;
}
.leaflet-bar a:hover {
  background: var(--paper-soft) !important;
  color: var(--ink) !important;
}

/* Lower-left "this is an illustration" disclaimer on the static map. */
.lb-map-note {
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink-mute);
  font-size: 11px;
  line-height: 1.3;
  padding: 4px 8px;
  border-radius: 6px;
  border: 1px solid var(--hairline);
  margin: 0 0 10px 10px;
  pointer-events: none;
}

/* ─── Map pins (stylized app rendering) ──────────────────────── */
.lb-pin-wrap {
  background: none;
  border: none;
}
.lb-pin {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: max-content;
  /* Anchor: tail tip sits on the geo point; label hangs below it. */
  transform: translate(-50%, -43px);
}
.lb-pin-head {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid #fff;
  box-shadow: 0 2px 8px rgba(56, 45, 194, 0.28);
  display: flex;
  align-items: center;
  justify-content: center;
}
.lb-pin-head svg {
  width: 18px;
  height: 18px;
}
.lb-pin-tail {
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 7px solid #fff;
  margin-top: -1px;
}
.lb-pin-label {
  margin-top: 4px;
  background: rgba(255, 255, 255, 0.95);
  border: 0.5px solid var(--hairline-soft);
  border-radius: 999px;
  padding: 3px 10px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  color: var(--ink);
  white-space: nowrap;
  box-shadow: 0 1px 4px rgba(56, 45, 194, 0.12);
}
.lb-cluster {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  border: 2px solid #fff;
  box-shadow: 0 2px 8px rgba(56, 45, 194, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  transform: translate(-50%, -50%);
}
/* Category colors */
.lb-pin--music .lb-pin-head {
  background: var(--cat-music-bg);
  color: var(--cat-music-fg);
}
.lb-pin--outdoors .lb-pin-head {
  background: var(--cat-outdoors-bg);
  color: var(--cat-outdoors-fg);
}
.lb-pin--food .lb-pin-head {
  background: var(--cat-food-bg);
  color: var(--cat-food-fg);
}
.lb-pin--arts .lb-pin-head {
  background: var(--cat-arts-bg);
  color: var(--cat-arts-fg);
}
.lb-pin--sports .lb-pin-head {
  background: var(--cat-sports-bg);
  color: var(--cat-sports-fg);
}
.lb-pin--nightlife .lb-pin-head {
  background: var(--cat-nightlife-bg);
  color: var(--cat-nightlife-fg);
}
.lb-pin--wellness .lb-pin-head {
  background: var(--cat-wellness-bg);
  color: var(--cat-wellness-fg);
}
.lb-pin--community .lb-pin-head {
  background: var(--cat-community-bg);
  color: var(--cat-community-fg);
}
@media (max-width: 640px) {
  .lb-pin {
    transform: translate(-50%, -37px);
  }
  .lb-pin-head {
    width: 30px;
    height: 30px;
  }
  .lb-pin-head svg {
    width: 15px;
    height: 15px;
  }
  .lb-pin-label {
    font-size: 11px;
    padding: 2px 8px;
  }
  .lb-cluster {
    width: 26px;
    height: 26px;
    font-size: 12px;
  }
}

/* ─── Demo widget ────────────────────────────────────────────── */
.demo-widget {
  background: #fff;
  border: 0.5px solid var(--hairline);
  border-radius: var(--r-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.demo-widget-header {
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-bottom: 0.5px solid var(--hairline-soft);
  background: var(--paper-soft);
}
.demo-widget-label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.demo-widget-dots {
  display: flex;
  gap: 5px;
}
.demo-widget-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--hairline);
}
.demo-widget-body {
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 280px;
  background: #fff;
}
.demo-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.demo-grid-3 {
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 880px) {
  .demo-grid,
  .demo-grid-3 {
    grid-template-columns: 1fr;
  }
}
.demo-caption {
  font-size: 13px;
  color: var(--ink-mute);
  padding: 0 4px;
  margin-top: 8px;
}

/* Demo content patterns */
.mock-row {
  display: flex;
  gap: 8px;
  align-items: center;
}
.mock-bar {
  height: 8px;
  border-radius: 4px;
  background: var(--hairline-soft);
}
.mock-bar.is-ink {
  background: var(--ink);
  opacity: 0.9;
}
.mock-bar.is-soft {
  background: var(--hairline);
}
.mock-card {
  border: 0.5px solid var(--hairline-soft);
  border-radius: var(--r-sm);
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: #fff;
}
.mock-tag {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 999px;
  width: max-content;
}
.mock-event-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  line-height: 1.2;
  color: var(--ink);
}
.mock-event-meta {
  font-size: 12px;
  color: var(--ink-soft);
}
.mock-sidebar {
  background: var(--paper-soft);
  padding: 16px;
  border-radius: var(--r-sm);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.mock-sidebar-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--ink-soft);
  padding: 6px 8px;
  border-radius: 6px;
}
.mock-sidebar-item.is-active {
  background: #fff;
  color: var(--ink);
  font-weight: 500;
}

/* JSON-style code block */
.code-block {
  background: #1a1635;
  color: #e5e1ff;
  border-radius: var(--r-md);
  padding: 24px;
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 13px;
  line-height: 1.6;
  overflow-x: auto;
  white-space: pre;
}
.code-key {
  color: #fe86d6;
}
.code-string {
  color: #02e5b6;
}
.code-number {
  color: #fdbb25;
}
.code-comment {
  color: #8b86d6;
  font-style: italic;
}

/* Phone frame */
.phone-frame {
  background: var(--ink);
  border-radius: 28px;
  padding: 8px;
  width: 100%;
  max-width: 280px;
  margin: 0 auto;
}
.phone-frame-inner {
  background: #fff;
  border-radius: 22px;
  overflow: hidden;
  aspect-ratio: 9 / 16;
  display: flex;
  flex-direction: column;
}
.phone-status {
  height: 28px;
  background: var(--paper-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  color: var(--ink-soft);
  font-weight: 600;
}
.phone-content {
  flex: 1;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  overflow: hidden;
}

/* Browser frame */
.browser-frame {
  background: var(--paper-soft);
  border-radius: var(--r-md);
  border: 0.5px solid var(--hairline);
  overflow: hidden;
}
.browser-bar {
  height: 32px;
  background: var(--paper-deep);
  display: flex;
  align-items: center;
  padding: 0 12px;
  gap: 6px;
  border-bottom: 0.5px solid var(--hairline-soft);
}
.browser-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--hairline);
}
.browser-url {
  flex: 1;
  background: #fff;
  border-radius: 999px;
  padding: 4px 12px;
  font-size: 11px;
  color: var(--ink-mute);
  margin-left: 8px;
  border: 0.5px solid var(--hairline-soft);
}
.browser-content {
  background: #fff;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 200px;
}

/* Email frame */
.email-frame {
  background: #fff;
  border: 0.5px solid var(--hairline);
  border-radius: var(--r-md);
  overflow: hidden;
  max-width: 380px;
}
.email-header {
  padding: 14px 18px;
  border-bottom: 0.5px solid var(--hairline-soft);
  background: var(--paper-soft);
}
.email-subject {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 4px;
}
.email-meta {
  font-size: 11px;
  color: var(--ink-soft);
}
.email-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* ─── Partners callout (Home) ────────────────────────────────── */
.partners-callout {
  background: var(--ink);
  color: #fff;
  border-radius: var(--r-xl);
  padding: 56px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.partners-callout h2 {
  color: #fff;
  max-width: 18ch;
}
.partners-callout p {
  color: rgba(255, 255, 255, 0.8);
  margin-top: 12px;
  max-width: 480px;
}
.partners-callout .btn-tertiary {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.25);
}
.partners-callout .btn-tertiary:hover {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.4);
}

/* ─── Form ───────────────────────────────────────────────────── */
.form-section {
  background: var(--paper-soft);
  border-radius: var(--r-xl);
  padding: 64px 56px;
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 48px;
  align-items: start;
}
.form-section-intro h2 {
  margin-bottom: 16px;
}
.form-section-intro p {
  color: var(--ink-soft);
  font-size: 17px;
}
.form {
  display: grid;
  gap: 16px;
}
.form-row {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr 1fr;
}
@media (max-width: 720px) {
  .form-row {
    grid-template-columns: 1fr;
  }
  .form-section {
    grid-template-columns: 1fr;
    padding: 40px 28px;
    gap: 32px;
  }
}
.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-label {
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
}
.form-input {
  background: #fff;
  border: 0.5px solid var(--hairline);
  border-radius: var(--r-sm);
  padding: 12px 14px;
  font-size: 15px;
  outline: 0;
  transition:
    border-color 0.15s ease,
    box-shadow 0.15s ease;
  font-family: var(--font-body);
  width: 100%;
}
.form-input:focus {
  border-color: var(--ink);
  box-shadow: 0 2px 8px rgba(56, 45, 194, 0.08);
}
.form-input::placeholder {
  color: var(--ink-mute);
}
textarea.form-input {
  min-height: 96px;
  resize: vertical;
}
.form-radio-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}
.form-radio {
  border: 0.5px solid var(--hairline);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 13px;
  cursor: pointer;
  background: #fff;
  transition:
    border-color 0.15s ease,
    background-color 0.15s ease,
    color 0.15s ease;
}
.form-radio:hover {
  border-color: var(--ink-mute);
}
.form-radio.is-selected {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}
.form-submit {
  margin-top: 8px;
  justify-self: start;
}
.form-fineprint {
  font-size: 12px;
  color: var(--ink-mute);
  margin-top: 8px;
}

/* ─── Footer ─────────────────────────────────────────────────── */
.footer {
  border-top: 0.5px solid var(--hairline-soft);
  padding: 36px 0;
  margin-top: auto; /* push to the bottom of the flex column on short pages */
}
.footer-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  color: var(--ink);
}
.footer-brand img {
  height: 24px;
  width: 24px;
}
.footer-links {
  display: flex;
  align-items: center;
  gap: 8px 22px;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
}
.footer-links a {
  font-size: 13px;
  color: var(--ink-soft);
}
.footer-links a:hover {
  color: var(--accent);
}
.footer-copy {
  font-size: 13px;
  color: var(--ink-mute);
}

/* ─── Hospitality "why now" block ────────────────────────────── */
.why-now {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.why-now h3 {
  margin-bottom: 16px;
}
.why-now p {
  color: var(--ink-soft);
  margin-bottom: 14px;
  font-size: 16px;
}
@media (max-width: 880px) {
  .why-now {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

/* ─── Page intro ─────────────────────────────────────────────── */
.page-intro {
  padding-top: 56px;
  padding-bottom: 24px;
}
.page-intro .eyebrow {
  color: var(--accent);
  display: block;
  margin-bottom: 16px;
}

/* ─── About team grid ────────────────────────────────────────── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.team-card {
  background: #fff;
  border: 0.5px solid var(--hairline);
  border-radius: var(--r-lg);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.team-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--paper-soft);
  border: 0.5px solid var(--hairline);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 24px;
  color: var(--ink);
}
.team-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
.team-card h4 {
  font-size: 18px;
  line-height: 1.2;
}
.team-role {
  font-size: 13px;
  color: var(--accent);
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  font-family: var(--font-display);
}
.team-bio {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.55;
}
@media (max-width: 880px) {
  .team-grid {
    grid-template-columns: 1fr;
  }
}

/* ─── Page divider ───────────────────────────────────────────── */
.divider {
  height: 0.5px;
  background: var(--hairline-soft);
  margin: 0;
  border: 0;
}

/* ─── Legal pages ────────────────────────────────────────────── */
.hero-legal {
  padding: 80px 0 24px;
}
.hero-legal .lede {
  margin-bottom: 0;
}
.hero-legal .legal-meta {
  margin-top: 10px;
  margin-bottom: 0;
}
.hero-legal + .section-sm {
  padding-top: 16px;
}
.legal-meta {
  font-size: 13px;
  font-weight: 400;
  color: var(--ink-mute);
}
.legal-content {
  max-width: 720px;
}
.legal-content h2 {
  margin-top: 40px;
  margin-bottom: 12px;
  font-size: 22px;
}
.legal-content h2:first-of-type {
  margin-top: 0;
}
.legal-content p {
  color: var(--ink-soft);
  margin-bottom: 12px;
  font-size: 16px;
  line-height: 1.6;
}

/* ─── Utility ────────────────────────────────────────────────── */
.text-center {
  text-align: center;
}
.mt-32 {
  margin-top: 32px;
}
.mt-48 {
  margin-top: 48px;
}
.mt-64 {
  margin-top: 64px;
}
.mb-32 {
  margin-bottom: 32px;
}

/* ─── 2026-06-04 additions (product pages restore) ───────────── */

/* Thank-you panel shown after form submit (tracking pixel target). */
.form-thanks {
  text-align: center;
  padding: 48px 24px;
}
.form-thanks h3 {
  font-family: var(--font-display);
  font-size: 28px;
  margin-bottom: 8px;
}
.form-thanks p {
  color: var(--ink-soft);
}

/* Date/time filter chips overlaid on the hospitality neighborhood map. */
.map-chips {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 500;
  display: flex;
  gap: 8px;
}
.map-chip {
  background: #fff;
  border: 1px solid var(--hairline-soft);
  border-radius: 999px;
  padding: 7px 14px;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-soft);
  box-shadow: 0 1px 4px rgba(20, 16, 60, 0.08);
}
.map-chip.is-active {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
}

/* "Your hotel" marker on the neighborhood map. */
.lb-hotel {
  transform: translate(-50%, -50%);
  background: var(--ink);
  color: #fff;
  border-radius: 8px;
  padding: 6px 10px;
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(20, 16, 60, 0.25);
}

/* Inline code in schema notes. */
.rtb code {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.9em;
  background: rgba(56, 45, 194, 0.07);
  border-radius: 4px;
  padding: 1px 5px;
}

/* ─── Docs-style Data page (2026-06-04) ──────────────────────── */
.hero-docs {
  padding-bottom: 48px;
}
.docs-baseurl {
  margin-top: 24px;
}
.docs-baseurl-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-mute);
  margin-bottom: 8px;
}
.docs-callout {
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: var(--paper-soft);
  border: 0.5px solid var(--hairline);
  border-left: 3px solid var(--accent-ink, var(--ink));
  border-radius: 12px;
  padding: 18px 20px;
  margin-bottom: 20px;
}
.docs-callout-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink);
}
.docs-callout p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.6;
}
.docs-baseurl code {
  display: inline-block;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 15px;
  color: var(--ink);
  background: rgba(56, 45, 194, 0.06);
  border: 1px solid var(--hairline-soft);
  border-radius: 8px;
  padding: 10px 16px;
}
.docs-h2 {
  font-size: 26px;
  margin-bottom: 12px;
}
.docs-p {
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.6;
  max-width: 720px;
  margin: 12px 0;
}
.docs-p a {
  color: var(--ink);
  font-weight: 600;
}
.docs-p code,
.docs-table code {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.9em;
  background: rgba(56, 45, 194, 0.07);
  border-radius: 4px;
  padding: 1px 5px;
}
.docs-code {
  margin: 16px 0;
}
.docs-table {
  width: 100%;
  max-width: 880px;
  border-collapse: collapse;
  margin: 16px 0;
  font-size: 15px;
}
.docs-table td {
  border-top: 1px solid var(--hairline-soft);
  padding: 12px 16px 12px 0;
  vertical-align: top;
  color: var(--ink-soft);
  line-height: 1.5;
}
.docs-table tr:last-child td {
  border-bottom: 1px solid var(--hairline-soft);
}
.docs-table td:first-child {
  white-space: nowrap;
  padding-right: 32px;
  color: var(--ink);
}
@media (max-width: 700px) {
  .docs-table td:first-child {
    white-space: normal;
  }
  .docs-table td {
    display: block;
    padding: 6px 0;
    border: 0;
  }
  .docs-table tr {
    display: block;
    border-top: 1px solid var(--hairline-soft);
    padding: 10px 0;
  }
}
