/* ============================================================
   RENTALBAY — a sleek, professional re-imagining of Airbnb
   Design tokens, layout, components & motion
   ============================================================ */

:root {
  /* Palette — auction telemetry: dark graphite + volt lime */
  --brand: #c8f33b;
  --brand-2: #e4ff66;
  --brand-grad: linear-gradient(135deg, #eaff7d 0%, #c8f33b 55%, #79d91f 100%);
  --brand-ink: #10140a;
  --brand-tint: rgba(200, 243, 59, 0.14);
  --brand-tint-2: rgba(200, 243, 59, 0.07);
  --ink: #f5f3f4;
  --ink-soft: #cfcfd6;
  --muted: #8e8e99;
  --muted-2: #8a8a93;
  --line: #24242b;
  --line-strong: #34343d;
  --surface: #15151b;
  --surface-2: #1c1c23;
  --canvas: #0b0b0e;
  --canvas-warm: #101014;
  --success: #22c55e;
  --star: #fbbf24;

  /* Section accents (per-section color shifts, IFF-style) */
  --sec-a: var(--brand);

  /* Shape */
  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 16px;
  --r-xl: 22px;
  --r-pill: 999px;

  /* Elevation */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.4), 0 1px 3px rgba(0, 0, 0, 0.45);
  --shadow-md: 0 6px 16px rgba(0, 0, 0, 0.5);
  --shadow-lg: 0 12px 32px rgba(0, 0, 0, 0.6);
  --shadow-brand: 0 10px 26px -8px rgba(200, 243, 59, 0.42);

  /* Type */
  --font: "Plus Jakarta Sans", "Segoe UI", system-ui, -apple-system, sans-serif;
  --font-display: "Barlow Condensed", "Arial Narrow", "Roboto Condensed", sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, "SFMono-Regular", "Cascadia Code", Consolas, monospace;
  --h-1: clamp(2.4rem, 5.2vw, 4.2rem);
  --h-2: clamp(1.5rem, 2.6vw, 2rem);

  /* Layout */
  --container: 1220px;
  --header-h: 76px;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --dur: 0.45s;
}

/* ============ Reset / base ============ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
}

body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--canvas);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  min-height: 100vh;
  min-height: 100dvh;
}

img { display: block; max-width: 100%; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
a { color: inherit; text-decoration: none; }
input, textarea { font: inherit; color: inherit; }
::selection { background: rgba(200, 243, 59, 0.18); }

/* Touch-friendly interactivity (Android + iOS):
   remove tap flash, kill the 300ms double-tap delay on tap targets */
button, a, [role="button"], .card, .chip, .cat-pill, .search-field,
summary, .cal-day, .stepper__btn, .quick, .nav__link, .card__fav {
  touch-action: manipulation;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  user-select: none;
}

/* Overscroll containment: keep pull-to-refresh / swipe-nav from hijacking
   the page on iOS Safari and Android Chrome. */
html, body {
  overscroll-behavior-y: none;
}
.modal__panel, .quick, .mobile-search, .legal-doc, .cal-wrap, .calendar__viewport,
.reg-wizard, .dropdown, .toast-wrap {
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
}

/* Inputs must be >=16px on touch devices or iOS auto-zooms the page on focus */
/* (specificity-hardened — declared LAST in the file so later component
   rules like `.search-field input { font-size: 0.92rem }` cannot win) */
@media (pointer: coarse) {
  input, select, textarea,
  .search-field input,
  .field input, .reg-field input[type="text"],
  .reg-field input[type="email"], .reg-field input[type="password"],
  .reg-field input[type="tel"], .reg-field select, .host-field input,
  .newsletter input { font-size: 16px; }
}

/* Respect iOS safe areas (notch / home indicator) */
:root {
  --sat: env(safe-area-inset-top, 0px);
  --sab: env(safe-area-inset-bottom, 0px);
  --sal: env(safe-area-inset-left, 0px);
  --sar: env(safe-area-inset-right, 0px);
}

/* Custom scrollbar */
::-webkit-scrollbar { width: 12px; height: 12px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb {
  background: var(--line-strong);
  border-radius: 8px;
  border: 3px solid var(--canvas);
}
::-webkit-scrollbar-thumb:hover { background: var(--muted-2); }

:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 2px;
  border-radius: 6px;
}

.container {
  width: min(var(--container), 100% - 2.5rem);
  margin-inline: auto;
}

/* ============ Buttons ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8rem 1.5rem;
  border-radius: var(--r-pill);
  font-weight: 700;
  font-size: 0.95rem;
  line-height: 1;
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out),
    background 0.25s var(--ease-out), color 0.25s var(--ease-out), filter 0.25s var(--ease-out);
  will-change: transform;
}
.btn:active { transform: scale(0.97); }
.btn--primary {
  color: #fff;
  background: var(--brand-grad);
  box-shadow: var(--shadow-brand);
}
.btn--primary:hover { transform: translateY(-1px); box-shadow: 0 14px 30px -8px rgba(200, 243, 59, 0.65); filter: saturate(1.1); }
.btn--light { background: #fff; color: #15151a; box-shadow: var(--shadow-md); }
.btn--light:hover { transform: translateY(-1px); box-shadow: var(--shadow-lg); }
.btn--ghost { background: transparent; color: var(--ink); border: 1px solid var(--line-strong); }
.btn--ghost:hover { border-color: var(--ink); }
.btn--rent {
  color: #1a1303;
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  box-shadow: 0 8px 20px -6px rgba(245, 158, 11, 0.45);
}
.btn--rent:hover { transform: translateY(-1px); filter: saturate(1.15); box-shadow: 0 12px 26px -8px rgba(245, 158, 11, 0.55); }
.btn--block { width: 100%; }
.btn--sm { padding: 0.65rem 1.15rem; font-size: 0.875rem; }

/* ============ Scroll reveal ============ */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
  will-change: opacity, transform;
}
.reveal.is-revealed { opacity: 1; transform: translateY(0); }

/* ============================================================
   HEADER
   ============================================================ */
.header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 60;
  height: calc(var(--header-h) + var(--sat));
  padding-top: var(--sat);
  background: rgba(11, 11, 14, 0);
  backdrop-filter: blur(0);
  transition: background 0.4s var(--ease-out), backdrop-filter 0.4s var(--ease-out),
    box-shadow 0.4s var(--ease-out), height 0.4s var(--ease-out);
}
.header.is-scrolled {
  background: rgba(11, 11, 14, 0.78);
  backdrop-filter: blur(18px) saturate(1.6);
  -webkit-backdrop-filter: blur(18px) saturate(1.6);
  box-shadow: 0 1px 0 var(--line), 0 8px 30px rgba(0, 0, 0, 0.35);
}

.header__inner {
  width: min(var(--container), 100% - 2.5rem);
  margin-inline: auto;
  height: var(--header-h);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
}

/* Logo */
.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  justify-self: start;
  color: var(--brand);
}
.logo__mark {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--brand-grad);
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow:
    inset 0 2px 0 rgba(255, 255, 255, 0.32),
    inset 0 -3px 5px rgba(10, 16, 10, 0.42),
    0 0 0 1.5px #10140a,
    0 0 0 3.5px rgba(200, 243, 59, 0.45),
    var(--shadow-brand);
  transition: transform 0.4s var(--ease-spring);
}
.logo:hover .logo__mark { transform: rotate(-8deg) scale(1.05); }
.logo__mark svg { width: 30px; height: 30px; }
.logo__word {
  font-size: 1.45rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--ink);
  transform-origin: left center;
}

/* Nav */
.nav {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}
.nav__link {
  position: relative;
  padding: 0.65rem 0.9rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--muted);
  border-radius: var(--r-pill);
  transition: color 0.25s, background 0.25s;
}
.nav__link::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 4px;
  width: 0;
  height: 2px;
  border-radius: 2px;
  background: var(--ink);
  transform: translateX(-50%);
  transition: width 0.35s var(--ease-out);
}
.nav__link:hover { color: var(--ink); background: rgba(255, 255, 255, 0.06); }
.nav__link.is-active { color: var(--ink); }
.nav__link.is-active::after { width: 22px; }

/* Actions */
.header__actions {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  justify-self: end;
}
.host-link {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.7rem 0.85rem;
  border-radius: var(--r-pill);
  font-size: 0.92rem;
  font-weight: 600;
  white-space: nowrap;
  cursor: pointer;
  transition: background 0.25s;
}
.host-link:hover { background: rgba(255, 255, 255, 0.06); }
.host-link svg { width: 17px; height: 17px; }
.lang-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.65rem 0.8rem;
  border-radius: var(--r-pill);
  font-size: 0.88rem;
  font-weight: 700;
  transition: background 0.25s;
}
.lang-btn:hover { background: rgba(255, 255, 255, 0.06); }
.lang-btn svg { width: 17px; height: 17px; }

.profile-btn {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.4rem 0.5rem 0.4rem 0.8rem;
  border-radius: var(--r-pill);
  border: 1px solid var(--line-strong);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.3s var(--ease-out), transform 0.2s;
}
.profile-btn:hover { box-shadow: var(--shadow-md); }
.profile-btn:active { transform: scale(0.97); }
.profile-btn > svg { width: 17px; height: 17px; }
.profile-btn__avatar {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--canvas);
  display: grid;
  place-items: center;
}
.profile-btn__avatar svg { width: 16px; height: 16px; }

/* Compact search pill (scroll state) */
.header__search {
  position: absolute;
  inset: calc(var(--header-h) + var(--sat)) 0 auto 0;
  height: 74px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  opacity: 0;
  transform: translateY(-14px);
  visibility: hidden;
  transition: opacity 0.4s var(--ease-out), transform 0.4s var(--ease-out), visibility 0s linear 0.4s;
  pointer-events: none;
}
.header.is-scrolled .header__search {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
  transition: opacity 0.4s var(--ease-out), transform 0.4s var(--ease-out), visibility 0s;
  pointer-events: auto;
}
.search-pill {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  height: 52px;
  padding: 0 0.6rem 0 1.5rem;
  margin-top: 12px;
  border-radius: var(--r-pill);
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.45);
  font-size: 0.9rem;
  transition: box-shadow 0.3s var(--ease-out), transform 0.3s var(--ease-out);
}
.search-pill:hover { box-shadow: 0 16px 40px rgba(0, 0, 0, 0.6); transform: translateY(-1px); }
.search-pill__loc { font-weight: 700; }
.search-pill__dates, .search-pill__guests { color: var(--muted); font-weight: 500; }
.search-pill__sep { width: 1px; height: 22px; background: var(--line); }
.search-pill__cta {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--brand-grad);
  color: #fff;
  box-shadow: var(--shadow-brand);
}
.search-pill__cta svg { width: 17px; height: 17px; }

/* ============ Dropdown ============ */
.dropdown {
  position: fixed;
  top: calc(var(--header-h) + var(--sat) + 10px);
  right: max(1.25rem, calc((100vw - var(--container)) / 2));
  z-index: 70;
  width: 250px;
  padding: 0.5rem;
  border-radius: var(--r-md);
  background: var(--surface);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--line);
  opacity: 0;
  transform: translateY(-8px) scale(0.97);
  transform-origin: top right;
  pointer-events: none;
  transition: opacity 0.3s var(--ease-out), transform 0.3s var(--ease-out);
}
.dropdown.is-open { opacity: 1; transform: none; pointer-events: auto; }
.dropdown__item {
  display: block;
  padding: 0.7rem 0.9rem;
  border-radius: 10px;
  font-size: 0.92rem;
  font-weight: 600;
  transition: background 0.2s;
}
.dropdown__item:first-child, .dropdown__item:nth-child(2) { font-weight: 700; }
.dropdown__item:hover { background: rgba(255, 255, 255, 0.06); }
.dropdown__divider { display: block; height: 1px; background: var(--line); margin: 0.35rem 0; }

.lang-menu {
  position: fixed;
  top: calc(var(--header-h) + var(--sat) + 10px);
  right: max(1.25rem, calc((100vw - var(--container)) / 2));
  z-index: 71;
  width: 250px;
  max-height: min(70vh, 560px);
  display: flex;
  flex-direction: column;
  padding: 0.5rem;
  border-radius: 12px;
  background: var(--surface);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--line);
  opacity: 0;
  transform: translateY(-8px) scale(0.97);
  transform-origin: top right;
  pointer-events: none;
  transition: opacity 0.3s var(--ease-out), transform 0.3s var(--ease-out);
}
.lang-menu.is-open { opacity: 1; transform: none; pointer-events: auto; }
.lang-menu__head {
  padding: 0.6rem 0.9rem 0.4rem;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.lang-menu__list { overflow-y: auto; overscroll-behavior: contain; padding-bottom: 0.25rem; }
.lang-menu__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  width: 100%;
  padding: 0.62rem 0.9rem;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 600;
  text-align: left;
  transition: background 0.2s;
}
.lang-menu__item:hover { background: rgba(255, 255, 255, 0.06); }
.lang-menu__item .lang-menu__native {
  color: var(--ink);
}
.lang-menu__item .lang-menu__code {
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.08em;
  color: var(--muted);
}
.lang-menu__item.is-active .lang-menu__native { color: var(--brand); }
.lang-menu__item.is-active .lang-menu__code { color: var(--brand); }
.lang-menu__item.is-active::after {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brand);
  flex: none;
}
.lang-menu__item:first-of-type, .lang-menu__item:nth-of-type(2) { font-weight: 700; }

.lang-btn__code {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: var(--ink-soft);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: min(92vh, 880px);
  display: grid;
  place-items: end stretch;
  overflow: hidden;
}
.hero__media {
  position: absolute;
  inset: 0;
}
.hero__media > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  animation: heroZoom 12s var(--ease-out) forwards;
}
.hero__scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(10, 10, 14, 0.9) 0%, rgba(10, 10, 14, 0.62) 28%, rgba(10, 10, 14, 0.12) 56%, rgba(10, 10, 14, 0) 74%),
    linear-gradient(105deg, rgba(10, 10, 14, 0.78) 0%, rgba(10, 10, 14, 0.32) 34%, rgba(10, 10, 14, 0) 62%),
    linear-gradient(to bottom, rgba(10, 10, 14, 0.56) 0%, rgba(10, 10, 14, 0.18) 24%, rgba(10, 10, 14, 0) 44%);
}
@keyframes heroZoom {
  from { transform: scale(1.08); }
  to { transform: scale(1.02); }
}

.hero__content {
  position: relative;
  z-index: 2;
  width: min(var(--container), 100% - 2.5rem);
  margin: 0 auto;
  padding-top: calc(var(--header-h) + var(--sat) + 34px);
  padding-bottom: calc(96px + var(--sab));
  color: #fff;
}
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease-out) 0.1s forwards;
}
.hero__eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--brand-2); border-radius: 2px; }
.hero__title {
  font-size: var(--h-1);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.04;
  margin: 0.7rem 0 0.9rem;
  text-shadow: 0 2px 30px rgba(10, 10, 14, 0.35);
  opacity: 0;
  animation: fadeUp 0.8s var(--ease-out) 0.2s forwards;
}
.hero__sub {
  max-width: 480px;
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 500;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease-out) 0.3s forwards;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes otpShake {
  0% { transform: translateX(0); }
  20% { transform: translateX(-8px); }
  40% { transform: translateX(8px); }
  60% { transform: translateX(-6px); }
  80% { transform: translateX(6px); }
  100% { transform: translateX(0); }
}

@keyframes otpPop {
  0% { transform: scale(1); }
  40% { transform: scale(1.12); }
  100% { transform: scale(1); }
}

