:root {
  /* Sourced from Flutter AppTheme (lib/config/theme.dart) */
  --bg: #fafafa;
  --surface: #ffffff;
  --text: #1a1a1a;
  --muted: #6b6b6b;
  --border: #e5e5e5;
  --accent: #000000;
  --accent-600: #1a1a1a;
  --brand-accent: #444444;
  --brand-highlight: #333333;
  --brand-red: #ce1126;
  --brand-green: #00a651;
  --radius-search: 8px;
  /* Two-tone typography tokens */
  --duo-1-light: var(--text);
  --duo-2-light: #4a4a4a; /* stronger two-tone on light bg */
  --duo-1-dark: #ffffff;
  --duo-2-dark: rgba(255, 255, 255, 0.92); /* brighter two-tone on dark bg */
}

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

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 16px;
  color: var(--text);
}

p {
  margin: 0 0 16px;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.muted {
  color: var(--muted);
}
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}
.btn-primary {
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: 12px 18px;
  font-weight: 600;
  cursor: pointer;
  display: inline-block;
}
.btn-primary:hover {
  background: var(--accent-600);
}
.link {
  color: var(--muted);
}
.link:hover {
  color: var(--text);
}

/* Modern Topbar */
.topbar-modern {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

.nav-modern {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 40px;
}

.logo-modern {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-modern img {
  height: 44px;
  width: auto;
}

.logo-text {
  font-size: 26px;
  font-weight: 900;
  color: #000;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-menu a {
  display: block;
  padding: 10px 18px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  border-radius: 8px;
  transition: all 0.2s ease;
}

.nav-menu a:hover {
  background: rgba(0, 0, 0, 0.04);
}

.nav-menu .nav-cta {
  background: #000;
  color: #fff;
  font-weight: 600;
}

.nav-menu .nav-cta:hover {
  background: #1a1a1a;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn-get-app {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: #000;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.2s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.btn-get-app:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
  background: #333;
}

.menu-toggle {
  display: none;
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 8px;
}

@media (max-width: 900px) {
  /* Mobile: hide menu by default and render as a slide-down panel */
  .nav-menu {
    display: none;
    position: fixed;
    top: 72px; /* height of .nav-modern */
    left: 0;
    right: 0;
    background: #fff;
    border-top: 1px solid var(--border);
    padding: 14px 20px;
    flex-direction: column;
    gap: 12px;
    z-index: 999;
    transform: translateY(-10px);
    opacity: 0;
    transition: transform 0.2s ease, opacity 0.2s ease;
  }

  .menu-toggle {
    display: block;
  }

  .nav-actions {
    display: none;
  }

  /* When opened, show the mobile panel */
  body.nav-open #navLinks {
    display: flex;
    transform: translateY(0);
    opacity: 1;
  }

  /* Prevent background scrolling when menu is open */
  body.nav-open {
    overflow: hidden;
  }

  /* Slightly larger tap targets on mobile */
  .nav-menu a {
    padding: 14px 12px;
    font-size: 16px;
  }

  /* Backdrop element under the dropdown (click to close) */
  .nav-backdrop {
    display: none;
  }
  body.nav-open .nav-backdrop {
    display: block;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.25);
    z-index: 998;
  }
}

/* Legacy topbar (keep for compatibility) */
.topbar {
  position: sticky;
  top: 0;
  z-index: 40;
  background: #fff;
  border-bottom: 1px solid var(--border);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.logo {
  font-weight: 800;
  letter-spacing: 0.2px;
  font-size: 20px;
}
.logo-img {
  height: 24px;
  width: auto;
  display: block;
}
.nav-links {
  display: flex;
  gap: 20px;
  align-items: center;
}
.nav-links a {
  color: #111;
}
.host-btn {
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 8px 14px;
}

/* Search Results Section */
.search-results-section {
  padding: 60px 0 80px;
  background: var(--bg);
  min-height: 60vh;
}

.search-header {
  margin-bottom: 32px;
}

.search-header h2 {
  font-size: 28px;
  font-weight: 700;
  margin: 0 0 8px;
}

.search-header p {
  color: var(--muted);
  margin: 0;
}

.listings-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
  margin-bottom: 48px;
}

.listing-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all 0.3s ease;
  cursor: pointer;
}

.listing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.listing-image {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}

.listing-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.listing-card:hover .listing-image img {
  transform: scale(1.05);
}

