/* ============================================================
   GuestHive — Landing Page v3
   Built from real dashboard: Sand cream + Honey gold + Charcoal ink
   ============================================================ */

:root {
  /* Sand / Cream — matched to real dashboard background */
  --bg:        #faf6ed;
  --bg-soft:   #f3ecdc;
  --bg-deep:   #ebe1cb;
  --surface:   #ffffff;
  --surface-2: #fbf8f1;

  /* Ink — warm charcoal */
  --ink:       #1a1612;
  --ink-2:     #2c2620;
  --ink-3:     #5b524a;
  --ink-4:     #8a7f73;
  --ink-5:     #b3a89a;

  /* Lines */
  --line:      #e7dcc6;
  --line-soft: #efe7d3;

  /* GOLD — matched to dashboard */
  --gold:        #e49e22;
  --gold-bright: #f4b945;
  --gold-deep:   #b97a14;
  --gold-ink:    #6b4708;
  --gold-soft:   #fdf3dc;
  --gold-glow:   rgba(228, 158, 34, 0.35);

  /* Functional */
  --green:     #2d8f5a;
  --green-soft:#d8efe1;
  --red:       #c64a3a;
  --blue:      #2563eb;
  --blue-soft: #dbeafe;

  /* Dashboard-specific (light theme) */
  --dash-bg:    #f6efe1;
  --dash-card:  #ffffff;
  --dash-line:  #e8dcc1;
  --dash-text:  #1a1612;

  /* Dashboard dark variant — only used inside specific mocks */
  --dashD-bg:   #0e0c0a;
  --dashD-card: #1a1614;
  --dashD-line: #3a322c;

  --radius-sm: 8px;
  --radius:    14px;
  --radius-lg: 22px;
  --radius-xl: 32px;

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --container: 1240px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.55;
  overflow-x: hidden;
  text-wrap: pretty;
}
img, svg, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
input, textarea { font: inherit; color: inherit; }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 4px; }

.serif { font-family: 'Instrument Serif', Georgia, serif; font-style: italic; font-weight: 400; letter-spacing: -0.01em; }
.mono  { font-family: 'JetBrains Mono', ui-monospace, monospace; }
.gold  { color: var(--gold-deep); }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 32px; }
@media (max-width: 720px) { .container { padding: 0 20px; } }

.section { padding: 120px 0; position: relative; }
.section-tight { padding: 80px 0; }
@media (max-width: 720px) { .section { padding: 72px 0; } .section-tight { padding: 56px 0; } }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--gold-ink);
  padding: 6px 12px;
  background: var(--gold-soft);
  border-radius: 100px;
  border: 1px solid color-mix(in oklch, var(--gold) 22%, transparent);
}
.eyebrow .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); animation: pulse 2.4s var(--ease) infinite; }
@keyframes pulse { 0%,100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.5; transform: scale(1.4); } }

h1, h2, h3, h4 { line-height: 1.05; letter-spacing: -0.025em; font-weight: 700; }
.h-display { font-size: clamp(46px, 7.4vw, 104px); font-weight: 800; letter-spacing: -0.035em; line-height: 0.98; }
.h-xl { font-size: clamp(36px, 4.8vw, 64px); font-weight: 700; line-height: 1.04; letter-spacing: -0.03em; }
.h-lg { font-size: clamp(26px, 3vw, 38px); font-weight: 700; line-height: 1.1; letter-spacing: -0.025em; }
.h-md { font-size: clamp(20px, 2vw, 24px); font-weight: 600; line-height: 1.25; }
.lead { font-size: clamp(17px, 1.5vw, 20px); color: var(--ink-3); line-height: 1.55; }
.t-small { font-size: 14px; color: var(--ink-3); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 22px;
  font-weight: 600; font-size: 15px;
  border-radius: 100px;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s var(--ease);
  white-space: nowrap;
}
.btn-primary { background: var(--ink); color: var(--bg); box-shadow: 0 6px 16px -8px rgba(20,16,12,0.4); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 30px -10px rgba(20,16,12,0.5); }
.btn-gold { background: linear-gradient(180deg, var(--gold-bright), var(--gold)); color: #fff; box-shadow: 0 8px 26px -8px var(--gold-glow), inset 0 1px 0 rgba(255,255,255,0.3); }
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 16px 36px -8px var(--gold-glow), inset 0 1px 0 rgba(255,255,255,0.3); }
.btn-ghost { background: transparent; color: var(--ink); border: 1px solid var(--line); }
.btn-ghost:hover { background: var(--bg-soft); border-color: var(--ink-4); }
.btn-sm { padding: 9px 16px; font-size: 13px; }

/* ---------- NAV ---------- */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 60; padding: 16px /* was original */; padding: 18px 0; opacity: 1; will-change: transform, opacity; transition: transform 0.5s var(--ease), opacity 0.38s ease, background 0.3s var(--ease), border-color 0.3s var(--ease), padding 0.3s var(--ease); }
.nav.scrolled { background: color-mix(in oklch, var(--bg) 85%, transparent); backdrop-filter: saturate(160%) blur(14px); border-bottom: 1px solid var(--line-soft); padding: 12px 0; }
.nav.nav-hidden { transform: translateY(calc(-100% - 10px)); opacity: 0; pointer-events: none; }
.nav.menu-open { transform: translateY(0); opacity: 1; pointer-events: auto; }
.nav-row { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.nav-logo { display: flex; align-items: center; gap: 16px; font-weight: 800; font-size: 24px; letter-spacing: -0.02em; }
.nav-logo img { width: 64px; height: 64px; object-fit: contain; }
.nav-links { display: flex; align-items: center; gap: 28px; font-size: 14px; color: var(--ink-3); }
.nav-links a { transition: color 0.2s; }
.nav-links a:hover { color: var(--ink); }
.nav-actions { display: flex; align-items: center; gap: 10px; }
.lang-toggle { display: inline-flex; align-items: center; background: var(--bg-soft); border: 1px solid var(--line); border-radius: 100px; padding: 3px; font-size: 12px; font-weight: 600; }
.lang-toggle button { padding: 6px 12px; border-radius: 100px; color: var(--ink-3); transition: all 0.2s; }
.lang-toggle button.active { background: var(--ink); color: var(--bg); }
@media (max-width: 900px) { .nav-links { display: none; } }

/* ============================================================
   HERO — light theme, real dashboard, floating cards
   ============================================================ */
.hero {
  position: relative;
  padding: 130px 0 80px;
  overflow: hidden;
  isolation: isolate;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(70% 60% at 50% -10%, rgba(228,158,34,0.18) 0%, transparent 65%),
    radial-gradient(50% 40% at 92% 35%, rgba(228,158,34,0.10) 0%, transparent 65%),
    radial-gradient(50% 40% at 8% 60%, rgba(228,158,34,0.08) 0%, transparent 65%);
  z-index: -1;
}
.hero-honeycomb {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='56' height='65' viewBox='0 0 56 65'><polygon points='28,2 52,16 52,48 28,62 4,48 4,16' fill='none' stroke='%23b97a14' stroke-opacity='0.07' stroke-width='1'/></svg>");
  background-size: 56px 65px;
  opacity: 0.7; pointer-events: none; z-index: -1;
  mask-image: radial-gradient(circle at 50% 30%, black, transparent 75%);
}

.hero-status { display: inline-flex; align-items: center; gap: 8px; padding: 7px 14px; background: var(--surface); border: 1px solid var(--line); border-radius: 100px; font-size: 13px; color: var(--ink-3); margin-bottom: 28px; box-shadow: 0 4px 14px -8px rgba(20,16,12,0.1); }
.hero-status .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 4px rgba(45,143,90,0.18); animation: pulse 2.4s var(--ease) infinite; }

.hero-headline { max-width: 1100px; margin-bottom: 28px; }
.hero-sub { max-width: 620px; font-size: clamp(17px, 1.6vw, 21px); color: var(--ink-3); margin-bottom: 36px; line-height: 1.5; }
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; margin-bottom: 60px; }
.hero-cta-meta { font-size: 13px; color: var(--ink-4); margin-left: 6px; }

/* ============================================================
   HERO STAGE — 3D rotated dashboard with floating cards
   ============================================================ */
.heroA-stage { 
  position: relative; 
  perspective: 2400px; 
  padding: 40px 0 140px; 
  margin-top: 30px;
  /* Tilt CSS variables driven by JS mouse-tracking — default 0 (flat) */
  --tilt-x: 0deg;
  --tilt-y: 0deg;
}
.heroA-board {
  position: relative; width: 100%; max-width: 1180px; margin: 0 auto;
  transform-style: preserve-3d;
  /* JS-controlled CSS vars — interactive: handled by spring in JS */
  transform: rotateX(var(--tilt-x)) rotateY(var(--tilt-y));
  transition: transform 0ms;
}
/* Fallback: when JS hasn't mounted (or reduced motion), keep slight static tilt */
.heroA-stage:not(.heroA-stage-interactive) .heroA-board {
  transform: rotateX(8deg) rotateY(-3deg);
  transition: transform 600ms var(--ease);
}
.heroA-screen {
  position: relative; width: 100%;
  background: var(--dash-bg);
  border-radius: 18px;
  border: 1px solid var(--dash-line);
  overflow: hidden;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.6) inset,
    0 60px 120px -40px rgba(20,16,12,0.30),
    0 30px 60px -20px rgba(228,158,34,0.18);
}
.heroA-board::after {
  content: ''; position: absolute; left: 8%; right: 8%; bottom: -130px; height: 110px;
  background: linear-gradient(to bottom, rgba(20,16,12,0.20), transparent);
  filter: blur(20px); border-radius: 50%; transform: translateZ(-100px); z-index: -1;
}

.heroA-card {
  position: absolute; background: var(--surface); border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.8) inset,
    0 30px 60px -20px rgba(20,16,12,0.25),
    0 12px 28px -10px rgba(20,16,12,0.15);
  padding: 14px 16px; font-size: 13px; z-index: 5;
  transform-style: preserve-3d; animation: floatCard 7s var(--ease) infinite;
}
@keyframes floatCard { 0%,100% { transform: translateY(0) translateZ(60px); } 50% { transform: translateY(-12px) translateZ(60px); } }
.heroA-card-chat    { top: -69px; right: -80px; width: 320px; animation-delay: -1s; }
.heroA-card-clean   { bottom: 100px; left: -50px; width: 290px; animation-delay: -3s; }
.heroA-card-laundry { bottom: -10px; right: 60px; width: 280px; animation-delay: -5s; }
@media (max-width: 1100px) {
  .heroA-card-chat    { top: -10px; right: 0; width: 270px; }
  .heroA-card-clean   { bottom: 30px; left: 0; width: 240px; }
  .heroA-card-laundry { bottom: 0; right: 0; width: 230px; }
}
@media (max-width: 720px) {
  .heroA-board { transform: rotateX(0deg) rotateY(0deg); }
  .heroA-stage { --tilt-x: 0deg; --tilt-y: 0deg; }
  .heroA-card { display: none; }
}

.fcard-head { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
.fcard-icon { width: 28px; height: 28px; border-radius: 8px; background: var(--gold-soft); display: flex; align-items: center; justify-content: center; color: var(--gold-deep); flex-shrink: 0; }
.fcard-title { font-weight: 700; font-size: 11px; text-transform: uppercase; letter-spacing: 0.06em; color: var(--ink-3); }
.fcard-time { margin-left: auto; font-size: 11px; color: var(--ink-4); }
.fcard-body { color: var(--ink-2); line-height: 1.4; font-size: 13px; }
.fcard-body strong { color: var(--ink); }
.fcard-status { display: inline-flex; align-items: center; gap: 6px; margin-top: 8px; font-size: 11px; font-weight: 600; color: var(--green); }
.fcard-check { width: 14px; height: 14px; border-radius: 50%; background: var(--green); color: white; display: inline-flex; align-items: center; justify-content: center; font-size: 9px; }

/* ============================================================
   REVIEW BAND — 5-star social proof after live test chat
   ============================================================ */
.review-band {
  position: relative;
  overflow: hidden;
  padding: 78px 0 82px;
  background:
    linear-gradient(180deg, rgba(250,246,237,0) 0%, rgba(228,158,34,0.08) 42%, rgba(250,246,237,0) 100%),
    radial-gradient(70% 110% at 50% 50%, rgba(255,255,255,0.92), rgba(243,236,220,0.34) 70%, rgba(250,246,237,0));
  border-top: 1px solid rgba(231,220,198,0.65);
  border-bottom: 1px solid rgba(231,220,198,0.65);
}
.review-band::before,
.review-band::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: min(16vw, 220px);
  z-index: 2;
  pointer-events: none;
}
.review-band::before {
  left: 0;
  background: linear-gradient(to right, var(--bg) 0%, rgba(250,246,237,0.82) 42%, rgba(250,246,237,0) 100%);
}
.review-band::after {
  right: 0;
  background: linear-gradient(to left, var(--bg) 0%, rgba(250,246,237,0.82) 42%, rgba(250,246,237,0) 100%);
}
.review-band-head {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(420px, 0.9fr);
  align-items: end;
  gap: 36px;
  margin-bottom: 30px;
}
.review-title {
  max-width: 680px;
  margin-top: 18px;
}
.review-proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}
.review-proof {
  min-height: 96px;
  padding: 16px 14px;
  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(185,122,20,0.16);
  border-radius: var(--radius);
  box-shadow: 0 16px 36px -28px rgba(26,22,18,0.35), inset 0 1px 0 rgba(255,255,255,0.75);
}
.review-proof-value {
  font-size: clamp(24px, 2.3vw, 34px);
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--ink);
}
.review-proof-label {
  margin-top: 8px;
  font-size: 12px;
  line-height: 1.25;
  color: var(--ink-3);
  font-weight: 650;
}
.review-marquee {
  position: relative;
  z-index: 1;
  width: 100%;
  overflow: hidden;
  padding: 8px 0;
}
.review-marquee-lane {
  display: flex;
  width: max-content;
  will-change: transform;
  animation: reviewMarquee 84s linear infinite;
}
.review-marquee-group {
  display: flex;
  gap: 16px;
  padding-right: 16px;
}
.review-card {
  flex: 0 0 342px;
  min-height: 188px;
  padding: 22px 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: rgba(255,255,255,0.78);
  border: 1px solid rgba(185,122,20,0.14);
  border-radius: var(--radius);
  box-shadow:
    0 22px 50px -34px rgba(26,22,18,0.42),
    inset 0 1px 0 rgba(255,255,255,0.82);
}
.review-card-stars {
  color: var(--gold);
  font-size: 14px;
  letter-spacing: 0.12em;
  line-height: 1;
}
.review-card-text {
  margin: 16px 0 14px;
  color: var(--ink-2);
  font-size: 15px;
  line-height: 1.5;
  font-weight: 560;
}
.review-card-author {
  color: var(--ink-4);
  font-size: 12px;
  line-height: 1.3;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
@keyframes reviewMarquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-33.3333%); }
}
@media (hover: hover) {
  .review-marquee:hover .review-marquee-lane { animation-play-state: paused; }
}
@media (prefers-reduced-motion: reduce) {
  .review-marquee {
    overflow-x: auto;
    scrollbar-width: none;
  }
  .review-marquee::-webkit-scrollbar { display: none; }
  .review-marquee-lane { animation: none; }
}
@media (max-width: 980px) {
  .review-band-head {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 24px;
  }
  .review-proof-grid { max-width: 680px; }
}
@media (max-width: 640px) {
  .review-band {
    padding: 58px 0 62px;
  }
  .review-band::before,
  .review-band::after {
    width: 56px;
  }
  .review-proof-grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .review-proof {
    min-height: auto;
    padding: 14px 16px;
  }
  .review-card {
    flex-basis: min(82vw, 318px);
    min-height: 204px;
    padding: 20px;
  }
  .review-card-text {
    font-size: 14px;
  }
  .review-marquee-lane {
    animation-duration: 108s;
  }
}

/* ============================================================
   DASHBOARD MOCKUP — Pixel-near recreation of real Dashboard Hub
   ============================================================ */
.dh {
  display: grid;
  grid-template-columns: 220px 1fr;
  background: var(--dash-bg);
  position: relative; /* anchor for slide-in side panels (Phase 3+) */
  font-size: 13px;
  color: var(--dash-text);
  min-height: 600px;
}
@media (max-width: 720px) {
  .dh { grid-template-columns: 60px 1fr; }
  .dh-side-label, .dh-logo span, .dh-side-status { display: none; }
}

/* Sidebar */
.dh-side {
  background: var(--surface);
  border-right: 1px solid var(--dash-line);
  padding: 20px 14px;
  display: flex; flex-direction: column;
  gap: 6px;
}
.dh-logo { display: flex; flex-direction: column; align-items: center; padding: 12px 0 24px; gap: 6px; border-bottom: 1px solid var(--line-soft); margin-bottom: 16px; }
.dh-logo img { width: 56px; height: 56px; object-fit: contain; }
.dh-logo span { font-size: 13px; font-weight: 800; letter-spacing: -0.01em; }
.dh-logo small { font-size: 10px; font-weight: 600; color: var(--ink-4); letter-spacing: 0.16em; text-transform: uppercase; }
.dh-side-item {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 12px; border-radius: 10px;
  font-size: 13px; font-weight: 500; color: var(--ink-3);
  background: transparent; border: 0; font-family: inherit;
  text-align: left; width: 100%;
  cursor: pointer; transition: background 0.2s, color 0.2s;
}
.dh-side-item:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }
.dh-side-item:hover { background: var(--bg-soft); color: var(--ink); }
.dh-side-item.active { background: var(--gold-soft); color: var(--gold-ink); font-weight: 600; }
.dh-side-item svg { flex-shrink: 0; }

.dh-side-status {
  margin-top: auto;
  padding: 12px;
  background: var(--bg-soft);
  border-radius: 10px;
  font-size: 11px;
  color: var(--ink-3);
}
.dh-side-status .row { display: flex; justify-content: space-between; padding: 3px 0; }
.dh-side-status .row strong { color: var(--ink); font-weight: 600; }
.dh-side-status .pill-on {
  display: inline-flex; align-items: center; gap: 4px;
  background: var(--green-soft); color: var(--green);
  padding: 2px 8px; border-radius: 100px; font-weight: 700;
}
.dh-side-status .pill-on .dotg { width: 6px; height: 6px; border-radius: 50%; background: var(--green); }

/* Main area */
.dh-main { padding: 16px; display: flex; flex-direction: column; gap: 14px; min-width: 0; min-height: 720px; /* Hält die Höhe konstant zwischen Standard und Expert mode */ }

.dh-topbar {
  background: var(--surface);
  border: 1px solid var(--dash-line);
  border-radius: 14px;
  padding: 14px 22px;
  display: flex; align-items: center; justify-content: space-between;
}
.dh-topbar-title { font-size: 18px; font-weight: 700; letter-spacing: -0.02em; }
.dh-topbar-sub { font-size: 12px; color: var(--ink-4); margin-top: 2px; }
.dh-topbar-actions { display: flex; align-items: center; gap: 10px; }
.dh-icon-btn { width: 36px; height: 36px; border-radius: 10px; background: var(--bg-soft); display: flex; align-items: center; justify-content: center; color: var(--gold-deep); border: 1px solid var(--line); position: relative; }
.dh-icon-btn .dot-r { position: absolute; top: 6px; right: 6px; width: 7px; height: 7px; border-radius: 50%; background: var(--red); border: 2px solid var(--surface); }
/* Topbar pill toggle — used for Theme + Density switchers (Phase 2) */
.dh-pill-toggle { display: inline-flex; align-items: center; padding: 3px; background: var(--bg-soft); border: 1px solid var(--line); border-radius: 100px; gap: 2px; }
.dh-pill-btn { display: inline-flex; align-items: center; justify-content: center; width: 28px; height: 28px; padding: 0; border-radius: 100px; background: transparent; border: 0; color: var(--ink-4); cursor: pointer; font-family: inherit; transition: background 0.18s ease, color 0.18s ease; }
.dh-pill-btn:hover:not(.active) { color: var(--ink-2); background: rgba(0,0,0,0.04); }
.dh-pill-btn.active { background: var(--surface); color: var(--gold-deep); box-shadow: 0 1px 3px -1px rgba(20,16,12,0.18), inset 0 0 0 1px var(--line); }
.dh-pill-btn:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }
@media (max-width: 720px) { .dh-pill-toggle { padding: 2px; } .dh-pill-btn { width: 24px; height: 24px; } }