/* Search card */
.search-card {
  margin-top: 2.4rem;
  max-width: 860px;
  border-radius: var(--r-xl);
  background: rgba(21, 21, 27, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.6);
  padding: 0.55rem 0.55rem 0.55rem 1.5rem;
  display: flex;
  flex-direction: column;
  opacity: 0;
  transform: translateY(26px) scale(0.98);
  animation: searchIn 0.8s var(--ease-spring) 0.45s forwards;
}
@keyframes searchIn {
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.search-card__tabs {
  display: flex;
  gap: 0.25rem;
  padding: 0.35rem 0 0.4rem;
  border-bottom: 1px solid var(--line);
  margin-bottom: 0.4rem;
}
.search-tab {
  padding: 0.45rem 1rem;
  border-radius: var(--r-pill);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--muted);
  position: relative;
  transition: color 0.25s, background 0.25s;
}
.search-tab:hover { color: var(--ink); }
.search-tab.is-active { color: var(--brand); background: rgba(200, 243, 59, 0.16); }

.search-form {
  display: flex;
  align-items: stretch;
  gap: 0.25rem;
}
.search-field {
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.1rem;
  padding: 0.7rem 1.1rem;
  border-radius: var(--r-lg);
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.25s, box-shadow 0.25s;
}
.search-field:hover { background: rgba(255, 255, 255, 0.05); }
.search-field.is-open { background: var(--surface-2); box-shadow: 0 0 0 2px var(--brand); }
.search-field label {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.search-field input,
.search-field > span {
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--ink);
  border: none;
  background: none;
  outline: none;
  width: 100%;
}
.search-field input::placeholder { color: var(--muted-2); font-weight: 500; }
.search-field__clear {
  position: absolute;
  right: 0.7rem;
  top: 50%;
  transform: translateY(-50%);
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--muted-2);
  color: var(--brand-ink);
  font-size: 0.95rem;
  line-height: 1;
  display: none;
  place-items: center;
  transition: transform 0.2s var(--ease-spring);
}
.search-field__clear.is-visible { display: grid; }
.search-field__clear:hover { background: var(--brand); transform: translateY(-50%) rotate(90deg); }
.search-field__dates { font-weight: 600; }

.search-submit {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  align-self: center;
  padding: 0.95rem 1.6rem;
  border-radius: var(--r-pill);
  background: var(--brand-grad);
  color: #fff;
  font-weight: 800;
  font-size: 1rem;
  box-shadow: var(--shadow-brand);
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out), filter 0.25s;
}
.search-submit:hover { transform: translateY(-2px) scale(1.03); box-shadow: 0 18px 34px -6px rgba(200, 243, 59, 0.65); }
.search-submit:active { transform: scale(0.97); }
.search-submit svg { width: 19px; height: 19px; }

/* ============================================================
   LISTINGS
   ============================================================ */
.main { background: var(--canvas); }
.listings {
  padding: 2.6rem 0 3rem;
}
.listings__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.listings__head h2 {
  font-size: var(--h-2);
  font-weight: 800;
  letter-spacing: -0.02em;
}
.listings__head p { color: var(--muted); font-size: 0.95rem; margin-top: 0.15rem; }

.sort-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.6rem 0.9rem;
  border-radius: var(--r-pill);
  border: 1px solid var(--line-strong);
  background: var(--surface);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ink-soft);
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.25s, transform 0.2s;
}
.sort-btn:hover { box-shadow: var(--shadow-md); }
.sort-btn:active { transform: scale(0.97); }
.sort-btn b { color: var(--ink); }
.sort-btn svg { width: 15px; height: 15px; transition: transform 0.3s var(--ease-out); }
.sort-btn.is-open svg { transform: rotate(180deg); }

/* Category bar */
.category-bar {
  position: sticky;
  top: calc(var(--header-h) + var(--sat) + 74px);
  z-index: 30;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--canvas);
  padding: 0.75rem 0;
  margin-bottom: 0.75rem;
}
.categories {
  display: flex;
  gap: 1.6rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding: 0.25rem 0;
  flex: 1;
}
.categories::-webkit-scrollbar { display: none; }
.cat-pill {
  position: relative;
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.45rem;
  padding: 0.4rem 0.2rem 0.7rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--muted);
  transition: color 0.25s;
}
.cat-pill svg {
  width: 26px;
  height: 26px;
  transition: transform 0.4s var(--ease-spring), color 0.25s;
}
.cat-pill::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0;
  height: 2px;
  border-radius: 2px;
  background: var(--ink);
  transform: translateX(-50%);
  transition: width 0.35s var(--ease-out);
}
.cat-pill:hover { color: var(--ink); }
.cat-pill:hover svg { transform: translateY(-3px) scale(1.06); }
.cat-pill.is-active { color: var(--ink); }
.cat-pill.is-active::after { width: 24px; }
.cat-pill.is-active svg { color: var(--brand); }

.cat-arrow {
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  background: var(--surface);
  display: grid;
  place-items: center;
  color: var(--ink-soft);
  transition: box-shadow 0.25s, transform 0.2s, opacity 0.25s;
}
.cat-arrow:hover { box-shadow: var(--shadow-md); }
.cat-arrow:active { transform: scale(0.94); }
.cat-arrow svg { width: 18px; height: 18px; }
.cat-arrow.is-hidden { opacity: 0; pointer-events: none; }

.category-bar__side { flex: 0 0 auto; display: flex; gap: 0.6rem; align-items: center; }
.filter-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.62rem 1rem;
  border-radius: 14px;
  border: 1px solid var(--line-strong);
  background: var(--surface);
  font-size: 0.88rem;
  font-weight: 700;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.25s, transform 0.2s, border-color 0.25s;
}
.filter-btn:hover { box-shadow: var(--shadow-md); border-color: var(--line-strong); }
.filter-btn:active { transform: scale(0.97); }
.filter-btn svg { width: 16px; height: 16px; }
.filter-btn.has-filter { border-color: var(--brand); color: var(--brand); }

/* Card grid */
.card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.6rem 1.4rem;
}
.card {
  cursor: pointer;
  border-radius: var(--r-lg);
}
.card__media {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3.1;
  background: #232329;
}
.card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s var(--ease-out), filter 0.55s var(--ease-out);
}
.card:hover .card__media img { transform: scale(1.08); }
.card__fav {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 3;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(6px);
  display: grid;
  place-items: center;
  color: #15151a;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease-spring), color 0.25s, background 0.25s;
}
.card__fav:hover { transform: scale(1.14); }
.card__fav.is-loved { color: var(--brand); }
.card__fav svg { width: 17px; height: 17px; transition: transform 0.35s var(--ease-spring); fill: transparent; }
.card__fav.is-loved svg { fill: currentColor; transform: scale(1.12); animation: heartPop 0.45s var(--ease-spring); }
@keyframes heartPop {
  0% { transform: scale(0.4); }
  55% { transform: scale(1.35); }
  100% { transform: scale(1.12); }
}
.card__badge {
  position: absolute;
  left: 12px;
  top: 12px;
  z-index: 3;
  padding: 0.35rem 0.7rem;
  border-radius: var(--r-pill);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(6px);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  color: #15151a;
  box-shadow: var(--shadow-sm);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.4s var(--ease-out), transform 0.4s var(--ease-out);
}
.card:hover .card__badge { opacity: 1; transform: translateY(0); }

.card__body { padding: 0.85rem 0.15rem 0; }
.card__row { display: flex; align-items: flex-start; justify-content: space-between; gap: 0.6rem; }
.card__loc { font-size: 0.95rem; font-weight: 700; letter-spacing: -0.01em; }
.card__rating {
  display: inline-flex;
  align-items: center;
  gap: 0.28rem;
  font-size: 0.86rem;
  font-weight: 700;
  flex: 0 0 auto;
}
.card__rating svg { width: 13px; height: 13px; color: var(--star); }
.card__sub { font-size: 0.88rem; color: var(--muted); margin-top: 0.1rem; }
.card__date { font-size: 0.88rem; color: var(--muted); margin-top: 0.35rem; }
.card__price { margin-top: 0.45rem; font-size: 0.93rem; }
.card__price b { font-weight: 800; }
.card__price span { color: var(--muted); }

/* Skeleton loading */
.skeleton {
  position: relative;
  overflow: hidden;
  background: #1d1d24;
}
.skeleton::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, transparent 20%, rgba(255, 255, 255, 0.08) 50%, transparent 80%);
  transform: translateX(-100%);
  animation: shimmer 1.6s infinite;
}
@keyframes shimmer {
  to { transform: translateX(100%); }
}
.card--skeleton .card__media, .card--skeleton .sk-line {
  border-radius: var(--r-lg);
}
.sk-line { height: 14px; border-radius: 6px; margin-top: 10px; }
.sk-line--w60 { width: 60%; }
.sk-line--w80 { width: 80%; }
.sk-line--w40 { width: 40%; }

/* Load more */
.listings__foot { display: flex; justify-content: center; padding: 2.4rem 0 0.5rem; }
.load-more {
  padding: 0.85rem 2rem;
  border-radius: var(--r-pill);
  border: 1px solid var(--ink);
  background: transparent;
  font-weight: 700;
  transition: color 0.3s, background 0.3s, transform 0.2s, box-shadow 0.3s;
}
.load-more:hover { background: var(--ink); color: var(--canvas); box-shadow: var(--shadow-md); transform: translateY(-2px); }
.load-more:active { transform: scale(0.97); }

/* ============================================================
   BANNER
   ============================================================ */
.banner { padding: 2rem 0 4.5rem; }
.banner__inner {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  align-items: center;
  gap: 3rem;
  border-radius: var(--r-xl);
  overflow: hidden;
  background: linear-gradient(135deg, #1c1c22, #26262e);
  color: #fff;
  box-shadow: var(--shadow-lg);
}
.banner__copy { padding: 3.2rem 0 3.2rem 3.2rem; }
.banner__copy h2 { font-size: clamp(1.6rem, 3vw, 2.3rem); font-weight: 800; letter-spacing: -0.02em; line-height: 1.12; }
.banner__copy p { color: rgba(255, 255, 255, 0.72); margin: 0.9rem 0 1.5rem; max-width: 420px; }
.banner__media { position: relative; height: 100%; min-height: 320px; }
.banner__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease-out); }
.banner:hover .banner__media img { transform: scale(1.05); }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials { padding: 1rem 0 5rem; }
.testimonials__title { font-size: var(--h-2); font-weight: 800; letter-spacing: -0.02em; margin-bottom: 1.8rem; }
.testimonials__note { font-family: var(--font-mono); font-size: 0.74rem; letter-spacing: 0.02em; color: var(--muted-2); margin: -1.2rem 0 1.6rem; }
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.testimonial {
  padding: 1.6rem;
  border-radius: var(--r-lg);
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out), border-color 0.3s;
}
.testimonial:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--line-strong); }
.testimonial__stars { color: var(--star); display: flex; gap: 0.15rem; }
.testimonial__stars svg { width: 15px; height: 15px; }
.testimonial__quote { font-size: 0.95rem; color: var(--ink-soft); line-height: 1.6; }
.testimonial__who { display: flex; align-items: center; gap: 0.8rem; margin-top: auto; }
.testimonial__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 800;
  font-size: 0.95rem;
  flex: 0 0 auto;
}
.testimonial__name { font-weight: 700; font-size: 0.9rem; }
.testimonial__meta { font-size: 0.8rem; color: var(--muted); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #16161a;
  color: #e9e9ee;
  padding: 4rem 0 calc(2rem + var(--sab));
}
.footer__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
  padding-bottom: 2.8rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.footer__col { display: flex; flex-direction: column; gap: 0.75rem; align-items: flex-start; }
.footer__col h3, .footer__col h4 { font-size: 0.92rem; font-weight: 800; letter-spacing: 0.04em; text-transform: uppercase; color: #fff; margin-bottom: 0.2rem; }
.footer__col a { font-size: 0.92rem; color: rgba(233, 233, 238, 0.72); position: relative; transition: color 0.25s, padding-left 0.25s; }
.footer__col a:hover { color: #fff; padding-left: 4px; }
.footer__col--wide p { font-size: 0.92rem; color: rgba(233, 233, 238, 0.72); }
.newsletter { display: flex; gap: 0.5rem; margin-top: 0.3rem; width: 100%; max-width: 360px; }
.newsletter input {
  flex: 1;
  padding: 0.7rem 1rem;
  border-radius: var(--r-pill);
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  outline: none;
  transition: border-color 0.25s, background 0.25s;
}
.newsletter input::placeholder { color: rgba(233, 233, 238, 0.5); }
.newsletter input:focus { border-color: var(--brand-2); background: rgba(255, 255, 255, 0.1); }

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding-top: 1.8rem;
  flex-wrap: wrap;
}
.footer__legal { display: flex; align-items: center; gap: 1.2rem; flex-wrap: wrap; font-size: 0.85rem; color: rgba(233, 233, 238, 0.72); }
.footer__legal a:hover { color: #fff; }
.footer__mission { flex: 1 1 100%; order: 1; font-family: var(--font-mono); font-size: 0.78rem; letter-spacing: 0.04em; color: var(--muted); margin: 0 0 0.2rem; }
.footer__mission b { color: var(--brand-2); font-weight: 600; }
.footer__demo { flex: 1 1 100%; order: 2; font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.03em; color: var(--muted-2); margin: 0 0 0.5rem; max-width: 620px; line-height: 1.5; }
.footer__social { display: flex; align-items: center; gap: 0.4rem; }
.footer__social .lang-btn { color: #fff; }
.footer__social .lang-btn:hover { background: rgba(255, 255, 255, 0.08); }
.footer__social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  transition: background 0.25s, transform 0.25s var(--ease-spring);
}
.footer__social a:hover { background: rgba(255, 255, 255, 0.1); transform: translateY(-3px); }
.footer__social a svg { width: 18px; height: 18px; }

/* ============================================================
   MODALS (shared)
   ============================================================ */
.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 1rem;
  padding-top: max(1rem, var(--sat));
  padding-bottom: max(1rem, var(--sab));
  visibility: hidden;
}
.modal.is-open { visibility: visible; }
.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 15, 20, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0;
  transition: opacity 0.4s var(--ease-out);
}
.modal.is-open .modal__backdrop { opacity: 1; }
.modal__panel {
  position: relative;
  z-index: 2;
  background: var(--surface);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-lg);
  max-width: 100%;
  max-height: calc(100vh - 2rem);
  max-height: calc(100dvh - 2rem);
  overflow-y: auto;
  opacity: 0;
  transform: translateY(26px) scale(0.96);
  transition: opacity 0.45s var(--ease-out), transform 0.45s var(--ease-spring);
}
.modal.is-open .modal__panel { opacity: 1; transform: translateY(0) scale(1); }
.modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 5;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--ink-soft);
  background: var(--surface-2);
  border: 1px solid var(--line-strong);
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s var(--ease-spring), background 0.25s, color 0.25s;
}
.modal__close:hover { transform: rotate(90deg); background: var(--ink); color: var(--canvas); }
.modal__close svg { width: 18px; height: 18px; }
.modal__title { font-size: 1.3rem; font-weight: 800; letter-spacing: -0.02em; padding: 1.4rem 1.6rem 0.4rem; }
.modal__actions {
  position: sticky;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.6rem 1.4rem;
  background: linear-gradient(to top, var(--surface) 70%, rgba(21, 21, 27, 0));
}