.listing-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #fff;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Occupancy status badge (top-right) */
.listing-status {
  position: absolute;
  top: 12px;
  right: 12px;
  background: #ef4444; /* red */
  color: #fff;
  padding: 6px 10px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 700;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Green variant when available */
.listing-status.available {
  background: #16a34a;
}

.listing-content {
  padding: 16px;
}

.listing-title {
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 8px;
  color: var(--text);
}

.listing-location {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 12px;
}

.listing-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.listing-price {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
}

.listing-price span {
  font-size: 13px;
  font-weight: 400;
  color: var(--muted);
}

.listing-rating {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 14px;
  color: var(--text);
}

.listing-rating svg {
  color: var(--text);
}

.no-results {
  text-align: center;
  padding: 80px 20px;
}

.no-results svg {
  color: var(--muted);
  margin-bottom: 20px;
}

.no-results h3 {
  font-size: 24px;
  margin: 0 0 12px;
}

.no-results p {
  color: var(--muted);
  margin: 0 0 24px;
}

.book-cta-banner {
  display: flex;
  align-items: center;
  gap: 20px;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
  padding: 24px 32px;
  border-radius: 16px;
  color: #fff;
}

.cta-icon {
  width: 56px;
  height: 56px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
}

.cta-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.cta-content strong {
  font-size: 18px;
}

.cta-content span {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}

.book-cta-banner .btn-primary {
  flex-shrink: 0;
  background: #000;
  color: #fff;
}

@media (max-width: 768px) {
  .book-cta-banner {
    flex-direction: column;
    text-align: center;
  }

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

/* Hero */
.hero {
  padding: 56px 0 28px;
}
.hero h1 {
  font-size: 36px;
  line-height: 1.15;
  margin: 0 0 18px;
  max-width: 780px;
}
.search-bar {
  display: flex;
  gap: 10px;
  align-items: center;
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  padding: 8px 8px 8px 14px;
  border-radius: 999px;
}
.search-bar input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 16px;
  padding: 10px 6px;
  background: transparent;
}
.quick-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 14px;
}
.tag {
  border: 1px solid var(--border);
  background: #fff;
  border-radius: 999px;
  padding: 6px 12px;
  font-weight: 600;
  color: #111;
  cursor: pointer;
}
.tag:hover {
  border-color: var(--brand-accent);
}

/* Loading Spinner */
.loading-spinner {
  text-align: center;
  padding: 60px 20px;
  color: var(--muted);
  font-size: 16px;
}

/* Highlight animation for app section */
.app-download-section.highlight {
  animation: highlightPulse 2s ease-out;
}

@keyframes highlightPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.35);
  }
  50% {
    box-shadow: 0 0 40px 10px rgba(255, 255, 255, 0.2);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}

/* Featured */
.section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 30px 0 14px;
}
.grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
}
.card {
  grid-column: span 12;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
}
@media (min-width: 560px) {
  .card {
    grid-column: span 6;
  }
}
@media (min-width: 860px) {
  .card {
    grid-column: span 4;
  }
}
.thumb {
  aspect-ratio: 4/3;
  background-size: cover;
  background-position: center;
}
.card-body {
  padding: 12px;
}
.card h3 {
  margin: 0 0 6px;
  font-size: 16px;
}
.meta {
  display: flex;
  gap: 10px;
  color: var(--muted);
}
.price {
  font-weight: 700;
  color: #111;
}

/* Host CTA */
.host-cta {
  margin: 48px 0;
  background: linear-gradient(135deg, #fff 0%, #fff 40%, #ffe4ea 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.host-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 28px 0;
}
.host-content h2 {
  margin: 0 0 6px;
  font-size: 26px;
}
.host-content p {
  margin: 0 0 12px;
  color: var(--muted);
}

/* Footer */
.site-footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  margin-top: 36px;
}
.cols {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
  padding: 26px 0;
}
.cols > div:first-child {
  grid-column: span 12;
}
.cols > div {
  grid-column: span 6;
}
@media (min-width: 860px) {
  .cols > div:first-child {
    grid-column: span 6;
  }
  .cols > div {
    grid-column: span 3;
  }
}
.site-footer .logo {
  margin-bottom: 8px;
}
.legal {
  padding: 12px 0;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 14px;
}

/* States */
.topbar.scrolled {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

/* Responsive nav */
@media (max-width: 780px) {
  .menu-toggle {
    display: block;
  }
  .nav-links {
    position: fixed;
    inset: auto 0 0 0;
    background: #fff;
    border-top: 1px solid var(--border);
    padding: 14px 20px;
    display: none;
    gap: 12px;
  }
  body.nav-open #navLinks {
    display: flex;
    flex-direction: column;
  }
}

html,
body {
  height: 100%;
}
body {
  margin: 0;
  font-family: Inter, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto,
    Helvetica, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}
.btn-primary {
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: 12px 18px;
  font-weight: 600;
  cursor: pointer;
  display: inline-block;
}
.btn-primary:hover {
  background: var(--accent-600);
}
.link {
  color: var(--muted);
}
.link:hover {
  color: var(--text);
}

/* Topbar */
.topbar {
  position: sticky;
  top: 0;
  z-index: 40;
  background: #fff;
  border-bottom: 1px solid var(--border);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.logo {
  font-weight: 800;
  letter-spacing: 0.2px;
  font-size: 20px;
}
.nav-links {
  display: flex;
  gap: 20px;
  align-items: center;
}
.nav-links a {
  color: #111;
}
.host-btn {
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 8px 14px;
}
.menu-toggle {
  display: none;
  border: none;
  background: transparent;
  font-size: 22px;
}

/* Hero */
.hero {
  padding: 56px 0 28px;
}
.hero h1 {
  font-size: 36px;
  line-height: 1.15;
  margin: 0 0 18px;
  max-width: 780px;
}
.search-bar {
  display: flex;
  gap: 10px;
  align-items: center;
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  padding: 8px 8px 8px 14px;
  border-radius: 999px;
}
.search-bar input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 16px;
  padding: 10px 6px;
  background: transparent;
}
.quick-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 14px;
}
.tag {
  border: 1px solid var(--border);
  background: #fff;
  border-radius: 999px;
  padding: 6px 12px;
  font-weight: 600;
  color: #111;
  cursor: pointer;
}
.tag:hover {
  border-color: var(--brand-accent);
}