.dh-user { display: flex; align-items: center; gap: 8px; padding: 4px 14px 4px 4px; background: var(--bg-soft); border-radius: 100px; border: 1px solid var(--line); }
.dh-user-avatar { width: 30px; height: 30px; border-radius: 50%; background: var(--gold); color: white; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 12px; }
.dh-user-info { line-height: 1.1; }
.dh-user-name { font-size: 12px; font-weight: 600; }
.dh-user-role { font-size: 10px; color: var(--ink-4); }

/* Tab strip */
.dh-tabs { display: flex; align-items: center; gap: 8px; padding: 0 4px; }
.dh-tab { display: inline-flex; align-items: center; gap: 6px; padding: 7px 14px; border-radius: 100px; font-size: 12px; font-weight: 600; color: var(--ink-3); border: 1px solid transparent; background: transparent; font-family: inherit; cursor: pointer; transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease; }
.dh-tab:hover:not(.active) { background: var(--line-soft); color: var(--ink-2); }
.dh-tab:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }
.dh-tab-placeholder { padding: 60px 20px; text-align: center; color: var(--ink-3); font-size: 14px; font-style: italic; border: 1px dashed var(--line); border-radius: 12px; margin-top: 16px; }
.dh-tab.active { background: var(--gold); color: white; border-color: var(--gold-deep); box-shadow: 0 2px 8px -2px var(--gold-glow); }
.dh-tab-spacer { flex: 1; }
.dh-setup-link { font-size: 11px; color: var(--ink-3); display: inline-flex; align-items: center; gap: 4px; padding: 6px 10px; border-radius: 8px; }

/* Communicator card */
.dh-comm {
  background: var(--surface);
  border: 1px solid var(--dash-line);
  border-radius: 14px;
  padding: 16px 22px;
  display: grid;
  grid-template-columns: auto 1fr auto auto auto auto;
  gap: 28px;
  align-items: center;
}
.dh-comm-icon { width: 40px; height: 40px; border-radius: 10px; background: var(--gold-soft); display: flex; align-items: center; justify-content: center; color: var(--gold-deep); }
.dh-comm-info h3 { font-size: 16px; font-weight: 700; display: flex; align-items: center; gap: 8px; margin-bottom: 2px; }
.dh-comm-info p { font-size: 12px; color: var(--ink-4); }
.dh-comm-pill { display: inline-flex; align-items: center; gap: 5px; padding: 3px 9px; background: var(--green-soft); color: var(--green); border-radius: 100px; font-size: 11px; font-weight: 700; }
.dh-comm-pill .dotg { width: 6px; height: 6px; border-radius: 50%; background: var(--green); animation: pulse 2s var(--ease) infinite; }
.dh-comm-stat { text-align: center; }
.dh-comm-stat .v { font-size: 22px; font-weight: 700; line-height: 1; }
.dh-comm-stat .l { font-size: 10px; color: var(--ink-4); text-transform: uppercase; letter-spacing: 0.08em; margin-top: 4px; }
.dh-comm-since { font-size: 11px; color: var(--ink-4); line-height: 1.3; }
.dh-comm-since strong { display: block; color: var(--ink-2); font-size: 12px; font-weight: 600; }
.dh-comm-stop { background: #fdecec; color: var(--red); padding: 7px 14px; border-radius: 8px; font-size: 12px; font-weight: 600; display: inline-flex; align-items: center; gap: 6px; border: 1px solid #f5c6c6; }

/* Property + Guest combined block */
.dh-row {
  display: grid;
  grid-template-columns: 1.1fr 1.4fr 1.3fr;
  gap: 14px;
}
@media (max-width: 1100px) { .dh-row { grid-template-columns: 1fr; } }

.dh-panel {
  background: var(--surface);
  border: 1px solid var(--dash-line);
  border-radius: 14px;
  padding: 16px 18px;
}
.dh-panel-label { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--ink-4); margin-bottom: 8px; }
.dh-panel-label.gold { color: var(--gold-deep); }

.dh-prop-name { font-size: 14px; font-weight: 700; margin-bottom: 2px; }
.dh-prop-loc { font-size: 11px; color: var(--ink-4); margin-bottom: 12px; }
.dh-prop-tag { display: inline-block; font-size: 10px; padding: 2px 7px; background: var(--green-soft); color: var(--green); border-radius: 6px; font-weight: 700; margin-bottom: 8px; }
.dh-prop-bar {
  height: 6px; background: var(--bg-soft); border-radius: 100px; overflow: hidden; margin: 4px 0 6px;
}
.dh-prop-bar-fill {
  height: 100%; background: linear-gradient(90deg, var(--gold), var(--gold-bright));
  border-radius: 100px;
  transition: width 1.4s var(--ease);
}
.dh-prop-occ { display: flex; align-items: center; gap: 8px; }
.dh-prop-occ .pct {
  background: var(--gold-soft); color: var(--gold-ink); font-weight: 700; font-size: 11px;
  padding: 4px 8px; border-radius: 6px;
}
.dh-prop-dates { font-size: 11px; color: var(--ink-3); margin-top: 4px; }

.dh-guest-row { display: flex; align-items: center; gap: 8px; padding: 6px 0; font-size: 12px; }
.dh-guest-status {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 3px 9px; background: var(--green-soft); color: var(--green);
  border-radius: 100px; font-size: 10px; font-weight: 700;
}
.dh-guest-meta { font-size: 11px; color: var(--ink-4); margin-left: auto; }
.dh-guest-name { font-weight: 600; }

.dh-locks-row { display: flex; flex-direction: column; gap: 8px; }
.dh-lock {
  display: flex; align-items: center; gap: 10px;
  padding: 8px 10px;
  background: var(--bg-soft);
  border-radius: 10px;
  font-size: 12px;
}
.dh-lock-icon { width: 26px; height: 26px; border-radius: 7px; background: var(--surface); display: flex; align-items: center; justify-content: center; color: var(--gold-deep); }
.dh-lock-name { font-weight: 600; line-height: 1.1; flex: 1; }
.dh-lock-state { font-size: 10px; color: var(--ink-4); }
.dh-lock-bat { font-size: 10px; padding: 2px 6px; border-radius: 6px; background: var(--green-soft); color: var(--green); font-weight: 700; }
.dh-lock-bat.warn { background: #fff3d8; color: #92580a; }

.dh-com-mini {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 10px;
  background: var(--gold-soft); border-radius: 12px;
  gap: 4px;
  color: var(--gold-ink);
}
.dh-com-mini .pill { font-size: 9px; padding: 2px 6px; border-radius: 100px; background: var(--green-soft); color: var(--green); font-weight: 700; }

/* KPI strip */
.dh-kpis {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
@media (max-width: 720px) { .dh-kpis { grid-template-columns: repeat(2, 1fr); } }

.dh-kpi {
  background: var(--surface);
  border: 1px solid var(--dash-line);
  border-radius: 14px;
  padding: 18px 20px;
  text-align: center;
}
.dh-kpi-v { font-size: 26px; font-weight: 800; letter-spacing: -0.025em; color: var(--ink); }
.dh-kpi-l { font-size: 10px; color: var(--ink-4); text-transform: uppercase; letter-spacing: 0.1em; margin-top: 6px; font-weight: 600; }


/* ============================================================
   CHAT BUBBLES (shared)
   ============================================================ */
.bubble { padding: 12px 16px; border-radius: 18px; max-width: 82%; font-size: 14.5px; line-height: 1.45; word-wrap: break-word; }
.bubble.guest { background: var(--bg-soft); color: var(--ink-2); border-bottom-left-radius: 6px; align-self: flex-start; }
.bubble.ai { background: var(--ink); color: #faf6ee; border-bottom-right-radius: 6px; align-self: flex-end; }
.bubble.ai strong { color: var(--gold-bright); font-weight: 600; }
.bubble.ai a { color: var(--gold-bright); text-decoration: underline; }
.bubble-meta { font-size: 11px; color: var(--ink-4); padding: 0 6px; align-self: flex-start; }
.bubble-meta.right { align-self: flex-end; }

/* Typing dots */
.typing { display: inline-flex; gap: 4px; padding: 14px 18px; background: var(--ink); border-radius: 18px; border-bottom-right-radius: 6px; align-self: flex-end; }
.typing span { width: 6px; height: 6px; border-radius: 50%; background: rgba(250,246,238,0.6); animation: typingDot 1.2s ease-in-out infinite; }
.typing span:nth-child(2) { animation-delay: 0.2s; }
.typing span:nth-child(3) { animation-delay: 0.4s; }
@keyframes typingDot { 0%, 60%, 100% { transform: translateY(0); opacity: 0.4; } 30% { transform: translateY(-4px); opacity: 1; } }

/* ============================================================
   LIVE CHAT (XL section under hero)
   ============================================================ */
.live { background: var(--bg-soft); position: relative; overflow: hidden; }
.live::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 80% 50% at 50% 0%, rgba(228,158,34,0.18), transparent 70%); pointer-events: none; }
.live-head { text-align: center; max-width: 880px; margin: 0 auto 60px; position: relative; }
.live-head .h-display { margin: 24px 0; }
.live-head .lead { max-width: 640px; margin: 0 auto; }
.live-head .property-line { display: inline-flex; align-items: center; gap: 8px; margin-top: 18px; padding: 6px 14px; background: var(--surface); border: 1px solid var(--line); border-radius: 100px; font-size: 13px; color: var(--ink-3); }
.live-head .property-line strong { color: var(--ink); }

.live-stage { display: grid; grid-template-columns: 320px 1fr; gap: 32px; max-width: 1100px; margin: 0 auto; position: relative; }
@media (max-width: 900px) { .live-stage { grid-template-columns: 1fr; } }
.live-suggestions { display: flex; flex-direction: column; gap: 10px; }
.live-sug-title { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: var(--ink-4); margin-bottom: 4px; }
.live-sug-btn {
  display: flex; align-items: center; gap: 10px;
  padding: 14px 16px; background: var(--surface); border: 1px solid var(--line);
  border-radius: 14px; font-size: 14px; font-weight: 500; color: var(--ink-2);
  text-align: left; transition: all 0.25s var(--ease);
}
.live-sug-btn:hover { transform: translateY(-2px); border-color: var(--gold); box-shadow: 0 14px 30px -16px var(--gold-glow); }
.live-sug-btn .emoji { font-size: 18px; flex-shrink: 0; }

.live-chat {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg);
  display: flex; flex-direction: column; min-height: 540px;
  box-shadow: 0 40px 80px -40px rgba(20,16,12,0.2);
  overflow: hidden;
}
.live-chat-head { padding: 16px 20px; background: var(--ink); color: #faf6ee; display: flex; align-items: center; gap: 12px; }
.live-chat-avatar { width: 38px; height: 38px; border-radius: 10px; background: var(--gold); display: flex; align-items: center; justify-content: center; flex-shrink: 0; padding: 4px; }
.live-chat-avatar img { width: 100%; height: 100%; object-fit: contain; }
.live-chat-info h4 { font-size: 14px; font-weight: 700; margin-bottom: 2px; letter-spacing: -0.01em; }
.live-chat-info p { font-size: 11px; color: rgba(250,246,238,0.6); display: flex; align-items: center; gap: 6px; }
.live-chat-info .live-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--green); animation: pulse 2s var(--ease) infinite; }
.live-chat-lang { margin-left: auto; display: inline-flex; align-items: center; background: rgba(255,255,255,0.08); border-radius: 100px; padding: 3px; font-size: 11px; font-weight: 600; }
.live-chat-lang button { padding: 4px 10px; border-radius: 100px; color: rgba(250,246,238,0.6); }
.live-chat-lang button.active { background: var(--gold); color: white; }
.live-chat-body { flex: 1; padding: 22px; display: flex; flex-direction: column; gap: 12px; overflow-y: auto; max-height: 480px; }
.live-chat-input { display: flex; gap: 8px; padding: 14px; border-top: 1px solid var(--line); background: var(--bg); }
.live-chat-input input { flex: 1; padding: 12px 16px; background: var(--surface); border: 1px solid var(--line); border-radius: 100px; font-size: 14px; }
.live-chat-input input:focus { outline: none; border-color: var(--gold); }
.live-chat-input button { width: 44px; height: 44px; border-radius: 50%; background: var(--ink); color: var(--bg); display: flex; align-items: center; justify-content: center; transition: transform 0.2s; }
.live-chat-input button:hover { transform: scale(1.05); }
.live-chat-input button:disabled { opacity: 0.4; cursor: not-allowed; }

/* ============================================================
   CALENDAR SECTION — Animated booking calendar
   ============================================================ */
.cal-section { background: var(--bg); }
.cal-stage {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 32px 32px 0;
  box-shadow: 0 40px 80px -50px rgba(20,16,12,0.2);
  overflow: hidden;
  margin-top: 60px;
}
@media (max-width: 720px) { .cal-stage { padding: 20px 16px 0; } }

/* ── Multi-month calendar filter bar ── */
.mcal-filter {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 24px 16px; border-bottom: 1px solid var(--line-soft);
  gap: 16px; flex-wrap: wrap;
}
.mcal-title { font-size: 15px; font-weight: 700; color: var(--ink); margin-bottom: 2px; }
.mcal-subtitle { font-size: 12px; color: var(--ink-4); }
.mcal-filter-right { display: flex; align-items: center; gap: 7px; flex-wrap: wrap; }
.mcal-chip {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 4px 10px; border-radius: 100px;
  font-size: 12px; font-weight: 600;
  border: 1px solid var(--line); color: var(--ink-3); background: var(--bg-soft);
}
.mcal-chip.occupied { color: var(--red); border-color: rgba(198,74,58,0.25); background: rgba(198,74,58,0.06); }
.mcal-range {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 4px 10px; border: 1px solid var(--line); border-radius: 8px;
  font-size: 12px; font-weight: 600; color: var(--ink-2); background: var(--bg-soft);
}
.mcal-nav {
  background: none; border: none; cursor: pointer;
  color: var(--ink-4); font-size: 15px; padding: 0 2px; line-height: 1;
}
.mcal-nav:hover { color: var(--ink); }

/* ── Body layout ── */
.mcal-body { display: flex; overflow: hidden; }

/* ── Sidebar ── */
.mcal-sidebar {
  width: 210px; min-width: 210px;
  padding: 18px 14px; border-right: 1px solid var(--line-soft);
  display: flex; flex-direction: column; gap: 18px;
}
@media (max-width: 720px) { .mcal-sidebar { display: none; } }
.mcal-prop-card {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 12px; background: var(--bg-soft);
  border: 1px solid var(--line); border-radius: var(--radius);
}
.mcal-prop-icon {
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--gold-soft); color: var(--gold-deep);
  font-size: 12px; font-weight: 700;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.mcal-prop-name { font-size: 12px; font-weight: 700; color: var(--ink); line-height: 1.3; margin-bottom: 4px; }
.mcal-prop-guest { font-size: 11px; color: var(--ink-4); }
.mcal-gauge-wrap {
  display: flex; flex-direction: column; align-items: center; gap: 7px; text-align: center;
}
.mcal-gauge-label { font-size: 10px; color: var(--ink-4); text-transform: uppercase; letter-spacing: 0.08em; font-weight: 600; }
.mcal-rating { font-size: 13px; color: var(--gold); letter-spacing: 1px; }
.mcal-rating span { font-size: 11px; color: var(--ink-3); font-weight: 600; letter-spacing: 0; }

/* ── Month grids ── */
.mcal-months {
  flex: 1; overflow-x: auto; display: flex;
  scrollbar-width: thin; scrollbar-color: var(--line) transparent;
}
.mcal-months::-webkit-scrollbar { height: 4px; }
.mcal-months::-webkit-scrollbar-thumb { background: var(--line); border-radius: 2px; }

.mcal-month {
  min-width: 148px; flex: 1;
  border-right: 1px solid var(--line-soft);
  padding: 14px 6px 20px;
  animation: bookingDraw 0.5s var(--ease) backwards;
}
.mcal-month:last-child { border-right: none; }
@keyframes bookingDraw {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}

.mcal-month-head { font-size: 11px; font-weight: 700; color: var(--ink); margin-bottom: 8px; padding: 0 2px; }
.mcal-weekdays { display: grid; grid-template-columns: repeat(7, 1fr); margin-bottom: 2px; }
.mcal-wd { font-size: 9px; font-weight: 700; text-align: center; color: var(--ink-4); text-transform: uppercase; padding: 2px 0; }

.mcal-week { position: relative; display: grid; grid-template-columns: repeat(7, 1fr); min-height: 26px; }
.mcal-day {
  font-size: 10px; text-align: center; color: var(--ink-3);
  padding: 3px 0; line-height: 20px; min-height: 26px;
}
.mcal-day.empty { color: transparent; pointer-events: none; }