/* Calendar modal */
.modal__panel--calendar { width: min(720px, 100%); }
.calendar { padding: 0.4rem 1.6rem 0; }
.calendar__nav {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.6rem;
}
.calendar__nav-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  display: grid;
  place-items: center;
  color: var(--ink-soft);
  transition: background 0.25s, transform 0.2s, opacity 0.25s;
}
.calendar__nav-btn:hover { background: var(--surface-2); }
.calendar__nav-btn:active { transform: scale(0.93); }
.calendar__nav-btn.is-disabled { opacity: 0.35; pointer-events: none; }
.calendar__nav-btn svg { width: 17px; height: 17px; }
.calendar__viewport { overflow: hidden; }
.calendar__track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 100%;
  transition: transform 0.5s var(--ease-out);
}
.calendar__month { padding: 0.2rem; }
.calendar__month-head {
  font-size: 0.95rem;
  font-weight: 800;
  text-align: center;
  padding: 0.5rem 0 0.9rem;
}
.calendar__grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
}
.calendar__dow {
  text-align: center;
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--muted);
  padding: 0.4rem 0;
}
.cal-day {
  position: relative;
  aspect-ratio: 1;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink-soft);
  display: grid;
  place-items: center;
  transition: color 0.2s, background 0.2s;
}
.cal-day::before {
  content: "";
  position: absolute;
  inset: 2px;
  border-radius: 50%;
  background: transparent;
  z-index: -1;
  transition: background 0.25s var(--ease-out), transform 0.25s var(--ease-spring);
}
.cal-day:hover:not(.is-out)::before { background: rgba(255, 255, 255, 0.08); transform: scale(1.08); }
.cal-day.is-out { color: var(--muted-2); pointer-events: none; }
.cal-day.is-selected { color: var(--brand-ink); }
.cal-day.is-selected::before { background: var(--brand); }
.cal-day.is-selected:hover::before { background: var(--brand-2); transform: scale(1.08); }
.cal-day.is-in-range { color: var(--brand); }
.cal-day.is-in-range::before { background: rgba(200, 243, 59, 0.18); border-radius: 0; }
.cal-day.is-range-start { color: var(--brand-ink); border-radius: 999px 0 0 999px; }
.cal-day.is-range-start::before { border-radius: 50% 0 0 50%; background: var(--brand); }
.cal-day.is-range-end { color: var(--brand-ink); border-radius: 0 999px 999px 0; }
.cal-day.is-range-end::before { border-radius: 0 50% 50% 0; background: var(--brand); }
.cal-day.is-today { box-shadow: inset 0 0 0 1.5px var(--brand); border-radius: 50%; }

.calendar__foot {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.2rem 1.6rem 1.4rem;
  border-top: 1px solid var(--line);
  margin-top: 0.8rem;
}
.calendar__summary { flex: 1; text-align: center; color: var(--muted); font-size: 0.9rem; }
.calendar__nights {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.7rem;
  padding: 1rem 1.6rem 0.1rem;
}
.calendar__nights-label {
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted);
}
.calendar__nights-btn {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  display: grid;
  place-items: center;
  color: var(--ink-soft);
  transition: border-color 0.2s, color 0.2s, transform 0.2s var(--ease-spring), opacity 0.2s;
}
.calendar__nights-btn:hover:not(:disabled) { border-color: var(--ink); color: var(--ink); transform: scale(1.08); }
.calendar__nights-btn:active:not(:disabled) { transform: scale(0.9); }
.calendar__nights-btn:disabled { opacity: 0.3; cursor: not-allowed; }
.calendar__nights-btn svg { width: 14px; height: 14px; }
.calendar__nights-value {
  min-width: 1.6rem;
  text-align: center;
  font-weight: 800;
  font-size: 1rem;
}
.calendar__nights-week {
  border: 1px solid var(--line-strong);
  background: var(--surface);
  color: var(--ink-soft);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.calendar__nights-week:hover { border-color: var(--brand); color: var(--brand); }
.calendar__nights-week.is-active { border-color: var(--brand); color: var(--brand-2); background: rgba(200, 243, 59, 0.08); }
.calendar__nights-cap { font-size: 0.72rem; color: var(--muted-2); }

/* Guests modal */
.modal__panel--guests { width: min(460px, 100%); }
.guest-rows { padding: 0.6rem 1.6rem 0.4rem; }
.guest-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}
.guest-row + .guest-row { border-top: 1px solid var(--line); }
.guest-row__label b { display: block; font-size: 0.98rem; }
.guest-row__label span { font-size: 0.82rem; color: var(--muted); }
.guest-row--note { justify-content: flex-start; font-size: 0.85rem; color: var(--muted); padding-top: 0.4rem; }
.guest-row--note b { color: var(--ink-soft); }
.stepper { display: inline-flex; align-items: center; gap: 0.9rem; }
.stepper__btn {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  display: grid;
  place-items: center;
  color: var(--ink-soft);
  transition: border-color 0.2s, color 0.2s, transform 0.2s var(--ease-spring), opacity 0.2s;
}
.stepper__btn:hover:not(:disabled) { border-color: var(--ink); color: var(--ink); transform: scale(1.08); }
.stepper__btn:active:not(:disabled) { transform: scale(0.9); }
.stepper__btn:disabled { opacity: 0.3; cursor: not-allowed; }
.stepper__btn svg { width: 15px; height: 15px; }
.stepper__value { min-width: 1.4rem; text-align: center; font-weight: 800; font-size: 1rem; }

/* Auth modal */
.modal__panel--auth { width: min(460px, 100%); }
.auth-tabs {
  display: flex;
  gap: 1.2rem;
  padding: 1.4rem 1.6rem 0;
  border-bottom: 1px solid var(--line);
}
.auth-tab {
  position: relative;
  padding: 0.65rem 1.2rem 0.85rem;
  font-weight: 700;
  color: var(--muted);
  transition: color 0.25s;
}
.auth-tab::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  height: 2px;
  width: 0;
  background: var(--ink);
  transition: width 0.35s var(--ease-out);
}
.auth-tab.is-active { color: var(--ink); }
.auth-tab.is-active::after { width: 100%; }
.auth-body { padding: 1.4rem 1.6rem 1.6rem; }
.auth-body__title { font-size: 1.35rem; font-weight: 800; letter-spacing: -0.02em; margin-bottom: 1.1rem; animation: fadeUp 0.4s var(--ease-out); }
.auth-social { display: flex; flex-direction: column; gap: 0.7rem; }
.auth-social__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  padding: 0.8rem 1rem;
  border-radius: var(--r-md);
  border: 1px solid var(--line-strong);
  background: var(--surface);
  font-size: 0.92rem;
  font-weight: 700;
  transition: box-shadow 0.25s, transform 0.2s, background 0.25s;
}
.auth-social__btn:hover { box-shadow: var(--shadow-md); transform: translateY(-1px); }
.auth-social__btn:active { transform: scale(0.98); }
.auth-social__btn svg { width: 20px; height: 20px; }
.auth-divider { display: flex; align-items: center; gap: 1rem; margin: 1.3rem 0; color: var(--muted); font-size: 0.82rem; }
.auth-divider::before, .auth-divider::after { content: ""; flex: 1; height: 1px; background: var(--line); }
.auth-fields { display: flex; flex-direction: column; gap: 0.7rem; }
.auth-fields[hidden] { display: none; }
.field { position: relative; }
.field input {
  width: 100%;
  padding: 0.85rem 1rem;
  border-radius: var(--r-md);
  border: 1px solid var(--line-strong);
  background: var(--canvas);
  font-size: 0.95rem;
  transition: border-color 0.25s, box-shadow 0.25s, background 0.25s;
}
.field input:focus { outline: none; border-color: var(--brand); background: var(--surface-2); box-shadow: 0 0 0 3px rgba(200, 243, 59, 0.16); }
.field__eye { position: absolute; right: 0.8rem; top: 50%; transform: translateY(-50%); font-size: 0.78rem; font-weight: 800; color: var(--brand); min-width: 24px; min-height: 24px; }
.reg-pass-wrap input { padding-right: 3.2rem; }
.auth-terms { font-size: 0.78rem; color: var(--muted); text-align: center; margin-top: 0.3rem; }
.auth-terms a { text-decoration: underline; }
.auth-error { font-size: 0.82rem; color: #f87171; margin: -0.2rem 0 0; }
.auth-mfa__body { font-size: 0.85rem; color: var(--muted); line-height: 1.5; margin-bottom: 0.4rem; }

/* Filters modal */
.modal__panel--filters { width: min(560px, 100%); }
.filter-section { padding: 1.3rem 1.6rem; border-bottom: 1px solid var(--line); }
.filter-section h4 { font-size: 0.92rem; font-weight: 800; margin-bottom: 1rem; }
.range-wrap { padding: 0.4rem 0.2rem 0; }
.range-wrap input[type="range"] {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 4px;
  border-radius: 4px;
  background: linear-gradient(to right, var(--brand) 0%, var(--brand) var(--fill, 100%), var(--line-strong) var(--fill, 100%), var(--line-strong) 100%);
  outline: none;
}
.range-wrap input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #fff;
  border: 1.5px solid var(--brand);
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  transition: transform 0.2s var(--ease-spring), box-shadow 0.2s;
}
.range-wrap input[type="range"]::-webkit-slider-thumb:hover { transform: scale(1.2); box-shadow: var(--shadow-md); }
.range-wrap input[type="range"]::-moz-range-thumb {
  width: 20px; height: 20px; border-radius: 50%;
  background: #fff; border: 1.5px solid var(--brand); cursor: pointer;
}
.range-labels { display: flex; justify-content: space-between; margin-top: 0.6rem; font-size: 0.85rem; color: var(--muted); font-weight: 600; }
.range-labels span:last-child { color: var(--ink); font-weight: 800; }

.chips { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.chip {
  padding: 0.55rem 0.95rem;
  border-radius: var(--r-pill);
  border: 1px solid var(--line-strong);
  background: var(--surface);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink-soft);
  transition: border-color 0.25s, background 0.25s, color 0.25s, transform 0.2s var(--ease-spring), box-shadow 0.25s;
}
.chip:hover { border-color: var(--ink); transform: translateY(-1px); }
.chip.is-active { border-color: var(--ink); background: var(--ink); color: var(--canvas); box-shadow: var(--shadow-md); }
.toggle-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.55rem 0;
  font-size: 0.92rem;
  font-weight: 600;
  cursor: pointer;
}
.toggle {
  position: relative;
  width: 46px;
  height: 26px;
  border-radius: var(--r-pill);
  background: var(--line-strong);
  transition: background 0.3s var(--ease-out);
  flex: 0 0 auto;
}
.toggle__knob {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #fff;
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s var(--ease-spring);
}
.toggle.is-on { background: var(--brand); }
.toggle.is-on .toggle__knob { transform: translateX(20px); }