/* Featured */
.section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 30px 0 14px;
}
.grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
}
.card {
  grid-column: span 12;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
}
@media (min-width: 560px) {
  .card {
    grid-column: span 6;
  }
}
@media (min-width: 860px) {
  .card {
    grid-column: span 4;
  }
}
.thumb {
  aspect-ratio: 4/3;
  background-size: cover;
  background-position: center;
}
.card-body {
  padding: 12px;
}
.card h3 {
  margin: 0 0 6px;
  font-size: 16px;
}
.meta {
  display: flex;
  gap: 10px;
  color: var(--muted);
}
.price {
  font-weight: 700;
  color: #111;
}

/* Host CTA */
.host-cta {
  margin: 48px 0;
  background: linear-gradient(135deg, #fff 0%, #fff 40%, #ffe4ea 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.host-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 28px 0;
}
.host-content h2 {
  margin: 0 0 6px;
  font-size: 26px;
}
.host-content p {
  margin: 0 0 12px;
  color: var(--muted);
}

/* Footer */
.site-footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  margin-top: 36px;
}
.cols {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
  padding: 26px 0;
}
.cols > div:first-child {
  grid-column: span 12;
}
.cols > div {
  grid-column: span 6;
}
@media (min-width: 860px) {
  .cols > div:first-child {
    grid-column: span 6;
  }
  .cols > div {
    grid-column: span 3;
  }
}
.site-footer .logo {
  margin-bottom: 8px;
}
.legal {
  padding: 12px 0;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 14px;
}

/* States */
.topbar.scrolled {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

/* Responsive nav */
@media (max-width: 780px) {
  .menu-toggle {
    display: block;
  }
  .nav-links {
    position: fixed;
    inset: auto 0 0 0;
    background: #fff;
    border-top: 1px solid var(--border);
    padding: 14px 20px;
    display: none;
    gap: 12px;
  }
  body.nav-open #navLinks {
    display: flex;
    flex-direction: column;
  }
}

/* Nav search segmented */
.nav {
  height: auto;
  padding: 10px 0;
}
.nav-search {
  /* Hide on desktop to match hero-overlay search layout (Peerspace) */
  display: none;
}
.nav-search .seg {
  display: flex;
  align-items: center;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-search);
  padding: 4px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
  max-width: 680px;
  width: 100%;
}
.seg-part {
  padding: 0 8px;
  display: flex;
  align-items: center;
}
.seg-part input {
  border: none;
  outline: none;
  background: transparent;
  font-size: 14px;
  padding: 8px 8px;
  min-width: 0;
}
.sep {
  width: 1px;
  height: 24px;
  background: var(--border);
}
.search-btn {
  margin-left: 6px;
  padding: 10px 14px;
  border-radius: var(--radius-search);
}

/* Activities scroller */
.activities {
  padding: 12px 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.activities-row {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 8px 0;
}
.activities-row::-webkit-scrollbar {
  display: none;
}

@media (max-width: 980px) {
  .hide-sm {
    display: none;
  }
}
@media (max-width: 780px) {
  .hide-md {
    display: none;
  }
  .nav-search {
    display: flex; /* Show compact nav search on mobile */
    flex: 1;
    justify-content: center;
    padding: 0;
  }
}

/* Categories tiles */
.categories {
  padding: 18px 0;
}
.categories .tiles {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 12px;
}
.categories .tile {
  position: relative;
  display: block;
  grid-column: span 6;
  border-radius: 14px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  aspect-ratio: 3/2;
}
@media (min-width: 560px) {
  .categories .tile {
    grid-column: span 4;
  }
}
@media (min-width: 860px) {
  .categories .tile {
    grid-column: span 3;
  }
}
.categories .tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 40%,
    rgba(0, 0, 0, 0.45) 100%
  );
}
.categories .tile span {
  position: absolute;
  left: 12px;
  bottom: 10px;
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.2px;
}

/* Utilities */
.muted {
  color: var(--muted);
}

/* Segmented search icons (CSS-only) */
.seg-part {
  position: relative;
}
.seg-what::before {
  content: "🔍";
  margin-right: 6px;
}
.seg-where::before {
  content: "📍";
  margin-right: 6px;
}
.seg-date::before {
  content: "📅";
  margin-right: 6px;
}
.seg-guests::before {
  content: "👥";
  margin-right: 6px;
}
.seg-part::before {
  color: var(--muted);
  display: inline-block;
}

/* How it works */
.how {
  padding: 18px 0;
}
.how .steps {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
}
.how .step {
  grid-column: span 12;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px;
}
@media (min-width: 560px) {
  .how .step {
    grid-column: span 4;
  }
}
.step-icon {
  font-size: 20px;
  margin-bottom: 6px;
}

/* Hero landing with background slideshow */
.hero-landing {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Background slideshow */
.hero-bg-slider {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
}
.hero-bg-slide.is-active {
  opacity: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.4) 0%,
    rgba(0, 0, 0, 0.5) 50%,
    rgba(0, 0, 0, 0.7) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 120px 20px 60px;
  max-width: 900px;
  margin: 0 auto;
}

.hero-title {
  font-size: clamp(36px, 8vw, 72px);
  font-weight: 800;
  line-height: 1.1;
  color: #fff;
  margin: 0 0 20px;
  letter-spacing: -0.02em;
}