.mcal-evt {
  position: absolute; top: 4px; bottom: 4px;
  border-radius: 4px;
  display: flex; align-items: center; padding: 0 5px;
  z-index: 1; overflow: hidden;
  cursor: default;
  transition: transform 0.15s var(--ease), box-shadow 0.15s;
  animation: bookingDraw 0.6s var(--ease) backwards;
}
.mcal-evt:hover { transform: translateY(-1px); box-shadow: 0 4px 10px -3px rgba(20,16,12,0.25); z-index: 2; }
.mcal-evt-label { font-size: 8.5px; font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; color: white; }
.mcal-evt.ab  { background: linear-gradient(135deg, #ff5a5f, #e0484c); }
.mcal-evt.bk  { background: linear-gradient(135deg, #2f6eb3, #1e4d85); }
.mcal-evt.dir { background: linear-gradient(135deg, var(--gold-bright), var(--gold)); }
.mcal-evt.dir .mcal-evt-label { color: var(--gold-ink); }

/* Calendar bottom stats */
.cal-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 24px;
  padding: 24px 0 28px;
  border-top: 1px solid var(--line-soft);
}
@media (max-width: 720px) { .cal-stats { grid-template-columns: repeat(2, 1fr); } }
.cal-stat-card { padding: 16px 18px; background: var(--bg-soft); border-radius: 14px; border: 1px solid var(--line); }
.cal-stat-card .l { font-size: 10px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--ink-4); font-weight: 600; margin-bottom: 6px; }
.cal-stat-card .v { font-size: 28px; font-weight: 800; letter-spacing: -0.025em; color: var(--ink); display: flex; align-items: baseline; gap: 6px; }
.cal-stat-card .v small { font-size: 13px; color: var(--green); font-weight: 700; }

/* ============================================================
   AI BRAIN SECTION
   ============================================================ */
.brain-section { background: var(--bg-soft); position: relative; overflow: hidden; }
.brain-section::before {
  content: ''; position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='56' height='65' viewBox='0 0 56 65'><polygon points='28,2 52,16 52,48 28,62 4,48 4,16' fill='none' stroke='%23b97a14' stroke-opacity='0.05' stroke-width='1'/></svg>");
  background-size: 56px 65px;
  opacity: 0.7; pointer-events: none;
  mask-image: radial-gradient(circle at 80% 50%, black, transparent 80%);
}

.brain-stage {
  display: grid; grid-template-columns: 1.1fr 1fr;
  gap: 60px; align-items: center;
  position: relative;
}
@media (max-width: 900px) { .brain-stage { grid-template-columns: 1fr; gap: 40px; } }

.brain-mock {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 30px 70px -30px rgba(20,16,12,0.25);
}
.brain-mock-head { padding: 14px 20px; border-bottom: 1px solid var(--line-soft); display: flex; align-items: center; justify-content: space-between; }
.brain-mock-head-l { display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: 14px; }
.brain-mock-head-l .badge { font-size: 10px; padding: 3px 8px; background: var(--gold-soft); color: var(--gold-deep); border-radius: 100px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; }
.brain-mock-head-r { display: inline-flex; align-items: center; gap: 6px; font-size: 11px; color: var(--green); font-weight: 700; }
.brain-mock-head-r .dotg { width: 6px; height: 6px; border-radius: 50%; background: var(--green); animation: pulse 2s var(--ease) infinite; }

.brain-instructions { padding: 18px 20px; font-family: 'JetBrains Mono', monospace; font-size: 12.5px; line-height: 1.65; color: var(--ink-2); background: var(--surface-2); border-bottom: 1px solid var(--line-soft); min-height: 220px; }
.brain-instructions .header { color: var(--gold-deep); font-weight: 700; }
.brain-instructions .key { color: var(--ink); font-weight: 700; }
.brain-instructions .item { padding-left: 14px; position: relative; color: var(--ink-3); }
.brain-instructions .item::before { content: '—'; position: absolute; left: 0; color: var(--ink-5); }
.brain-instructions .caret { display: inline-block; width: 8px; height: 1em; vertical-align: text-bottom; background: var(--gold-deep); animation: caret 1s steps(2) infinite; }
.brain-instructions .typed::after { content: ''; display: inline-block; width: 8px; height: 1em; vertical-align: text-bottom; background: var(--gold-deep); animation: caret 1s steps(2) infinite; margin-left: 4px; }
@keyframes caret { 50% { opacity: 0; } }

.brain-presets { padding: 16px 20px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.brain-preset { padding: 12px; background: var(--bg-soft); border: 1px solid var(--line); border-radius: 10px; text-align: left; cursor: pointer; transition: all 0.2s; }
.brain-preset:hover { border-color: var(--gold); }
.brain-preset.active { background: var(--gold-soft); border-color: var(--gold); }
.brain-preset .t { font-size: 13px; font-weight: 700; margin-bottom: 2px; }
.brain-preset .d { font-size: 10px; color: var(--ink-4); line-height: 1.3; }

/* Right side bullets */
.brain-bullets { display: flex; flex-direction: column; gap: 24px; }
.brain-bullet { display: flex; gap: 16px; }
.brain-bullet-num { width: 36px; height: 36px; border-radius: 50%; background: var(--gold); color: white; font-weight: 800; display: flex; align-items: center; justify-content: center; flex-shrink: 0; box-shadow: 0 4px 12px -4px var(--gold-glow); }
.brain-bullet h4 { font-size: 17px; margin-bottom: 4px; }
.brain-bullet p { font-size: 14.5px; color: var(--ink-3); line-height: 1.5; }

/* ============================================================
   SECTION HEADS
   ============================================================ */
.section-head { text-align: center; max-width: 760px; margin: 0 auto 48px; }
.section-head .eyebrow { margin-bottom: 20px; }
.section-head .h-xl { margin: 24px 0 20px; }

/* ============================================================
   OPERATIONS / PROMISE / SWARM / CTA / FAQ / FOOTER
   ============================================================ */
.ops-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 900px) { .ops-grid { grid-template-columns: 1fr; } }
.ops-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 28px; transition: all 0.4s var(--ease); display: flex; flex-direction: column; min-height: 380px; }
.ops-card:hover { transform: translateY(-4px); border-color: var(--gold); box-shadow: 0 30px 60px -30px rgba(20,16,12,0.15); }
.ops-icon { width: 48px; height: 48px; border-radius: 12px; background: var(--gold-soft); color: var(--gold-deep); display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.ops-card h3 { font-size: 22px; margin-bottom: 10px; }
.ops-card p { color: var(--ink-3); margin-bottom: 18px; }
.ops-card .ops-mock { margin-top: auto; background: var(--bg-soft); border-radius: 12px; padding: 14px; font-size: 13px; line-height: 1.5; border: 1px solid var(--line-soft); }

.proof-bg { background: var(--ink); color: #faf6ee; }
.proof-bg .lead { color: rgba(250,246,238,0.65); }
.proof-bg .eyebrow { background: rgba(228,158,34,0.12); color: var(--gold-bright); border-color: rgba(228,158,34,0.25); }

.swarm-stage { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; max-width: 1100px; margin: 0 auto; }
@media (max-width: 900px) { .swarm-stage { grid-template-columns: 1fr; } }
.swarm-flow { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08); border-radius: var(--radius-lg); padding: 32px; }
.swarm-step { display: flex; gap: 16px; padding: 14px 0; }
.swarm-step + .swarm-step { border-top: 1px solid rgba(255,255,255,0.08); }
.swarm-num { width: 32px; height: 32px; border-radius: 50%; background: var(--gold); color: white; font-weight: 700; display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 14px; }
.swarm-text h4 { font-size: 16px; margin-bottom: 4px; color: #faf6ee; }
.swarm-text p { font-size: 14px; color: rgba(250,246,238,0.65); line-height: 1.5; }

/* CTA */
.cta {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-deep) 100%);
  color: white; border-radius: var(--radius-xl);
  padding: 80px 60px; text-align: center; position: relative; overflow: hidden;
}
.cta::before { content: ''; position: absolute; inset: 0; background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='56' height='65' viewBox='0 0 56 65'><polygon points='28,2 52,16 52,48 28,62 4,48 4,16' fill='none' stroke='%23fff' stroke-opacity='0.14' stroke-width='1'/></svg>"); background-size: 56px 65px; opacity: 0.7; }
.cta > * { position: relative; }
.cta .h-xl { color: white; }
.cta .lead { color: rgba(255,255,255,0.85); margin: 16px auto 32px; max-width: 540px; }
@media (max-width: 720px) { .cta { padding: 56px 24px; } }

.faq-grid { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: all 0.3s var(--ease); }
.faq-item:hover { border-color: var(--ink-4); }
.faq-q { padding: 20px 24px; font-weight: 600; font-size: 16px; display: flex; justify-content: space-between; align-items: center; cursor: pointer; gap: 16px; }
.faq-q .chev { transition: transform 0.3s; flex-shrink: 0; }
.faq-item.open .faq-q .chev { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease), padding 0.4s var(--ease); padding: 0 24px; color: var(--ink-3); font-size: 15px; line-height: 1.6; }
.faq-item.open .faq-a { max-height: 400px; padding: 0 24px 22px; }

footer { padding: 64px 0 36px; border-top: 1px solid var(--line); color: var(--ink-3); font-size: 14px; background: var(--bg-soft); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 40px; }
@media (max-width: 720px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
.footer-brand img { width: 56px; height: 56px; object-fit: contain; margin-bottom: 12px; }
.footer-brand h4 { font-size: 18px; font-weight: 800; margin-bottom: 6px; color: var(--ink); }
.footer-brand p { color: var(--ink-3); font-size: 13px; line-height: 1.5; max-width: 260px; }
.footer-col h5 { font-size: 12px; text-transform: uppercase; letter-spacing: 0.12em; font-weight: 700; color: var(--ink); margin-bottom: 14px; }
.footer-col a { display: block; font-size: 14px; color: var(--ink-3); padding: 5px 0; transition: color 0.2s; }
.footer-col a:hover { color: var(--gold-deep); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 24px; border-top: 1px solid var(--line); font-size: 13px; flex-wrap: wrap; gap: 12px; }

/* Founder block */
.founder-block { display: grid; grid-template-columns: 200px 1fr; gap: 32px; align-items: center; max-width: 800px; margin: 0 auto; padding: 32px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); }
@media (max-width: 720px) { .founder-block { grid-template-columns: 1fr; text-align: center; } }
.founder-img { width: 200px; height: 200px; border-radius: 20px; object-fit: cover; }
.founder-quote { font-family: 'Instrument Serif', Georgia, serif; font-size: 22px; line-height: 1.4; color: var(--ink-2); margin-bottom: 14px; }
.founder-quote::before { content: '"'; color: var(--gold); font-size: 36px; line-height: 0; vertical-align: -10px; margin-right: 4px; }
.founder-name { font-size: 14px; font-weight: 700; }
.founder-role { font-size: 12px; color: var(--ink-4); }

/* ============================================================
   REVEAL ANIMATION
   ============================================================ */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal.in { opacity: 1; transform: translateY(0); }

/* ============================================================
   TWEAKS PANEL
   ============================================================ */
[data-tweaks-panel] { color-scheme: light; }


/* ============================================================
   PHONE STORY SECTION (Section 4)
   ============================================================ */
.phone-section {
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-soft) 60%, var(--bg) 100%);
  position: relative;
  overflow: hidden;
}
.phone-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 30%, rgba(228,158,34,0.12) 0%, transparent 38%),
    radial-gradient(circle at 82% 80%, rgba(228,158,34,0.06) 0%, transparent 42%);
  pointer-events: none;
}
.phone-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}
@media (max-width: 980px) {
  .phone-grid { grid-template-columns: 1fr; gap: 56px; justify-items: center; }
  .phone-text { text-align: center; max-width: 560px; }
}
.phone-text { max-width: 540px; }
.phone-caption {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
  padding: 10px 16px 10px 12px;
  background: rgba(20,16,12,0.04);
  border: 1px solid var(--line);
  border-radius: 100px;
  font-size: 13px;
  color: var(--ink-2);
}
.phone-caption-time {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 600;
  color: var(--gold-ink);
  background: var(--gold-soft);
  padding: 3px 8px;
  border-radius: 6px;
  letter-spacing: 0.04em;
}
.phone-replay {
  margin-top: 20px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-3);
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 100px;
  transition: all 0.2s;
}
.phone-replay:hover {
  color: var(--gold-ink);
  border-color: var(--gold);
  background: var(--gold-soft);
}

/* iPhone Frame */
.phone-stage {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  perspective: 1400px;
}
.phone-glow {
  position: absolute;
  inset: -40px;
  background: radial-gradient(circle at center, var(--gold-glow) 0%, transparent 60%);
  filter: blur(40px);
  pointer-events: none;
  z-index: 0;
  animation: phoneGlow 5s ease-in-out infinite alternate;
}
@keyframes phoneGlow {
  0% { opacity: 0.5; transform: scale(0.95); }
  100% { opacity: 0.85; transform: scale(1.05); }
}
.phone-frame {
  position: relative;
  z-index: 1;
  width: 360px;
  height: 720px;
  background: #0a0a0a;
  border-radius: 52px;
  border: 9px solid #1a1a1a;
  box-shadow:
    0 60px 100px -30px rgba(20,16,12,0.45),
    0 0 0 1px rgba(255,255,255,0.04),
    inset 0 0 0 1px rgba(255,255,255,0.04);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transform: rotateY(-6deg) rotateX(2deg);
  transition: transform 0.6s var(--ease);
}
.phone-frame:hover { transform: rotateY(0deg) rotateX(0deg); }

.phone-notch {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 110px;
  height: 28px;
  background: #0a0a0a;
  border-radius: 0 0 18px 18px;
  z-index: 50;
}
.phone-status {
  height: 44px;
  background: #0a0a0a;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 0 24px 10px;
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  flex-shrink: 0;
}
.phone-status-icons {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
}
.phone-status-icons svg { color: #fff; }

/* Chat header */
.phone-chat-head {
  background: #141414;
  padding: 10px 16px 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  flex-shrink: 0;
}
.phone-back {
  color: var(--gold-bright);
  font-size: 22px;
  font-weight: 400;
  margin-right: -2px;
}
.phone-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold-deep));
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(228,158,34,0.3);
}
.phone-avatar img {
  width: 24px; height: 24px;
  object-fit: contain;
  filter: brightness(0) invert(0.05);
}
.phone-chat-info { flex: 1; min-width: 0; }
.phone-chat-name {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 7px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.phone-ai-badge {
  font-size: 9px;
  font-weight: 700;
  color: var(--gold-bright);
  background: rgba(228,158,34,0.12);
  padding: 2px 6px;
  border-radius: 4px;
  letter-spacing: 0.6px;
  border: 1px solid rgba(228,158,34,0.3);
  flex-shrink: 0;
}
.phone-chat-status {
  font-size: 11px;
  color: rgba(255,255,255,0.55);
  margin-top: 2px;
  display: flex;
  align-items: center;
  gap: 5px;
}
.phone-chat-status .dotg {
  display: inline-block;
  width: 6px; height: 6px;
  background: #22c55e;
  border-radius: 50%;
  box-shadow: 0 0 6px rgba(34,197,94,0.6);
}
.phone-call-btn {
  width: 32px; height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-bright);
  flex-shrink: 0;
}

/* Chat area */
.phone-chat {
  flex: 1;
  padding: 14px 12px 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  overflow-y: auto;
  background: linear-gradient(to bottom, #141414 0%, #0d0d0d 100%);
  scrollbar-width: thin;
}
.phone-chat::-webkit-scrollbar { width: 3px; }
.phone-chat::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.1); border-radius: 4px; }

.phone-date {
  align-self: center;
  font-size: 10.5px;
  font-weight: 500;
  color: rgba(255,255,255,0.45);
  background: rgba(255,255,255,0.06);
  padding: 4px 14px;
  border-radius: 12px;
  margin: 4px 0 8px;
  backdrop-filter: blur(8px);
}