/* Quick view modal */
.modal--quick .modal__panel { width: min(980px, 100%); padding: 0.9rem; }
.quick { display: grid; grid-template-columns: 1.15fr 1fr; gap: 0.4rem; }
.quick__gallery { border-radius: var(--r-lg); overflow: hidden; position: relative; min-height: 380px; background: #111; }
.quick__slides { position: relative; height: 100%; min-height: 380px; }
.quick__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.6s var(--ease-out);
  pointer-events: none;
}
.quick__slide.is-active { opacity: 1; pointer-events: auto; }
.quick__slide img { width: 100%; height: 100%; object-fit: cover; }
.quick__gallery-nav {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1rem;
  pointer-events: none;
}
.quick__arrow {
  pointer-events: auto;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  display: grid;
  place-items: center;
  color: #15151a;
  box-shadow: var(--shadow-md);
  transition: transform 0.25s var(--ease-spring), background 0.25s;
}
.quick__arrow:hover { transform: scale(1.1); background: #fff; }
.quick__arrow svg { width: 18px; height: 18px; }
.quick__thumbs {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  gap: 0.5rem;
  padding: 1rem;
  background: linear-gradient(to top, rgba(0,0,0,0.5), transparent);
}
.quick__thumb {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  overflow: hidden;
  border: 2px solid transparent;
  opacity: 0.65;
  transition: opacity 0.25s, border-color 0.25s, transform 0.25s var(--ease-spring);
}
.quick__thumb img { width: 100%; height: 100%; object-fit: cover; }
.quick__thumb.is-active { opacity: 1; border-color: #fff; transform: translateY(-2px); }

.quick__body { padding: 1.2rem 1.6rem 1.6rem 1.2rem; display: flex; flex-direction: column; }
.quick__host { display: flex; align-items: center; gap: 0.8rem; padding-bottom: 1rem; border-bottom: 1px solid var(--line); }
.quick__host img { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; }
.quick__host b { display: block; font-size: 0.92rem; }
.quick__host span { font-size: 0.8rem; color: var(--muted); }
.quick__host-main { min-width: 0; flex: 1; }
.quick__host-sub { display: block; margin-top: 0.15rem; }
.quick__host-badges { display: flex; flex-wrap: wrap; gap: 0.3rem; margin-top: 0.25rem; }
.quick__host-more { flex-shrink: 0; padding: 0.3rem 0.6rem; border: 1px solid var(--line-strong); border-radius: 999px; background: var(--surface); color: var(--ink-soft); font-size: 0.75rem; cursor: pointer; transition: border-color var(--ease-out), color var(--ease-out); }
.quick__host-more:hover { border-color: var(--brand); color: var(--brand); }
.host-badge { display: inline-flex; align-items: center; gap: 0.25rem; padding: 0.1rem 0.45rem; border-radius: 999px; font-size: 0.7rem; font-weight: 700; }
.host-badge svg { width: 10px; height: 10px; }
.host-badge--super { background: rgba(200, 243, 59, 0.14); color: var(--brand); border: 1px solid rgba(200, 243, 59, 0.35); }
.host-badge--verified { background: rgba(16, 185, 129, 0.12); color: #34d399; border: 1px solid rgba(16, 185, 129, 0.35); }
.quick__host-profile { margin-top: 0.85rem; padding: 0.9rem; border: 1px solid var(--line); border-radius: 12px; background: var(--surface-2); }
.quick__host-bio { margin: 0 0 0.7rem; font-size: 0.83rem; line-height: 1.55; color: var(--ink-soft); }
.quick__host-facts { display: grid; grid-template-columns: repeat(auto-fit, minmax(120px, 1fr)); gap: 0.6rem 1rem; margin-top: 0.7rem; padding-top: 0.7rem; border-top: 1px solid var(--line); }
.quick__host-facts span { font-size: 0.76rem; color: var(--muted); }
.quick__host-facts b { display: block; margin-bottom: 0.1rem; font-size: 0.74rem; color: var(--ink-soft); }
.quick__title { font-size: 1.4rem; font-weight: 800; letter-spacing: -0.02em; margin: 1rem 0 0.2rem; }
.quick__loc { font-size: 0.9rem; color: var(--muted); display: flex; align-items: center; gap: 0.35rem; }
.quick__loc svg { width: 15px; height: 15px; }
.quick__meta { display: flex; gap: 1.2rem; margin: 0.9rem 0; font-size: 0.86rem; color: var(--ink-soft); font-weight: 600; flex-wrap: wrap; }
.quick__meta span { display: inline-flex; align-items: center; gap: 0.4rem; }
.quick__meta svg { width: 16px; height: 16px; color: var(--brand); }
.quick__desc { font-size: 0.92rem; color: var(--ink-soft); line-height: 1.6; }
.quick__demo { margin: 0.9rem 0 0; padding-top: 0.8rem; border-top: 1px dashed var(--line); font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.02em; color: var(--muted-2); line-height: 1.5; }
.quick__amenities { display: flex; flex-wrap: wrap; gap: 0.5rem; margin: 1.1rem 0; }
.quick__amenity {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.4rem 0.75rem;
  border-radius: var(--r-pill);
  background: var(--canvas);
  border: 1px solid var(--line);
  font-size: 0.78rem;
  font-weight: 600;
}
.quick__amenity svg { width: 14px; height: 14px; color: var(--brand); }
.quick__card {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.1rem;
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}
.quick__price b { font-size: 1.35rem; font-weight: 800; }
.quick__price span { font-size: 0.82rem; color: var(--muted); }

/* ============================================================
   MOBILE SEARCH
   ============================================================ */
.mobile-search {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: var(--canvas);
  display: flex;
  flex-direction: column;
  transform: translateY(100%);
  transition: transform 0.45s var(--ease-out);
  visibility: hidden;
}
.mobile-search.is-open { transform: translateY(0); visibility: visible; }
.mobile-search__head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: calc(1rem + var(--sat)) 1.25rem 1rem;
  border-bottom: 1px solid var(--line);
}
.mobile-search__back {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--ink);
  transition: background 0.25s;
}
.mobile-search__back:hover { background: rgba(255, 255, 255, 0.06); }
.mobile-search__back svg { width: 20px; height: 20px; }
.mobile-search__bar {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.65rem 1rem;
  border-radius: var(--r-pill);
  background: var(--canvas);
  border: 1px solid var(--line);
}
.mobile-search__bar svg { width: 18px; height: 18px; color: var(--muted); flex: 0 0 auto; }
.mobile-search__bar input { flex: 1; border: none; background: none; outline: none; font-size: 1rem; font-weight: 600; }
.mobile-search__body { flex: 1; overflow-y: auto; padding: 1rem 1.25rem; }
.mobile-search__section { margin-bottom: 1rem; }
.mobile-row {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.1rem;
  border-radius: var(--r-md);
  border: 1px solid var(--line-strong);
  background: var(--surface);
  text-align: left;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.mobile-row:hover { border-color: var(--ink); box-shadow: var(--shadow-sm); }
.mobile-row__label { font-size: 0.75rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.04em; color: var(--muted); }
.mobile-row__value { font-weight: 700; font-size: 0.95rem; }
.mobile-search__suggest h4 { font-size: 0.95rem; font-weight: 800; margin: 0.4rem 0 0.9rem; }
.mobile-search__suggest { display: flex; flex-direction: column; align-items: flex-start; gap: 0.6rem; }
.suggest-chip {
  padding: 0.6rem 1rem;
  border-radius: var(--r-md);
  border: 1px solid var(--line);
  background: var(--canvas);
  font-size: 0.9rem;
  font-weight: 600;
  transition: background 0.25s, transform 0.2s var(--ease-spring);
}
.suggest-chip:hover { background: var(--line); transform: translateX(4px); }
.mobile-search__foot { padding: 1rem 1.25rem calc(1rem + env(safe-area-inset-bottom)); border-top: 1px solid var(--line); }

/* ============================================================
   TOASTS
   ============================================================ */
.toasts {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 200;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  pointer-events: none;
}
.toast {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.8rem 1.2rem;
  border-radius: var(--r-pill);
  background: var(--ink);
  color: var(--canvas);
  font-size: 0.9rem;
  font-weight: 600;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  transform: translateY(20px) scale(0.95);
  transition: opacity 0.4s var(--ease-out), transform 0.4s var(--ease-spring);
}
.toast.is-visible { opacity: 1; transform: translateY(0) scale(1); }
.toast svg { width: 18px; height: 18px; color: var(--success); flex: 0 0 auto; }
.toast--error svg { color: var(--brand-2); }
.toast__action {
  margin-left: 0.4rem;
  padding: 0.3rem 0.7rem;
  border-radius: var(--r-pill);
  border: 1px solid var(--canvas);
  background: transparent;
  color: var(--canvas);
  font-size: 0.82rem;
  font-weight: 700;
  white-space: nowrap;
  cursor: pointer;
}
.toast__action:hover { background: var(--canvas); color: var(--ink); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1080px) {
  .card-grid { grid-template-columns: repeat(3, 1fr); }
  .testimonial-grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: repeat(2, 1fr); }
  .quick { grid-template-columns: 1fr; }
  .quick__gallery, .quick__slides { min-height: 320px; }
}

@media (max-width: 880px) {
  :root { --header-h: 68px; }
  .nav { display: none; }
  .header__inner { grid-template-columns: 1fr auto; }
  .host-link { display: none; }
  .search-form { flex-direction: column; }
  .search-card { padding: 0.8rem; }
  .search-submit { align-self: stretch; justify-content: center; }
  .search-field { border: 1px solid var(--line); }
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .banner__inner { grid-template-columns: 1fr; }
  .banner__copy { padding: 2.4rem; }
  .banner__media { min-height: 220px; }
  .category-bar { top: calc(var(--header-h) + var(--sat)); }
  .header__search { display: none; }
  .calendar__viewport { overflow: hidden; }
  .calendar__track { grid-auto-columns: 92%; grid-auto-flow: column; }
}

@media (max-width: 620px) {
  .card-grid { grid-template-columns: 1fr; gap: 2rem; }
  .card__media { aspect-ratio: 4 / 3.4; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .lang-btn span:not(.lang-btn__code) { display: none; }
  .lang-menu { right: 0.75rem; left: 0.75rem; width: auto; max-height: 70vh; }
  .category-bar__side { display: none; }
  .listings__head-actions { display: none; }
  .hero__content { padding-bottom: 4rem; }
  .hero__title br { display: none; }
  .modal__panel--calendar { max-height: 90vh; }
  .modal__close { background: var(--surface-2); border: 1px solid var(--line-strong); }
  .quick__gallery, .quick__slides { min-height: 260px; }
  .calendar__foot { flex-wrap: wrap; justify-content: center; }
  .calendar__summary { order: -1; width: 100%; }
  .newsletter { flex-direction: column; }
}

/* ============================================================
   CANVAS + MOTION UPGRADES
   ============================================================ */

/* ---------- Preloader ---------- */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: grid;
  place-items: center;
  background: var(--canvas);
  transition: opacity 0.6s var(--ease-out), visibility 0.6s;
}
.preloader.is-done { opacity: 0; visibility: hidden; pointer-events: none; }
.preloader__mark {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  background: var(--brand-grad);
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-brand);
  animation: prePulse 1.1s ease-in-out infinite;
}
.preloader__mark svg { width: 30px; height: 30px; }
.preloader__bar {
  margin-top: 1.3rem;
  width: 170px;
  height: 3px;
  border-radius: 3px;
  background: var(--line);
  overflow: hidden;
}
.preloader__bar span {
  display: block;
  height: 100%;
  width: 0;
  border-radius: 3px;
  background: var(--brand-grad);
  animation: preFill 1.1s var(--ease-out) forwards;
}
@keyframes prePulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.09); } }
@keyframes preFill { to { width: 100%; } }

/* ---------- Cursor glow ---------- */
.cursor-glow {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9998;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(circle, rgba(200, 243, 59, 0.13) 0%, rgba(139, 92, 246, 0.09) 35%, transparent 68%);
  opacity: 0;
  transition: opacity 0.35s var(--ease-out);
  will-change: transform;
}
.cursor-glow.is-on { opacity: 1; }

/* ---------- Hero canvas layers ---------- */
.hero__media { will-change: transform; }
.hero__slides { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.06);
  transition: opacity 1.8s var(--ease-out), transform 1.8s var(--ease-out);
}
.hero-slide.is-active {
  opacity: 1;
  animation: heroKen 22s linear forwards;
}
@keyframes heroKen {
  from { transform: scale(1.08); }
  to { transform: scale(1.02); }
}
.hero__media canvas { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 1; }
.hero__scrim { z-index: 2; }