.hero-sub {
  font-size: clamp(16px, 2.5vw, 20px);
  color: rgba(255, 255, 255, 0.9);
  margin: 0 0 40px;
  font-weight: 400;
}
.hero-search {
  width: 100%;
  display: flex;
  justify-content: center;
}
/* generic segmented pill (works in hero and nav) */
.seg {
  display: flex;
  align-items: center;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-search);
  padding: 4px;
  max-width: 960px;
  width: 100%;
}
.seg-labeled .seg-part {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 6px 12px;
}
.mini-label {
  font-size: 10px;
  line-height: 1;
  color: var(--muted);
  margin: 2px 2px 4px;
}
.hero-search .seg-part::before {
  display: none;
}
.hero-search .sep {
  height: 44px;
}
.hero-text {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 24px;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 16px;
}
.hero-text h1 {
  margin: 0;
  font-size: clamp(32px, 6.5vw, 72px);
  line-height: 0.95;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.hero-credit {
  font-size: 12px;
  line-height: 1.2;
  color: rgba(255, 255, 255, 0.9);
  text-align: right;
}

/* Make topbar overlay the hero like Peerspace */
.topbar {
  background: transparent;
}
.topbar .nav-links a {
  color: #fff;
}
.topbar .host-btn {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.6);
}
.topbar.scrolled {
  background: #fff;
}
.topbar .logo-img {
  filter: invert(1) brightness(2);
}
.topbar.scrolled .logo-img {
  filter: none;
}
.topbar.scrolled .nav-links a {
  color: #111;
}
.topbar.scrolled .host-btn {
  color: #111;
  border-color: var(--border);
}

/* Hero split section (text left, image carousel right) */
.hero-split {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: center;
  gap: 32px;
  padding: 56px 0 24px;
}
.hero-left .display {
  margin: 0 0 10px;
  font-size: clamp(28px, 5.2vw, 56px);
  line-height: 1.05;
  font-weight: 800;
}
.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 12px;
  margin: 18px 0 6px;
}
.hero-right .carousel {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #000;
}
.hero-right .slides {
  display: flex;
  width: 100%;
  transition: transform 600ms ease;
}
.hero-right .slide {
  min-width: 100%;
  position: relative;
}
.hero-right .slide img {
  display: block;
  width: 100%;
  height: 64vh;
  object-fit: cover;
}
.hero-right .vcap {
  position: absolute;
  right: 8px;
  top: 12px;
  transform-origin: top right;
  transform: rotate(90deg);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.9);
}
@media (max-width: 980px) {
  .hero-split {
    grid-template-columns: 1fr;
  }
  .hero-right .slide img {
    height: 40vh;
  }
}

/* Pixel-pass refinements for hero segmented search */
.hero-search .seg {
  padding: 6px;
}
.seg-labeled .seg-part {
  flex: 1;
  min-width: 0;
}
.seg-what {
  flex: 2;
}
.seg-kicker {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--muted);
  margin-bottom: 4px;
  font-size: 11px;
  line-height: 1;
}
.seg-icon {
  width: 16px;
  height: 16px;
  display: block;
  color: var(--muted);
}
.hero-search .sep {
  height: 56px;
}
.hero-search .search-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 56px;
  padding: 0 18px;
  border-radius: var(--radius-search);
}
@media (max-width: 720px) {
  .hero-center {
    padding-top: 18vh;
  }
  .hero-search .seg {
    flex-wrap: wrap;
    row-gap: 8px;
    column-gap: 0;
  }
  .hero-search .sep {
    display: none;
  }
  .hero-search .search-btn {
    width: 100%;
  }
  /* Fix mobile wrapping: each field on its own row */
  .hero-search .seg-labeled .seg-part,
  .hero-search .seg-part {
    flex: 1 1 100% !important;
    width: 100%;
    padding: 8px 10px;
  }
  /* Ensure small-screen hidden pieces remain hidden */
  .hero-search .hide-sm {
    display: none !important;
  }
  /* Prevent awkward multi-line labels and keep them readable */
  .hero-search .mini-label {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .hero-search .seg-kicker {
    font-size: 10px;
    margin-bottom: 6px;
  }
  .hero-search .seg-part input {
    width: 100%;
  }
}
/* SVG sizing for step icons */
.step-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.step-icon svg {
  width: 22px;
  height: 22px;
}

/* Replace emoji pseudo-icons with SVGs */
.seg-what::before,
.seg-where::before,
.seg-date::before,
.seg-guests::before,
.seg-part::before {
  content: none !important;
  display: none !important;
}

/* Pixel-parity overrides to better match Peerspace proportions */
.container {
  max-width: 1200px;
  padding: 0 24px;
}
.grid {
  gap: 24px;
}
.section-head {
  margin: 40px 0 18px;
}
.card {
  border: 0;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
  border-radius: 16px;
}
.hero-search .seg {
  max-width: 1040px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.14);
}
/* Show activities scroller (Popular cities) */
.activities {
  display: block;
}
/* Nav spacing & weight */
.nav {
  padding: 14px 0;
}
.nav-links a {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.1px;
}

/* WHY Section - Professional */
.why-section {
  padding: 100px 0;
  background: var(--surface);
}

.why-header {
  text-align: center;
  margin-bottom: 60px;
}

.why-header h2 {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 800;
  margin: 16px 0 0;
  line-height: 1.15;
}

/* Two-tone emphasis for headings on light sections */
.why-section .text-gold,
.activities-section .text-gold,
.how-section .text-gold,
.corporate-section .text-gold {
  color: var(--duo-2-light);
}

.why-carousel {
  max-width: 900px;
  margin: 0 auto;
}

.why-slides-wrap {
  position: relative;
}