.phone-msg {
  max-width: 84%;
  padding: 9px 13px 10px;
  border-radius: 18px;
  font-size: 13.5px;
  line-height: 1.4;
  position: relative;
  animation: phoneBubbleIn 0.42s var(--ease) both;
}
@keyframes phoneBubbleIn {
  from { opacity: 0; transform: translateY(10px) scale(0.96); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.phone-msg-guest {
  align-self: flex-start;
  background: #2a2a2a;
  color: #fff;
  border-bottom-left-radius: 5px;
}
.phone-msg-ai {
  align-self: flex-end;
  background: linear-gradient(135deg, var(--gold-bright) 0%, var(--gold) 100%);
  color: #1a1612;
  border-bottom-right-radius: 5px;
  box-shadow: 0 6px 20px -6px var(--gold-glow);
  font-weight: 500;
}
.phone-msg-time {
  font-size: 9.5px;
  color: rgba(0,0,0,0.5);
  margin-top: 4px;
  text-align: right;
  font-weight: 500;
}
.phone-msg-guest .phone-msg-time {
  color: rgba(255,255,255,0.45);
}
.phone-ai-source {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.9px;
  color: rgba(0,0,0,0.55);
  margin-bottom: 5px;
}
.phone-ai-hex {
  width: 10px;
  height: 10px;
  background: #1a1612;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}
.phone-ai-text { color: #1a1612; font-weight: 500; }
.ph-pin {
  display: inline-block;
  margin: 4px 0;
  padding: 4px 12px;
  background: rgba(0,0,0,0.18);
  color: #1a1612;
  font-family: 'JetBrains Mono', monospace;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.16em;
  border-radius: 8px;
}

.phone-thinking {
  align-self: flex-end;
  display: inline-flex;
  gap: 4px;
  align-items: center;
  padding: 12px 14px;
  border-radius: 18px;
  border-bottom-right-radius: 5px;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  box-shadow: 0 4px 18px -4px var(--gold-glow);
  animation: phoneBubbleIn 0.3s var(--ease) both;
}
.phone-thinking span {
  width: 6px; height: 6px;
  background: rgba(0,0,0,0.5);
  border-radius: 50%;
  animation: phoneDot 1.2s ease-in-out infinite;
}
.phone-thinking span:nth-child(2) { animation-delay: 0.2s; }
.phone-thinking span:nth-child(3) { animation-delay: 0.4s; }
@keyframes phoneDot {
  0%, 60%, 100% { transform: translateY(0) scale(1); opacity: 0.4; }
  30% { transform: translateY(-4px) scale(1.15); opacity: 1; }
}

.phone-input {
  flex-shrink: 0;
  padding: 10px 14px 16px;
  background: #141414;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  gap: 10px;
}
.phone-input-icon, .phone-input-mic {
  color: rgba(255,255,255,0.5);
  flex-shrink: 0;
}
.phone-input-text {
  flex: 1;
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  background: rgba(255,255,255,0.06);
  border-radius: 100px;
  padding: 8px 14px;
}

.phone-arrow {
  position: absolute;
  bottom: -50px;
  right: -90px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Instrument Serif', Georgia, serif;
  font-style: italic;
  font-size: 18px;
  color: var(--gold-deep);
  pointer-events: none;
  animation: phoneArrowBounce 2.6s ease-in-out infinite;
}
@media (max-width: 1100px) { .phone-arrow { display: none; } }
@keyframes phoneArrowBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

/* ============================================================
   SMART LOCKS SECTION (Section 5)
   ============================================================ */
.locks-section {
  background: var(--bg);
  position: relative;
}
.locks-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 60px;
  align-items: start;
  margin-top: 40px;
}
@media (max-width: 980px) {
  .locks-grid { grid-template-columns: 1fr; gap: 40px; }
}
.locks-bullets { display: flex; flex-direction: column; gap: 16px; padding-top: 12px; }
.locks-bullet {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 16px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 500;
  color: var(--ink-2);
}
.locks-check {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--gold-soft);
  color: var(--gold-deep);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.locks-cta-row {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 8px;
}
.locks-replay {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 18px;
  font-size: 13px;
  font-weight: 600;
  color: var(--gold-ink);
  background: var(--gold-soft);
  border: 1px solid color-mix(in oklch, var(--gold) 25%, transparent);
  border-radius: 100px;
  transition: all 0.2s;
}
.locks-replay:hover {
  background: var(--gold);
  color: #fff;
  border-color: var(--gold);
}
.locks-live {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  font-weight: 600;
  color: var(--ink-3);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.locks-live-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 3px rgba(45,143,90,0.2);
  animation: pulse 1.6s var(--ease) infinite;
}

/* Nuki panel */
.locks-panel {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow:
    0 30px 80px -40px rgba(20,16,12,0.25),
    0 4px 16px -8px rgba(20,16,12,0.08);
  overflow: hidden;
}
.locks-panel-head {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 22px;
  border-bottom: 1px solid var(--line);
}
.locks-panel-icon {
  width: 42px; height: 42px;
  border-radius: 12px;
  background: var(--gold-soft);
  color: var(--gold-deep);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.locks-panel-title { font-size: 16px; font-weight: 700; color: var(--ink); letter-spacing: -0.01em; }
.locks-panel-sub {
  display: flex; align-items: center; gap: 6px;
  font-size: 12px; color: var(--ink-3); margin-top: 2px;
}
.locks-online-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 3px rgba(45,143,90,0.18);
}
.locks-x {
  margin-left: auto;
  width: 32px; height: 32px;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--ink-4);
  cursor: pointer;
  transition: background 0.2s;
}
.locks-x:hover { background: var(--bg-soft); color: var(--ink); }

.locks-panel-body {
  padding: 18px 22px 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.locks-card {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px 18px;
}
.locks-card-eyebrow {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-ink);
  margin-bottom: 12px;
}
.locks-status-row {
  display: flex; align-items: center;
  gap: 16px;
  margin-bottom: 14px;
}
.locks-status-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: var(--surface);
  border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  font-size: 30px;
  transition: all 0.4s var(--ease);
}
.locks-status-icon.unlocked {
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  border-color: transparent;
  box-shadow: 0 6px 20px -4px var(--gold-glow);
}
.locks-status-text { font-size: 18px; font-weight: 700; color: var(--ink); letter-spacing: -0.01em; }
.locks-status-sub { font-size: 13px; color: var(--ink-3); margin-top: 3px; }

.locks-battery-wrap { margin-bottom: 14px; }
.locks-battery-row {
  display: flex; justify-content: space-between;
  font-size: 12px; color: var(--ink-3);
  margin-bottom: 6px;
}
.locks-battery-pct { 
  color: var(--green, #22c55e);
  font-weight: 700;
  font-family: 'JetBrains Mono', monospace;
  transition: color 0.3s ease;
}
.locks-battery-bar {
  height: 8px; border-radius: 4px;
  background: var(--surface);
  border: 1px solid var(--line);
  overflow: hidden;
}
.locks-battery-fill {
  height: 100%;
  background: linear-gradient(90deg, #22c55e, #4ade80);
  transition: width 0.06s linear;
  border-radius: 4px;
  box-shadow: 0 0 8px rgba(34, 197, 94, 0.4);
}

.locks-actions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 4px;
}
.locks-action {
  display: flex; flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 12px 6px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
  font-size: 11px;
  font-weight: 600;
  color: var(--ink-3);
  cursor: pointer;
  transition: all 0.2s;
}
.locks-action span:first-child { font-size: 18px; }
.locks-action:hover { border-color: var(--ink-4); transform: translateY(-1px); }
.locks-action.red:hover { color: #b3261e; border-color: rgba(179,38,30,0.3); background: rgba(239,68,68,0.04); }
.locks-action.amber:hover { color: var(--gold-deep); border-color: var(--gold); background: var(--gold-soft); }
.locks-action.green:hover { color: var(--green); border-color: rgba(45,143,90,0.3); background: rgba(45,143,90,0.05); }

.locks-pin-row {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 12px;
}
.locks-pin-name { font-size: 14px; font-weight: 600; color: var(--ink); }
.locks-pin-meta { font-size: 12px; color: var(--ink-3); margin-top: 2px; }
.locks-pin-toggle {
  font-size: 12px; font-weight: 600;
  color: var(--gold-deep);
  padding: 6px 12px;
  background: var(--gold-soft);
  border: 1px solid color-mix(in oklch, var(--gold) 25%, transparent);
  border-radius: 100px;
  transition: all 0.2s;
}
.locks-pin-toggle:hover { background: var(--gold); color: #fff; }
.locks-pin-code {
  display: flex; justify-content: space-between; align-items: center;
  padding: 12px 16px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 10px;
}
.locks-pin-label { font-size: 12px; color: var(--ink-3); }
.locks-pin-value {
  font-family: 'JetBrains Mono', monospace;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.16em;
  color: var(--green);
  transition: color 0.3s;
}
.locks-pin-value.masked { color: var(--ink-4); letter-spacing: 0.1em; }

.locks-events {
  display: flex; flex-direction: column;
  gap: 6px;
}
.locks-event {
  display: flex; align-items: center;
  gap: 10px;
  padding: 8px 12px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 10px;
  font-size: 13px;
  color: var(--ink-2);
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity 0.4s ease, transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}
.locks-event.visible { opacity: 1; transform: translateX(0); }
.locks-event.pulse {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px var(--gold-glow);
  animation: locksPulse 0.8s ease;
}
@keyframes locksPulse {
  0% { transform: translateX(-8px) scale(0.96); opacity: 0; }
  60% { transform: translateX(0) scale(1.02); opacity: 1; }
  100% { transform: translateX(0) scale(1); }
}
.locks-event-time {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 600;
  color: var(--ink-4);
  flex-shrink: 0;
  min-width: 64px;
}
.locks-event-icon { font-size: 15px; flex-shrink: 0; }
.locks-event-text { flex: 1; }
.locks-event.color-green .locks-event-text { color: var(--ink); }
.locks-event.color-green .locks-event-time { color: var(--green); }
.locks-event.color-gold .locks-event-text { color: var(--ink); font-weight: 500; }
.locks-event.color-gold .locks-event-time { color: var(--gold-deep); }
.locks-event.color-red .locks-event-text { color: #8a1c1c; }
.locks-event.color-red { background: rgba(239,68,68,0.04); border-color: rgba(239,68,68,0.18); }
.locks-event.color-red .locks-event-time { color: #b3261e; }
.locks-event.color-muted .locks-event-text { color: var(--ink-3); }

/* ============================================================
   SALES CHAT WIDGET (floating bottom-right)
   ============================================================ */
.sales-fab {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 80;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px 14px 16px;
  background: linear-gradient(180deg, var(--gold-bright), var(--gold));
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  border-radius: 100px;
  box-shadow:
    0 14px 36px -8px var(--gold-glow),
    0 4px 12px -4px rgba(20,16,12,0.2),
    inset 0 1px 0 rgba(255,255,255,0.3);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.sales-fab:hover {
  transform: translateY(-3px);
  box-shadow:
    0 22px 48px -10px var(--gold-glow),
    0 6px 16px -4px rgba(20,16,12,0.25),
    inset 0 1px 0 rgba(255,255,255,0.3);
}
.sales-fab.pulse::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 100px;
  border: 2px solid var(--gold);
  opacity: 0;
  animation: salesPulse 2s ease-out infinite;
  pointer-events: none;
}
@keyframes salesPulse {
  0% { transform: scale(0.95); opacity: 0.6; }
  100% { transform: scale(1.25); opacity: 0; }
}
.sales-fab-icon {
  width: 26px; height: 26px;
  display: flex; align-items: center; justify-content: center;
}

.sales-widget {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 81;
  width: min(380px, calc(100vw - 32px));
  height: min(560px, calc(100vh - 80px));
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow:
    0 30px 80px -20px rgba(20,16,12,0.35),
    0 8px 24px -8px rgba(20,16,12,0.15);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  animation: salesIn 0.3s var(--ease);
}
@keyframes salesIn {
  from { opacity: 0; transform: translateY(20px) scale(0.96); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.sales-widget-head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  background: linear-gradient(180deg, var(--gold-bright), var(--gold));
  color: #fff;
  flex-shrink: 0;
}
.sales-widget-avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.95);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}
.sales-widget-avatar img { width: 26px; height: 26px; object-fit: contain; }
.sales-widget-info { flex: 1; min-width: 0; }
.sales-widget-title { font-size: 14px; font-weight: 700; }
.sales-widget-sub {
  display: flex; align-items: center; gap: 6px;
  font-size: 11.5px;
  margin-top: 2px;
  opacity: 0.9;
}
.sales-widget-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(255,255,255,0.25);
  animation: pulse 1.8s var(--ease) infinite;
}
.sales-widget-close {
  width: 32px; height: 32px;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.85);
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.2s;
}
.sales-widget-close:hover { background: rgba(255,255,255,0.18); color: #fff; }

.sales-widget-body {
  flex: 1;
  padding: 16px 14px;
  overflow-y: auto;
  background: var(--bg-soft);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.sales-widget-body::-webkit-scrollbar { width: 4px; }
.sales-widget-body::-webkit-scrollbar-thumb { background: var(--ink-5); border-radius: 4px; }

.sales-bubble {
  max-width: 86%;
  padding: 9px 13px 10px;
  border-radius: 16px;
  font-size: 13.5px;
  line-height: 1.45;
  animation: phoneBubbleIn 0.3s var(--ease) both;
  word-wrap: break-word;
}
.sales-bubble.bot {
  align-self: flex-start;
  background: var(--surface);
  color: var(--ink);
  border: 1px solid var(--line);
  border-bottom-left-radius: 6px;
}
.sales-bubble.user {
  align-self: flex-end;
  background: linear-gradient(180deg, var(--gold-bright), var(--gold));
  color: #fff;
  border-bottom-right-radius: 6px;
  box-shadow: 0 4px 12px -4px var(--gold-glow);
}
.sales-bubble strong { font-weight: 700; color: var(--gold-deep); }
.sales-bubble.user strong { color: #fff; }

.sales-typing { display: inline-flex; gap: 4px; padding: 12px 14px; }
.sales-typing span {
  width: 6px; height: 6px;
  background: var(--ink-4);
  border-radius: 50%;
  animation: phoneDot 1.2s ease-in-out infinite;
}
.sales-typing span:nth-child(2) { animation-delay: 0.2s; }
.sales-typing span:nth-child(3) { animation-delay: 0.4s; }

.sales-widget-input {
  padding: 12px 14px;
  background: var(--surface);
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.sales-widget-input input {
  flex: 1;
  border: 1px solid var(--line);
  background: var(--bg-soft);
  border-radius: 100px;
  padding: 10px 16px;
  font-size: 13.5px;
  color: var(--ink);
  outline: none;
  transition: border-color 0.2s;
}
.sales-widget-input input:focus { border-color: var(--gold); }
.sales-widget-input button {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: linear-gradient(180deg, var(--gold-bright), var(--gold));
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
  flex-shrink: 0;
}
.sales-widget-input button:disabled { opacity: 0.4; cursor: not-allowed; }
.sales-widget-input button:not(:disabled):hover { transform: scale(1.05); }

.mobile-waitlist-cta {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: max(12px, env(safe-area-inset-bottom));
  z-index: 79;
  display: none;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 14px 18px;
  border-radius: 14px;
  background: color-mix(in oklch, var(--surface) 62%, transparent);
  color: var(--ink);
  border: 1px solid rgba(255,255,255,0.62);
  backdrop-filter: saturate(170%) blur(18px);
  -webkit-backdrop-filter: saturate(170%) blur(18px);
  font-size: 15px;
  font-weight: 750;
  box-shadow: 0 18px 44px -18px rgba(20,16,12,0.42), inset 0 1px 0 rgba(255,255,255,0.72);
  opacity: 0;
  pointer-events: none;
  transform: translateY(calc(100% + 18px));
  transition: opacity 0.25s var(--ease), transform 0.25s var(--ease);
}

@media (max-width: 520px) {
  .sales-widget {
    right: 0; bottom: 0;
    width: 100vw;
    height: 100vh;
    border-radius: 0;
    max-height: none;
  }
  .sales-fab { right: 12px; bottom: 78px; padding: 12px 16px 12px 14px; }
  .sales-fab-text { display: none; }
}

@media (max-width: 720px) {
  .sales-fab { bottom: 82px; }
  .mobile-waitlist-cta { display: flex; }
  .mobile-waitlist-cta.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
}


/* ════════════════════════════════════════════════════════════════════
   PROPERTY OPS STRIPS (Phase 2 — Standard mode)
   Adapted 1:1 from the real Dashboard Hub (.property-ops-strip).
   Theme-aware via CSS variables — auto-reskins for dark/blue themes.
   ════════════════════════════════════════════════════════════════════ */

.dh-strips { display: flex; flex-direction: column; gap: 12px; }

.property-ops-strip {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: stretch;
  min-height: 200px;
}
.property-ops-strip::before {
  content: '';
  width: 3px;
  flex-shrink: 0;
  background: var(--line);
  transition: background 0.3s;
}
.property-ops-strip.strip-live::before { background: #22c55e; }
.property-ops-strip.strip-escalation::before { background: #ef4444; }
.property-ops-strip.strip-draft::before { background: #94a3b8; }

.property-ops-body {
  display: grid;
  grid-template-columns: 1.2fr 1.4fr 1fr 0.75fr;
  flex: 1;
  min-width: 0;
}
.pop-col { padding: 14px 16px; }
.pop-col-property,
.pop-col-guest,
.pop-col-locks { border-right: 1px solid var(--line-soft); }
@media (max-width: 1100px) {
  .property-ops-body { grid-template-columns: 1fr; }
  .pop-col { border-right: none !important; border-bottom: 1px solid var(--line-soft); }
}

.pop-col-label {
  font-size: 9.5px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.08em; color: var(--ink-4);
  margin-bottom: 8px;
  display: flex; align-items: center; justify-content: space-between;
}
.pop-col-arrow { color: var(--gold-deep); opacity: 0.5; font-size: 12px; font-weight: 700; }

/* ── Col 1: Property ── */
.pop-prop-name { font-size: 13px; font-weight: 700; color: var(--ink); margin-bottom: 1px; line-height: 1.2; }
.pop-prop-city { font-size: 11px; color: var(--ink-4); margin-bottom: 10px; }
.pop-divider { height: 1px; background: var(--line-soft); margin: 0 -4px 10px; }
.pop-status-text { font-size: 11px; color: var(--ink-4); margin-bottom: 5px; }
.pop-progress-track { height: 4px; background: var(--bg-soft); border-radius: 100px; overflow: hidden; margin-bottom: 4px; }
.pop-progress-fill { height: 100%; background: linear-gradient(90deg, #22c55e, rgba(34,197,94,0.5)); border-radius: 100px; transition: width 0.5s ease; }
.pop-prop-dates { font-size: 10.5px; color: var(--ink-3); margin-bottom: 12px; }
.pop-occ-row { display: flex; align-items: center; gap: 10px; padding-top: 10px; border-top: 1px solid var(--line-soft); }
.pop-occ-donut { width: 44px; height: 44px; position: relative; flex-shrink: 0; }
.pop-occ-pct { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; font-size: 10px; font-weight: 700; color: var(--gold-deep); }
.pop-occ-label { font-size: 10px; font-weight: 600; color: var(--ink-2); }
.pop-occ-sub { font-size: 9px; color: var(--ink-4); }

/* ── Col 2: Guest ── */
.pop-guest-head { display: flex; align-items: center; gap: 9px; margin-bottom: 10px; }
.pop-avatar {
  width: 30px; height: 30px; border-radius: 8px;
  background: var(--gold-soft);
  color: var(--gold-deep);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  border: 1px solid var(--line);
}
.pop-avatar.small { width: 24px; height: 24px; border-radius: 6px; }
.pop-guest-meta { min-width: 0; flex: 1; }
.pop-guest-name-row { display: flex; align-items: center; gap: 7px; flex-wrap: wrap; }
.pop-guest-name { font-size: 13px; font-weight: 700; color: var(--ink); }
.pop-dot { width: 6.5px; height: 6.5px; border-radius: 50%; flex-shrink: 0; }
.pop-dot-green  { background: #22c55e; box-shadow: 0 0 0 3px rgba(34,197,94,0.15); }
.pop-dot-yellow { background: #eab308; box-shadow: 0 0 0 3px rgba(234,179,8,0.15); animation: pulse 2.2s ease-in-out infinite; }
.pop-dot-orange { background: #f97316; box-shadow: 0 0 0 3px rgba(249,115,22,0.15); animation: pulse 2.2s ease-in-out infinite; }
.pop-dot-blue   { background: #3b82f6; box-shadow: 0 0 0 3px rgba(59,130,246,0.15); }
.pop-dot-gray   { background: #94a3b8; }
.pop-guest-status-text { font-size: 9.5px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--gold-deep); }
.pop-guest-channel { font-size: 10.5px; color: var(--ink-4); margin-top: 1px; }

.pop-guest-panel {
  display: flex; align-items: center; justify-content: space-between;
  gap: 8px; padding: 7px 10px;
  border-radius: 8px; font-size: 11px;
  margin-top: 4px;
}
.pop-guest-panel-row { display: flex; align-items: center; gap: 6px; font-weight: 700; }
.pop-guest-panel-label { font-weight: 700; }
.pop-guest-panel-dates { color: var(--ink-4); font-weight: 500; }
.g-panel-green  { background: rgba(34,197,94,0.08);  border: 1px solid rgba(34,197,94,0.18);  color: #22c55e; }
.g-panel-yellow { background: rgba(234,179,8,0.08);  border: 1px solid rgba(234,179,8,0.18);  color: #ca8a04; }
.g-panel-orange { background: rgba(249,115,22,0.08); border: 1px solid rgba(249,115,22,0.18); color: #ea580c; }
.g-panel-blue   { background: rgba(59,130,246,0.08); border: 1px solid rgba(59,130,246,0.18); color: #2563eb; }
.g-panel-gray   { background: rgba(148,163,184,0.08); border: 1px solid rgba(148,163,184,0.18); color: var(--ink-3); }

.pop-next-mini {
  display: flex; align-items: center; gap: 9px;
  padding: 8px 10px; border-radius: 10px;
  background: rgba(59,130,246,0.06); border: 1px solid rgba(59,130,246,0.18);
}
.pop-next-mini.blocked { background: rgba(148,163,184,0.06); border-color: rgba(148,163,184,0.18); }
.pop-next-name { font-size: 12px; font-weight: 700; color: var(--ink); line-height: 1.2; }
.pop-next-mini.blocked .pop-next-name { color: var(--ink-3); }
.pop-next-meta { font-size: 10.5px; color: var(--ink-4); margin-top: 1px; }
.pop-no-guest { font-size: 12px; color: var(--ink-4); font-style: italic; }

/* ── Col 3: Smart Locks ── */
.pop-lock-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 7px 9px; border-radius: 8px; margin-bottom: 5px;
  border: 1px solid var(--line);
  background: var(--bg-soft);
  gap: 8px;
}
.pop-lock-row:last-child { margin-bottom: 0; }
.pop-lock-info { display: flex; align-items: center; gap: 8px; min-width: 0; }
.pop-lock-icon { font-size: 14px; line-height: 1; flex-shrink: 0; }
.pop-lock-text { min-width: 0; }
.pop-lock-name { font-size: 11.5px; font-weight: 600; color: var(--ink); line-height: 1.2; }
.pop-lock-state { font-size: 10px; color: var(--ink-4); }
.pop-lock-bat { font-size: 10.5px; font-weight: 700; flex-shrink: 0; padding: 2px 6px; border-radius: 6px; }
.pop-lock-bat.high { color: #16a34a; background: rgba(34,197,94,0.1); }
.pop-lock-bat.mid  { color: #ca8a04; background: rgba(234,179,8,0.1); }
.pop-lock-bat.low  { color: #dc2626; background: rgba(239,68,68,0.1); }
.pop-no-locks { font-size: 11px; color: var(--ink-4); font-style: italic; }

/* ── Col 4: AI Communicator ── */
.pop-col-ai {
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 6px; text-align: center;
}
.pop-ai-logo img { width: 44px; height: 44px; object-fit: contain; }
.pop-ai-label { font-size: 12px; font-weight: 800; letter-spacing: -.2px; }
.pop-ai-label.live { color: #22c55e; }
.pop-ai-label.draft { color: var(--ink-3); }
.pop-ai-sub { font-size: 10px; font-weight: 600; color: var(--ink-4); }
.pop-ai-toggle {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 5px; padding: 5px 12px; border-radius: 8px;
  font-size: 10.5px; font-weight: 700; cursor: pointer;
  font-family: inherit;
  border: 1px solid; transition: all 0.2s;
  margin-top: 2px;
}
.pop-ai-toggle.live { background: rgba(239,68,68,0.1); border-color: rgba(239,68,68,0.25); color: #ef4444; }
.pop-ai-toggle.live:hover { background: rgba(239,68,68,0.18); }
.pop-ai-toggle.draft { background: rgba(34,197,94,0.1); border-color: rgba(34,197,94,0.25); color: #16a34a; }
.pop-ai-toggle.draft:hover { background: rgba(34,197,94,0.18); }
.pop-ai-badge {
  font-size: 9.5px; font-weight: 600;
  padding: 2px 8px; border-radius: 100px;
  background: var(--bg-soft); border: 1px solid var(--line);
  color: var(--ink-4);
}


/* ════════════════════════════════════════════════════════════════════
   EXPERT MODE — compact single-row strips
   When the user toggles Density=Expert, the strips collapse to slim
   inline rows showing only essentials (mirrors the expert-compact
   mode in the real Dashboard Hub).
   ════════════════════════════════════════════════════════════════════ */

.dh[data-density="expert"] .dh-strips { gap: 6px; }

.dh[data-density="expert"] .property-ops-strip {
  min-height: 0;
  border-radius: 10px;
}

.dh[data-density="expert"] .property-ops-body {
  grid-template-columns: 1.4fr 1.5fr 1fr 0.7fr;
  align-items: center;
}

.dh[data-density="expert"] .pop-col { padding: 8px 14px; }

/* Hide all the "deep" property details — only basics survive */
.dh[data-density="expert"] .pop-col-label,
.dh[data-density="expert"] .pop-divider,
.dh[data-density="expert"] .pop-prop-city,
.dh[data-density="expert"] .pop-status-text,
.dh[data-density="expert"] .pop-progress-track,
.dh[data-density="expert"] .pop-prop-dates,
.dh[data-density="expert"] .pop-guest-channel,
.dh[data-density="expert"] .pop-guest-panel,
.dh[data-density="expert"] .pop-next-mini,
.dh[data-density="expert"] .pop-lock-state,
.dh[data-density="expert"] .pop-ai-sub,
.dh[data-density="expert"] .pop-ai-toggle,
.dh[data-density="expert"] .pop-ai-badge {
  display: none !important;
}

/* Property column: name + small donut inline */
.dh[data-density="expert"] .pop-col-property {
  display: flex; align-items: center; gap: 12px;
}
.dh[data-density="expert"] .pop-prop-name { font-size: 13px; margin: 0; }
.dh[data-density="expert"] .pop-occ-row {
  padding-top: 0; border-top: none; margin-left: auto;
  gap: 6px;
}
.dh[data-density="expert"] .pop-occ-donut { width: 32px; height: 32px; }
.dh[data-density="expert"] .pop-occ-donut svg { width: 32px; height: 32px; }
.dh[data-density="expert"] .pop-occ-pct { font-size: 8.5px; }
.dh[data-density="expert"] .pop-occ-label { display: none; }
.dh[data-density="expert"] .pop-occ-sub { display: none; }

/* Guest column: avatar + name + status dot, single line */
.dh[data-density="expert"] .pop-guest-head { margin-bottom: 0; gap: 8px; }
.dh[data-density="expert"] .pop-avatar { width: 26px; height: 26px; }
.dh[data-density="expert"] .pop-guest-name { font-size: 12px; }
.dh[data-density="expert"] .pop-guest-status-text { font-size: 9px; }
.dh[data-density="expert"] .pop-no-guest { font-size: 11px; }

/* Locks column: one inline row, no card frame */
.dh[data-density="expert"] .pop-lock-row {
  background: transparent; border: none; padding: 0;
  margin-bottom: 0; gap: 8px;
}
.dh[data-density="expert"] .pop-lock-row + .pop-lock-row { display: none; }  /* only first lock */
.dh[data-density="expert"] .pop-lock-name { font-size: 11px; }
.dh[data-density="expert"] .pop-lock-bat { font-size: 9.5px; padding: 1px 5px; }

/* AI column: logo + label only — no toggle, no sub, no badge */
.dh[data-density="expert"] .pop-col-ai {
  flex-direction: row; gap: 8px; justify-content: flex-start;
}
.dh[data-density="expert"] .pop-ai-logo img { width: 24px; height: 24px; }
.dh[data-density="expert"] .pop-ai-label { font-size: 11.5px; }

/* Stacking still happens on narrow screens — but now per-row */
@media (max-width: 1100px) {
  .dh[data-density="expert"] .property-ops-body { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .dh[data-density="expert"] .property-ops-body { grid-template-columns: 1fr; }
}


/* ════════════════════════════════════════════════════════════════════
   QUICK STATS ROW (Phase 2 — always visible under property strips)
   4 small cards: Occupancy / Revenue 2026 / Bookings (30d) / Avg Stay
   ════════════════════════════════════════════════════════════════════ */

.dh-quickstats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
@media (max-width: 720px) { .dh-quickstats { grid-template-columns: repeat(2, 1fr); } }

.dh-qs {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px 14px;
  text-align: center;
}
.dh-qs-v {
  font-size: 22px; font-weight: 800; letter-spacing: -0.025em;
  color: var(--ink); line-height: 1.1;
}
.dh-qs-v.gold { color: var(--gold-deep); }
.dh-qs-l {
  font-size: 9.5px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.08em; color: var(--ink-4);
  margin-top: 5px;
}

/* ════════════════════════════════════════════════════════════════════
   EXPERT SECTION (only visible in Expert density mode)
   3 cards: Revenue Analytics · Booking Performance · AI Pipeline
   ════════════════════════════════════════════════════════════════════ */

.dh-expert {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
@media (max-width: 980px) { .dh-expert { grid-template-columns: 1fr; } }

.dh-expert-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 14px 16px;
  display: flex; flex-direction: column;
}

.dh-expert-head {
  display: flex; align-items: center; gap: 8px;
  margin-bottom: 12px;
}
.dh-expert-icon {
  width: 22px; height: 22px;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; color: var(--gold-deep);
}
.dh-expert-title {
  font-size: 12px; font-weight: 700;
  color: var(--ink);
}
.dh-expert-meta {
  margin-left: auto;
  font-size: 10px; color: var(--ink-4);
  font-weight: 600;
}
.dh-expert-meta.green { color: #22c55e; }

/* Side-by-side top tiles */
.dh-expert-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 12px;
}
.dh-expert-tile {
  padding: 10px 8px;
  background: var(--bg-soft);
  border: 1px solid var(--line-soft);
  border-radius: 10px;
  text-align: center;
}
.dh-expert-tile-l { font-size: 10px; color: var(--ink-4); margin-bottom: 4px; }
.dh-expert-tile-v {
  font-size: 16px; font-weight: 700; letter-spacing: -0.02em;
  color: var(--ink);
}
.dh-expert-tile-v.gold { color: var(--gold-deep); }
.dh-expert-tile-v.green { color: #22c55e; }

/* Rows (label left, value right) */
.dh-expert-rows { display: flex; flex-direction: column; gap: 0; }
.dh-expert-rows.tall { gap: 0; }
.dh-expert-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 6px 2px;
  border-bottom: 1px solid var(--line-soft);
  font-size: 11px;
}
.dh-expert-row:last-child { border-bottom: none; }
.dh-expert-row-l { color: var(--ink-4); }
.dh-expert-row-v { font-weight: 700; color: var(--ink); }
.dh-expert-row-v.green { color: #22c55e; }
.dh-expert-row-v.red { color: #ef4444; }
.dh-expert-row-head {
  font-size: 10px; color: var(--ink-4);
  margin: 4px 0 6px;
}

/* Channel mix row */
.dh-expert-channel {
  display: grid;
  grid-template-columns: 80px 1fr 36px;
  gap: 8px;
  align-items: center;
  padding: 4px 2px;
  font-size: 11px;
}
.dh-expert-bar {
  height: 5px; background: var(--bg-soft);
  border-radius: 100px; overflow: hidden;
}
.dh-expert-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--gold-bright));
  border-radius: 100px;
  transition: width 0.6s ease;
}
.dh-expert-channel .dh-expert-row-v { text-align: right; font-size: 10.5px; }


/* ════════════════════════════════════════════════════════════════════
   GUESTS TAB (Phase 3) — list + filter chips + slide-in side panel
   ════════════════════════════════════════════════════════════════════ */

.gt-wrap { display: flex; flex-direction: column; gap: 12px; min-height: 0; }

.gt-search {
  display: flex; align-items: center; gap: 8px;
  padding: 9px 14px; background: var(--surface);
  border: 1px solid var(--line); border-radius: 100px;
  color: var(--ink-4);
}
.gt-search input {
  flex: 1; border: 0; background: transparent; outline: none;
  color: var(--ink-2); font-size: 13px; font-family: inherit;
  cursor: default;
}
.gt-search input::placeholder { color: var(--ink-4); }

.gt-chips { display: flex; gap: 8px; flex-wrap: wrap; }
.gt-chip {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 6px 12px; border-radius: 100px;
  font-size: 12px; font-weight: 600; cursor: pointer;
  background: var(--surface); border: 1px solid var(--line); color: var(--ink-3);
  font-family: inherit;
  transition: all 0.18s ease;
}
.gt-chip:hover:not(.active) { color: var(--ink-2); border-color: var(--gold-soft); }
.gt-chip.active { background: var(--gold); color: white; border-color: var(--gold-deep); box-shadow: 0 2px 8px -2px var(--gold-glow); }
.gt-chip:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }
.gt-chip-emoji { font-size: 11px; }

.gt-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
@media (max-width: 1100px) { .gt-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 720px)  { .gt-grid { grid-template-columns: 1fr; } }
.gt-empty { grid-column: 1 / -1; padding: 40px; text-align: center; color: var(--ink-4); font-style: italic; }

.gt-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px 14px;
  text-align: left;
  font-family: inherit;
  cursor: pointer;
  position: relative;
  transition: all 0.2s ease;
  display: flex; flex-direction: column; gap: 6px;
}
.gt-card:hover { transform: translateY(-2px); border-color: var(--gold-soft); box-shadow: 0 4px 14px -4px var(--gold-glow); }
.gt-card:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }
.gt-card::before {
  content: ''; position: absolute; left: 0; top: 12px; bottom: 12px; width: 3px;
  background: var(--gold); border-radius: 3px; opacity: 0;
  transition: opacity 0.2s ease;
}
.gt-card:hover::before { opacity: 1; }

.gt-card-top { display: flex; justify-content: space-between; align-items: flex-start; }
.gt-card-name-row { display: flex; align-items: center; gap: 7px; min-width: 0; }
.gt-card-flag { font-size: 16px; line-height: 1; }
.gt-card-name { font-size: 13px; font-weight: 700; color: var(--ink); }
.gt-card-stars { font-size: 11px; color: var(--gold-deep); }

.gt-status {
  display: inline-block; padding: 2px 8px; border-radius: 100px;
  font-size: 9.5px; font-weight: 700; align-self: flex-start;
}
.gt-status-arriving  { background: rgba(234,179,8,0.12); color: #ca8a04; border: 1px solid rgba(234,179,8,0.22); }
.gt-status-staying   { background: rgba(34,197,94,0.12); color: #16a34a; border: 1px solid rgba(34,197,94,0.22); }
.gt-status-upcoming  { background: rgba(59,130,246,0.10); color: #2563eb; border: 1px solid rgba(59,130,246,0.20); }
.gt-status-returning { background: rgba(234,179,8,0.10); color: var(--gold-deep); border: 1px solid var(--gold-soft); }
.gt-status-past      { background: rgba(148,163,184,0.10); color: var(--ink-3); border: 1px solid rgba(148,163,184,0.20); }

.gt-card-meta { display: flex; align-items: center; gap: 6px; font-size: 11px; color: var(--ink-3); flex-wrap: wrap; }
.gt-dot-sep { color: var(--ink-4); }
.gt-card-prop { font-weight: 600; color: var(--ink-2); }
.gt-card-dates { font-size: 11px; color: var(--ink-4); }
.gt-card-info { display: flex; gap: 12px; font-size: 11px; color: var(--ink-4); }
.gt-card-footer {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 8px; margin-top: 2px;
  border-top: 1px solid var(--line-soft);
}
.gt-mem { display: inline-flex; align-items: center; gap: 4px; font-size: 10.5px; color: var(--ink-4); }
.gt-arrow { font-size: 12px; color: var(--gold-deep); font-weight: 700; }

/* ── Side panel ─────────────────────────────────────────────────── */
.gsp-overlay {
  position: absolute; inset: 0;
  background: rgba(20,16,12,0.18);
  backdrop-filter: blur(2px); -webkit-backdrop-filter: blur(2px);
  z-index: 10;
  animation: gsp-fade-in 0.25s ease;
}
@keyframes gsp-fade-in { from { opacity: 0; } to { opacity: 1; } }

.gsp {
  position: absolute; top: 0; right: 0; bottom: 0;
  width: 50%; min-width: 380px; max-width: 520px;
  background: var(--surface);
  border-left: 1px solid var(--line);
  box-shadow: -12px 0 32px -10px rgba(20,16,12,0.18);
  z-index: 11;
  display: flex; flex-direction: column;
  animation: gsp-slide-in 0.28s cubic-bezier(0.2, 0.8, 0.2, 1);
}
@keyframes gsp-slide-in { from { transform: translateX(100%); opacity: 0; } to { transform: translateX(0); opacity: 1; } }
@media (max-width: 720px) { .gsp { width: 100%; min-width: 0; max-width: none; } }

.gsp-head { padding: 16px 18px 0; border-bottom: 1px solid var(--line-soft); }
.gsp-head-top { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 6px; }
.gsp-flag { font-size: 28px; line-height: 1; }
.gsp-name-block { flex: 1; min-width: 0; }
.gsp-name { font-size: 16px; font-weight: 700; color: var(--ink); line-height: 1.2; }
.gsp-sub  { font-size: 11px; color: var(--ink-4); margin-top: 2px; }
.gsp-close {
  width: 30px; height: 30px; border: 1px solid var(--line);
  background: var(--bg-soft); border-radius: 8px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: var(--ink-3); font-family: inherit;
}
.gsp-close:hover { color: var(--ink); border-color: var(--gold-soft); }
.gsp-meta { display: flex; align-items: center; gap: 6px; font-size: 11px; color: var(--ink-3); flex-wrap: wrap; margin-bottom: 12px; }
.gsp-vip { color: var(--gold-deep); font-weight: 700; }
.gsp-tabs { display: flex; gap: 4px; margin-top: 6px; }
.gsp-tab {
  flex: 1; padding: 9px 8px;
  background: transparent; border: 0; border-bottom: 2px solid transparent;
  font-family: inherit; font-size: 11px; font-weight: 600;
  color: var(--ink-4); cursor: pointer;
  transition: color 0.18s, border-color 0.18s;
}
.gsp-tab:hover { color: var(--ink-2); }
.gsp-tab.active { color: var(--gold-deep); border-bottom-color: var(--gold); }
.gsp-tab:focus-visible { outline: 2px solid var(--gold); outline-offset: -2px; }

.gsp-body { flex: 1; overflow-y: auto; padding: 14px 18px 20px; }
.gsp-section { margin-bottom: 16px; }
.gsp-section-head {
  display: flex; align-items: center; gap: 6px;
  font-size: 10px; text-transform: uppercase; letter-spacing: 0.08em;
  font-weight: 700; color: var(--gold-deep);
  margin-bottom: 6px;
}
.gsp-rows { display: flex; flex-direction: column; }
.gsp-row {
  display: flex; justify-content: space-between; gap: 10px;
  padding: 6px 0;
  border-bottom: 1px solid var(--line-soft);
  font-size: 12px; color: var(--ink-2);
}
.gsp-row:last-child { border-bottom: 0; }
.gsp-row-l { color: var(--ink-4); }
.gsp-prefs { margin: 0; padding-left: 18px; font-size: 12px; color: var(--ink-2); line-height: 1.7; }
.gsp-note {
  background: var(--bg-soft); border: 1px solid var(--line-soft);
  border-radius: 8px; padding: 9px 11px;
  font-size: 11.5px; line-height: 1.5; color: var(--ink-2);
}

.gsp-chat { display: flex; flex-direction: column; gap: 10px; }
.gsp-msg { max-width: 88%; }
.gsp-msg-guest { align-self: flex-start; }
.gsp-msg-ai    { align-self: flex-end; }
.gsp-msg-meta {
  font-size: 9.5px; color: var(--ink-4); margin-bottom: 3px;
  text-transform: uppercase; letter-spacing: 0.05em; font-weight: 600;
}
.gsp-msg-ai .gsp-msg-meta { text-align: right; }
.gsp-msg-text {
  padding: 9px 12px; border-radius: 12px; font-size: 12px; line-height: 1.45;
}
.gsp-msg-guest .gsp-msg-text { background: var(--bg-soft); border: 1px solid var(--line-soft); color: var(--ink); border-bottom-left-radius: 4px; }
.gsp-msg-ai .gsp-msg-text    { background: var(--gold-soft); border: 1px solid var(--gold-soft); color: var(--ink); border-bottom-right-radius: 4px; }

.gsp-stay-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; margin-bottom: 14px; }
.gsp-stay-tile {
  padding: 10px 12px; background: var(--bg-soft);
  border: 1px solid var(--line-soft); border-radius: 10px; text-align: center;
}
.gsp-stay-l { font-size: 9.5px; color: var(--ink-4); margin-bottom: 3px; text-transform: uppercase; letter-spacing: 0.05em; font-weight: 700; }
.gsp-stay-v { font-size: 16px; font-weight: 700; color: var(--ink); }
.gsp-stay-v.gold { color: var(--gold-deep); }



/* ════════════════════════════════════════════════════════════════════
   PROPERTIES TAB / CALENDAR (Phase 4 — v2: multi-month side-header layout)
   Mirrors the real Dashboard properties view:
   side-card (left) + horizontal month strip (right).
   Booking bars sit OVER the date numbers, channel-colored.
   ════════════════════════════════════════════════════════════════════ */

.pt-wrap { display: flex; flex-direction: column; gap: 12px; min-height: 0; }

.pt-selector { display: flex; gap: 8px; flex-wrap: wrap; }
.pt-prop-pill {
  display: flex; flex-direction: column; gap: 1px;
  padding: 8px 14px; border-radius: 12px;
  background: var(--surface); border: 1px solid var(--line);
  cursor: pointer; font-family: inherit; text-align: left;
  transition: all 0.18s ease;
  min-width: 140px;
}
.pt-prop-pill:hover:not(.active) { border-color: var(--gold-soft); transform: translateY(-1px); }
.pt-prop-pill.active { border-color: var(--gold); background: var(--gold-soft); box-shadow: 0 2px 10px -3px var(--gold-glow); }
.pt-prop-pill:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }
.pt-prop-pill-name { font-size: 12.5px; font-weight: 700; color: var(--ink); }
.pt-prop-pill-city { font-size: 10.5px; color: var(--ink-4); }
.pt-prop-pill.active .pt-prop-pill-name { color: var(--gold-deep); }

/* Calendar layout: side-header + month strip */
.cv {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 10px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 12px;
  min-width: 0;
}
@media (max-width: 980px) { .cv { grid-template-columns: 1fr; } }

/* Side card (property header + donut + stats) */
.cv-side {
  display: flex; flex-direction: column; gap: 12px;
  padding: 10px 12px;
  background: var(--bg-soft);
  border: 1px solid var(--line-soft);
  border-radius: 12px;
}
.cv-side-head {}
.cv-side-name { font-size: 13.5px; font-weight: 700; color: var(--ink); line-height: 1.25; }
.cv-side-city { font-size: 10.5px; color: var(--ink-4); margin-top: 2px; }

.cv-side-donut {
  position: relative;
  display: flex; align-items: center; justify-content: center;
  margin: 4px 0 2px;
}
.cv-side-occ-text {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
}
.cv-side-occ-pct { font-size: 18px; font-weight: 800; color: var(--gold-deep); line-height: 1; }
.cv-side-occ-l { font-size: 9px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; color: var(--ink-4); margin-top: 2px; }

.cv-side-stats { display: flex; flex-direction: column; gap: 6px; }
.cv-side-stat { display: flex; justify-content: space-between; align-items: baseline; gap: 6px; padding: 4px 0; border-bottom: 1px solid var(--line-soft); }
.cv-side-stat:last-child { border-bottom: none; }
.cv-side-stat-l { font-size: 10.5px; color: var(--ink-4); }
.cv-side-stat-v { font-size: 12.5px; font-weight: 700; color: var(--ink); }
.cv-side-stat-v.gold { color: var(--gold-deep); }
.cv-unit { font-size: 9.5px; font-weight: 500; color: var(--ink-4); margin-left: 1px; }

/* Months strip */
.cv-months { display: flex; gap: 8px; min-width: 0; }
.cv-month {
  flex: 1 1 0; min-width: 0;
  border: 1px solid var(--line-soft);
  border-radius: 10px;
  background: var(--surface);
  overflow: hidden;
  display: flex; flex-direction: column;
}
.cv-month-head {
  padding: 7px 10px;
  font-size: 11.5px; font-weight: 700; letter-spacing: 0.02em;
  color: var(--gold-deep);
  background: var(--bg-soft);
  border-bottom: 1px solid var(--line-soft);
  text-align: center;
}
.cv-wd-row {
  display: grid; grid-template-columns: repeat(7, 1fr);
  padding: 4px 0 3px;
  border-bottom: 1px solid var(--line-soft);
}
.cv-wd {
  text-align: center;
  font-size: 8.5px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.04em; color: var(--ink-4);
}
.cv-wd.is-weekend { color: var(--gold-deep); opacity: 0.7; }

.cv-weeks { display: flex; flex-direction: column; }
.cv-week { position: relative; border-bottom: 1px solid var(--line-soft); }
.cv-week:last-child { border-bottom: none; }

.cv-day-row { display: grid; grid-template-columns: repeat(7, 1fr); }
.cv-cell {
  height: 38px;
  display: flex; flex-direction: column; align-items: center;
  padding-top: 3px; gap: 0;
  position: relative;
}
.cv-cell.is-weekend { background: var(--bg-soft); }
.cv-cell.cv-cell-empty { background: transparent; }
.cv-day-num {
  width: 20px; height: 20px;
  line-height: 20px; text-align: center; border-radius: 50%;
  font-size: 10.5px; font-weight: 500; color: var(--ink-2);
}
.cv-cell.is-today .cv-day-num { background: var(--gold); color: white; font-weight: 800; }
.cv-cell.is-past .cv-day-num { opacity: 0.4; }
.cv-day-rate { font-size: 8.5px; font-weight: 600; color: var(--ink-4); line-height: 1; margin-top: 1px; }

/* Booking bars — overlaid on top of date numbers in the middle of the row */
.cv-bars {
  position: absolute; left: 0; right: 0;
  top: 7px;
  height: 18px;
  pointer-events: none;
}
.cv-bar {
  position: absolute;
  top: 0; height: 18px;
  display: flex; align-items: center;
  padding: 0 5px;
  font-size: 9.5px; font-weight: 600; color: white;
  white-space: nowrap; overflow: hidden;
  cursor: pointer;
  pointer-events: auto;
  box-shadow: 0 1px 4px rgba(0,0,0,0.20);
  transition: transform 0.15s, box-shadow 0.15s, opacity 0.15s;
  border-radius: 0;
  opacity: 0.92;
}
.cv-bar.is-first { border-top-left-radius: 5px; border-bottom-left-radius: 5px; margin-left: 3px; }
.cv-bar.is-last  { border-top-right-radius: 5px; border-bottom-right-radius: 5px; margin-right: 3px; }
.cv-bar:hover { opacity: 1; transform: translateY(-1px); box-shadow: 0 4px 12px rgba(0,0,0,0.32); z-index: 2; }
.cv-bar-label { display: inline-flex; align-items: center; gap: 4px; overflow: hidden; }
.cv-bar-flag { font-size: 10px; flex-shrink: 0; }
.cv-bar-name { text-overflow: ellipsis; overflow: hidden; }

.cv-bar-airbnb  { background: linear-gradient(90deg, #ff5a5f, #ff7e82); }
.cv-bar-booking { background: linear-gradient(90deg, #003580, #0058b0); }
.cv-bar-direct  { background: linear-gradient(90deg, #16a34a, #22c55e); }
.cv-bar-blocked { background: linear-gradient(90deg, #475569, #64748b); }

/* When date number is "covered" by a bar, dim it so the bar reads cleanly */
.cv-cell .cv-day-num { position: relative; z-index: 1; }


/* ════════════════════════════════════════════════════════════════════
   DASHBOARD MOCK — Theme Variants (Phase 2)
   Three themes adapted 1:1 from the real GuestHive dashboard:
   - light (default) — Sand/Cream
   - dark            — Pure black
   - blue            — Navy
   Only the `.dh` wrapper's CSS variables are overridden — everything
   inside reads from these vars and re-themes automatically.
   ════════════════════════════════════════════════════════════════════ */

/* Light theme is the default — no override needed (matches landing page). */
/* But we still declare it explicitly for crossfade transitions. */
.dh[data-theme="light"] {
  /* These already match the page defaults; declared for clarity + transitions */
}

/* Smooth theme crossfade — applies regardless of which theme */
.dh,
.dh * {
  transition: background-color 0.4s ease, border-color 0.4s ease, color 0.3s ease, box-shadow 0.4s ease;
}

/* ── DARK THEME ────────────────────────────────────────────────── */
.dh[data-theme="dark"] {
  --bg-soft:   #1a1a1a;
  --surface:   #141414;
  --surface-2: #1f1f1f;
  --ink:       #ffffff;
  --ink-2:     #e5e5e5;
  --ink-3:     #9ca3af;
  --ink-4:     #6b7280;
  --line:      rgba(255, 255, 255, 0.08);
  --line-soft: rgba(255, 255, 255, 0.04);
  --gold-ink:  #f5c87a;
  --gold-soft: rgba(228, 158, 34, 0.15);
  --green-soft: rgba(34, 197, 94, 0.18);
  --dash-bg:   #0a0a0a;
  --dash-card: #141414;
  --dash-line: rgba(255, 255, 255, 0.08);
  --dash-text: #ffffff;
}

/* ── BLUE THEME ────────────────────────────────────────────────── */
.dh[data-theme="blue"] {
  --bg-soft:   #1e293b;
  --surface:   #1e293b;
  --surface-2: #273548;
  --ink:       #ffffff;
  --ink-2:     #e2e8f0;
  --ink-3:     #94a3b8;
  --ink-4:     #64748b;
  --line:      rgba(148, 163, 184, 0.15);
  --line-soft: rgba(148, 163, 184, 0.08);
  --gold:        #f2c14f;
  --gold-bright: #ffd97a;
  --gold-deep:   #c89a2e;
  --gold-ink:    #f5d987;
  --gold-soft:   rgba(242, 193, 79, 0.15);
  --gold-glow:   rgba(242, 193, 79, 0.35);
  --green-soft: rgba(34, 197, 94, 0.18);
  --dash-bg:   #1a2845;
  --dash-card: #1e293b;
  --dash-line: rgba(148, 163, 184, 0.15);
  --dash-text: #ffffff;
}


/* === Locks events: prominenter (Update 2) === */
.locks-event {
  padding: 12px 14px;
  font-size: 14px;
  border-radius: 12px;
}
.locks-event-time { min-width: 72px; font-size: 12px; }
.locks-event-icon { font-size: 18px; }
.locks-event.pulse {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px var(--gold-glow), 0 6px 18px -6px var(--gold-glow);
  background: linear-gradient(90deg, var(--gold-soft) 0%, var(--surface) 60%);
  transform: translateX(0) scale(1.015);
}
.locks-event.color-green.pulse {
  background: linear-gradient(90deg, rgba(45,143,90,0.12) 0%, var(--surface) 60%);
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(45,143,90,0.18), 0 6px 18px -6px rgba(45,143,90,0.25);
}
.locks-event.color-red.pulse {
  background: linear-gradient(90deg, rgba(239,68,68,0.12) 0%, var(--surface) 60%);
  border-color: rgba(239,68,68,0.5);
  box-shadow: 0 0 0 4px rgba(239,68,68,0.18), 0 6px 18px -6px rgba(239,68,68,0.25);
}

/* ============================================================
   SEO SECTION (full-width, gold keyword highlights)
   ============================================================ */
.seo-section {
  background: linear-gradient(180deg, transparent 0%, var(--surface-2, rgba(0,0,0,0.02)) 100%);
  padding: 100px 0 120px;
  border-top: 1px solid var(--line, rgba(0,0,0,0.06));
}
.seo-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}
.seo-section .section-head {
  text-align: center;
  margin-bottom: 56px;
}
.seo-section .eyebrow {
  justify-content: center;
}
.seo-section .seo-heading {
  font-size: clamp(32px, 4vw, 52px) !important;
  letter-spacing: -0.025em;
  line-height: 1.15;
  max-width: 1100px;
  margin: 24px auto 0 !important;
  text-align: center;
}
.seo-section .seo-prose-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px 56px;
  max-width: 1180px;
  margin: 0 auto;
}
.seo-section .seo-para {
  font-size: 16px;
  line-height: 1.75;
  color: var(--ink-2, #374151);
  margin: 0;
}
.seo-section .seo-kw {
  color: var(--gold-deep, #c89537);
  font-weight: 600;
}
@media (max-width: 880px) {
  .seo-section .seo-prose-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .seo-section { padding: 70px 0 90px; }
}

/* ============================================================
   CTA FORM (Beta Access waitlist with email + success)
   ============================================================ */
.cta-section .cta {
  text-align: center;
}
.cta-form {
  margin: 24px auto 0;
  max-width: 540px;
}
.cta-form-row {
  display: flex;
  gap: 8px;
  background: var(--surface, #fff);
  border: 1px solid var(--line, rgba(0,0,0,0.08));
  border-radius: 100px;
  padding: 6px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.05);
}
.cta-form-input {
  flex: 1;
  border: 0;
  background: transparent;
  padding: 12px 18px;
  font-size: 15px;
  font-family: inherit;
  color: var(--ink, #0a0a0a);
  outline: none;
  min-width: 0;
}
.cta-form-input::placeholder {
  color: var(--ink-4, #9ca3af);
}
.cta-form-btn {
  white-space: nowrap;
  border-radius: 100px !important;
  padding: 12px 24px !important;
}
.cta-form-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.cta-perks {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px 24px;
  margin-top: 18px;
}
.cta-perk {
  font-size: 13px;
  color: var(--ink-3, #6b7280);
  font-weight: 500;
}
.cta-form-error {
  margin-top: 12px;
  padding: 10px 16px;
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  border-radius: 8px;
  color: #b91c1c;
  font-size: 14px;
}

/* Success state */
.cta-success {
  margin: 32px auto 0;
  max-width: 540px;
  padding: 32px 28px;
  background: var(--surface, #fff);
  border: 2px solid var(--gold, #E49E22);
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(228, 158, 34, 0.15);
  animation: ctaSuccessIn 0.6s var(--ease, cubic-bezier(0.16,1,0.3,1));
}
@keyframes ctaSuccessIn {
  from { opacity: 0; transform: translateY(16px) scale(0.98); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
.cta-success-icon {
  font-size: 36px;
  text-align: center;
  margin-bottom: 12px;
}
.cta-success-title {
  font-size: 22px;
  font-weight: 800;
  color: var(--gold-deep, #c89537);
  margin: 0 0 14px;
  text-align: center;
  letter-spacing: -0.01em;
}
.cta-success-msg {
  font-size: 15px;
  color: var(--ink-2, #374151);
  line-height: 1.6;
  margin: 0 0 8px;
  text-align: center;
}
.cta-success-meta {
  font-size: 13px;
  color: var(--ink-4, #9ca3af);
  text-align: center;
  margin: 0 0 18px;
}
.cta-success-spam {
  text-align: center;
  background: var(--gold-soft, rgba(228, 158, 34, 0.1));
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 14px;
  color: var(--gold-deep, #c89537);
}

@media (max-width: 540px) {
  .cta-form-row {
    flex-direction: column;
    border-radius: 18px;
    padding: 8px;
  }
  .cta-form-btn {
    border-radius: 14px !important;
    width: 100%;
    justify-content: center;
  }
}


/* ============================================================
   GH CALENDAR (authentic Properties-Style: clickable months,
   per-property stats donut, animated booking bars)
   ============================================================ */
.cal-section {
  padding: 80px 0 60px;
}
.ghcal-wrap {
  background: var(--surface, #ffffff);
  border: 1px solid var(--line, rgba(0,0,0,0.06));
  border-radius: 24px;
  padding: 22px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.05);
  overflow: hidden;
}

/* ── Top Filter Bar ── */
.ghcal-topbar {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 16px;
  padding: 0 4px 18px;
  border-bottom: 1px solid var(--line, rgba(0,0,0,0.06));
  margin-bottom: 18px;
}
.ghcal-title {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--ink, #0a0a0a);
}
.ghcal-subtitle {
  font-size: 13px;
  color: var(--ink-3, #6b7280);
  margin-top: 2px;
}
.ghcal-topbar-right {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.ghcal-pill {
  background: var(--surface-2, rgba(0,0,0,0.03));
  border: 1px solid var(--line, rgba(0,0,0,0.06));
  border-radius: 100px;
  padding: 5px 14px;
  font-size: 12px;
  font-weight: 600;
  color: var(--ink-2, #374151);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.ghcal-pill-occ { color: #16a34a; }
.ghcal-pill-dot { width: 7px; height: 7px; border-radius: 50%; background: #22c55e; }
.ghcal-legend-item {
  font-size: 11px;
  color: var(--ink-3, #6b7280);
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-weight: 500;
}
.ghcal-legend-dot {
  width: 8px; height: 8px; border-radius: 50%;
}
.ghcal-legend-dot.ab  { background: #FF5A5F; }
.ghcal-legend-dot.bk  { background: #003580; }
.ghcal-legend-dot.dir { background: var(--gold, #E49E22); }

/* ── Property Rows ── */
.ghcal-rows {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.ghcal-row {
  display: grid;
  grid-template-columns: 230px 1fr;
  gap: 14px;
  opacity: 0;
  animation: ghcalFadeUp 0.7s cubic-bezier(0.16,1,0.3,1) forwards;
}
@keyframes ghcalFadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── Property Card (Left) ── */
.ghcal-prop-card {
  background: linear-gradient(135deg, var(--gold-soft, rgba(228,158,34,0.08)) 0%, var(--surface, #fff) 100%);
  border: 1px solid rgba(228,158,34,0.18);
  border-radius: 16px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.ghcal-prop-name {
  font-size: 14px;
  font-weight: 800;
  color: var(--ink, #0a0a0a);
  line-height: 1.25;
  letter-spacing: -0.01em;
}
.ghcal-prop-meta {
  font-size: 11px;
  color: var(--ink-4, #9ca3af);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.ghcal-prop-guest {
  font-size: 11px;
  color: var(--ink-3, #6b7280);
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 6px 8px;
  background: var(--surface-2, rgba(0,0,0,0.03));
  border-radius: 8px;
  margin-top: 4px;
}
.ghcal-prop-guest-icon { font-size: 12px; }
.ghcal-prop-stats {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
  padding-top: 10px;
}
.ghcal-donut { flex-shrink: 0; }
.ghcal-prop-stats-info { flex: 1; min-width: 0; }
.ghcal-stat-label {
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink-4, #9ca3af);
  font-weight: 700;
  margin-bottom: 4px;
}
.ghcal-stat-rev {
  display: flex;
  flex-direction: column;
}
.ghcal-stat-rev-val {
  font-size: 17px;
  font-weight: 800;
  color: var(--gold-deep, #c89537);
  letter-spacing: -0.01em;
  line-height: 1.1;
}
.ghcal-stat-rev-meta {
  font-size: 10px;
  color: var(--ink-4, #9ca3af);
  margin-top: 2px;
}
.ghcal-stat-price {
  display: flex;
  align-items: baseline;
  gap: 3px;
  margin-top: 6px;
  padding-top: 6px;
  border-top: 1px dashed var(--line, rgba(0,0,0,0.08));
}
.ghcal-stat-price-val {
  font-size: 13px;
  font-weight: 700;
  color: var(--ink, #0a0a0a);
}
.ghcal-stat-price-unit {
  font-size: 10px;
  color: var(--ink-4, #9ca3af);
}

/* ── Months Strip (Right) ── */
.ghcal-months {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  min-width: 0;
}
.ghcal-month {
  background: var(--surface, #fff);
  border: 1px solid var(--line, rgba(0,0,0,0.06));
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.25s cubic-bezier(0.16,1,0.3,1);
}
.ghcal-month:hover {
  border-color: rgba(228,158,34,0.4);
  box-shadow: 0 4px 16px rgba(228,158,34,0.08);
}
.ghcal-month.selected {
  border-color: var(--gold, #E49E22);
  background: linear-gradient(180deg, var(--gold-soft, rgba(228,158,34,0.06)) 0%, var(--surface, #fff) 30%);
  box-shadow: 0 4px 20px rgba(228,158,34,0.18);
}

.ghcal-month-head {
  padding: 8px 12px;
  border-bottom: 1px solid var(--line, rgba(0,0,0,0.06));
  display: flex;
  align-items: baseline;
  gap: 6px;
  background: rgba(0,0,0,0.015);
}
.ghcal-month.selected .ghcal-month-head {
  background: var(--gold-soft, rgba(228,158,34,0.1));
  border-bottom-color: rgba(228,158,34,0.25);
}
.ghcal-month-name {
  font-size: 12px;
  font-weight: 800;
  color: var(--gold-deep, #c89537);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.ghcal-month-year {
  font-size: 10px;
  color: var(--ink-4, #9ca3af);
  font-weight: 500;
}

.ghcal-wd-row {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  background: rgba(0,0,0,0.02);
  border-bottom: 1px solid var(--line, rgba(0,0,0,0.04));
}
.ghcal-wd {
  text-align: center;
  font-size: 9px;
  color: var(--ink-4, #9ca3af);
  padding: 5px 0;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.ghcal-wd.we { color: rgba(228,158,34,0.6); }

.ghcal-week {
  position: relative;
  border-bottom: 1px solid rgba(0,0,0,0.025);
}
.ghcal-week:last-child { border-bottom: none; }

.ghcal-bars {
  position: relative;
  height: 18px;
  margin: 2px 0;
}
.ghcal-bar {
  position: absolute;
  top: 0;
  height: 16px;
  display: flex;
  align-items: center;
  padding: 0 5px;
  font-size: 9px;
  font-weight: 600;
  color: rgba(255,255,255,0.96);
  border-radius: 4px;
  overflow: hidden;
  white-space: nowrap;
  cursor: pointer;
  box-shadow: 0 1px 4px rgba(0,0,0,0.18);
  opacity: 0;
  animation: ghcalBarIn 0.5s cubic-bezier(0.16,1,0.3,1) forwards;
  transition: transform 0.15s, box-shadow 0.15s;
}
.ghcal-bar:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  z-index: 5;
}
.ghcal-bar span {
  overflow: hidden;
  text-overflow: ellipsis;
}
.ghcal-bar.ab  { background: linear-gradient(135deg, #FF5A5F 0%, #e54850 100%); }
.ghcal-bar.bk  { background: linear-gradient(135deg, #003580 0%, #002966 100%); }
.ghcal-bar.dir { background: linear-gradient(135deg, #E49E22 0%, #c89537 100%); }
@keyframes ghcalBarIn {
  from { opacity: 0; transform: translateX(-8px) scaleX(0.8); transform-origin: left; }
  to   { opacity: 1; transform: translateX(0) scaleX(1); }
}

.ghcal-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
}
.ghcal-day {
  text-align: center;
  font-size: 10px;
  color: var(--ink-3, #6b7280);
  padding: 3px 0 5px;
  font-weight: 500;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ghcal-day.we { color: rgba(228,158,34,0.7); }
.ghcal-day.empty { color: transparent; }

.ghcal-hint {
  text-align: center;
  font-size: 12px;
  color: var(--ink-4, #9ca3af);
  margin-top: 18px;
  padding: 10px;
  background: var(--surface-2, rgba(0,0,0,0.02));
  border-radius: 10px;
}

/* ── Responsive ── */
@media (max-width: 980px) {
  .ghcal-row {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .ghcal-prop-card {
    flex-direction: row;
    align-items: center;
    gap: 16px;
  }
  .ghcal-prop-stats { padding-top: 0; margin-left: auto; }
}
@media (max-width: 720px) {
  .ghcal-months {
    grid-template-columns: 1fr;
  }
  .ghcal-prop-card { flex-direction: column; align-items: flex-start; }
  .ghcal-prop-stats { margin-left: 0; }
}


/* ============================================================
   AUTO-REVEAL ANIMATIONS
   Slow, gentle, one-shot animations applied via JS
   ============================================================ */

/* Base: longer fade + softer slide up */
.reveal-auto {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1.4s cubic-bezier(0.22, 1, 0.36, 1),
              transform 1.4s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}
.reveal-auto.in {
  opacity: 1;
  transform: translateY(0);
}

/* Headlines: even slower, with gentle scale */
.reveal-auto:is(h1, h2, h3) {
  transform: translateY(50px) scale(0.96);
  transition-duration: 1.6s;
}
.reveal-auto:is(h1, h2, h3).in {
  transform: translateY(0) scale(1);
}

/* Cards/Panels: pronounced slow rise */
.reveal-auto:is(.cta-card, .live-chat-wrap, .phone-frame, .phone-card,
                .locks-panel, .locks-card, .hero-mock, .hero-dashboard,
                .brain-mock, .swarm-card, .ghcal-month, .faq-item) {
  transform: translateY(56px) scale(0.94);
  transition-duration: 1.8s;
}
.reveal-auto:is(.cta-card, .live-chat-wrap, .phone-frame, .phone-card,
                .locks-panel, .locks-card, .hero-mock, .hero-dashboard,
                .brain-mock, .swarm-card, .ghcal-month, .faq-item).in {
  transform: translateY(0) scale(1);
}

/* Calendar property rows: slide from left, slow */
.reveal-auto.ghcal-row {
  opacity: 0;
  transform: translateX(-48px);
  transition-duration: 1.6s;
}
.reveal-auto.ghcal-row.in {
  opacity: 1;
  transform: translateX(0);
}

/* SEO paragraphs: gentle */
.reveal-auto.seo-para {
  transform: translateY(24px);
  transition-duration: 1.2s;
}

/* Stagger: section children, generous delays */
section .reveal-auto.in:nth-child(1) { transition-delay: 0ms; }
section .reveal-auto.in:nth-child(2) { transition-delay: 180ms; }
section .reveal-auto.in:nth-child(3) { transition-delay: 360ms; }
section .reveal-auto.in:nth-child(4) { transition-delay: 540ms; }
section .reveal-auto.in:nth-child(5) { transition-delay: 720ms; }

/* Calendar rows stagger */
.ghcal-rows > .reveal-auto:nth-child(1).in { transition-delay: 0ms; }
.ghcal-rows > .reveal-auto:nth-child(2).in { transition-delay: 300ms; }

/* Calendar months stagger */
.ghcal-months > .reveal-auto:nth-child(1).in { transition-delay: 0ms; }
.ghcal-months > .reveal-auto:nth-child(2).in { transition-delay: 220ms; }
.ghcal-months > .reveal-auto:nth-child(3).in { transition-delay: 440ms; }

/* FAQ stagger */
.faq-grid > .reveal-auto:nth-child(odd).in  { transition-delay: 0ms; }
.faq-grid > .reveal-auto:nth-child(even).in { transition-delay: 180ms; }

/* SEO prose stagger */
.seo-prose-grid > .reveal-auto:nth-child(1).in { transition-delay: 0ms; }
.seo-prose-grid > .reveal-auto:nth-child(2).in { transition-delay: 130ms; }
.seo-prose-grid > .reveal-auto:nth-child(3).in { transition-delay: 260ms; }
.seo-prose-grid > .reveal-auto:nth-child(4).in { transition-delay: 390ms; }
.seo-prose-grid > .reveal-auto:nth-child(5).in { transition-delay: 520ms; }
.seo-prose-grid > .reveal-auto:nth-child(6).in { transition-delay: 650ms; }

/* Respect prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
  .reveal-auto,
  .reveal-auto.in {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}


/* ════════════════════════════════════════════════════════════════
   ▼▼▼ MOBILE OPTIMIZATIONS (added 2026-04-29) ▼▼▼
   ════════════════════════════════════════════════════════════════ */

/* ── Mobile Nav: Burger + Drawer ── */
.nav-burger {
  display: none;
  position: relative;
  width: 44px;
  height: 44px;
  background: transparent;
  border: 0;
  cursor: pointer;
  padding: 0;
  margin-left: auto;
  z-index: 70;
  flex-shrink: 0;
}
.nav-burger span {
  position: absolute;
  left: 10px;
  right: 10px;
  height: 2.5px;
  background: var(--ink, #0a0a0a);
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.nav-burger span:nth-child(1) { top: 14px; }
.nav-burger span:nth-child(2) { top: 21px; }
.nav-burger span:nth-child(3) { top: 28px; }
.nav-burger.is-open span:nth-child(1) { top: 21px; transform: rotate(45deg); }
.nav-burger.is-open span:nth-child(2) { opacity: 0; }
.nav-burger.is-open span:nth-child(3) { top: 21px; transform: rotate(-45deg); }

.nav-drawer {
  position: fixed; inset: 0;
  background: rgba(10,10,10,0.4);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 65;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.nav-drawer.is-open { opacity: 1; pointer-events: auto; }

.nav-drawer-panel {
  position: fixed; top: 0; right: 0; bottom: 0;
  width: min(360px, 85vw);
  background: var(--bg, #fff);
  box-shadow: -8px 0 32px rgba(0,0,0,0.12);
  padding: 96px 28px 28px;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  overflow-y: auto;
}
.nav-drawer.is-open .nav-drawer-panel { transform: translateX(0); }

.nav-drawer-links { display: flex; flex-direction: column; gap: 4px; }
.nav-drawer-links a {
  display: block;
  padding: 14px 12px;
  font-size: 17px;
  font-weight: 600;
  color: var(--ink, #0a0a0a);
  border-radius: 10px;
  transition: background 0.2s;
}
.nav-drawer-links a:hover,
.nav-drawer-links a:active { background: var(--surface-2, rgba(0,0,0,0.04)); }
.nav-drawer-divider { height: 1px; background: var(--line, rgba(0,0,0,0.08)); margin: 22px 0; }
.nav-drawer-bottom { display: flex; flex-direction: column; gap: 14px; margin-top: auto; padding-top: 24px; }
.nav-drawer-bottom .lang-toggle { align-self: flex-start; margin-bottom: 8px; }
.nav-drawer-login {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 18px;
  background: var(--surface-2, rgba(0,0,0,0.04));
  border-radius: 12px;
  font-weight: 600; font-size: 15px;
  color: var(--ink, #0a0a0a);
  transition: all 0.2s;
}
.nav-drawer-login:hover { background: var(--surface-3, rgba(0,0,0,0.07)); }
.nav-drawer-cta {
  width: 100%;
  justify-content: center;
  padding: 14px 18px !important;
  font-size: 15px !important;
}

.nav-login-desktop {
  font-size: 14px;
  color: var(--ink-3);
  font-weight: 500;
  padding: 6px 12px;
  transition: color 0.2s;
}
.nav-login-desktop:hover { color: var(--ink); }

/* ── BREAKPOINT: Mobile (≤ 720px) ── */
@media (max-width: 720px) {
  /* Nav: Hide desktop actions, show burger */
  .nav-row { gap: 8px; flex-wrap: nowrap; }
  .nav-logo span { font-size: 19px; }
  .nav-logo img { width: 44px !important; height: 44px !important; }
  .nav-actions { display: none !important; }
  .nav-burger { display: block; }
  .nav { padding: 10px 0; }
  
  /* Hero compact */
  .hero { padding: 92px 0 48px; }
  .hero-status { margin-bottom: 18px; font-size: 12px; padding: 6px 12px; }
  .hero-headline { margin-bottom: 18px; }
  .hero-headline,
  .hero h1 {
    font-size: clamp(34px, 9vw, 48px) !important;
    line-height: 1.05 !important;
    letter-spacing: -0.02em;
  }
  .hero-sub { font-size: 16px !important; margin-bottom: 24px; line-height: 1.5; }
  .hero-ctas { flex-direction: column; align-items: stretch; margin-bottom: 36px; gap: 10px; }
  .hero-ctas .btn { width: 100%; justify-content: center; padding: 14px 18px !important; font-size: 15px !important; }
  .hero-cta-meta { margin: 8px 0 0; text-align: center; width: 100%; }
  
  /* ── HERO MOBILE: Real-app-feeling visual ── */
  /* Hide desktop board entirely on mobile */
  .heroA-board {
    display: none !important;
  }
  
  /* Mobile hero visual: SHOW on mobile */
  .heroA-mobile {
    display: block !important;
  }
  /* Sections: tighter */
  .section { padding: 56px 0 !important; }
  .section-tight { padding: 48px 0 !important; }
  .section-head { margin-bottom: 28px; }
  h1 { font-size: clamp(34px, 8vw, 48px) !important; }
  h2.h-xl { font-size: clamp(28px, 7vw, 38px) !important; line-height: 1.1 !important; }
  .lead { font-size: 15px !important; line-height: 1.55 !important; }
  
  /* Calendar Mobile: Property card + horizontal months swipe */
  .ghcal-wrap {
    padding: 14px 0;
    border-radius: 16px;
    overflow: visible;
  }
  .ghcal-topbar {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    padding: 0 14px 14px;
    margin-bottom: 12px;
  }
  .ghcal-title { font-size: 17px; }
  .ghcal-subtitle { font-size: 12px; }
  .ghcal-topbar-right { gap: 6px; flex-wrap: wrap; }
  .ghcal-pill { padding: 4px 10px; font-size: 11px; }
  .ghcal-legend-item { font-size: 10px; }
  
  .ghcal-row {
    grid-template-columns: 1fr !important;
    gap: 10px !important;
    padding: 0 14px;
  }
  .ghcal-prop-card {
    flex-direction: row;
    align-items: stretch;
    gap: 14px;
    padding: 14px;
  }
  .ghcal-prop-name { font-size: 13px; line-height: 1.25; }
  .ghcal-prop-meta { font-size: 10px; }
  .ghcal-prop-guest { font-size: 10px; padding: 5px 7px; margin-top: 6px; }
  .ghcal-prop-stats {
    flex-direction: column;
    align-items: flex-end;
    gap: 6px;
    padding-top: 0;
    margin-left: auto;
    margin-top: 0;
    flex-shrink: 0;
  }
  .ghcal-donut { width: 64px !important; height: 64px !important; }
  .ghcal-prop-stats-info { text-align: right; flex: 0 0 auto; }
  .ghcal-stat-rev-val { font-size: 14px; }
  .ghcal-stat-rev-meta { font-size: 9px; }
  .ghcal-stat-price { border-top: 0; padding-top: 0; margin-top: 4px; }
  .ghcal-stat-price-val { font-size: 11px; }
  .ghcal-stat-price-unit { font-size: 9px; }
  
  /* MONTHS: horizontal swipe with snap */
  .ghcal-months {
    grid-template-columns: none !important;
    display: flex !important;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 12px;
    padding: 0 14px 4px;
    margin: 0 -14px;
    scrollbar-width: none;
  }
  .ghcal-months::-webkit-scrollbar { display: none; }
  .ghcal-month {
    flex: 0 0 calc(100% - 28px);
    min-width: calc(100% - 28px);
    scroll-snap-align: start;
    scroll-snap-stop: always;
  }
  .ghcal-month-head { padding: 12px 14px; }
  .ghcal-month-name { font-size: 13px; }
  .ghcal-month-year { font-size: 11px; }
  .ghcal-day { font-size: 11px; height: 26px; padding: 4px 0 6px; }
  .ghcal-wd { font-size: 10px; padding: 6px 0; }
  .ghcal-bars { height: 22px; margin: 3px 0; }
  .ghcal-bar { height: 20px; font-size: 10px; padding: 0 6px; border-radius: 5px; }
  .ghcal-hint { margin: 14px 14px 0; font-size: 11px; padding: 10px; }
  
  /* CTA-Form Mobile */
  .cta-card { padding: 0 4px; }
  .cta-form-row { flex-direction: column; border-radius: 16px; padding: 8px; }
  .cta-form-input { text-align: center; padding: 14px 16px; }
  .cta-form-btn { border-radius: 12px !important; width: 100%; justify-content: center; padding: 14px 20px !important; }
  .cta-perks { gap: 10px 16px; justify-content: center; }
  .cta-perk { font-size: 12px; }
  .cta-success { margin: 24px 0 0; padding: 24px 18px; }
  .cta-success-title { font-size: 18px; }
  .cta-success-msg { font-size: 14px; }
  
  /* SEO Mobile */
  .seo-section { padding: 56px 0 70px; }
  .seo-section .seo-prose-grid { grid-template-columns: 1fr !important; gap: 18px; }
  .seo-section .seo-heading { font-size: clamp(24px, 7vw, 32px) !important; }
  .seo-section .seo-para { font-size: 15px; line-height: 1.65; }
  
  /* Footer Mobile */
  .footer-grid { grid-template-columns: 1fr !important; gap: 28px; text-align: left; }
  .footer-brand img { width: 44px !important; height: 44px !important; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; align-items: center; }
  
  /* FAQ Mobile — better proportions inside item */
  .faq-grid { grid-template-columns: 1fr !important; gap: 10px; }
  .faq-item { border-radius: 14px; }
  .faq-q {
    font-size: 15px !important;
    padding: 16px 18px !important;
    line-height: 1.35;
    gap: 12px !important;
  }
  /* Closed state: no answer padding */
  .faq-a {
    font-size: 14px !important;
    padding: 0 18px !important;
    line-height: 1.55 !important;
    color: var(--ink-3);
  }
  /* Open state: real padding above & below + a soft top border for separation */
  .faq-item.open .faq-q {
    padding-bottom: 12px !important;
  }
  .faq-item.open .faq-a {
    padding: 4px 18px 18px !important;
    border-top: 1px solid rgba(0,0,0,0.06);
    padding-top: 14px !important;
  }
  
  /* Stages */
  .live-stage, .brain-stage, .swarm-stage, .ops-grid {
    grid-template-columns: 1fr !important;
    gap: 28px !important;
  }
  .phone-frame, .phone-card { margin: 0 auto; max-width: 320px; }
  .locks-panel, .locks-card { margin: 0 auto; max-width: 100%; }
}

/* ── BREAKPOINT: iPhone (≤ 480px) ── */
@media (max-width: 480px) {
  .container { padding: 0 16px !important; }
  .seo-container { padding: 0 16px !important; }
  
  .nav-logo span { font-size: 17px; }
  .nav-logo { gap: 10px; }
  .nav-logo img { width: 40px !important; height: 40px !important; }
  
  .hero { padding: 80px 0 40px; }
  .hero-headline,
  .hero h1 { font-size: clamp(30px, 8.5vw, 42px) !important; }
  .hero-sub { font-size: 15px !important; }
  
  .ghcal-prop-card { padding: 12px; gap: 10px; }
  .ghcal-donut { width: 56px !important; height: 56px !important; }
  .ghcal-prop-name { font-size: 12px; }
  .ghcal-stat-rev-val { font-size: 13px; }
  
  .section-head .eyebrow { font-size: 11px; }
  
  /* Animation slightly faster on mobile */
  .reveal-auto { transition-duration: 1.0s !important; }
  .reveal-auto:is(h1, h2, h3) {
    transition-duration: 1.1s !important;
    transform: translateY(30px) scale(0.97);
  }
  .reveal-auto:is(.cta-card, .live-chat-wrap, .phone-frame, .phone-card,
                  .locks-panel, .locks-card, .hero-mock, .hero-dashboard,
                  .brain-mock, .swarm-card, .ghcal-month, .faq-item) {
    transition-duration: 1.2s !important;
    transform: translateY(36px) scale(0.96);
  }
}

/* ════════════════════════════════════════════════════════════════
   ▲▲▲ END MOBILE OPTIMIZATIONS ▲▲▲
   ════════════════════════════════════════════════════════════════ */

/* Desktop: never show mobile-only hero */
@media (min-width: 721px) {
  .heroA-mobile { display: none !important; }
}

/* Mobile-only hero visual (real-app feeling) */
.heroA-mobile {
  position: relative;
  width: 100%;
  height: 480px;
  margin: 24px auto 0;
  overflow: hidden;
  border-radius: 24px;
  background: linear-gradient(135deg, #faf6ee 0%, #f5e8d4 100%);
  border: 1px solid rgba(228, 158, 34, 0.18);
  box-shadow: 
    0 20px 60px rgba(228, 158, 34, 0.12),
    0 8px 24px rgba(0, 0, 0, 0.06);
}

/* Soft gold/peach gradient overlay (like Stripe) */
.heroA-mobile::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 40% at 90% 10%, rgba(228, 158, 34, 0.30) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 10% 90%, rgba(255, 166, 158, 0.20) 0%, transparent 60%);
  z-index: 1;
  pointer-events: none;
}

/* Diagonal lines decoration */
.heroA-mobile::after {
  content: '';
  position: absolute;
  top: -10%;
  right: -10%;
  width: 80%;
  height: 60%;
  background-image: repeating-linear-gradient(
    45deg,
    rgba(228, 158, 34, 0.10) 0,
    rgba(228, 158, 34, 0.10) 1px,
    transparent 1px,
    transparent 14px
  );
  z-index: 1;
  pointer-events: none;
  border-radius: 50%;
  filter: blur(0.5px);
}

/* ── Layer 1 (back): Dashboard PNG cropped behind ── */
.heroA-mobile-dashboard {
  position: absolute;
  top: 12%;
  left: -45%;
  width: 130%;
  height: 70%;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.16);
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.5);
  animation: heroMobileDashIn 1s cubic-bezier(0.22, 1, 0.36, 1) backwards;
  animation-delay: 0.05s;
}
.heroA-mobile-dashboard img {
  width: 200%;
  height: 100%;
  object-fit: cover;
  object-position: 0% 30%;
  display: block;
  filter: saturate(1.05);
}
@keyframes heroMobileDashIn {
  from { opacity: 0; transform: translateX(-20px) scale(0.96); }
  to   { opacity: 1; transform: translateX(0) scale(1); }
}

/* ── Layer 2: Side-panel (Smart Lock / Nuki) — slides from right ── */
.heroA-mobile-panel {
  position: absolute;
  top: 14%;
  right: 0;
  width: 78%;
  max-width: 280px;
  background: #ffffff;
  border-radius: 20px 0 0 20px;
  padding: 20px 18px 16px;
  box-shadow:
    -16px 0 40px rgba(0, 0, 0, 0.12),
    -4px 0 12px rgba(0, 0, 0, 0.06);
  z-index: 4;
  border: 1px solid rgba(0, 0, 0, 0.04);
  border-right: 0;
  animation: heroMobilePanelIn 1.1s cubic-bezier(0.22, 1, 0.36, 1) backwards;
  animation-delay: 0.4s;
}
@keyframes heroMobilePanelIn {
  from { opacity: 0; transform: translateX(80px); }
  to   { opacity: 1; transform: translateX(0); }
}
.heroA-mobile-panel-handle {
  position: absolute;
  top: 12px;
  left: 50%;
  width: 36px;
  height: 4px;
  background: rgba(0, 0, 0, 0.12);
  border-radius: 2px;
  transform: translateX(-50%);
}
.heroA-mobile-panel-head {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 14px;
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
.heroA-mobile-panel-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(228, 158, 34, 0.15) 0%, rgba(228, 158, 34, 0.05) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.heroA-mobile-panel-title {
  font-size: 14px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.heroA-mobile-panel-meta {
  font-size: 10px;
  color: var(--ink-3);
  margin-top: 1px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 130px;
}
.heroA-mobile-panel-status {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 10px;
  color: #16a34a;
  font-weight: 700;
  flex-shrink: 0;
}
.heroA-mobile-panel-status .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
}
.heroA-mobile-panel-status .dot-green {
  background: #22c55e;
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.18);
  animation: dotPulse 2s ease infinite;
}
@keyframes dotPulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.18); }
  50% { box-shadow: 0 0 0 5px rgba(34, 197, 94, 0.08); }
}
.heroA-mobile-panel-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 9px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}
.heroA-mobile-panel-row.last {
  border-bottom: 0;
}
.heroA-mobile-panel-label {
  font-size: 12px;
  color: var(--ink-3);
  font-weight: 500;
}
.heroA-mobile-panel-val {
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
}
.heroA-mobile-panel-val.mono {
  font-family: 'SF Mono', 'Roboto Mono', monospace;
  letter-spacing: 0.05em;
  background: rgba(228, 158, 34, 0.10);
  color: var(--gold-deep, #c89537);
  padding: 3px 8px;
  border-radius: 6px;
  font-size: 11px;
}

/* ── Layer 3 (top): Floating notification (chat) — drops from top ── */
.heroA-mobile-notif {
  position: absolute;
  bottom: 18px;
  left: 16px;
  right: 80px;
  max-width: 280px;
  background: rgba(20, 20, 20, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  color: #fff;
  border-radius: 14px;
  padding: 12px 14px;
  z-index: 5;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.08);
  animation: heroMobileNotifIn 1s cubic-bezier(0.34, 1.56, 0.64, 1) backwards;
  animation-delay: 0.9s;
}
@keyframes heroMobileNotifIn {
  from { opacity: 0; transform: translateY(40px) scale(0.92); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
.heroA-mobile-notif-head {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}
.heroA-mobile-notif-icon {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  background: rgba(228, 158, 34, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
}
.heroA-mobile-notif-meta {
  display: flex;
  align-items: center;
  gap: 6px;
  flex: 1;
  min-width: 0;
}
.heroA-mobile-notif-title {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.85);
}
.heroA-mobile-notif-time {
  margin-left: auto;
  font-size: 10px;
  color: rgba(255, 255, 255, 0.5);
}
.heroA-mobile-notif-msg {
  font-size: 12px;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 8px;
  font-style: italic;
}
.heroA-mobile-notif-reply {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  font-size: 11px;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.85);
  padding: 8px 10px;
  background: linear-gradient(135deg, rgba(228, 158, 34, 0.20) 0%, rgba(228, 158, 34, 0.08) 100%);
  border-radius: 8px;
  border-left: 2px solid var(--gold, #E49E22);
}
.heroA-mobile-notif-reply-icon {
  flex-shrink: 0;
}

/* iPhone narrow: tighter */
@media (max-width: 420px) {
  .heroA-mobile {
    height: 440px;
    border-radius: 20px;
  }
  .heroA-mobile-panel {
    width: 80%;
    padding: 18px 16px 14px;
  }
  .heroA-mobile-panel-title { font-size: 13px; }
  .heroA-mobile-panel-meta { font-size: 9px; max-width: 100px; }
  .heroA-mobile-notif {
    right: 60px;
    left: 12px;
    bottom: 14px;
    padding: 10px 12px;
  }
  .heroA-mobile-notif-msg { font-size: 11px; }
}

/* ════════════════════════════════════════════════════════════════
   HERO BACKGROUND VIDEO (Crossfade Loop — Desktop + Mobile)
   ════════════════════════════════════════════════════════════════ */

.hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

/* Stage holds the two videos */
/* Both videos: fullscreen, layered */
/* Initial fade-in (only first time) */
to   { opacity: 1; }
}

/* Overlay for headline contrast */
/* Honeycomb still on top */
.hero-honeycomb {
  z-index: 2;
  opacity: 0.4;
}

/* Container above all */
.hero .container {
  position: relative;
  z-index: 3;
}

/* HeroA-stage above too */
.heroA-stage,
.hero-stage {
  position: relative;
  z-index: 3;
}

/* Mobile: stronger overlay */
@media (max-width: 720px) {
  .heroA-mobile {
    background: rgba(255, 255, 255, 0.55) !important;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(228, 158, 34, 0.25);
  }
  .heroA-mobile::before {
    background:
      radial-gradient(ellipse 80% 60% at 80% 20%, rgba(228,158,34,0.25) 0%, transparent 60%),
      radial-gradient(ellipse 70% 50% at 20% 80%, rgba(255,166,158,0.18) 0%, transparent 60%) !important;
  }
  .heroA-mobile::after {
    opacity: 0.4 !important;
  }
}

/* Reduced motion: hide videos */
@media (prefers-reduced-motion: reduce) {
  }


/* ════════════════════════════════════════════════════════════════════
   LIVE CHAT — typewriter lead-text + input glow + CTA pointer
   Fixed: cursor now sits FLUSH against last typed character.
   Property-line is hidden until typewriter finishes (no overlap).
   ════════════════════════════════════════════════════════════════════ */

/* Typewriter container — looks like a normal .lead (block, centered).
   Inner .tw-inline keeps text + cursor as a single inline run so they
   sit on the SAME line and the cursor is flush right of the last char. */
.live-lead-typewriter {
  /* inherit .lead size/family/centering from existing styles */
  min-height: 1.6em;
  position: relative;
}

.live-lead-typewriter .tw-inline {
  display: inline;
  white-space: normal;  /* allow natural wrapping */
}

.live-lead-typewriter .tw-text {
  display: inline;
}

/* Cursor — pure inline character right after the text. No margin so it
   sits flush against the last typed character. */
.live-lead-typewriter .tw-cursor {
  display: inline;
  font-weight: 300;
  color: var(--gold-deep, #b97a14);
  animation: tw-blink 1.05s steps(2, start) infinite;
  text-shadow:
    0 0 6px rgba(228, 158, 34, 0.55),
    0 0 12px rgba(228, 158, 34, 0.30);
  margin-left: 1px;
}

.live-lead-typewriter.is-done .tw-cursor {
  animation: tw-blink 1.4s ease-in-out infinite;
  opacity: 0.55;
}

@keyframes tw-blink {
  0%, 49%   { opacity: 1; }
  50%, 100% { opacity: 0; }
}

.live-lead-typewriter.is-typing .tw-text {
  text-shadow:
    0 0 14px rgba(255, 255, 255, 0.18),
    0 0 28px rgba(228, 158, 34, 0.10);
  animation: tw-text-glow 2.4s ease-in-out infinite;
}

@keyframes tw-text-glow {
  0%, 100% {
    text-shadow:
      0 0 14px rgba(255, 255, 255, 0.18),
      0 0 28px rgba(228, 158, 34, 0.08);
  }
  50% {
    text-shadow:
      0 0 18px rgba(255, 255, 255, 0.28),
      0 0 36px rgba(228, 158, 34, 0.16);
  }
}

.live-lead-typewriter.is-done .tw-text {
  text-shadow: 0 0 12px rgba(228, 158, 34, 0.10);
  transition: text-shadow 0.6s ease;
}

/* ── PROPERTY LINE — only visible after typewriter finishes ──────── */
.property-line {
  transition: opacity 600ms ease, transform 600ms ease;
}
.property-line.is-hidden {
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  /* Reserve space — keep min-height equal to rendered height so layout
     doesn't jump when it appears */
  visibility: hidden;
}
.property-line.is-visible {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
}

/* ── INPUT FIELD: pre-interaction GOLD GLOW ──────────────────────── */
.live-chat.awaiting-input {
  position: relative;
}

.live-chat.awaiting-input .live-chat-input {
  position: relative;
  box-shadow:
    0 0 0 1px rgba(228, 158, 34, 0.35),
    0 0 24px rgba(228, 158, 34, 0.18),
    0 0 56px rgba(228, 158, 34, 0.08);
  animation: input-breathing-glow 2.6s ease-in-out infinite;
  border-radius: 14px;
  transition: box-shadow 0.4s ease;
}

.live-chat.awaiting-input .live-chat-input input {
  background: rgba(255, 255, 255, 0.025);
}

.live-chat.awaiting-input .live-chat-input input::placeholder {
  color: rgba(255, 255, 255, 0.42);
  font-weight: 500;
}

@keyframes input-breathing-glow {
  0%, 100% {
    box-shadow:
      0 0 0 1px rgba(228, 158, 34, 0.30),
      0 0 18px rgba(228, 158, 34, 0.14),
      0 0 42px rgba(228, 158, 34, 0.06);
  }
  50% {
    box-shadow:
      0 0 0 1px rgba(228, 158, 34, 0.55),
      0 0 32px rgba(228, 158, 34, 0.32),
      0 0 70px rgba(228, 158, 34, 0.14);
  }
}

.live-chat.has-interacted .live-chat-input {
  animation: none;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.06);
}

/* ── CTA POINTER — "Type here ↓" floats above input field ────────── */
.live-chat-cta-arrow {
  position: absolute;
  bottom: 70px;
  right: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  pointer-events: none;
  z-index: 5;
  animation: cta-arrow-float 2.2s ease-in-out infinite;
}

.cta-arrow-text {
  font-size: 12px;
  font-weight: 600;
  color: var(--gold, #E49E22);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-shadow: 0 0 12px rgba(228, 158, 34, 0.4);
  white-space: nowrap;
  background: rgba(20, 20, 20, 0.85);
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(228, 158, 34, 0.35);
  backdrop-filter: blur(6px);
}

.cta-arrow-icon {
  font-size: 22px;
  line-height: 1;
  color: var(--gold, #E49E22);
  text-shadow:
    0 0 10px rgba(228, 158, 34, 0.6),
    0 0 22px rgba(228, 158, 34, 0.3);
  font-weight: 700;
}

@keyframes cta-arrow-float {
  0%, 100% { transform: translateY(0); opacity: 0.85; }
  50%      { transform: translateY(6px); opacity: 1; }
}

.live-chat-input button.pulse-once {
  animation: send-pulse 1.4s ease-in-out infinite;
}

@keyframes send-pulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(228, 158, 34, 0.4);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 0 0 6px rgba(228, 158, 34, 0);
    transform: scale(1.06);
  }
}

/* ════════════════════════════════════════════════════════════════════
   LIVE-SUGGESTIONS — "Click me!" badge floating LEFT of the panel.
   Absolutely positioned so it doesn't affect layout of the suggestions.
   ════════════════════════════════════════════════════════════════════ */

.live-suggestions {
  position: relative;  /* anchor for absolute clickme */
}

.live-sug-clickme {
  position: absolute;
  /* Sit to the left of the suggestions, vertically near the title */
  right: calc(100% + 4px);
  top: -4px;
  display: flex;
  align-items: center;
  gap: 4px;
  color: var(--gold-deep, #b97a14);
  pointer-events: none;
  z-index: 2;
  animation: sug-clickme-bounce 2.6s ease-in-out infinite;
}

.live-sug-clickme-text {
  font-family: 'Caveat', 'Patrick Hand', cursive;
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  transform: rotate(-6deg);
  text-shadow: 0 0 8px rgba(185, 122, 20, 0.18);
}

.live-sug-clickme-arrow {
  display: block;
  filter: drop-shadow(0 1px 2px rgba(185, 122, 20, 0.20));
  margin-top: 6px;  /* nudge so the arrow points roughly to the first button */
}

@keyframes sug-clickme-bounce {
  0%, 100% { transform: translateX(0); }
  50%      { transform: translateX(-4px); }
}

/* Hide the click-me on screens too narrow to fit it (it would overlap content) */
@media (max-width: 1100px) {
  .live-sug-clickme {
    display: none;
  }
}

/* ════════════════════════════════════════════════════════════════════
   MOBILE — Pill-strip below input (instead of suggestions panel above)
   ════════════════════════════════════════════════════════════════════ */

.live-chat-pills {
  display: none;  /* desktop hides it — only shows on mobile via media query */
}

@media (max-width: 768px) {
  /* Desktop suggestions hidden on mobile */
  .live-suggestions {
    display: none;
  }
  
  /* Mobile pill strip — visible & polished */
  .live-chat-pills {
    display: block;
    padding: 14px 14px 6px;
    background: rgba(20, 16, 12, 0.02);
    border-top: 1px solid rgba(20, 16, 12, 0.08);
  }
  
  .live-chat-pills-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.10em;
    text-transform: uppercase;
    color: var(--gold-deep, #b97a14);
    margin-bottom: 8px;
  }
  
  /* Marquee viewport — clips overflow, fades edges so pills feel infinite */
  .live-chat-pills-marquee {
    overflow: hidden;
    padding-bottom: 6px;
    /* Soft fade-mask at left + right edges for premium look */
    -webkit-mask-image: linear-gradient(to right, transparent 0, black 5%, black 95%, transparent 100%);
            mask-image: linear-gradient(to right, transparent 0, black 5%, black 95%, transparent 100%);
  }
  
  /* Track holds the doubled list — animates left endlessly */
  .live-chat-pills-track {
    display: inline-flex;
    gap: 8px;
    /* Width = sum of both halves; we translate by -50% = exactly one set, perfectly seamless */
    animation: pills-marquee 28s linear infinite;
    will-change: transform;
  }
  
  /* Pause when user touches/hovers a pill — friendlier UX */
  .live-chat-pills-marquee:hover .live-chat-pills-track,
  .live-chat-pills-track:active {
    animation-play-state: paused;
  }
  
  @keyframes pills-marquee {
    0%   { transform: translate3d(0, 0, 0); }
    100% { transform: translate3d(-50%, 0, 0); }
  }
  
  @media (prefers-reduced-motion: reduce) {
    .live-chat-pills-track {
      animation: none;
    }
    .live-chat-pills-marquee {
      overflow-x: auto;
      scrollbar-width: none;
    }
    .live-chat-pills-marquee::-webkit-scrollbar { display: none; }
  }
  
  .live-chat-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
    padding: 9px 14px;
    background: rgba(20, 16, 12, 0.04);
    border: 1px solid rgba(185, 122, 20, 0.35);
    border-radius: 999px;
    font-size: 13px;
    font-weight: 500;
    color: var(--ink, #1a1612);
    cursor: pointer;
    transition: background 0.15s ease, border-color 0.15s ease, transform 0.1s ease;
    white-space: nowrap;
  }
  
  .live-chat-pill:hover:not(:disabled) {
    background: rgba(228, 158, 34, 0.10);
    border-color: rgba(185, 122, 20, 0.6);
  }
  
  .live-chat-pill:active {
    transform: scale(0.97);
  }
  
  .live-chat-pill:disabled {
    opacity: 0.5;
    cursor: not-allowed;
  }
  
  .live-chat-pill .emoji {
    font-size: 14px;
    flex-shrink: 0;
  }
  
  .live-chat-pill .pill-text {
    white-space: nowrap;
  }
  
  /* CTA arrow weniger groß auf mobile */
  .live-chat-cta-arrow {
    bottom: 64px;
    right: 14px;
  }
  .cta-arrow-text {
    font-size: 10px;
    padding: 3px 8px;
  }
  .cta-arrow-icon {
    font-size: 18px;
  }
  
  /* Hand-drawn arrow auf mobile sowieso versteckt da Suggestions-Panel weg ist */
  .live-sug-arrow {
    display: none;
  }
}

/* ════════════════════════════════════════════════════════════════════
   STRINGS CANVAS — animated golden flowing strings background
   ════════════════════════════════════════════════════════════════════ */

.hero-strings-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  /* Soft mask so strings fade at vertical edges */
  mask-image: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(0,0,0,1) 12%,
    rgba(0,0,0,1) 88%,
    transparent 100%
  );
  -webkit-mask-image: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(0,0,0,1) 12%,
    rgba(0,0,0,1) 88%,
    transparent 100%
  );
}

/* Honeycomb stays above the canvas but below content */
.hero .hero-honeycomb {
  z-index: 2;
}

.hero .container {
  position: relative;
  z-index: 3;
}

/* Mobile: canvas can be slightly muted (battery) */
@media (max-width: 768px) {
  .hero-strings-canvas {
    opacity: 0.85;
  }
}


/* ════════════════════════════════════════════════════════════════════
   HERO BG VIDEO — fullscreen video with cream-fade top/bottom overlays
   
   Video color analysis:
   • Top 10%: #b79672 (sandy darker)
   • Middle:  #edd5b2 (warm cream — close to our #faf6ed)
   • Bottom:  #bc9e7f (sandy darker)
   
   Solution: cream gradient overlays at top + bottom that fade the video
   into the landing page background seamlessly. Middle stays untouched.
   ════════════════════════════════════════════════════════════════════ */

.hero-bg-video-stage {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-bg-video {
  position: absolute;
  top: 50%;
  left: 50%;
  /* cover the whole hero — translate to center, scale to fit */
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate3d(-50%, -50%, 0);
  object-fit: cover;
  /* Subtle warm tint matching our brand — boost saturation a hair */
  filter: saturate(1.05) brightness(1.02);
  will-change: transform, opacity;
  /* Crossfade between A and B */
  opacity: 0;
  transition: opacity 1.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-bg-video.is-active {
  opacity: 1;
}

/* A starts visible immediately, no fade in */
.hero-bg-video-a.is-active {
  /* No transition delay — immediate appearance */
}

/* ── Cream fade overlays (top + bottom) ──────────────────────── */

.hero-bg-video-fade {
  position: absolute;
  left: 0;
  right: 0;
  pointer-events: none;
  z-index: 1;
}

.hero-bg-video-fade-top {
  top: 0;
  height: 50%;
  background: linear-gradient(
    to bottom,
    /* Solid cream at the very top — same as landing bg */
    rgba(250, 246, 237, 1.0)  0%,
    rgba(250, 246, 237, 0.97) 15%,
    rgba(250, 246, 237, 0.88) 35%,
    rgba(250, 246, 237, 0.70) 55%,
    rgba(250, 246, 237, 0.45) 75%,
    rgba(250, 246, 237, 0.20) 90%,
    rgba(250, 246, 237, 0.0)  100%
  );
}

.hero-bg-video-fade-bottom {
  bottom: 0;
  height: 35%;
  background: linear-gradient(
    to top,
    /* Solid cream at the very bottom */
    rgba(250, 246, 237, 1.0) 0%,
    rgba(250, 246, 237, 0.96) 15%,
    rgba(250, 246, 237, 0.82) 35%,
    rgba(250, 246, 237, 0.50) 60%,
    rgba(250, 246, 237, 0.20) 82%,
    rgba(250, 246, 237, 0.0)  100%
  );
}

/* When video is on, raise honeycomb above video (z-index reordering) */
.hero-video-on .hero-honeycomb {
  z-index: 2;
  /* Make honeycomb softer over the video so it doesn't clutter */
  opacity: 0.25;
}

.hero-video-on .container {
  position: relative;
  z-index: 4;
}

.hero-video-on .hero-strings-canvas {
  z-index: 3;
}

/* Mobile: video might be heavy — still autoplay but lower priority */
@media (max-width: 768px) {
  .hero-bg-video {
    /* On small screens, video can crop more aggressively */
    filter: saturate(1.05) brightness(1.04);
  }
  .hero-bg-video-fade-top {
    height: 45%;
  }
  .hero-bg-video-fade-bottom {
    height: 30%;
  }
}

/* Reduced motion: pause video (browsers should handle this but explicit is good) */
@media (prefers-reduced-motion: reduce) {
  .hero-bg-video {
    /* Cannot pause via CSS — JS would need to handle it. For now just dim it. */
    opacity: 0.85;
  }
}


/* ════════════════════════════════════════════════════════════════════
   CALENDAR — Mobile reduction
   On phones the dense desktop calendar feels claustrophobic.
   Strategy: show only the FIRST property, and only the SELECTED month.
   Property card and the chosen month stack vertically with breathing room.
   ════════════════════════════════════════════════════════════════════ */

@media (max-width: 768px) {
  /* Only the first property row is shown */
  .ghcal-rows .ghcal-row:not(:first-child) {
    display: none;
  }
  
  /* Stack property card on top, month strip below */
  .ghcal-row {
    grid-template-columns: 1fr !important;
    gap: 16px;
  }
  
  /* Property card: tighten + center content */
  .ghcal-prop-card {
    padding: 16px 18px;
  }
  
  /* The 3-month strip becomes a single visible month */
  .ghcal-months {
    grid-template-columns: 1fr !important;
    gap: 0;
  }
  
  /* Hide non-selected months on mobile — only selected one is visible */
  .ghcal-month:not(.selected) {
    display: none;
  }
  
  .ghcal-month.selected {
    /* Single month full-width, comfortable padding */
    padding-bottom: 6px;
  }
  
  /* Month picker: small inline tabs ABOVE the month so user can switch */
  .ghcal-row::before {
    /* Reserved — inline tabs added via JSX would go here. For now use
       a visible hint so users know to tap the picker. */
  }
  
  /* Month picker as horizontal pill row injected via existing months array.
     Show small rounded tab triggers for the months that are hidden */
  .ghcal-months::before {
    content: '';
    display: block;
  }
  
  /* Hint text smaller on mobile */
  .ghcal-hint {
    font-size: 12px;
    text-align: center;
    margin-top: 14px;
    padding: 0 10px;
  }
  
  /* Topbar: stack legend below filter pills */
  .ghcal-topbar {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }
  
  .ghcal-topbar-right {
    flex-wrap: wrap;
    gap: 6px;
  }
  
  /* Stats donut + price stack better */
  .ghcal-prop-stats {
    gap: 12px;
  }
  
  /* Day cells: bigger touch targets */
  .ghcal-day {
    font-size: 11px;
  }
  
  .ghcal-bar span {
    font-size: 9px;
  }
}


/* ── Mobile-only month picker (hidden on desktop) ────────────────── */
.ghcal-month-picker {
  display: none;
}

@media (max-width: 768px) {
  .ghcal-month-picker {
    display: flex;
    gap: 6px;
    margin-bottom: 4px;
    justify-content: center;
  }
  
  .ghcal-month-picker-btn {
    flex: 1;
    padding: 8px 12px;
    background: var(--surface, #fff);
    border: 1px solid var(--line, rgba(0,0,0,0.08));
    border-radius: 10px;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 700;
    color: var(--ink-3, #6b6b6b);
    cursor: pointer;
    transition: all 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 0.04em;
  }
  
  .ghcal-month-picker-btn.active {
    background: linear-gradient(180deg, rgba(228,158,34,0.15) 0%, rgba(228,158,34,0.05) 100%);
    border-color: var(--gold, #E49E22);
    color: var(--gold-deep, #b97a14);
    box-shadow: 0 2px 8px rgba(228,158,34,0.2);
  }
  
  .ghcal-month-picker-btn:active {
    transform: scale(0.97);
  }
}



/* ════════════════════════════════════════════════════════════════════
   SMART LOCKS — mobile polish
   • Live Status takes full width of panel
   • Live-status icon larger so it's not squashed
   • All cards have consistent padding + same internal spacing
   • Action buttons larger touch targets
   ════════════════════════════════════════════════════════════════════ */

@media (max-width: 768px) {
  /* Panel: zero side margin, full container width */
  .locks-panel {
    margin: 0;
    border-radius: 16px;
  }
  
  .locks-panel-head {
    padding: 14px 14px;
  }
  
  /* Body: minimal padding so cards stretch wide */
  .locks-panel-body {
    padding: 10px 10px 12px;
    gap: 10px;
  }
  
  /* Cards: tight padding, MAX width inside body */
  .locks-card {
    padding: 14px;
    width: 100%;
    box-sizing: border-box;
  }
  
  /* Live status: bigger icon, more breathing room */
  .locks-status-row {
    gap: 14px;
    margin-bottom: 16px;
  }
  
  .locks-status-icon {
    width: 64px;
    height: 64px;
    font-size: 32px;
  }
  
  .locks-status-text {
    font-size: 19px;
  }
  
  .locks-status-sub {
    font-size: 13px;
  }
  
  /* Battery row: bigger label/pct */
  .locks-battery-row {
    font-size: 13px;
    margin-bottom: 8px;
  }
  
  .locks-battery-bar {
    height: 10px;
  }
  
  /* Action buttons: bigger, friendlier on touch */
  .locks-actions {
    gap: 10px;
  }
  
  .locks-action {
    padding: 12px 4px;
    font-size: 12px;
    min-height: 64px;
  }
  
  .locks-action span:first-child {
    font-size: 22px;
  }
  
  /* Pin code card */
  .locks-pin-row {
    gap: 8px;
    margin-bottom: 10px;
  }
  
  .locks-pin-name {
    font-size: 15px;
  }
  
  .locks-pin-meta {
    font-size: 12px;
  }
  
  .locks-pin-code {
    padding: 12px 14px;
  }
  
  .locks-pin-value {
    font-size: 18px;
    letter-spacing: 0.18em;
  }
  
  /* Events */
  .locks-event {
    padding: 10px 12px;
    font-size: 12.5px;
    gap: 8px;
  }
  
  .locks-event-time {
    font-size: 11px;
  }
  
  /* Replay button bigger */
  .locks-replay {
    padding: 12px 18px;
    font-size: 13px;
  }
  
  .locks-cta-row {
    flex-wrap: wrap;
    gap: 10px;
  }
}