/* ---------- Stats ---------- */
.stats { background: var(--surface); border-bottom: 1px solid var(--line); }
.stats__inner {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  padding: 2.6rem 0;
}
.stat { text-align: center; }
.stat__num {
  display: inline-block;
  font-size: clamp(1.9rem, 3.2vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  background: var(--brand-grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.stat__label { display: block; margin-top: 0.3rem; color: var(--muted); font-size: 0.85rem; font-weight: 600; }
@media (max-width: 480px) {
  .stats__inner { gap: 0.6rem; }
  .stat { padding-inline: 0.6rem; }
}

/* ---------- Listings aurora ---------- */
.listings { position: relative; overflow: hidden; }
.listings > .container { position: relative; z-index: 1; }
#auroraCanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

/* ---------- Banner ---------- */
.banner__inner { position: relative; overflow: hidden; }
#bannerCanvas { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 0; }
.banner__copy, .banner__media { position: relative; z-index: 1; }
.banner__title .banner__line { display: block; }
.banner__media { will-change: transform; }

/* ============================================================
   AUCTIONS + HOST
   ============================================================ */
.auction-chip {
  position: absolute;
  left: 12px;
  bottom: 12px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.3rem 0.65rem;
  border-radius: var(--r-pill);
  background: rgba(11, 11, 14, 0.78);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(228, 255, 102, 0.4);
  color: #e9ff7a;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.auction-chip .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brand-2);
  animation: auctionPulse 1.6s infinite;
}
@keyframes auctionPulse {
  0% { box-shadow: 0 0 0 0 rgba(228, 255, 102, 0.5); }
  70% { box-shadow: 0 0 0 7px rgba(228, 255, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(228, 255, 102, 0); }
}
.auction-chip.is-ended { color: var(--muted); border-color: var(--line-strong); }
.auction-chip.is-ended .dot { background: var(--muted-2); animation: none; }

.card__timer {
  position: absolute;
  right: 12px;
  bottom: 12px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.3rem 0.65rem;
  border-radius: var(--r-pill);
  background: rgba(11, 11, 14, 0.72);
  backdrop-filter: blur(6px);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  box-shadow: var(--shadow-sm);
}
.card__timer svg { width: 13px; height: 13px; color: var(--brand-2); }
.card__timer.is-ended { color: var(--muted); }
.card__timer.is-ended svg { color: var(--muted-2); }

.card__auction { margin-top: 0.45rem; display: flex; align-items: center; justify-content: space-between; gap: 0.6rem; }
.card__auction .card__price { margin-top: 0; }
.card__auction .card__price b { color: var(--brand-2); }
.card__bids { font-size: 0.78rem; font-weight: 700; color: var(--muted); }
.card__rentnow {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  width: 100%;
  margin-top: 0.6rem;
  padding: 0.55rem 0.8rem;
  border-radius: var(--r-md);
  border: 1px solid rgba(251, 191, 36, 0.45);
  background: linear-gradient(135deg, rgba(251, 191, 36, 0.16), rgba(245, 158, 11, 0.08));
  color: var(--ink);
  cursor: pointer;
  text-align: left;
  transition: transform 0.25s var(--ease-out), border-color 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out);
}
.card__rentnow:hover { transform: translateY(-1px); border-color: #fbbf24; box-shadow: 0 8px 20px -6px rgba(245, 158, 11, 0.35); }
.card__rentnow-label { font-size: 0.72rem; font-weight: 800; letter-spacing: 0.04em; text-transform: uppercase; color: var(--muted); }
.card__rentnow-title { font-size: 0.95rem; font-weight: 800; }
.card__rentnow-price { margin-left: auto; font-size: 0.85rem; font-weight: 800; color: #fbbf24; }
.card__rentnow-price em { font-style: normal; font-size: 0.68rem; font-weight: 700; color: var(--muted); }
.card__rentnow.is-blocked, .btn--rent.is-blocked {
  cursor: not-allowed;
  opacity: 0.65;
  background: rgba(148, 163, 184, 0.12);
  border-color: rgba(148, 163, 184, 0.35);
}
.card__rentnow.is-blocked:hover { transform: none; box-shadow: none; border-color: rgba(148, 163, 184, 0.35); }
.card__rentnow.is-blocked .card__rentnow-title { color: var(--muted); }

/* Quick view auction panel */
.quick__card--auction { flex-direction: column; align-items: stretch; gap: 0.9rem; }
.auction-summary { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }
.auction-summary__bid, .auction-summary__end {
  padding: 0.8rem 1rem;
  border-radius: var(--r-md);
  background: var(--canvas);
  border: 1px solid var(--line);
}
.auction-summary__bid span, .auction-summary__end span {
  display: block;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
}
.auction-summary__bid b { font-size: 1.5rem; font-weight: 800; color: var(--brand-2); }
.auction-summary__end b { font-size: 1.15rem; font-weight: 800; font-variant-numeric: tabular-nums; }
.auction-summary__end.is-ending b { color: var(--brand-2); }
.auction-summary__meta { font-size: 0.8rem; color: var(--muted); }
.auction-summary__meta b { color: var(--ink-soft); }
.auction-bidbox { display: flex; gap: 0.5rem; }
.auction-bidbox input {
  flex: 1;
  min-width: 0;
  padding: 0.8rem 1rem;
  border-radius: var(--r-md);
  border: 1px solid var(--line-strong);
  background: var(--canvas);
  color: var(--ink);
  font-size: 1rem;
  font-weight: 700;
  outline: none;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.auction-bidbox input:focus { border-color: var(--brand); box-shadow: 0 0 0 3px rgba(200, 243, 59, 0.16); }
.auction-hint { font-size: 0.78rem; color: var(--muted); line-height: 1.5; }
.auction-hint--disc { font-size: 0.72rem; color: var(--muted-2); border-top: 1px dashed var(--line); padding-top: 0.7rem; margin-top: 0.35rem; }
.auction-nights {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  flex-wrap: wrap;
  padding: 0.7rem 1rem;
  border-radius: var(--r-md);
  background: var(--canvas);
  border: 1px solid var(--line);
}
.auction-nights__stepper {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted);
}
.auction-nights__stepper .stepper { gap: 0.55rem; }
.auction-nights__stepper .stepper__btn { width: 30px; height: 30px; }
.auction-nights__stepper .stepper__value { font-size: 0.95rem; }
.auction-nights__week {
  border: 1px solid var(--line-strong);
  background: var(--surface);
  color: var(--ink-soft);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.auction-nights__week:hover { border-color: var(--brand); color: var(--brand); }
.auction-nights__week.is-active { border-color: var(--brand); color: var(--brand-2); background: rgba(200, 243, 59, 0.08); }
.auction-total {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--brand-2);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
.auction-status { font-size: 0.85rem; font-weight: 700; min-height: 1.2em; }
.auction-status.is-lead { color: var(--success); }
.auction-status.is-outbid { color: var(--brand-2); }
.auction-status.is-ended { color: var(--muted); }
.auction-history {
  border-top: 1px solid var(--line);
  padding-top: 0.6rem;
  max-height: 190px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.auction-history__head { font-size: 0.72rem; font-weight: 800; letter-spacing: 0.05em; text-transform: uppercase; color: var(--muted); }
.auction-history__row { display: flex; align-items: center; justify-content: space-between; gap: 0.6rem; font-size: 0.85rem; }
.auction-history__row .who { color: var(--ink-soft); font-weight: 700; }
.auction-history__row .amt { font-weight: 800; }
.auction-history__row.is-you .who { color: var(--brand-2); }

/* Host modal */
.modal__panel--host { width: min(560px, 100%); }
.host-intro { font-size: 0.9rem; color: var(--muted); padding: 0.6rem 1.6rem 0.2rem; line-height: 1.6; }
.host-intro b { color: var(--brand-2); }
.host-form { padding: 1.2rem 1.6rem 0.4rem; display: flex; flex-direction: column; gap: 0.9rem; }
.host-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.9rem; }
.host-field { display: flex; flex-direction: column; gap: 0.4rem; }
.host-field label { font-size: 0.8rem; font-weight: 800; }
.host-field input, .host-field select {
  padding: 0.75rem 0.95rem;
  border-radius: var(--r-md);
  border: 1px solid var(--line-strong);
  background: var(--canvas);
  color: var(--ink);
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.host-field input:focus, .host-field select:focus { border-color: var(--brand); box-shadow: 0 0 0 3px rgba(200, 243, 59, 0.16); }
.host-field select { appearance: none; -webkit-appearance: none; background-image: none; }
.host-field__note { font-size: 0.72rem; color: var(--muted); }
.host-photos { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0.5rem; margin-bottom: 0.6rem; }
.host-photos:empty { display: none; }
.host-photo {
  position: relative;
  aspect-ratio: 1;
  border-radius: 12px;
  overflow: hidden;
  border: 2px solid transparent;
  transition: border-color 0.2s, transform 0.2s var(--ease-spring), opacity 0.2s;
  opacity: 1;
}
.host-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.host-photo.is-selected { border-color: var(--brand); opacity: 1; }
.host-photo.is-uploading { background: var(--line); }
.host-photo.is-uploading img { opacity: 0.35; }
.host-photo.is-uploading::after {
  content: "";
  position: absolute; inset: 0;
  border: 2px solid transparent;
  border-top-color: var(--brand);
  border-radius: 50%;
  width: 22px; height: 22px;
  margin: auto;
  animation: host-photo-spin 0.8s linear infinite;
}
@keyframes host-photo-spin { to { transform: rotate(360deg); } }
.host-photo__remove {
  position: absolute; top: 4px; right: 4px;
  width: 22px; height: 22px;
  border-radius: 50%;
  border: none;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  font-size: 14px;
  line-height: 1;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
}
.host-photo__remove:hover { background: rgba(0, 0, 0, 0.85); }

@media (max-width: 620px) {
  .host-grid { grid-template-columns: 1fr; }
  .host-photos { gap: 0.4rem; }
}

.host-divider { display: flex; align-items: center; gap: 0.7rem; font-size: 0.75rem; font-weight: 800; color: var(--muted); letter-spacing: 0.02em; }
.host-divider::before, .host-divider::after { content: ""; flex: 1; height: 1px; background: var(--line); }
.host-divider span { font-weight: 600; }
.host-check-row { display: flex; gap: 0.5rem; }
.host-check-row input { flex: 1; min-width: 0; }
.host-check-row .btn { flex-shrink: 0; }
.host-check-result { padding: 0.7rem 0.85rem; border-radius: 10px; font-size: 0.8rem; line-height: 1.5; border: 1px solid var(--line); background: var(--surface); color: var(--ink-soft); }
.host-check-result.is-good { border-color: rgba(16, 185, 129, 0.35); background: rgba(16, 185, 129, 0.08); color: #34d399; }
.host-check-result.is-bad { border-color: rgba(200, 243, 59, 0.35); background: rgba(200, 243, 59, 0.08); color: var(--brand-2); }
.host-check-result.is-info { border-color: var(--line-strong); background: var(--surface-2); }
.host-check-result.is-pending { border-color: var(--line-strong); color: var(--muted); }
.host-disclaimer {
  margin-top: 0.75rem;
  padding: 0.7rem 0.85rem;
  border-radius: 10px;
  font-size: 0.74rem;
  line-height: 1.55;
  color: var(--muted);
  border-left: 2px solid var(--brand);
  background: rgba(200, 243, 59, 0.05);
}
.host-disclaimer b { color: var(--ink-soft); font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; }
.host-fee-note {
  margin-top: 0.6rem;
  padding: 0.6rem 0.85rem;
  border-radius: 10px;
  font-size: 0.74rem;
  line-height: 1.55;
  color: var(--muted);
  border-left: 2px solid var(--brand-2);
  background: rgba(200, 243, 59, 0.03);
}
.host-fee-note b { color: var(--ink-soft); font-weight: 600; }

.card.is-reserved .card__media img { filter: saturate(0.55); }
.card__badge--reserved { opacity: 1 !important; transform: none !important; background: rgba(16, 185, 129, 0.16); color: #34d399; border: 1px solid rgba(16, 185, 129, 0.4); }
.card__reserved { display: flex; align-items: center; gap: 0.5rem; margin-top: 0.45rem; font-size: 0.78rem; color: var(--muted); }
.card__reserved b { color: var(--ink-soft); font-weight: 800; }
.card__reserved-icon { display: inline-flex; width: 18px; height: 18px; border-radius: 50%; background: rgba(16, 185, 129, 0.16); color: #34d399; align-items: center; justify-content: center; flex-shrink: 0; }
.card__reserved-icon svg { width: 10px; height: 10px; }

.modal__panel--rent { width: min(560px, 100%); }
.rent-sub { font-size: 0.85rem; color: var(--muted); padding: 0.2rem 1.6rem 0.4rem; }
.rent-summary { margin: 0.8rem 1.6rem; padding: 0.9rem 1rem; border: 1px solid var(--line); border-radius: 12px; background: var(--surface); display: flex; flex-direction: column; gap: 0.55rem; }
.rent-summary__row { display: flex; justify-content: space-between; gap: 1rem; font-size: 0.82rem; }
.rent-summary__row span { color: var(--muted); }
.rent-summary__row b { color: var(--ink); text-align: right; }
.rent-summary__row--fee { border-top: 1px dashed var(--line-strong); padding-top: 0.5rem; font-size: 0.76rem; }
.rent-summary__row--fee b { color: var(--brand-2); font-weight: 700; }
.rent-summary__row--fee + .rent-summary__row--fee { border-top: none; padding-top: 0; }
.rent-nights { display: flex; align-items: center; justify-content: space-between; gap: 0.8rem; margin: 0 1.6rem 0.9rem; padding: 0.85rem 1rem; border: 1px solid var(--line); border-radius: 12px; background: var(--surface); }
.rent-nights > span { font-size: 0.82rem; font-weight: 700; color: var(--ink-soft); }
.rent-nights #rentTotal { font-size: 1.05rem; font-weight: 800; color: var(--brand-2); }
.rent-fields { padding: 0 1.6rem 0.6rem; display: flex; flex-direction: column; gap: 0.85rem; }
.rent-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.85rem; }
.rent-hint { font-size: 0.72rem; color: var(--muted); line-height: 1.5; }

/* Stripe Payment Element mount point — the element self-styles inside its
   own iframe via the Appearance API (see js/payments.js); this just gives
   the container a stable footprint while it loads and matches the other
   .reg-field inputs' shape. */
.rent-payment-element { min-height: 44px; padding: 0.2rem 0; }
.rent-payment-element.is-loading { min-height: 220px; border-radius: var(--r-md); background: linear-gradient(90deg, var(--surface) 25%, var(--line) 37%, var(--surface) 63%); background-size: 400% 100%; animation: shimmer 1.4s ease infinite; }
.rent-pay-error { font-size: 0.78rem; color: #f87171; line-height: 1.5; margin-top: 0.5rem; }
.rent-pay-error[hidden] { display: none; }

/* Fixed claim banner — appears when the current actor has an ended auction
   win with an unpaid reservation (see pollPendingWins in js/app.js). */
.pending-wins-banner {
  position: fixed; left: 50%; bottom: 1.2rem; transform: translateX(-50%);
  z-index: 1200; display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.7rem 1.2rem; border-radius: var(--r-pill);
  background: var(--brand); color: #10140a; font-weight: 800; font-size: 0.85rem;
  border: none; cursor: pointer; box-shadow: 0 10px 30px rgba(0,0,0,0.35);
  animation: fadeUp 0.3s var(--ease-out);
}
.pending-wins-banner:hover { filter: brightness(1.08); }

.quick__reserved { display: flex; flex-direction: column; align-items: flex-start; gap: 0.4rem; padding: 1rem 1.2rem; border-radius: 14px; background: rgba(16, 185, 129, 0.08); border: 1px solid rgba(16, 185, 129, 0.3); }
.quick__reserved b { font-size: 1rem; color: #34d399; }
.quick__reserved > span:last-child { font-size: 0.8rem; color: var(--muted); }
.quick__reserved-icon { display: inline-flex; width: 22px; height: 22px; border-radius: 50%; background: #10b981; color: #0b0b0e; align-items: center; justify-content: center; }
.quick__reserved-icon svg { width: 13px; height: 13px; }

.stat__tagline {
  display: block;
  font-family: var(--font-mono);
  font-size: clamp(0.6rem, 2.4vw, 0.76rem);
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.35;
  color: var(--brand-2);
  text-shadow: 0 0 10px rgba(200, 243, 59, 0.25);
}
.stat__tagline--top { margin-bottom: 0.55rem; }
.stat__tagline--bottom { margin-top: 0.55rem; }

/* ============================================================
   HOLOGRAPHIC GLOBE (countries & territories)
   ============================================================ */
.globe-wrapper {
  width: clamp(56px, 20vw, 88px); height: clamp(56px, 20vw, 88px);
  margin-inline: auto;
  border-radius: 999px;
  box-shadow: inset 0 0 0 1px rgba(77, 240, 230, 0.25), 0 0 18px rgba(77, 240, 230, 0.35), 0 0 26px rgba(200, 243, 59, 0.15);
  animation: globeFlicker 4.2s ease-in-out infinite;
}
.globe {
  position: relative;
  width: 100%; height: 100%;
  border-radius: 999px;
  overflow: hidden;
  background: radial-gradient(circle at 34% 30%, #103a44 0%, #06181d 55%, #040f12 100%);
}
.globe__land {
  position: absolute; top: 0; left: 0;
  width: 200%; height: 100%;
  display: flex;
  animation: globeSpin 18s linear infinite;
}
.globe__land svg { width: 50%; height: 100%; flex: 0 0 50%; }
.globe-wrapper:hover .globe__land { animation-play-state: paused; }
.globe::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(circle at 30% 26%, rgba(228, 255, 102, 0.35), transparent 55%);
  mix-blend-mode: screen;
  pointer-events: none;
}
.globe::after {
  content: "";
  position: absolute; inset: 0;
  border-radius: 999px;
  box-shadow: inset 0 0 12px 3px rgba(0, 0, 0, 0.6);
  pointer-events: none;
}
.globe__scan {
  position: absolute; left: 0; right: 0; height: 12%;
  background: linear-gradient(180deg, transparent, rgba(77, 240, 230, 0.55), transparent);
  animation: globeScan 3.2s linear infinite;
  pointer-events: none;
}
@keyframes globeSpin {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes globeFlicker {
  0%, 100% { opacity: 1; }
  47% { opacity: 1; }
  49% { opacity: 0.85; }
  51% { opacity: 1; }
}
@keyframes globeScan {
  0%   { transform: translateY(-120%); }
  100% { transform: translateY(900%); }
}

/* ============================================================
   PEOPLE HOLOGRAM (guest hosted)
   ============================================================ */
.host-avatar {
  position: relative;
  width: clamp(56px, 20vw, 88px); height: clamp(56px, 20vw, 88px);
  margin-inline: auto;
  overflow: hidden;
  border-radius: 12px;
  display: grid; place-items: center;
}
.host-avatar__base {
  position: absolute; left: 50%; bottom: 6%;
  translate: -50% 0;
  width: 60%; height: 22%;
  border-radius: 999px;
  background: radial-gradient(ellipse at center, rgba(200, 243, 59, 0.45), transparent 72%);
  filter: blur(1px);
  animation: hostPulse 2.6s ease-in-out infinite;
}
.host-avatar__icon {
  position: relative;
  width: 66%; height: 66%;
  color: var(--brand-2);
  filter: drop-shadow(0 0 4px var(--brand)) drop-shadow(0 0 9px rgba(77, 240, 230, 0.4));
  transition: filter 0.25s var(--ease-out);
}
.host-avatar:hover .host-avatar__icon {
  filter: drop-shadow(0 0 6px var(--brand)) drop-shadow(0 0 14px rgba(77, 240, 230, 0.55));
}
.host-avatar__scan {
  position: absolute; left: 0; right: 0; height: 18%;
  background: linear-gradient(180deg, transparent, rgba(200, 243, 59, 0.5), transparent);
  animation: hostScan 2.8s linear infinite;
  pointer-events: none;
}
@keyframes hostPulse {
  0%, 100% { transform: scale(0.9); opacity: 0.5; }
  50% { transform: scale(1.1); opacity: 0.85; }
}
@keyframes hostScan {
  0%   { transform: translateY(-140%); }
  100% { transform: translateY(700%); }
}

/* ============================================================
   RATING STARS (average guest rating)
   ============================================================ */
.rating-stars {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  align-content: center;
  justify-content: center;
  gap: 0.4rem;
  min-height: clamp(56px, 20vw, 88px);
}
.rating-stars__stack { position: relative; display: inline-flex; }
.rating-stars__row { display: flex; flex-wrap: wrap; justify-content: center; gap: 4px; }
.rating-stars__row svg { width: clamp(20px, 7vw, 30px); height: clamp(20px, 7vw, 30px); }
.rating-stars__row--base svg { fill: none; stroke: var(--muted-2); stroke-width: 1.5; stroke-linejoin: round; }
.rating-stars__row--fill {
  position: absolute; inset: 0;
  clip-path: inset(0 var(--fill-cutoff, 100%) 0 0);
}
.rating-stars__row--fill svg { fill: var(--brand); filter: drop-shadow(0 0 3px var(--brand)); }
.rating-stars.is-revealed .rating-stars__row--fill { transition: clip-path 1.1s var(--ease-out); }
.rating-stars.is-revealed .rating-stars__row--fill svg { animation: starTwinkle 1.4s var(--ease-out) both; }
.rating-stars.is-revealed .rating-stars__row--fill svg:nth-child(2) { animation-delay: 0.05s; }
.rating-stars.is-revealed .rating-stars__row--fill svg:nth-child(3) { animation-delay: 0.1s; }
.rating-stars.is-revealed .rating-stars__row--fill svg:nth-child(4) { animation-delay: 0.15s; }
.rating-stars.is-revealed .rating-stars__row--fill svg:nth-child(5) { animation-delay: 0.2s; }
.rating-stars .rating-value {
  font-size: 0.85rem;
  color: var(--muted);
  margin-left: 0.2rem;
}
@keyframes starTwinkle {
  0% { opacity: 0.3; }
  60% { opacity: 1; filter: drop-shadow(0 0 6px var(--brand)); }
  100% { opacity: 1; filter: drop-shadow(0 0 3px var(--brand)); }
}

/* ============================================================
   MOTION SAFETY
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001s !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001s !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
  .hero__media canvas { display: none; }
  #auroraCanvas { display: none; }
  #bannerCanvas { display: none; }
  .cursor-glow { display: none; }
  .marquee__track { animation: none; }
  .hero-slide { transition: opacity 1.8s var(--ease-out) !important; }
  .hero-slide.is-active { animation: none; }
}

/* ============================================================
   REDUCE-MOTION OVERRIDES (must come after universal squash)
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  .globe-wrapper { animation: none; opacity: 1; }
  .globe__land { animation: none; transform: translateX(-25%); }
  .globe__scan { animation: none; opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .host-avatar__base { animation: none; transform: scale(1); opacity: 0.7; }
  .host-avatar__scan { animation: none; opacity: 0; }
  .host-avatar__icon { transition: none; }
}
@media (prefers-reduced-motion: reduce) {
  .rating-stars__row--fill { transition: none !important; }
  .rating-stars.is-revealed .rating-stars__row--fill svg { animation: none !important; opacity: 1; }
}

/* ============================================================
   HOST REGISTRATION (GDPR)
   ============================================================ */
.modal__panel--register { width: min(560px, 100%); max-height: 92vh; overflow-y: auto; }
.reg-sub { font-size: 0.82rem; color: var(--muted); padding: 0.2rem 1.6rem 0; }
.reg-sub b { color: var(--brand-2); }
.reg-steps { display: flex; gap: 0.4rem; padding: 1rem 1.6rem 0.4rem; }
.reg-step {
  flex: 1;
  text-align: center;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  color: var(--muted-2);
  padding: 0.55rem 0.2rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--canvas);
  transition: color 0.25s, border-color 0.25s, background 0.25s;
}
.reg-step.is-active { color: var(--brand-2); border-color: var(--brand); background: rgba(200, 243, 59, 0.07); }
.reg-step.is-done { color: var(--ink-soft); border-color: var(--line-strong); }
.reg-panel { padding: 1.1rem 1.6rem 1.5rem; animation: fadeUp 0.35s var(--ease-out); }
.reg-fields { display: flex; flex-wrap: wrap; gap: 1rem; }
.reg-field { flex: 1 1 100%; }
.reg-field--half { flex: 1 1 calc(50% - 0.5rem); min-width: 0; }
.reg-field label { display: block; font-size: 0.8rem; font-weight: 800; color: var(--ink-soft); margin-bottom: 0.4rem; }
.reg-field label + label { margin-top: 0.9rem; }
.reg-field input[type="text"], .reg-field input[type="email"], .reg-field input[type="password"],
.reg-field input[type="date"], .reg-field input[type="tel"], .reg-field select {
  width: 100%;
  padding: 0.78rem 1rem;
  border-radius: var(--r-md);
  border: 1px solid var(--line-strong);
  background: var(--canvas);
  color: var(--ink);
  font-size: 0.95rem;
  transition: border-color 0.25s, box-shadow 0.25s, background 0.25s;
}
.reg-field input:focus, .reg-field select:focus {
  outline: none;
  border-color: var(--brand);
  background: var(--surface-2);
  box-shadow: 0 0 0 3px rgba(200, 243, 59, 0.16);
}
.reg-field select { appearance: none; background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='m6 9 6 6 6-6' stroke='%238e8e99' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.4rem; }
.reg-field input[type="date"] { color-scheme: dark; }
.reg-pass-wrap { position: relative; }
.reg-pass-wrap .field__eye { top: 50%; }
.reg-hint { font-size: 0.76rem; color: var(--muted); line-height: 1.5; margin-top: 0.4rem; }
.reg-hint b { color: var(--ink-soft); }
.reg-tag {
  font-size: 0.62rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--success);
  border: 1px solid rgba(46, 160, 67, 0.35);
  padding: 0.1rem 0.45rem;
  border-radius: 999px;
  vertical-align: 1px;
  margin-left: 0.3rem;
}
#hostPhotoCountTag { color: var(--muted); border-color: var(--line-strong); }
#hostPhotoCountTag.is-good { color: var(--success); border-color: rgba(46, 160, 67, 0.35); }
.reg-strength {
  height: 5px;
  border-radius: 999px;
  background: var(--line);
  margin-top: 0.7rem;
  overflow: hidden;
}
.reg-strength i {
  display: block;
  height: 100%;
  width: 0;
  border-radius: 999px;
  background: var(--brand-2);
  transition: width 0.3s var(--ease-out), background 0.3s;
}
.reg-req { display: flex; flex-wrap: wrap; gap: 0.35rem 0.9rem; margin-top: 0.6rem; list-style: none; padding: 0; }
.reg-req li { font-size: 0.72rem; color: var(--muted-2); transition: color 0.2s; }
.reg-req li.is-met { color: var(--success); }
.reg-req li.is-met::before { content: "✓ "; font-weight: 900; }
.reg-consent { display: flex; flex-direction: column; gap: 0.65rem; margin-top: 1.1rem; padding-top: 1rem; border-top: 1px solid var(--line); }
.reg-check {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.82rem;
  line-height: 1.5;
  color: var(--ink-soft);
  cursor: pointer;
}
.reg-check input { margin-top: 0.22rem; accent-color: var(--brand); width: 15px; height: 15px; flex: none; }
.reg-check a { color: var(--brand); text-decoration: underline; }
.reg-check--opt { color: var(--muted); }
.reg-legal {
  margin-top: 0.9rem;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  background: var(--canvas);
  padding: 1rem 1.1rem;
  max-height: 220px;
  overflow-y: auto;
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.65;
}
.reg-legal h5 { color: var(--ink); font-size: 0.9rem; margin-bottom: 0.4rem; }
.reg-legal b { color: var(--ink-soft); }
.reg-legal .reg-legal__close {
  float: right;
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--muted);
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  padding: 0.15rem 0.6rem;
  background: var(--surface);
  cursor: pointer;
}
.reg-legal .reg-legal__close:hover { color: var(--ink); border-color: var(--ink-soft); }
.reg-code {
  margin-top: 0.6rem;
  font-size: 0.8rem;
  color: var(--brand-2);
  background: rgba(200, 243, 59, 0.07);
  border: 1px dashed var(--brand);
  border-radius: var(--r-md);
  padding: 0.5rem 0.8rem;
  font-weight: 700;
}
.reg-code b { font-variant-numeric: tabular-nums; letter-spacing: 0.15em; }

/* OTP widget — one real hidden input (autofill/paste/screen-reader owner)
   overlaid on N visual boxes driven off its value. Never split into N real
   inputs: that daisy-chain pattern is what breaks autocomplete="one-time-code"
   autofill and paste. See mobile/components/OtpInput.tsx for the RN twin. */
.otp-widget { position: relative; display: inline-flex; gap: 0.5rem; margin-top: 0.2rem; }
.otp-widget__box {
  width: 44px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid var(--line-strong);
  border-radius: var(--r-md);
  background: var(--canvas);
  color: var(--ink);
  font-family: var(--font-mono);
  font-size: 1.15rem;
  font-weight: 800;
  transition: border-color 0.2s, background 0.2s;
}
.otp-widget__box.is-filled { background: var(--surface-2); }
.otp-widget__box.is-active { border-color: var(--brand); }
.otp-widget__box.is-pop { animation: otpPop 0.32s var(--ease-spring); }
.otp-widget__box.is-success { border-color: var(--success); color: var(--success); }
.otp-widget.is-error .otp-widget__box { border-color: #f87171; animation: otpShake 0.42s var(--ease-out); }
.otp-widget__input {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  border: 0;
  padding: 0;
  color: transparent;
  background: transparent;
  caret-color: transparent;
  cursor: text;
}
.otp-widget__input:disabled { cursor: default; }
.otp-error { font-size: 0.78rem; color: #f87171; margin-top: 0.5rem; }
.otp-resend { margin-top: 0.6rem; font-size: 0.78rem; }
.otp-resend__cooldown { color: var(--muted); }
.otp-resend__link { color: var(--brand-2); font-weight: 700; background: none; border: 0; padding: 0; cursor: pointer; }
.otp-resend__link:hover { text-decoration: underline; }
.reg-totp-secret {
  font-family: var(--font-mono);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 0.6rem 0.8rem;
  border-radius: var(--r-sm);
  background: var(--surface-2);
  border: 1px solid var(--line);
  margin: 0.4rem 0;
}
.reg-recovery-grid { display: flex; flex-wrap: wrap; gap: 0.5rem; margin: 0.6rem 0; }
.reg-recovery-code {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  padding: 0.4rem 0.6rem;
  border-radius: var(--r-sm);
  background: var(--surface-2);
  border: 1px solid var(--line);
}

.reg-toggle { display: inline-flex; gap: 0.4rem; padding: 0.25rem; background: var(--canvas); border: 1px solid var(--line); border-radius: 999px; }
.reg-toggle button {
  border: none;
  background: transparent;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
  padding: 0.45rem 1rem;
  border-radius: 999px;
  cursor: pointer;
  transition: color 0.2s, background 0.2s;
}
.reg-toggle button.is-active { background: var(--surface-2); color: var(--ink); }
.reg-table { margin-top: 1.1rem; border: 1px solid var(--line); border-radius: var(--r-md); overflow: hidden; }
.reg-table .reg-hint { padding: 0.8rem 0 0; }
.reg-table__head {
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--ink-soft);
  background: var(--surface);
  padding: 0.7rem 1rem;
  border-bottom: 1px solid var(--line);
}
.reg-table__row { display: flex; justify-content: space-between; gap: 1rem; padding: 0.65rem 1rem; font-size: 0.8rem; color: var(--muted); }
.reg-table__row + .reg-table__row { border-top: 1px solid var(--line); }
.reg-table__row span:first-child { color: var(--ink-soft); font-weight: 700; flex: none; }
.reg-table__row span:last-child { text-align: right; }
.reg-done { text-align: center; padding: 0.6rem 0 0.2rem; }
.reg-done__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--success);
  background: rgba(46, 160, 67, 0.12);
  border: 1px solid rgba(46, 160, 67, 0.35);
}
.reg-done__icon svg { width: 30px; height: 30px; }
.reg-done h4 { font-size: 1.3rem; font-weight: 800; margin-bottom: 0.6rem; }
.reg-done p { font-size: 0.88rem; color: var(--muted); line-height: 1.6; max-width: 40ch; margin: 0 auto; }
.reg-done p b { color: var(--ink-soft); }
.reg-rights { text-align: left; list-style: none; padding: 0; margin: 1.1rem auto 0; max-width: 46ch; display: flex; flex-direction: column; gap: 0.6rem; }
.reg-rights li {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.55;
  padding-left: 1.4rem;
  position: relative;
}
.reg-rights li::before { content: "✓"; position: absolute; left: 0; top: 0; color: var(--success); font-weight: 900; }
.reg-rights a { color: var(--brand); text-decoration: underline; }
.reg-done .modal__actions { justify-content: center; margin-top: 1.4rem; }
.reg-panel .modal__actions { margin-top: 1.2rem; }

@media (max-width: 560px) {
  .reg-field--half { flex: 1 1 100%; }
  .reg-table__row { flex-direction: column; gap: 0.2rem; }
  .reg-table__row span:last-child { text-align: left; }
}

/* ============================================================
   CINEMA V5 — cinematic type, HUD/game chrome, film grain,
   giant background words, WebGL stages, card 3D tilt
   ============================================================ */

:root {
  --disp: clamp(3rem, 13vw, 11rem);
  --disp-2: clamp(2.2rem, 7vw, 5.6rem);
}

/* ---------- Scroll progress line ---------- */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  z-index: 95;
  background: linear-gradient(90deg, #c8f33b, #8b5cf6, #c8f33b);
  background-size: 200% 100%;
  transform-origin: 0 50%;
  transform: scaleX(0);
  pointer-events: none;
}

/* ---------- Film grain ---------- */
.grain {
  position: fixed;
  inset: -120px;
  z-index: 85;
  pointer-events: none;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grainShift 0.9s steps(2) infinite;
}
@keyframes grainShift {
  0% { transform: translate(0, 0); }
  25% { transform: translate(-30px, 18px); }
  50% { transform: translate(20px, -28px); }
  75% { transform: translate(-18px, -14px); }
  100% { transform: translate(0, 0); }
}

/* ---------- Cinematic display type ---------- */
.hero__title {
  font-size: clamp(3rem, 8.5vw, 7.6rem);
  animation: none;
  opacity: 1;
  line-height: 1.02;
}
.hero__line { display: inline-block; }
/* Keeps a word's letter-spans from breaking mid-word: adjacent inline-block
   .hero__char spans are themselves valid line-break points to a browser,
   so without this wrapper "place," could snap to "plac" / "e,". */
.hero__word { display: inline-block; white-space: nowrap; }
.hero__char {
  display: inline-block;
  transform: translateX(var(--rx, 0px));
  animation: charIn 0.9s var(--ease-out) backwards;
  animation-delay: calc(var(--i, 0) * 34ms);
}
@keyframes charIn {
  from { opacity: 0; transform: translateX(var(--rx, 0px)) translateY(0.62em) rotate(5deg); }
  to { opacity: 1; transform: translateX(var(--rx, 0px)) translateY(0) rotate(0); }
}

.listings__head h2 {
  font-size: var(--disp-2);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.03;
  margin-bottom: 0.2rem;
}
.testimonials__title { font-size: var(--disp-2); letter-spacing: -0.03em; }

.chapter-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brand-2);
  margin-bottom: 0.8rem;
}
.chapter-tag::before {
  content: "";
  width: 24px;
  height: 2px;
  background: var(--brand-grad);
  border-radius: 2px;
}

/* ---------- Mission band ---------- */
.mission {
  --sec-a: var(--brand);
  --sec-a-2: var(--brand-2);
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(90% 130% at 6% 0%, rgba(200, 243, 59, 0.07), transparent 55%),
    var(--surface);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.mission__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 3rem 4rem;
  align-items: start;
  padding-block: 4.5rem;
}
.mission__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.2rem, 4.4vw, 3.6rem);
  line-height: 0.98;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  margin: 0.9rem 0 1.1rem;
  background: var(--brand-grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--brand);
}
.mission__lede {
  font-size: 1.02rem;
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 36ch;
}
.mission__lede b { color: var(--ink); }
.mission__rules {
  display: grid;
  border-top: 1px solid var(--line);
}
.mission__rule {
  display: grid;
  grid-template-columns: 3.1rem 1fr;
  gap: 1rem;
  align-items: baseline;
  padding: 1.05rem 0;
  border-bottom: 1px solid var(--line);
}
.mission__rule b {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--brand);
  letter-spacing: 0.08em;
}
.mission__rule p {
  font-size: 0.98rem;
  line-height: 1.5;
  color: var(--ink-soft);
}
.mission__rule em {
  font-style: normal;
  color: var(--ink);
}
.mission__stamp {
  grid-column: 1 / -1;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  border-top: 1px dashed var(--line-strong);
  padding-top: 1.4rem;
  margin-top: 0.2rem;
}
.mission__stamp b { color: var(--brand-2); font-weight: 600; }
.mission__disclaimer {
  grid-column: 1 / -1;
  font-family: var(--font-mono);
  font-size: 0.76rem;
  line-height: 1.55;
  letter-spacing: 0.02em;
  color: var(--muted-2);
  border-top: 1px solid var(--line);
  padding-top: 1.1rem;
  margin-top: 0.1rem;
  max-width: 78ch;
}
.mission__disclaimer b { color: var(--muted); font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; }
@media (max-width: 860px) {
  .mission__inner { grid-template-columns: 1fr; padding-block: 3rem; }
}

/* ---------- How it works / FAQ (static, crawlable) ---------- */
.faq {
  --sec-a: var(--brand);
  --sec-a-2: var(--brand-2);
  position: relative;
  background: var(--canvas);
  border-bottom: 1px solid var(--line);
}
.faq__inner {
  padding-block: 4rem 4.5rem;
  max-width: 920px;
}
.faq__inner .chapter-tag { margin-bottom: 0.8rem; }
.faq__inner > h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.9rem, 3.6vw, 2.8rem);
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  margin: 0 0 1.8rem;
}
.faq__item {
  border-top: 1px solid var(--line);
}
.faq__item:last-child { border-bottom: 1px solid var(--line); }
.faq__item summary {
  cursor: pointer;
  list-style: none;
  padding: 1.05rem 2.4rem 1.05rem 0;
  font-family: var(--font-mono);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--ink);
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.85rem;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: "+";
  position: absolute;
  right: 0.2rem;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-mono);
  font-size: 1.1rem;
  color: var(--brand);
  transition: transform 0.25s var(--ease-out);
}
.faq__item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq__item summary::before {
  content: "//";
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--muted-2);
}
.faq__item summary:hover { color: var(--brand-2); }
.faq__item p {
  margin: 0;
  padding: 0 0 1.3rem 1.5rem;
  font-size: 0.98rem;
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 62ch;
}
.faq__item p::first-letter {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--brand);
}