.why-slide {
  display: none;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.why-slide.is-active {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  opacity: 1;
}

.why-slide-img {
  border-radius: 16px;
  overflow: hidden;
}

.why-slide-img img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.why-slide-content {
  padding: 20px 0;
}

.why-slide-num {
  font-size: 14px;
  font-weight: 700;
  color: #555;
  margin-bottom: 16px;
  letter-spacing: 0.1em;
}

.why-slide-content h3 {
  font-size: 28px;
  font-weight: 700;
  margin: 0 0 16px;
  color: var(--text);
}

.why-slide-content p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--muted);
  margin: 0;
}

.why-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 40px;
}

.why-nav-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--surface);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.why-nav-btn:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.why-dots {
  display: flex;
  gap: 8px;
}

.why-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: var(--border);
  cursor: pointer;
  transition: all 0.2s ease;
}

.why-dot.is-active {
  background: #000;
  width: 32px;
  border-radius: 5px;
}

@media (max-width: 768px) {
  .why-slide.is-active {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .why-slide-img img {
    height: 280px;
  }
}

/* Activities Section - Professional */
.activities-section {
  padding: 100px 0;
  background: var(--bg);
}

.activities-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}

.activities-content h2 {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 800;
  margin: 16px 0 20px;
  line-height: 1.15;
}

.activities-desc {
  font-size: 18px;
  color: var(--muted);
  margin-bottom: 32px;
  line-height: 1.6;
}

.activities-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 32px;
}

.activity-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border: 1px solid var(--border);
  border-radius: 100px;
  background: var(--surface);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}

.activity-chip:hover {
  border-color: var(--accent);
  background: var(--accent);
  color: #fff;
}

.activity-chip:hover svg {
  stroke: #fff;
}

.btn-lg {
  padding: 16px 32px;
  font-size: 16px;
}

.activities-gallery {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.gallery-main {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4/3;
}

.gallery-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.gallery-img.is-active {
  opacity: 1;
}

.gallery-thumbs {
  display: flex;
  gap: 12px;
}

.gallery-thumb {
  flex: 1;
  padding: 0;
  border: 2px solid transparent;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.2s ease;
}

.gallery-thumb img {
  width: 100%;
  height: 80px;
  object-fit: cover;
}

.gallery-thumb.is-active {
  border-color: var(--brand-accent);
}

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

/* How It Works Section - Professional */
.how-section {
  padding: 100px 0;
  background: var(--surface);
}

.how-header {
  text-align: center;
  margin-bottom: 60px;
}

.how-header h2 {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 800;
  margin: 16px 0 16px;
  line-height: 1.15;
}

.how-header p {
  font-size: 18px;
  color: var(--muted);
  margin: 0;
}

.how-steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  max-width: 1000px;
  margin: 0 auto;
}

.how-step {
  flex: 1;
  text-align: center;
  padding: 0 24px;
  max-width: 300px;
}

.how-step-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.how-step-icon svg {
  stroke: #fff;
}

.how-step-num {
  font-size: 12px;
  font-weight: 700;
  color: var(--brand-accent);
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}

.how-step h3 {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 12px;
}

.how-step p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}

.how-step-connector {
  width: 60px;
  height: 2px;
  background: var(--border);
  margin-top: 36px;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .how-steps {
    flex-direction: column;
    gap: 40px;
  }
  .how-step-connector {
    display: none;
  }
  .how-step {
    max-width: 100%;
  }
}

/* Corporate Section */
.corporate-section {
  background: var(--bg);
  padding: 100px 0;
}

.corporate-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.corporate-content h2 {
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 800;
  line-height: 1.15;
  margin: 16px 0 20px;
}

.corporate-content > p {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 32px;
}

.corporate-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 32px;
}

.corp-feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.corp-feature-icon {
  width: 48px;
  height: 48px;
  background: rgba(0, 0, 0, 0.05);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #333;
}

.corp-feature-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.corp-feature-text strong {
  font-size: 16px;
  font-weight: 600;
}

.corp-feature-text span {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.5;
}

.corporate-visual {
  position: relative;
}

.corporate-visual img {
  width: 100%;
  border-radius: 20px;
}

.corp-stats {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  padding: 20px 24px;
  display: flex;
  gap: 32px;
}

.corp-stat {
  display: flex;
  flex-direction: column;
}

.stat-value {
  font-size: 24px;
  font-weight: 800;
  color: #000;
}

.stat-label {
  font-size: 13px;
  color: var(--muted);
}

@media (max-width: 900px) {
  .corporate-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .corporate-content {
    order: 2;
  }
  .corporate-visual {
    order: 1;
  }
}

/* Host Section V2 - Clean Layout */
.host-section-v2 {
  background: #0a0a0a;
  padding: 100px 0;
  color: #fff;
}

.host-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.host-visual {
  position: relative;
}

.host-visual img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: 16px;
}

.host-earnings {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(12px);
  padding: 18px 24px;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.host-earnings .earnings-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.6);
}

.host-earnings .earnings-value {
  font-size: 26px;
  font-weight: 700;
  color: var(--brand-accent);
}

.host-info h2 {
  font-size: clamp(32px, 4.5vw, 44px);
  font-weight: 800;
  line-height: 1.2;
  margin: 16px 0 20px;
  /* Improve contrast on dark background */
  color: rgba(255, 255, 255, 0.98);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.45);
}

.host-info > p {
  font-size: 17px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 32px;
  max-width: 440px;
}

.host-perks {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 36px;
}

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

.perk-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--brand-accent);
}

.perk > div:last-child {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.perk strong {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
}

.perk span {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
}

.btn-host-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  background: #000;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.btn-host-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

@media (max-width: 900px) {
  .host-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .host-visual img {
    height: 320px;
  }

  .host-info {
    text-align: center;
  }

  .host-info > p {
    max-width: 100%;
  }

  .host-perks {
    align-items: center;
  }

  .perk {
    text-align: left;
  }

  .btn-host-cta {
    width: 100%;
    justify-content: center;
  }
}

.btn-light {
  background: #fff;
  color: #111;
}

/* Footer (dark variant) */
.site-footer.dark {
  background: #0e0e0e;
  color: rgba(255, 255, 255, 0.9);
  border-top: none;
}
.site-footer.dark a {
  color: rgba(255, 255, 255, 0.85);
}
.site-footer.dark h4 {
  color: #fff;
  margin: 0 0 8px;
}
.site-footer.dark .footer-cols {
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
  padding: 36px 0;
}
.site-footer.dark .footer-brand {
  grid-column: span 12;
}
.site-footer.dark .footer-cols > div {
  grid-column: span 6;
}
@media (min-width: 860px) {
  .site-footer.dark .footer-brand {
    grid-column: span 4;
  }
  .site-footer.dark .footer-cols > div {
    grid-column: span 2;
  }
}
.site-footer.dark .legal {
  color: rgba(255, 255, 255, 0.6);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* Professional enhancements */

/* Accent text */
.text-gold {
  /* Neutral emphasis: inherit the surrounding color so it works on light and dark */
  color: inherit;
  text-shadow: none;
}

/* Section tag (small label above headers) */
.section-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #555;
  margin-bottom: 8px;
}
.section-tag-light {
  color: rgba(255, 255, 255, 0.85);
}

/* Centered section head */
.section-head-center {
  text-align: center;
  margin-bottom: 32px;
}
.section-head-center h2 {
  margin: 0 0 8px;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
}
.section-head-center p {
  margin: 0;
}

/* Step numbers */
.step {
  position: relative;
  text-align: center;
  padding: 24px 20px;
}
.step-num {
  position: absolute;
  top: 16px;
  left: 16px;
  width: 28px;
  height: 28px;
  background: #000;
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.step h3 {
  margin: 8px 0 6px;
}

/* Host benefits list */
.host-benefits {
  list-style: none;
  padding: 0;
  margin: 16px 0 24px;
}
.host-benefits li {
  padding: 6px 0;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.9);
}

/* Nav button style */
.btn-nav {
  padding: 8px 16px;
  font-size: 14px;
}

/* Footer restructure */
.footer-main {
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 48px;
  padding: 48px 0 32px;
}
.footer-brand p {
  margin: 12px 0 20px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}
.footer-apps {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.app-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  color: #fff;
  transition: border-color 0.2s;
}
.app-badge:hover {
  border-color: var(--brand-accent);
}
.footer-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.footer-links h4 {
  margin: 0 0 12px;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
}
.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-links a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.2s;
}
.footer-links a:hover {
  color: #fff;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}
.footer-social {
  display: flex;
  gap: 16px;
}
.footer-social a {
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.2s;
}
.footer-social a:hover {
  color: var(--brand-accent);
}
@media (max-width: 860px) {
  .footer-main {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .footer-links {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .footer-links {
    grid-template-columns: 1fr 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}

/* Hero split section tag */
.hero-left .section-tag {
  margin-bottom: 12px;
}
.hero-left .btn-primary {
  margin-top: 20px;
}

/* App Download Section - Professional */
.app-download-section {
  background: linear-gradient(180deg, #0a0a0a 0%, #000 100%);
  padding: 100px 0;
  overflow: hidden;
}

/* Two-tone emphasis for headings on dark sections */
.host-section-v2 .text-gold,
.app-download-section .text-gold {
  color: var(--duo-2-dark);
}

.app-download-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.app-download-content {
  color: #fff;
}

.app-download-content h2 {
  font-size: clamp(36px, 5vw, 52px);
  font-weight: 800;
  line-height: 1.1;
  margin: 16px 0 20px;
  /* Ensure heading remains crisp/visible on dark gradient */
  color: rgba(255, 255, 255, 0.98);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.45);
}

.app-download-content > p {
  font-size: 17px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 28px;
}

.app-features-list {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.app-features-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.85);
}

.app-features-list svg {
  color: var(--brand-accent);
  flex-shrink: 0;
}

.app-download-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.app-store-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 24px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  color: #fff;
  text-decoration: none;
  transition: all 0.2s ease;
}

.app-store-btn:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--brand-accent);
}

.app-store-btn .btn-text {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}

.app-store-btn .btn-text span {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.6);
}

.app-store-btn .btn-text strong {
  font-size: 16px;
  font-weight: 600;
}

.app-download-visual {
  display: flex;
  justify-content: center;
}

.phone-mockup {
  position: relative;
  width: 280px;
  padding: 12px;
  background: linear-gradient(145deg, #1a1a1a, #0a0a0a);
  border-radius: 40px;
  border: 3px solid #2a2a2a;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(255, 255, 255, 0.05),
    inset 0 0 20px rgba(255, 255, 255, 0.02);
}

.phone-mockup::before {
  content: "";
  position: absolute;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 24px;
  background: #000;
  border-radius: 12px;
  z-index: 10;
}

.phone-screen {
  border-radius: 28px;
  overflow: hidden;
  aspect-ratio: 9/19;
  background: #111;
}

.phone-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 900px) {
  .app-download-grid {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }

  .app-features-list {
    align-items: center;
  }

  .app-download-buttons {
    justify-content: center;
  }

  .phone-mockup {
    width: 240px;
  }
}