/* ---------- Giant background words ---------- */
.bgword {
  position: absolute;
  z-index: 0;
  left: 50%;
  top: 6%;
  transform: translate(calc(-50% + var(--wx, 0px)), calc((1 - var(--rev, 0)) * 7vh));
  font-size: var(--disp);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
  white-space: nowrap;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(245, 243, 244, 0.12);
  pointer-events: none;
  user-select: none;
  opacity: calc(0.18 + var(--rev, 0) * 0.9);
  clip-path: inset(0 0 calc((1 - var(--rev, 0)) * 100%) 0);
  transition: none;
}
.listings, .banner, .testimonials { position: relative; overflow: hidden; }
.banner .bgword {
  left: auto;
  right: -2%;
  top: -3%;
  transform: translate(var(--wx, 0px), calc((1 - var(--rev, 0)) * 7vh));
  font-size: clamp(5rem, 16vw, 13rem);
}
.testimonials .bgword {
  top: auto;
  bottom: -4%;
  transform: translate(calc(-50% + var(--wx, 0px)), calc(var(--rev, 0) * 6vh));
  opacity: 0.12;
  -webkit-text-stroke: 1.5px rgba(245, 243, 244, 0.14);
  clip-path: none;
}


/* ---------- Card 3D tilt (video-game feel) ---------- */
@media (hover: hover) and (pointer: fine) {
  .card__media {
    transform: perspective(900px) rotateX(var(--tiltX, 0deg)) rotateY(var(--tiltY, 0deg)) scale(1.01);
    transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
    will-change: transform;
  }
  .card:hover .card__media { box-shadow: 0 26px 55px -20px rgba(0, 0, 0, 0.75); }
}