@media (max-width: 480px) {
  .app-download-section {
    padding: 60px 0;
  }

  .app-store-btn {
    width: 100%;
    justify-content: center;
  }
}

/* Modern Footer Styles */
.site-footer-modern {
  background: linear-gradient(180deg, #0a0a0a 0%, #000 100%);
  color: #fff;
  padding-top: 80px;
  margin-top: 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand-col {
  max-width: 280px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  text-decoration: none;
}

.footer-logo img {
  height: 44px;
  width: auto;
  /* Subtle white halo so the mark pops on dark backgrounds */
  filter: drop-shadow(0 0 1px rgba(255, 255, 255, 0.9))
    drop-shadow(0 0 4px rgba(255, 255, 255, 0.25));
}

.footer-logo-text {
  font-size: 24px;
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  /* White edging to stand out on the dark footer */
  -webkit-text-stroke: 0.5px rgba(255, 255, 255, 0.85);
  text-shadow: 0 0 2px rgba(255, 255, 255, 0.4);
}

.footer-tagline {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  margin: 0 0 24px;
}

.footer-social-icons {
  display: flex;
  gap: 12px;
}

.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.2s ease;
}

.social-icon:hover {
  background: #333;
  color: #fff;
}

.footer-links-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.footer-col h4 {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #fff;
  margin: 0 0 20px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-col a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.2s ease;
  text-decoration: none;
}

.footer-col a:hover {
  color: var(--brand-accent);
}

.footer-bottom-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 0;
}

.footer-copyright {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}

.footer-app-badges {
  display: flex;
  gap: 12px;
}

.footer-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: all 0.2s ease;
}

.footer-badge:hover {
  border-color: var(--brand-accent);
  color: var(--brand-accent);
}

@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .footer-brand-col {
    max-width: 100%;
  }

  .footer-links-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .site-footer-modern {
    padding-top: 60px;
  }

  .footer-links-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  .footer-bottom-bar {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .footer-app-badges {
    justify-content: center;
  }
}

/* Legal Pages Styles */
.legal-page {
  padding: 120px 0 80px;
  background: var(--bg);
  min-height: 80vh;
}

.legal-content {
  max-width: 800px;
  margin: 0 auto;
}

.legal-content h1 {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 800;
  margin: 0 0 8px;
}

.legal-updated {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 40px;
}

.legal-content section {
  margin-bottom: 40px;
}

.legal-content h2 {
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 16px;
  color: var(--text);
}

.legal-content h3 {
  font-size: 18px;
  font-weight: 600;
  margin: 20px 0 12px;
}

.legal-content p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 16px;
}

.legal-content ul {
  margin: 0 0 16px;
  padding-left: 24px;
}

.legal-content li {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 8px;
  color: var(--text);
}

/* Trust Page Styles */
.trust-intro {
  font-size: 18px;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 48px;
}

.trust-section {
  margin-bottom: 48px;
  padding: 32px;
  background: #fff;
  border-radius: 16px;
  border: 1px solid var(--border);
}

.trust-icon {
  width: 72px;
  height: 72px;
  background: rgba(0, 0, 0, 0.06);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-accent);
  margin-bottom: 20px;
}

.trust-section h2 {
  margin-top: 0;
}

/* Simple Footer */
.site-footer-simple {
  background: #0a0a0a;
  padding: 24px 0;
  text-align: center;
}

.site-footer-simple p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  margin: 0;
}

.site-footer-simple a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
}

.site-footer-simple a:hover {
  color: var(--brand-accent);
}

/* About Page Styles */
.about-hero {
  background: linear-gradient(180deg, #0a0a0a 0%, #1a1a1a 100%);
  color: #fff;
  padding: 140px 0 80px;
  text-align: center;
}

.about-hero h1 {
  font-size: clamp(36px, 6vw, 56px);
  font-weight: 800;
  line-height: 1.1;
  margin: 0 0 16px;
}

.about-hero p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.7);
  max-width: 500px;
  margin: 0 auto;
}

.about-content {
  padding: 80px 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 80px;
}

.about-text h2 {
  font-size: 32px;
  font-weight: 700;
  margin: 0 0 20px;
}

.about-text p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 16px;
}

.about-image img {
  width: 100%;
  border-radius: 16px;
}

.about-values {
  margin-bottom: 80px;
}

.about-values h2 {
  font-size: 32px;
  font-weight: 700;
  margin: 0 0 32px;
  text-align: center;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.value-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
  text-align: center;
}

.value-icon {
  width: 64px;
  height: 64px;
  background: rgba(0, 0, 0, 0.06);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-accent);
  margin: 0 auto 16px;
}

.value-card h3 {
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 8px;
}

.value-card p {
  font-size: 14px;
  color: var(--muted);
  margin: 0;
  line-height: 1.6;
}

.about-mission {
  background: #0a0a0a;
  color: #fff;
  padding: 60px;
  border-radius: 24px;
  text-align: center;
  margin-bottom: 80px;
}

.about-mission h2 {
  font-size: 28px;
  font-weight: 700;
  margin: 0 0 20px;
}