/* ---------- Preloader (game boot) ---------- */
.preloader {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.1rem;
  background: radial-gradient(120% 120% at 50% 0%, #121218 0%, var(--canvas) 60%);
}
.preloader__ghost {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: clamp(3.4rem, 15vw, 13rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(245, 243, 244, 0.07);
  opacity: 0.5;
  transform: translateY(4%);
  animation: ghostBreathe 3.2s ease-in-out infinite;
}
@keyframes ghostBreathe {
  0%, 100% { transform: translateY(4%) scale(1); opacity: 0.35; }
  50% { transform: translateY(4%) scale(1.04); opacity: 0.6; }
}
.preloader__letters { display: flex; gap: 0.05em; }
.preloader__letters span {
  display: inline-block;
  font-size: clamp(1.8rem, 6vw, 3.4rem);
  font-weight: 800;
  letter-spacing: 0.02em;
  color: var(--ink);
  animation: letterBoot 0.7s var(--ease-out) backwards;
  animation-delay: calc(var(--i, 0) * 60ms);
}
.preloader__letters span:nth-child(1) { --i: 0; }
.preloader__letters span:nth-child(2) { --i: 1; }
.preloader__letters span:nth-child(3) { --i: 2; }
.preloader__letters span:nth-child(4) { --i: 3; }
.preloader__letters span:nth-child(5) { --i: 4; }
.preloader__letters span:nth-child(6) { --i: 5; }
.preloader__letters span:nth-child(7) { --i: 6; }
.preloader__letters span:nth-child(8) { --i: 7; }
.preloader__letters span:nth-child(9) { --i: 8; }
@keyframes letterBoot {
  from { opacity: 0; transform: translateY(0.5em) scale(1.15); filter: blur(6px); }
  to { opacity: 1; transform: translateY(0) scale(1); filter: blur(0); }
}
.preloader__bar {
  margin-top: 0.4rem;
  width: min(320px, 70vw);
  height: 2px;
  background: var(--line);
}
.preloader__meta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  width: min(320px, 70vw);
}
.preloader__count {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  color: var(--brand-2);
  font-variant-numeric: tabular-nums;
}
.preloader__prompt {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--muted-2);
  opacity: 0;
  transition: opacity 0.4s var(--ease-out);
}
.preloader.is-done .preloader__prompt { opacity: 1; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .bgword { font-size: clamp(3rem, 20vw, 7rem); }
  .hero__title { font-size: clamp(2.4rem, 9vw, 4.6rem); }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  .scroll-progress, .grain, .preloader__ghost { display: none; }
  .hero__title { animation: none; opacity: 1; }
  .hero__char {
    animation: none;
    transform: none;
  }
  .bgword {
    transform: none;
    opacity: 0.35;
    clip-path: none;
  }
  .card__media { transition: none; }
}

/* ============================================================
   V6 — AUCTION TELEMETRY / SPEED
   Volt-lime neon, condensed display type, mono data readouts,
   cards as numbered lot tickets. Per-section accent shifts.
   ============================================================ */

/* ---------- Per-section accent shifts (IFF-style) ---------- */
.stats, .listings { --sec-a: var(--brand); --sec-a-2: var(--brand-2); --sec-stroke: rgba(200, 243, 59, 0.13); }
.banner { --sec-a: #ffcd1a; --sec-a-2: #ffe066; --sec-stroke: rgba(255, 205, 26, 0.17); }
.testimonials { --sec-a: #4df0e6; --sec-a-2: #7df7ee; --sec-stroke: rgba(77, 240, 230, 0.17); }

/* ---------- Base type: display stack ---------- */
.hero__title,
.listings__head h2,
.testimonials__title,
.banner__copy h2,
.stat__num,
.marquee__group span,
.bgword,
.preloader__ghost,
.preloader__letters span,
.modal__title,
.quick__title,
.footer__col h3,
.footer__col h4 {
  font-family: var(--font-display);
}
.hero__title {
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.hero__title em {
  font-style: normal;
  color: var(--brand-2);
  /* Keep the highlighted phrase as one unbreakable unit — it reads as a
     single call-out, so it should move to the next line as a whole rather
     than splitting word-by-word across a line break. */
  white-space: nowrap;
  display: inline-block;
}
.hero__sub {
  color: var(--ink);
  text-shadow: 0 1px 14px rgba(10, 10, 14, 0.8);
}
.listings__head h2, .testimonials__title { letter-spacing: -0.02em; text-transform: uppercase; }

.listings__head h2 {
  background: var(--brand-grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.testimonials__title {
  background: linear-gradient(135deg, #7df7ee, #4df0e6);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.listings__head p {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ---------- Mono stack: every data readout ---------- */
.chapter-tag,
.hero__eyebrow,
.search-console,
.search-tab,
.search-field label,
.search-pill,
.nav__link,
.host-link,
.lang-btn,
.dropdown__item,
.cat-pill,
.sort-btn,
.filter-btn,
.stat__label,
.card__lotline,
.card__lot,
.card__cat,
.card__price,
.card__bids,
.card__timer,
.auction-chip,
.card__rentnow-label,
.card__rentnow-price,
.range-labels,
.mobile-row__label,
.quick__meta,
.quick__loc,
.quick__desc,
.auction-summary__bid span,
.auction-summary__end span,
.auction-summary__bid b,
.auction-summary__end b,
.auction-total,
.auction-bidbox input,
.auction-hint,
.auction-history__head,
.auction-history__row .amt,
.rent-nights #rentTotal,
.footer__col h3,
.footer__col h4,
.load-more {
  font-family: var(--font-mono);
  font-variant-numeric: tabular-nums;
}

/* Chapter tags + bgwords follow the section accent */
.chapter-tag { color: var(--sec-a-2, var(--brand-2)); letter-spacing: 0.18em; }
.chapter-tag::before { background: var(--sec-a, var(--brand)); }
.bgword { -webkit-text-stroke: 1.5px var(--sec-stroke, rgba(245, 243, 244, 0.12)); }

/* Fix contrast: white text was on volt-lime — switch to dark ink */
.btn--primary,
.search-submit,
.search-pill__cta,
.logo__mark,
.preloader__mark { color: var(--brand-ink); }
.btn { border-radius: 12px; }
.btn--primary { letter-spacing: 0.02em; }
.btn--ghost { border-radius: 12px; }

/* ---------- Header: command deck ---------- */
.logo__mark { border-radius: 50%; }
.logo__mark svg text { font-family: var(--font-display); }
.logo__word {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
/* ---------- Logo boot: F1-tyre spin + wordmark reveal ---------- */
.brand-intro .logo__word { opacity: 0; transform: scale(0.94); clip-path: inset(0 100% 0 0); }
.brand-intro.is-loaded .logo__mark {
  animation: logoSpin 2s cubic-bezier(0.2, 0.85, 0.3, 1);
  animation-duration: 2s !important;
  animation-iteration-count: 1 !important;
}
.brand-intro.is-loaded .logo__word {
  animation: wordIn 1.2s cubic-bezier(0.2, 0.8, 0.3, 1) 0.25s both;
  animation-duration: 1.2s !important;
  animation-iteration-count: 1 !important;
}
@keyframes logoSpin {
  0%   { transform: rotate(0deg) scale(1); }
  80%  { transform: rotate(750deg) scale(1.1); }
  92%  { transform: rotate(706deg) scale(1.04); }
  100% { transform: rotate(720deg) scale(1); }
}
@keyframes wordIn {
  0%   { opacity: 0; transform: scale(0.94); clip-path: inset(0 100% 0 0); }
  100% { opacity: 1; transform: scale(1); clip-path: inset(0 0 0 0); }
}
.nav__link {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.nav__link::after { background: var(--brand); }
.nav__link:hover { color: var(--brand); background: var(--brand-tint-2); }
.nav__link.is-active { color: var(--brand-2); }
.nav__link.is-active::after { width: 26px; }
.host-link, .lang-btn { font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase; }
.profile-btn { border-radius: 12px; }
.header::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(200, 243, 59, 0.7), transparent);
  opacity: 0;
  transition: opacity 0.4s var(--ease-out);
}
.header.is-scrolled::after { opacity: 0.9; }

/* Compact search pill → mono data strip */
.search-pill { font-size: 0.78rem; letter-spacing: 0.03em; border-radius: 14px; }
.search-pill__loc { color: var(--brand-2); }
.search-pill__cta { border-radius: 10px; }

/* Dropdown */
.dropdown { border-radius: 12px; border: 1px solid var(--line-strong); }
.dropdown__item { font-size: 0.78rem; letter-spacing: 0.04em; }

/* ---------- Hero: headline sits directly on the photo, no glass panel ---------- */
.hero__panel {
  display: inline-block;
  max-width: min(640px, 100%);
}
.hero__panel .hero__eyebrow { text-shadow: 0 2px 18px rgba(10, 10, 14, 0.85); }
.hero__panel .hero__title { text-shadow: 0 4px 32px rgba(10, 10, 14, 0.65), 0 1px 4px rgba(10, 10, 14, 0.8); }
/* ---------- Hero: eyebrow label + search console ---------- */
.hero__eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  color: var(--brand-2);
}
.hero__eyebrow::before { width: 18px; height: 2px; }
.search-card { border-radius: 16px; border: 1px solid var(--line); }
.search-console {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0 0.2rem 0.5rem;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  border-bottom: 1px dashed var(--line);
}
.search-console__sys { color: var(--brand-2); }
.search-console__sys i { font-style: normal; opacity: 0.45; margin: 0 0.35rem; }
.search-tab { font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase; }
.search-field label { font-size: 0.7rem; letter-spacing: 0.16em; }
.search-field input, .search-field > span { font-size: 0.92rem; }

/* ---------- Category track: telemetry tags ---------- */
.cat-pill {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.cat-pill::after { background: var(--brand); height: 2px; }
.cat-pill:hover { color: var(--brand); }
.cat-pill.is-active { color: var(--brand-2); }
.cat-pill.is-active::after { width: 26px; }
.filter-btn {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 10px;
}
.sort-btn { font-size: 0.72rem; letter-spacing: 0.04em; text-transform: uppercase; }
.sort-btn b { color: var(--brand-2); }

/* ---------- Stats: telemetry readout strip ---------- */
.stat { position: relative; padding-top: 0.7rem; }
.stat::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 26px;
  height: 2px;
  background: var(--sec-a, var(--brand));
}
.stat__num { letter-spacing: -0.01em; }
.stat__label {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ---------- Scroll progress: run the full accent ladder ---------- */
.scroll-progress {
  background: linear-gradient(90deg, #c8f33b 0%, #8b5cf6 34%, #ffcd1a 66%, #4df0e6 100%);
  background-size: 200% 100%;
}

/* ---------- Cards: numbered lot tickets ---------- */
.card__perf {
  display: block;
  position: relative;
  height: 6px;
  margin: 0.1rem 0 0.55rem;
  background-image: radial-gradient(circle, var(--line-strong) 0 1.5px, transparent 1.8px);
  background-size: 15px 6px;
  background-repeat: repeat-x;
  background-position: 0 0;
}
.card__perf::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 44px;
  height: 6px;
  background-image: repeating-linear-gradient(90deg,
    var(--ink-soft) 0 1px, transparent 1px 2px,
    var(--ink-soft) 2px 4px, transparent 4px 5px,
    var(--ink-soft) 5px 5.5px, transparent 5.5px 7px);
  opacity: 0.55;
}
.card__lotline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.35rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}
.card__lot {
  color: var(--brand);
  background: var(--brand-tint);
  border: 1px solid rgba(200, 243, 59, 0.28);
  padding: 0.12rem 0.42rem;
  border-radius: 6px;
  letter-spacing: 0.14em;
}
.card__cat {
  color: var(--muted);
  font-weight: 600;
  letter-spacing: 0.12em;
}.card__price { font-size: 0.88rem; }
.card__price b { font-size: 1.06rem; color: var(--brand-2); letter-spacing: -0.02em; }
.card__price span { font-size: 0.78rem; }
.card__bids { font-size: 0.7rem; letter-spacing: 0.06em; }
.card__timer { font-size: 0.74rem; letter-spacing: 0.08em; border-radius: 8px; }
.auction-chip { font-size: 0.7rem; letter-spacing: 0.14em; border-radius: 8px; }

.card:hover .card__media {
  box-shadow:
    0 26px 55px -20px rgba(0, 0, 0, 0.75),
    0 0 0 1px rgba(200, 243, 59, 0.35),
    0 18px 50px -22px rgba(200, 243, 59, 0.35);
}
.card__rentnow { border-radius: 10px; }
.card__rentnow-label { letter-spacing: 0.08em; }
.card__rentnow-price { letter-spacing: -0.02em; }

/* ---------- Load more ---------- */
.load-more {
  font-size: 0.76rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 10px;
}

/* ---------- Modals: ticket panels ---------- */
.modal__panel {
  border: 1px solid var(--line-strong);
  border-top: 2px solid var(--brand);
}
.modal__title {
  font-size: 1.5rem;
  letter-spacing: 0;
  text-transform: uppercase;
}

/* ---------- Legal modals (Terms / Privacy) ---------- */
.modal__panel--legal { width: min(920px, 100%); max-height: 92vh; }
.legal-doc {
  padding: 0.2rem 2.2rem 2.6rem;
  color: var(--ink-soft);
  font-size: 0.92rem;
  line-height: 1.65;
}
.legal-doc .legal-meta {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  padding-bottom: 0.6rem;
  border-bottom: 1px dashed var(--line-strong);
}
.legal-doc h4 {
  font-family: var(--font-mono);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand-2);
  margin: 1.7rem 0 0.5rem;
}
.legal-doc p { margin: 0.55rem 0; }
.legal-doc ul { margin: 0.4rem 0 0.8rem; padding-left: 0; display: grid; gap: 0.4rem; }
.legal-doc li { list-style: none; position: relative; padding-left: 1.1rem; }
.legal-doc li::before { content: "—"; position: absolute; left: 0; color: var(--brand); opacity: 0.75; }
.legal-doc b { color: var(--ink); font-weight: 600; }
.legal-doc em { color: var(--brand-2); font-style: normal; letter-spacing: 0.02em; }
@media (max-width: 640px) { .legal-doc { padding: 0.2rem 1.2rem 2rem; font-size: 0.88rem; } }
.reg-done h4, .auth-body__title { font-family: var(--font-display); text-transform: uppercase; letter-spacing: 0; }
.range-labels { font-size: 0.74rem; }

/* ---------- Quick view: mono data + display title ---------- */
.quick__title { font-size: 1.7rem; text-transform: uppercase; letter-spacing: 0; }
.quick__loc { font-size: 0.8rem; }
.quick__meta { font-size: 0.78rem; }
.quick__desc { font-size: 0.86rem; }
.auction-summary__bid b { font-size: 1.45rem; }
.auction-summary__bid span, .auction-summary__end span { font-size: 0.7rem; letter-spacing: 0.14em; }
.auction-summary__meta { font-family: var(--font-mono); font-size: 0.72rem; }
.auction-hint { font-size: 0.7rem; }
.auction-history__row { font-size: 0.8rem; }
.auction-history__row .who { font-family: var(--font-mono); }
.auction-total { font-size: 0.9rem; }
.quick__card { border-radius: 12px; }

/* ---------- Host / rent / register forms ---------- */
.host-field label, .reg-field label { font-family: var(--font-mono); font-size: 0.7rem; letter-spacing: 0.06em; text-transform: uppercase; }
.host-field__note, .reg-hint { font-family: var(--font-mono); font-size: 0.68rem; }
.host-divider { font-family: var(--font-mono); letter-spacing: 0.12em; }
.host-check-result { font-family: var(--font-mono); font-size: 0.74rem; }
.host-disclaimer { font-family: var(--font-mono); font-size: 0.7rem; letter-spacing: 0.02em; }
.reg-sub { font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.04em; }
.reg-steps { gap: 0.35rem; }
.reg-step { font-size: 0.7rem; letter-spacing: 0.08em; }
.rent-sub { font-family: var(--font-mono); font-size: 0.74rem; }
.rent-summary__row, .rent-summary__row b { font-family: var(--font-mono); font-size: 0.78rem; }

/* ---------- Banner (host): amber telemetry ---------- */
.banner__copy h2 { text-transform: uppercase; letter-spacing: -0.01em; }
.banner__inner { border-radius: 18px; }
.banner .bgword { -webkit-text-stroke: 1.5px var(--sec-stroke, rgba(255, 205, 26, 0.17)); }
.btn--light { border-radius: 12px; }

/* ---------- Testimonials: cyan accent + mono quotes ---------- */
.testimonial { border-radius: var(--r-md); }
.testimonial__quote { font-family: var(--font-mono); font-size: 0.84rem; }
.testimonial__name { font-family: var(--font-mono); font-size: 0.78rem; letter-spacing: 0.06em; text-transform: uppercase; }
.testimonial__meta { font-family: var(--font-mono); font-size: 0.7rem; }

/* ---------- Footer: mono headings, telemetry base ---------- */
.footer { border-top: 1px solid var(--line); background: #121217; }
.footer__col h3, .footer__col h4 { font-size: 0.78rem; letter-spacing: 0.18em; color: var(--brand-2); }

/* ---------- V6 responsive ---------- */
@media (max-width: 620px) {
  .search-console { font-size: 0.65rem; }
  .card__lotline { font-size: 0.66rem; }
  .stat__label { font-size: 0.7rem; }
}

/* ============================================================
   DEVICE & BROWSER COMPATIBILITY LAYER (v6.14)
   - iOS Safari / Android Chrome ergonomics & viewport fixes
   - Windows/Edge, macOS Safari, Firefox rendering consistency
   ============================================================ */

/* Landscape phone / small desktop: keep header from overlapping hero content */
@media (max-height: 520px) and (orientation: landscape) {
  .hero__content { padding-top: calc(var(--header-h) + var(--sat) + 20px); }
}

/* iOS Safari: modal/panel heights already use dvh with vh fallback.
   Landscape phones get full-bleed, edge-to-edge panels. */
@media (max-width: 640px) {
  .modal { padding: 0; }
  .modal__panel {
    border-radius: var(--r-xl) var(--r-xl) 0 0;
    max-height: calc(100dvh - var(--sat) - var(--sab));
    width: 100%;
  }
  .modal__panel--quick, .modal__panel--calendar, .modal__panel--filters,
  .modal__panel--auth, .modal__panel--guests { width: 100%; }
  .modal__close { top: calc(10px + var(--sat)); }
}

/* Sticky action rows in modals must sit above the home indicator */
.modal__actions, .calendar__foot { padding-bottom: max(1.2rem, calc(var(--sab) + 0.6rem)); }

/* Tap targets: guarantee a comfortable minimum on touch devices */
@media (pointer: coarse) {
  .card__fav { width: 42px; height: 42px; }
  .stepper__btn { width: 40px; height: 40px; }
  .cal-day { min-height: 42px; }
  .suggest-chip, .mobile-row { padding-block: 0.85rem; }
  .search-pill__cta { width: 42px; height: 42px; }
  .nav__link, .dropdown__item, .footer__col a { min-height: 44px; display: inline-flex; align-items: center; }
  .cat-arrow, .calendar__nav-btn { width: 44px; height: 44px; }
  .calendar__nights-btn { width: 42px; height: 42px; }
  .filter-btn, .sort-btn { min-height: 44px; }
  .chip { padding: 0.7rem 1.1rem; }
  .lang-btn { min-height: 44px; }
  .toggle { min-width: 52px; min-height: 30px; }
  .toggle__knob { width: 24px; height: 24px; }
  .field__eye { min-height: 44px; padding-inline: 0.75rem; }
}

/* Prevent iOS double-tap-zoom focus flash on the quick view */
.quick, .modal__panel { -webkit-touch-callout: none; }

/* Firefox: expose scrollbars consistently on the dark theme */
@supports (scrollbar-width: thin) {
  * { scrollbar-width: thin; scrollbar-color: var(--line-strong) transparent; }
}

/* Safari < 16.4: gradient-clipped display type needs explicit color fallback */
@supports not (background-clip: text) {
  .mission__title, .listings__head h2, .banner__copy h2,
  .testimonials__head h2, .section-title {
    -webkit-text-fill-color: var(--ink);
    color: var(--ink);
  }
}

/* Wide desktop safety: constrain ultra-wide content */
@media (min-width: 1700px) {
  :root { --container: 1380px; }
}

/* Reduce GPU pressure on entry-level Android / low-RAM devices:
   hide the heaviest full-screen canvases and fake-3D chrome. */
@media (pointer: coarse) and (max-width: 900px) {
  .grain { opacity: 0.03; }
  .cursor-glow { display: none; }
  .preloader__ghost { display: none; }
}

/* Ensure the sticky category bar never hides behind the notch/header
   when the dynamic toolbar collapses on Android. */
@supports (top: calc(0px)) {
  .category-bar { transition: top 0.2s var(--ease-out); }
}

/* ================================================
   v6.20 — Visual Impact upgrade
   Liquid Glass surfaces · Gradient Mesh · Bento glass panels
   ================================================ */

/* -- Frosted-glass surfaces (modals, menus) -- */
.modal__panel {
  background: linear-gradient(165deg, rgba(28, 28, 36, 0.9), rgba(21, 21, 27, 0.84));
  -webkit-backdrop-filter: blur(26px);
  backdrop-filter: blur(26px);
  box-shadow:
    var(--shadow-lg),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}
.dropdown,
.lang-menu {
  background: rgba(21, 21, 27, 0.82);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-lg), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}
.search-card {
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    0 24px 70px rgba(0, 0, 0, 0.6),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

/* -- Animated gradient flow on primary CTAs -- */
.btn--primary,
.search-submit {
  position: relative;
  overflow: hidden;
  background-size: 200% 200%;
  background-position: 0% 50%;
  animation: brandFlow 5s ease-in-out infinite alternate;
}
.btn--primary::after,
.search-submit::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(115deg, transparent 30%, rgba(255, 255, 255, 0.35) 48%, transparent 62%);
  transform: translateX(-120%);
  transition: transform 0.6s var(--ease-out);
}
.btn--primary:hover::after,
.search-submit:hover::after {
  transform: translateX(120%);
}
@keyframes brandFlow {
  from { background-position: 0% 50%; }
  to { background-position: 100% 50%; }
}

/* -- Living gradient shimmer on gradient-clipped section titles -- */
.mission__title,
.testimonials__title {
  background-size: 200% auto;
  animation: titleSheen 7s ease-in-out infinite alternate;
}
@keyframes titleSheen {
  from { background-position: 0% 50%; }
  to { background-position: 100% 50%; }
}

/* -- Bento glass panels: stats -- */
.stat {
  padding: 1.6rem 1.1rem 1.35rem;
  border-radius: var(--r-lg);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.01));
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm), inset 0 1px 0 rgba(255, 255, 255, 0.04);
  transition: transform 0.35s var(--ease-out), border-color 0.35s, box-shadow 0.35s;
}
.stat:hover {
  transform: translateY(-4px);
  border-color: rgba(200, 243, 59, 0.4);
  box-shadow: 0 20px 45px -20px rgba(200, 243, 59, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

/* -- Glass testimonials -- */
.testimonial {
  background: linear-gradient(170deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.012));
  border-color: rgba(255, 255, 255, 0.07);
}
.testimonial:hover {
  transform: translateY(-6px);
  border-color: rgba(200, 243, 59, 0.32);
  box-shadow: var(--shadow-md), 0 0 0 1px rgba(200, 243, 59, 0.12);
}

/* -- Card hover: volt ring + light sheen sweep across the photo -- */
.card:hover .card__media {
  box-shadow:
    0 26px 55px -20px rgba(0, 0, 0, 0.75),
    0 0 0 1px rgba(200, 243, 59, 0.35),
    0 0 34px -10px rgba(200, 243, 59, 0.45);
}
.card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(115deg, transparent 20%, rgba(255, 255, 255, 0.1) 42%, rgba(255, 255, 255, 0.04) 50%, transparent 72%);
  transform: translateX(-130%) skewX(-8deg);
  transition: transform 0.9s var(--ease-out);
}
.card:hover .card__media::after {
  transform: translateX(130%) skewX(-8deg);
}

/* -- Mission: conic number chips + drifting gradient mesh -- */
.mission__rule {
  align-items: center;
}
.mission__rule b {
  display: grid;
  place-items: center;
  width: 3.1rem;
  height: 2.4rem;
  border-radius: var(--r-sm);
  background: conic-gradient(from 210deg at 50% 50%, rgba(200, 243, 59, 0.3), rgba(200, 243, 59, 0.04), rgba(255, 255, 255, 0.02), rgba(200, 243, 59, 0.3));
  color: var(--brand-2);
}
.mission__inner {
  position: relative;
  z-index: 1;
}
.mission::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(42% 60% at 12% 8%, rgba(200, 243, 59, 0.08), transparent 60%),
    radial-gradient(38% 55% at 88% 20%, rgba(139, 92, 246, 0.07), transparent 60%),
    radial-gradient(45% 70% at 70% 100%, rgba(255, 205, 26, 0.06), transparent 60%);
  animation: meshDrift 16s ease-in-out infinite alternate;
}
@keyframes meshDrift {
  from { opacity: 0.55; }
  to { opacity: 1; }
}

/* -- Banner: amber/lime gradient mesh over the inner card -- */
.banner__inner {
  position: relative;
}
.banner__inner::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(45% 75% at 16% 20%, rgba(255, 205, 26, 0.1), transparent 62%),
    radial-gradient(40% 70% at 90% 80%, rgba(200, 243, 59, 0.08), transparent 62%),
    conic-gradient(from 220deg at 70% 30%, rgba(255, 205, 26, 0.05), transparent 40%, rgba(200, 243, 59, 0.05), transparent 70%);
}
.banner__copy {
  position: relative;
  z-index: 1;
}

/* ============================================================
   v6.24 — ANIMATION-OPPORTUNITY PASS (find-animation-opportunities)
   Live-auction feedback: bid tick, status flip, rent-total pulse,
   FAQ reveal, empty-state entrance, quick-view gallery swipe.
   All motion is squashed by the universal prefers-reduced-motion
   rule (0.001s duration), so no per-rule guards needed.
   ============================================================ */

/* -- Bid tick: volt glow + scale pop on the price when it changes -- */
.card__auction [data-bid].is-ticked,
.auction-summary__bid [data-bid].is-ticked,
.rent-summary__row b.is-ticked {
  animation: bidTick 0.4s var(--ease-out);
}
@keyframes bidTick {
  0% { transform: scale(1); text-shadow: 0 0 0 rgba(200, 243, 59, 0); }
  35% { transform: scale(1.07); text-shadow: 0 0 14px rgba(200, 243, 59, 0.85); }
  100% { transform: scale(1); text-shadow: 0 0 0 rgba(200, 243, 59, 0); }
}

/* -- Auction status flip: color crossfade + one-shot pulse -- */
.auction-status {
  transition: color 0.3s var(--ease-out);
}
.auction-status.is-status-flash {
  animation: statusFlash 0.45s var(--ease-out);
}
@keyframes statusFlash {
  0% { transform: translateY(0); }
  40% { transform: translateY(-2px); }
  100% { transform: translateY(0); }
}

/* -- FAQ answer reveal: fade + rise instead of teleport -- */
.faq__item[open] p {
  animation: faqIn 0.28s var(--ease-out);
}
@keyframes faqIn {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: translateY(0); }
}

/* -- Empty state: soft entrance when no results match -- */
.empty {
  animation: emptyIn 0.32s var(--ease-out);
}
@keyframes emptyIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* -- Quick-view gallery swipe: allow horizontal drag on touch while
      vertical page scroll stays native (pan-y) -- */
.quick__gallery {
  touch-action: pan-y;
}

/* -- Demo watermark: fixed banner on file:// or localhost -- */
.demo-watermark {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  padding: 6px 12px;
  background: rgba(200, 243, 59, 0.92);
  color: #10140a;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-align: center;
  pointer-events: none;
}

/* ============================================================
   CONSENT BANNER (v6.32)
   Fixed-bottom cookie consent. Uses existing tokens + .btn styles.
   Rides above page content but below the demo-watermark strip.
   ============================================================ */
.consent-banner {
  position: fixed;
  left: 50%;
  bottom: calc(env(safe-area-inset-bottom, 0px) + 3.5rem);
  transform: translateX(-50%);
  width: min(760px, calc(100vw - 2rem));
  z-index: 9998;
  padding: 1.15rem 1.35rem;
  border-radius: var(--r-lg);
  border: 1px solid var(--line-strong);
  background: linear-gradient(165deg, rgba(28, 28, 36, 0.96), rgba(21, 21, 27, 0.94));
  box-shadow: 0 18px 44px -12px rgba(0, 0, 0, 0.75), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(20px) saturate(1.35);
  -webkit-backdrop-filter: blur(20px) saturate(1.35);
}
.consent-banner__inner {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}
.consent-banner__text {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.88rem;
  line-height: 1.5;
}
.consent-banner__text a {
  color: var(--brand);
  font-weight: 600;
  text-underline-offset: 3px;
}
.consent-banner__text a:hover {
  color: var(--brand-2);
}
.consent-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}
.consent-banner__actions .btn {
  min-width: 120px;
}
@media (max-width: 480px) {
  .consent-banner {
    bottom: calc(env(safe-area-inset-bottom, 0px) + 3.25rem);
    width: calc(100vw - 1.25rem);
  }
  .consent-banner__actions {
    flex-direction: column;
    align-items: stretch;
  }
  .consent-banner__actions .btn {
    width: 100%;
  }
}