.mission-text {
  font-size: 20px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  max-width: 700px;
  margin: 0 auto;
}

.about-cta {
  text-align: center;
}

.about-cta h2 {
  font-size: 32px;
  font-weight: 700;
  margin: 0 0 12px;
}

.about-cta p {
  font-size: 16px;
  color: var(--muted);
  margin-bottom: 24px;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border: 2px solid var(--text);
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
  transition: all 0.2s ease;
}

.btn-outline:hover {
  background: var(--text);
  color: #fff;
}

/* Activities Page Styles */
.activities-hero {
  background: linear-gradient(180deg, #0a0a0a 0%, #1a1a1a 100%);
  color: #fff;
  padding: 140px 0 80px;
  text-align: center;
}

.activities-hero h1 {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 800;
  margin: 0 0 16px;
  color: #fff;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.45);
}

.activities-hero p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.85);
  max-width: 500px;
  margin: 0 auto;
}

.activities-hero h1 .text-gold {
  /* use softer white for two-shade effect on dark */
  color: var(--duo-2-dark);
}

.activities-list {
  padding: 80px 0;
}

.activity-category {
  margin-bottom: 60px;
}

.activity-category h2 {
  font-size: 28px;
  font-weight: 700;
  margin: 0 0 24px;
}

.activities-page-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.activity-card {
  display: block;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  transition: all 0.3s ease;
}

.activity-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.activity-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}

.activity-card-content {
  padding: 16px;
}

.activity-card h3 {
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 4px;
  color: var(--text);
}

.activity-card p {
  font-size: 14px;
  color: var(--muted);
  margin: 0;
}

.activities-cta {
  text-align: center;
  padding: 60px;
  background: #0a0a0a;
  border-radius: 24px;
  color: #fff;
}

.activities-cta h2 {
  font-size: 28px;
  font-weight: 700;
  margin: 0 0 12px;
}

.activities-cta p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 24px;
}

/* Host Landing Page Styles */
.host-hero {
  background: linear-gradient(180deg, #0a0a0a 0%, #1a1a1a 100%);
  color: #fff;
  padding: 140px 0 80px;
}

.host-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.host-hero-content h1 {
  font-size: clamp(36px, 5vw, 52px);
  font-weight: 800;
  line-height: 1.1;
  margin: 0 0 20px;
  color: #fff;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.45);
}

.host-hero-content h1 .text-gold {
  /* stronger emphasis on dark hero */
  color: rgba(255, 255, 255, 0.98);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.55);
  background-image: linear-gradient(
    to top,
    rgba(255, 255, 255, 0.18),
    rgba(255, 255, 255, 0.18)
  );
  background-size: 100% 0.12em;
  background-position: 0 88%;
  background-repeat: no-repeat;
}

.host-hero-content p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 24px;
}

.host-earnings-preview {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 32px;
}

.host-earnings-preview .earnings-label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
}

.host-earnings-preview .earnings-amount {
  font-size: 36px;
  font-weight: 800;
  color: #fff;
}

.host-earnings-preview .earnings-amount small {
  font-size: 18px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
}

.host-hero-image img {
  width: 100%;
  border-radius: 16px;
}

.host-benefits {
  padding: 80px 0;
  background: var(--bg);
}

.host-benefits h2 {
  font-size: 32px;
  font-weight: 700;
  margin: 0 0 40px;
  text-align: center;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.benefit-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
}

.benefit-card .benefit-icon {
  width: 72px;
  height: 72px;
  background: rgba(0, 0, 0, 0.06);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-accent);
  margin: 0 auto 20px;
}

.benefit-card h3 {
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 12px;
}

.benefit-card p {
  font-size: 14px;
  color: var(--muted);
  margin: 0;
  line-height: 1.6;
}

.host-how-it-works {
  padding: 80px 0;
}

.host-how-it-works h2 {
  font-size: 32px;
  font-weight: 700;
  margin: 0 0 40px;
  text-align: center;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.step {
  text-align: center;
}

.step-num {
  width: 48px;
  height: 48px;
  background: #000;
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.step h3 {
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 8px;
}

.step p {
  font-size: 14px;
  color: var(--muted);
  margin: 0;
  line-height: 1.6;
}

.host-spaces {
  padding: 80px 0;
  background: var(--bg);
}

.host-spaces h2 {
  font-size: 32px;
  font-weight: 700;
  margin: 0 0 40px;
  text-align: center;
}

.spaces-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.space-type {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px 24px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  font-size: 15px;
  font-weight: 500;
}

.space-type span {
  font-size: 24px;
}

.host-cta-final {
  padding: 100px 0;
  text-align: center;
  background: #0a0a0a;
  color: #fff;
}

.host-cta-final h2 {
  font-size: 36px;
  font-weight: 800;
  margin: 0 0 12px;
  color: #fff;
}

.host-cta-final p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 32px;
}

/* Responsive styles for new pages */
@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .values-grid,
  .activities-page-grid,
  .benefits-grid,
  .steps-grid,
  .spaces-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .host-hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .host-hero-content {
    text-align: center;
  }
}

@media (max-width: 600px) {
  .values-grid,
  .activities-page-grid,
  .benefits-grid,
  .steps-grid,
  .spaces-grid {
    grid-template-columns: 1fr;
  }

  .cta-buttons {
    flex-direction: column;
  }

  .about-mission {
    padding: 40px 24px;
  }
}
