/* Leazbee – redesigned marketing site
   Built on Leazbee Design System: Roboto, #0057ff accent, monochrome surfaces,
   pills + soft 16–28px radii, hairline borders, soft generous shadows. */

@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700;900&family=Roboto+Mono:wght@400;500&display=swap");

:root {
  --blue:        #0057ff;
  --blue-hover:  #0050bd;
  --blue-soft:   #eaf0ff;
  --blue-soft-2: #d4e0ff;
  --blue-deep:   #002f8a;

  --ink:         #000;
  --ink-2:       #1a1a1a;
  --ink-3:       #222;
  --muted:       #5d6c7b;
  --subtle:      #8b95a1;
  --soft:        #c9d1da;

  --bg:          #ffffff;
  --bg-muted:    #f5f5f5;
  --bg-tint:     #fafafa;
  --bg-paper:    #f7f8fa;

  --line-subtle: #eee;
  --line:        #e2e2e2;
  --line-strong: #cccccc;

  --green:       #4b8251;
  --green-soft:  #e4f0e6;
  --amber:       #f59e0b;
  --red:         #ea384c;

  --rad-pill: 999px;
  --rad-sm: 10px;
  --rad-md: 12px;
  --rad-lg: 16px;
  --rad-xl: 20px;
  --rad-2xl: 28px;

  --shadow-xs: 0 1px 2px rgba(0,0,0,.04);
  --shadow-sm: 0 1px 3px rgba(0,0,0,.05);
  --shadow-md: 0 8px 24px -8px rgba(0,0,0,.10), 0 2px 6px -2px rgba(0,0,0,.04);
  --shadow-lg: 0 24px 48px -12px rgba(0,0,0,.14), 0 8px 16px -8px rgba(0,0,0,.06);
  --shadow-xl: 0 48px 96px -16px rgba(0,0,0,.18), 0 12px 24px -12px rgba(0,0,0,.08);

  --container: 1240px;
  --content: 720px;

  --ease: cubic-bezier(.2,0,0,1);
}

* { box-sizing: border-box; }
html, body, #root { margin: 0; padding: 0; min-height: 100%; }
body {
  font-family: "Roboto", -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 16px;
  line-height: 1.5;
}
a { color: inherit; text-decoration: none; cursor: pointer; }
button { font-family: inherit; }
img, svg { display: block; max-width: 100%; }

::selection { background: var(--blue-soft-2); color: var(--ink); }

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

/* ───────────────────── Atoms ───────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 22px; font-size: 15px; font-weight: 500; line-height: 1.2;
  color: #fff; background: var(--ink); border: 1px solid transparent;
  border-radius: var(--rad-pill); cursor: pointer; white-space: nowrap;
  transition: background-color 160ms var(--ease), color 160ms var(--ease),
              transform 120ms var(--ease), box-shadow 200ms var(--ease),
              border-color 160ms var(--ease);
  text-decoration: none;
}
.btn:hover  { background: var(--ink-3); }
.btn:active { transform: translateY(1px); }
.btn--primary  { background: var(--blue); }
.btn--primary:hover  { background: var(--blue-hover); }
.btn--secondary { background: transparent; color: var(--ink); border-color: var(--line-strong); }
.btn--secondary:hover { background: var(--bg-muted); }
.btn--ghost { background: transparent; color: var(--ink); }
.btn--ghost:hover { background: var(--bg-muted); }
.btn--ghost-light { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,.20); }
.btn--ghost-light:hover { background: rgba(255,255,255,.08); }
.btn--soft  { background: var(--blue-soft); color: var(--blue); }
.btn--soft:hover  { background: var(--blue-soft-2); }
.btn--white { background: #fff; color: var(--ink); }
.btn--white:hover { background: var(--bg-muted); }
.btn--invert-blue { background: #fff; color: var(--blue); }
.btn--invert-blue:hover { background: var(--blue-soft); }
.btn--sm { padding: 9px 16px; font-size: 13px; }
.btn--lg { padding: 17px 30px; font-size: 16px; }

.eyebrow {
  font-size: 12px; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--blue);
  display: inline-flex; align-items: center; gap: 8px;
}
.eyebrow::before {
  content: ""; width: 18px; height: 1px; background: currentColor;
}
.eyebrow--no-rule::before { display: none; }
.eyebrow--muted { color: var(--muted); }
.eyebrow--on-dark { color: #6e93ff; }

.badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 4px 10px; font-size: 11px; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase; line-height: 1.4;
  color: var(--ink-3); background: var(--bg-muted); border-radius: var(--rad-pill);
}
.badge--accent  { background: var(--blue-soft); color: var(--blue); }
.badge--success { background: var(--green-soft); color: var(--green); }
.badge--solid   { background: var(--ink); color: #fff; }
.badge--dot::before { content: ""; width: 6px; height: 6px; border-radius: 999px; background: currentColor; }

.kbd {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 18px; height: 18px; padding: 0 5px;
  font-family: "Roboto Mono", monospace; font-size: 11px; color: var(--muted);
  background: var(--bg-muted); border: 1px solid var(--line-subtle);
  border-radius: 5px;
}

.link-arrow {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--blue); font-weight: 500; font-size: 14px;
}
.link-arrow svg { transition: transform 160ms var(--ease); }
.link-arrow:hover svg { transform: translateX(3px); }
.link-arrow--on-dark { color: #8aa9ff; }

/* ───────────────────── Brand mark ───────────────────── */
.brand {
  display: inline-flex; align-items: center; gap: 10px;
  font-weight: 900; letter-spacing: 0.04em; font-size: 18px; color: var(--ink);
}
.brand-mark {
  width: 22px; height: 22px;
  display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: 1fr 1fr; gap: 2px;
  color: currentColor;
}
.brand-mark > span { background: currentColor; border-radius: 1px; }
.brand--inverse { color: #fff; }

/* ───────────────────── Top bar / Nav ───────────────────── */
.topbar {
  background: var(--ink);
  color: rgba(255,255,255,.78);
  font-size: 12.5px;
  letter-spacing: 0.02em;
}
.topbar__inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 36px; gap: 16px;
}
.topbar__strip { display: inline-flex; align-items: center; gap: 10px; }
.topbar__dot { width: 6px; height: 6px; border-radius: 999px; background: var(--green); box-shadow: 0 0 0 4px rgba(75,130,81,.18); }
.topbar a:hover { color: #fff; }
.topbar__sep { width: 1px; height: 14px; background: rgba(255,255,255,.16); }

.nav {
  position: sticky; top: 0; z-index: 60;
  background: rgba(255,255,255,.88);
  backdrop-filter: blur(12px) saturate(140%);
  -webkit-backdrop-filter: blur(12px) saturate(140%);
  border-bottom: 1px solid var(--line-subtle);
}
.nav__inner {
  display: flex; align-items: center; gap: 32px;
  height: 68px;
}
.nav__brand { flex-shrink: 0; }
.nav__links {
  display: flex; align-items: center; gap: 2px; list-style: none; margin: 0; padding: 0;
}
.nav__item { position: relative; }
.nav__link {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 14px; border-radius: var(--rad-pill);
  font-size: 14px; font-weight: 500; color: var(--ink-3);
  cursor: pointer; background: transparent; border: 0;
  transition: background-color 120ms var(--ease), color 120ms var(--ease);
}
.nav__link:hover { background: var(--bg-muted); color: var(--ink); }
.nav__item--open > .nav__link { background: var(--bg-muted); color: var(--ink); }
.nav__chev { transition: transform 200ms var(--ease); }
.nav__item--open .nav__chev { transform: rotate(180deg); }

.nav__spacer { flex: 1; }
.nav__actions { display: flex; align-items: center; gap: 6px; }

/* Mega menu */
.mega {
  position: absolute; top: calc(100% + 12px); left: 50%; transform: translateX(-50%);
  width: 720px; max-width: calc(100vw - 32px);
  background: #fff; border: 1px solid var(--line-subtle);
  border-radius: var(--rad-xl);
  box-shadow: var(--shadow-lg);
  padding: 12px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 4px;
  opacity: 0; pointer-events: none; transform: translate(-50%, -4px);
  transition: opacity 160ms var(--ease), transform 200ms var(--ease);
  z-index: 60;
}
.nav__item--open .mega { opacity: 1; pointer-events: auto; transform: translate(-50%, 0); }
.mega__title {
  grid-column: 1 / -1;
  font-size: 11px; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.12em; color: var(--muted);
  padding: 12px 12px 8px;
}
.mega__item {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 12px; border-radius: var(--rad-md);
  cursor: pointer;
  transition: background-color 120ms var(--ease);
}
.mega__item:hover { background: var(--bg-muted); }
.mega__icon {
  width: 32px; height: 32px; flex-shrink: 0;
  border-radius: 8px; background: var(--blue-soft); color: var(--blue);
  display: inline-flex; align-items: center; justify-content: center;
}
.mega__head { font-weight: 500; font-size: 14px; color: var(--ink); line-height: 1.3; }
.mega__head--row { display: flex; align-items: center; gap: 6px; }
.mega__sub { font-size: 12px; color: var(--muted); line-height: 1.45; margin-top: 2px; }
.mega__footer {
  grid-column: 1 / -1;
  display: flex; align-items: center; justify-content: space-between;
  margin-top: 4px; padding: 14px 12px 6px;
  border-top: 1px solid var(--line-subtle);
  font-size: 13px; color: var(--muted);
}

/* ───────────────────── Sections ───────────────────── */
.section { padding: 112px 0; position: relative; }
.section--tight { padding: 80px 0; }
.section--muted { background: var(--bg-muted); }
.section--paper { background: var(--bg-paper); }
.section--inverse { background: var(--ink); color: #fff; }
.section--inverse .muted { color: var(--soft); }

.section__head { max-width: 760px; margin: 0 auto 64px; text-align: center; }
.section__head--left { text-align: left; margin: 0 0 56px; max-width: 720px; }
.section__head h2 {
  font-size: 56px; line-height: 1.04; font-weight: 900; letter-spacing: -0.025em;
  margin: 14px 0 16px; text-wrap: balance;
}
.section__head p {
  font-size: 18px; line-height: 1.55; color: var(--muted); margin: 0;
  text-wrap: pretty;
}
.section--inverse .section__head h2 { color: #fff; }
.section--inverse .section__head p { color: var(--soft); }

.h-disp { font-weight: 900; letter-spacing: -0.025em; line-height: 1.04; }

.eyebrow-row { display: flex; align-items: center; justify-content: space-between; gap: 24px; }

/* ───────────────────── Hero ───────────────────── */
.hero {
  position: relative;
  background: var(--ink);
  color: #fff;
  overflow: hidden;
  padding: 96px 0 0;
}
.hero__grid {
  position: relative;
  display: grid; grid-template-columns: 1.05fr 1fr; gap: 64px;
  align-items: end;
}
.hero__col {}
.hero__eyebrow { color: #6e93ff; }
.hero h1 {
  font-size: 80px; line-height: 0.98; font-weight: 900;
  letter-spacing: -0.03em; margin: 20px 0 24px;
  text-wrap: balance;
}
.hero h1 .accent { color: var(--blue); }
.hero__lede { font-size: 19px; line-height: 1.55; color: #cccccc; max-width: 540px; margin: 0; }
.hero__ctas { display: flex; gap: 12px; margin-top: 36px; flex-wrap: wrap; }

.hero__form {
  margin-top: 28px;
  display: flex; gap: 8px; padding: 6px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: var(--rad-pill);
  max-width: 480px;
}
.hero__form input {
  flex: 1; background: transparent; border: 0; outline: 0;
  color: #fff; font: inherit; font-size: 14px; padding: 8px 14px;
}
.hero__form input::placeholder { color: #6f7a86; }
.hero__form .btn { flex-shrink: 0; }

.hero__stats {
  margin: 56px 0 0;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
  border-top: 1px solid rgba(255,255,255,.10);
  padding-top: 28px;
}
.hero__stat { padding-right: 16px; }
.hero__stat-value {
  font-size: 32px; font-weight: 900; letter-spacing: -0.02em; line-height: 1;
  color: #fff; display: flex; align-items: baseline; gap: 4px;
}
.hero__stat-value sup { font-size: 16px; font-weight: 700; color: var(--blue); }
.hero__stat-label {
  margin-top: 8px;
  font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase;
  color: #8b95a1;
}

/* Hero product mock (right column) */
.hero__art {
  position: relative;
  padding-bottom: 72px;
}
.hero__art-glow {
  position: absolute; inset: -40px -40px 0 -40px;
  background: radial-gradient(60% 60% at 70% 30%, rgba(0,87,255,.45), transparent 60%);
  filter: blur(40px);
  pointer-events: none;
}
.hero__panel {
  position: relative;
  background: #fff; color: var(--ink);
  border-radius: var(--rad-2xl);
  box-shadow: 0 40px 80px -12px rgba(0,0,0,.5), 0 20px 30px -10px rgba(0,87,255,.3);
  overflow: hidden;
  z-index: 1;
}
.hero__panel-head {
  display: flex; align-items: center; gap: 8px;
  padding: 14px 18px; border-bottom: 1px solid var(--line-subtle);
}
.hero__panel-dot { width: 10px; height: 10px; border-radius: 999px; background: var(--line); }
.hero__panel-dot--green { background: var(--green); }
.hero__panel-url {
  margin-left: 12px;
  flex: 1;
  background: var(--bg-muted);
  border-radius: 999px;
  font-size: 12px; color: var(--muted);
  padding: 5px 12px;
  display: flex; align-items: center; gap: 6px;
}
.hero__panel-body { padding: 20px; }

.hero__floating {
  position: absolute; z-index: 2;
  background: #fff; color: var(--ink);
  border-radius: var(--rad-lg);
  box-shadow: var(--shadow-xl);
  padding: 14px 16px;
  display: flex; align-items: center; gap: 12px;
  min-width: 240px;
}
.hero__floating--a {
  left: -48px; bottom: 130px;
  animation: floatA 6s var(--ease) infinite alternate;
}
.hero__floating--b {
  right: -36px; top: 60px;
  animation: floatB 7s var(--ease) infinite alternate;
}
@keyframes floatA {
  from { transform: translateY(0); }
  to   { transform: translateY(-10px); }
}
@keyframes floatB {
  from { transform: translateY(0); }
  to   { transform: translateY(8px); }
}
.hero__float-icon {
  width: 38px; height: 38px; border-radius: 10px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--blue); color: #fff; flex-shrink: 0;
}
.hero__float-icon--green { background: var(--green-soft); color: var(--green); }
.hero__float-title { font-size: 13px; font-weight: 700; line-height: 1.2; }
.hero__float-sub { font-size: 11px; color: var(--muted); margin-top: 2px; }

/* Logos rail */
.logos {
  margin: 0; padding: 28px 0;
  border-top: 1px solid rgba(255,255,255,.10);
  display: grid; grid-template-columns: auto repeat(6, 1fr); gap: 32px;
  align-items: center;
}
.logos__label { color: #8b95a1; font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; }
.logos__brand {
  color: #c9d1da; font-weight: 700; letter-spacing: 0.08em; font-size: 14px;
  text-align: center; opacity: .8; transition: opacity 200ms;
}
.logos__brand:hover { opacity: 1; }

/* ───────────────────── Featured Solutions (Screening / Leasing / AI Concierge) ───────────────────── */
.solutions {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
}
.sol-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--line-subtle);
  border-radius: var(--rad-xl);
  padding: 28px;
  display: flex; flex-direction: column; gap: 16px;
  transition: box-shadow 220ms var(--ease), transform 220ms var(--ease), border-color 220ms;
  overflow: hidden;
  min-height: 480px;
}
.sol-card:hover {
  border-color: var(--ink);
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}
.sol-card__head { display: flex; justify-content: space-between; align-items: flex-start; gap: 12px; }
.sol-card__icon {
  width: 40px; height: 40px; border-radius: 10px;
  background: var(--ink); color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
}
.sol-card__num {
  font-family: "Roboto Mono", monospace;
  font-size: 12px; color: var(--muted);
}
.sol-card h3 {
  font-size: 26px; font-weight: 700; letter-spacing: -0.015em; line-height: 1.15;
  margin: 0;
}
.sol-card__body { color: var(--muted); font-size: 14.5px; line-height: 1.55; margin: 0; }
.sol-card__art {
  margin-top: auto;
  background: var(--bg-paper);
  border: 1px solid var(--line-subtle);
  border-radius: var(--rad-md);
  padding: 14px;
  min-height: 160px;
  position: relative;
  overflow: hidden;
}
.sol-card__foot {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 4px;
}
.sol-card__bullets {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-wrap: wrap; gap: 6px;
}
.sol-card__bullets li {
  font-size: 11px; font-weight: 500;
  background: var(--bg-muted); color: var(--ink-3);
  padding: 4px 10px; border-radius: 999px;
}

/* ───────────────────── Intelligent (dark form) ───────────────────── */
.intelligent {
  background: var(--ink); color: #fff;
  border-radius: var(--rad-2xl);
  padding: 64px;
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 56px;
  align-items: center;
  position: relative; overflow: hidden;
}
.intelligent::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 20% 20%, rgba(0,87,255,.35) 0, transparent 35%),
    radial-gradient(circle at 80% 80%, rgba(0,87,255,.20) 0, transparent 30%);
  pointer-events: none;
}
.intelligent > * { position: relative; }
.intelligent__copy h2 {
  font-size: 46px; font-weight: 900; letter-spacing: -0.025em; line-height: 1.08;
  margin: 16px 0 20px;
}
.intelligent__copy h2 .accent { color: #6e93ff; }
.intelligent__copy p { font-size: 17px; color: var(--soft); line-height: 1.55; margin: 0 0 24px; max-width: 520px; }
.intelligent__bullets {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 10px;
}
.intelligent__bullets li {
  display: flex; gap: 10px; align-items: flex-start;
  font-size: 14px; color: #d6dde6;
}
.intelligent__bullets li::before {
  content: ""; width: 18px; height: 18px; border-radius: 999px;
  background: var(--blue); color: #fff; flex-shrink: 0;
  display: inline-block;
  background-image: linear-gradient(45deg, transparent 38%, #fff 38% 42%, transparent 42%),
                    linear-gradient(-45deg, transparent 45%, #fff 45% 50%, transparent 50%);
  background-size: 11px 11px, 11px 11px;
  background-position: 5px 7px, 8px 4px;
  background-repeat: no-repeat;
}

.intelligent__form {
  background: #fff; color: var(--ink);
  border-radius: var(--rad-xl);
  padding: 28px;
  box-shadow: 0 40px 80px -16px rgba(0,87,255,.3);
}
.intelligent__form h3 { font-size: 20px; margin: 0 0 4px; letter-spacing: -0.01em; font-weight: 700; }
.intelligent__form > p { font-size: 13px; color: var(--muted); margin: 0 0 20px; }
.field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
.field label { font-size: 12.5px; font-weight: 500; color: var(--ink-3); }
.field input, .field select, .field textarea {
  font: inherit; font-size: 15px;
  padding: 12px 14px;
  background: #fff;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: var(--rad-md);
  outline: none;
  transition: border-color 160ms var(--ease), box-shadow 160ms var(--ease);
}
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(0,87,255,.20);
}
.field--row { flex-direction: row; align-items: stretch; gap: 8px; }
.field--row input { flex: 1; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.intelligent__form .btn { width: 100%; margin-top: 6px; }
.intelligent__form .form-foot {
  margin-top: 14px; font-size: 12px; color: var(--muted);
  display: flex; align-items: center; gap: 8px;
}

/* ───────────────────── Capability rows (Property Management) ───────────────────── */
.cap-rows { display: flex; flex-direction: column; gap: 24px; }
.cap-row {
  display: grid; grid-template-columns: 1fr 1.05fr; gap: 64px;
  background: #fff;
  border: 1px solid var(--line-subtle);
  border-radius: var(--rad-2xl);
  padding: 56px;
  align-items: center;
  position: relative; overflow: hidden;
}
.cap-row:nth-child(even) { grid-template-columns: 1.05fr 1fr; }
.cap-row:nth-child(even) .cap-row__copy { order: 2; }
.cap-row:nth-child(even) .cap-row__art { order: 1; }

.cap-row__icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: var(--blue-soft); color: var(--blue);
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.cap-row__copy h3 {
  font-size: 36px; font-weight: 900; letter-spacing: -0.02em; line-height: 1.08;
  margin: 0 0 14px;
}
.cap-row__copy > p {
  font-size: 16.5px; line-height: 1.55; color: var(--muted); margin: 0 0 20px;
  text-wrap: pretty;
}
.cap-row__links { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 24px; }
.cap-row__tag-list {
  display: flex; flex-wrap: wrap; gap: 6px;
  margin-bottom: 24px;
}
.cap-row__tag {
  font-size: 12px; font-weight: 500;
  background: var(--bg-muted); color: var(--ink-3);
  padding: 6px 12px; border-radius: 999px;
}
.cap-row__tag--accent { background: var(--blue-soft); color: var(--blue); }

.cap-row__art {
  position: relative;
  min-height: 360px;
}

/* ───────────────────── Owner stat tiles (4-up grid) ───────────────────── */
.owner-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}
.owner-tile {
  background: #fff;
  border: 1px solid var(--line-subtle);
  border-radius: var(--rad-xl);
  padding: 32px;
  position: relative;
  display: flex; flex-direction: column; gap: 16px;
  min-height: 320px;
  overflow: hidden;
  transition: box-shadow 220ms var(--ease), transform 220ms var(--ease);
}
.owner-tile:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.owner-tile__head { display: flex; justify-content: space-between; align-items: flex-start; gap: 12px; }
.owner-tile__icon {
  width: 40px; height: 40px; border-radius: 10px;
  background: var(--ink); color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
}
.owner-tile h3 {
  font-size: 22px; font-weight: 700; letter-spacing: -0.015em;
  margin: 0; line-height: 1.2;
}
.owner-tile > p { font-size: 14.5px; line-height: 1.55; color: var(--muted); margin: 0; }
.owner-tile__metric {
  margin-top: auto; padding-top: 18px; border-top: 1px dashed var(--line-subtle);
  display: flex; align-items: baseline; gap: 12px;
}
.owner-tile__metric-value {
  font-size: 38px; font-weight: 900; letter-spacing: -0.025em; line-height: 1;
}
.owner-tile__metric-delta {
  font-size: 13px; font-weight: 700; color: var(--green);
  display: inline-flex; align-items: center; gap: 2px;
}
.owner-tile__metric-label {
  font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted);
  margin-left: auto;
}

/* ───────────────────── Stats strip ───────────────────── */
.stats-strip {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line-subtle);
  border-bottom: 1px solid var(--line-subtle);
}
.stats-strip__item { padding: 32px 0; border-right: 1px solid var(--line-subtle); }
.stats-strip__item:last-child { border-right: 0; }
.stats-strip__value { font-size: 56px; font-weight: 900; letter-spacing: -0.03em; line-height: 1; }
.stats-strip__label { font-size: 13px; color: var(--muted); margin-top: 12px; text-transform: uppercase; letter-spacing: 0.06em; font-weight: 500; }

/* ───────────────────── Expert services ───────────────────── */
.services {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
}
.service {
  background: #fff;
  border: 1px solid var(--line-subtle);
  border-radius: var(--rad-xl);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: box-shadow 220ms var(--ease), transform 220ms var(--ease);
}
.service:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.service__art {
  position: relative;
  aspect-ratio: 4 / 3;
  background: var(--bg-muted);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.service__art::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,.10));
}
.service__num {
  position: absolute; top: 12px; left: 12px;
  font-family: "Roboto Mono", monospace; font-size: 11px;
  background: rgba(0,0,0,.7); color: #fff;
  padding: 4px 8px; border-radius: 999px;
  z-index: 1;
}
.service__body { padding: 22px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.service h3 { font-size: 18px; font-weight: 700; margin: 0; letter-spacing: -0.01em; }
.service p { font-size: 13.5px; color: var(--muted); line-height: 1.55; margin: 0; flex: 1; }
.service .link-arrow { margin-top: 6px; }

/* Service art illustrations (CSS only) */
.svc-illust { position: absolute; inset: 0; }

/* ───────────────────── Resources ───────────────────── */
.resources {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}
.res-card {
  background: #fff;
  border: 1px solid var(--line-subtle);
  border-radius: var(--rad-xl);
  padding: 32px;
  display: grid; grid-template-columns: 1fr auto; gap: 24px;
  align-items: end;
  min-height: 260px;
  position: relative; overflow: hidden;
  transition: box-shadow 220ms var(--ease), transform 220ms var(--ease);
}
.res-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.res-card__copy h3 { font-size: 28px; font-weight: 900; letter-spacing: -0.02em; margin: 8px 0 4px; }
.res-card__copy p { font-size: 14.5px; color: var(--muted); margin: 0 0 18px; }
.res-card__visual {
  width: 120px; aspect-ratio: 1;
  border-radius: var(--rad-md);
  display: flex; align-items: center; justify-content: center;
  color: #fff;
}

/* ───────────────────── CTA band ───────────────────── */
.cta-band {
  background: var(--blue);
  color: #fff;
  border-radius: var(--rad-2xl);
  padding: 72px;
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 48px;
  align-items: center;
  position: relative; overflow: hidden;
}
.cta-band::before {
  content: ""; position: absolute;
  width: 600px; height: 600px;
  right: -200px; bottom: -300px;
  background: radial-gradient(circle, rgba(255,255,255,.15) 0%, transparent 60%);
  pointer-events: none;
}
.cta-band__eyebrow { color: rgba(255,255,255,.7); }
.cta-band h2 { font-size: 48px; line-height: 1.05; font-weight: 900; letter-spacing: -0.025em; margin: 14px 0 16px; text-wrap: balance; }
.cta-band p { margin: 0; font-size: 17px; color: rgba(255,255,255,.85); max-width: 480px; }
.cta-band__actions { display: flex; gap: 12px; flex-wrap: wrap; justify-content: flex-end; }

/* ───────────────────── Testimonial ───────────────────── */
.testimonial {
  max-width: 980px; margin: 0 auto;
  display: grid; grid-template-columns: 60px 1fr 220px; gap: 32px;
  align-items: center;
}
.testimonial__quote-mark {
  font-family: serif; font-size: 96px; line-height: 0.6;
  color: var(--blue); font-weight: 900;
  align-self: flex-start;
}
.testimonial blockquote {
  font-size: 26px; line-height: 1.4; font-weight: 500; letter-spacing: -0.01em;
  margin: 0;
  text-wrap: pretty;
}
.testimonial__author { display: flex; align-items: center; gap: 12px; }
.testimonial__avatar { width: 44px; height: 44px; border-radius: 999px; overflow: hidden; flex-shrink: 0; }
.testimonial__avatar img { width: 100%; height: 100%; }
.testimonial__name { font-weight: 700; font-size: 14px; }
.testimonial__role { font-size: 12px; color: var(--muted); }

/* ───────────────────── Footer ───────────────────── */
.footer {
  background: var(--ink); color: #fff;
  padding: 88px 0 32px;
  position: relative; overflow: hidden;
}
.footer__top {
  display: grid; grid-template-columns: 1.4fr repeat(4, 1fr); gap: 48px;
  padding-bottom: 56px; border-bottom: 1px solid #222;
}
.footer__brand p { color: var(--soft); font-size: 14px; line-height: 1.6; max-width: 320px; margin: 16px 0 24px; }
.footer__social { display: flex; gap: 8px; }
.footer__social a {
  width: 36px; height: 36px; border-radius: 10px;
  background: rgba(255,255,255,.06);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--soft);
  transition: background-color 160ms, color 160ms;
}
.footer__social a:hover { background: rgba(255,255,255,.12); color: #fff; }

.footer__col h4 {
  font-size: 12px; font-weight: 500; text-transform: uppercase;
  letter-spacing: 0.14em; color: var(--subtle); margin: 0 0 18px;
}
.footer__col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; font-size: 14px; }
.footer__col a { color: #d6dde6; transition: color 120ms; }
.footer__col a:hover { color: #fff; }
.footer__col li.has-badge { display: flex; align-items: center; gap: 8px; }

/* Minimal centered footer */
.footer__min {
  display: flex; flex-direction: column; align-items: center;
  gap: 18px;
  padding: 64px 0 56px;
  border-bottom: 1px solid #222;
  text-align: center;
}
.footer__min-logo {
  cursor: pointer;
  display: inline-flex;
  opacity: 0.95;
  transition: opacity 200ms;
}
.footer__min-logo:hover { opacity: 1; }
.footer__min-tagline {
  color: var(--soft); font-size: 14px; line-height: 1.55;
  margin: 0; max-width: 480px;
}
.footer__min-links {
  display: inline-flex; gap: 24px; align-items: center;
  margin-top: 8px;
}
.footer__min-links a {
  font-size: 14px; color: #d6dde6; cursor: pointer;
  transition: color 120ms;
}
.footer__min-links a:hover { color: #fff; }
.footer__min-dot {
  width: 4px; height: 4px; border-radius: 999px;
  background: #333;
  display: inline-block;
}

.footer__mega {
  display: grid; grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 28px;
  padding: 56px 0;
  border-bottom: 1px solid #222;
}
.footer__mega-h {
  font-family: "Roboto", sans-serif;
  font-size: 88px; font-weight: 900; letter-spacing: -0.03em; line-height: 0.95;
  grid-column: 1 / 4;
  margin: 0;
}
.footer__mega-cta { align-self: end; }

.footer__bottom {
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px;
  padding-top: 32px; color: var(--subtle); font-size: 12px;
}
.footer__bottom-left { display: flex; align-items: center; gap: 12px; }
.footer__legal { display: flex; gap: 24px; }

/* ───────────────────── Embedded UI mocks ───────────────────── */
.mock {
  background: #fff;
  border-radius: var(--rad-lg);
  padding: 14px;
  box-shadow: var(--shadow-md);
  display: flex; flex-direction: column; gap: 10px;
  border: 1px solid var(--line-subtle);
}
.mock--inverse { background: var(--ink-3); color: #fff; }
.mock__head { display: flex; justify-content: space-between; align-items: center; }
.mock__breadcrumb { font-weight: 700; font-size: 13px; }
.mock__breadcrumb .crumb { color: var(--muted); font-weight: 400; }
.mock__tabs { display: flex; gap: 4px; flex-wrap: wrap; }
.mock__tab { padding: 5px 10px; font-size: 11px; font-weight: 500; color: var(--muted); border-radius: 999px; cursor: pointer; }
.mock__tab.is-active { background: var(--blue-soft); color: var(--blue); }
.mock__grid { display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 6px; }
.mock__card {
  position: relative;
  background: #fff;
  border: 1px solid var(--line-subtle);
  border-radius: 10px;
  padding: 10px;
  box-shadow: 0 1px 2px rgba(0,0,0,.03);
}
.mock__card--span2 { grid-row: span 2; }
.mock__check {
  position: absolute; top: 8px; right: 8px;
  width: 14px; height: 14px; border-radius: 999px; background: var(--blue);
  display: inline-flex; align-items: center; justify-content: center;
}
.mock__check::before { content: ""; width: 6px; height: 3px; border-left: 1.5px solid #fff; border-bottom: 1.5px solid #fff; transform: translateY(-1px) rotate(-45deg); }
.mock__label { font-size: 9px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.04em; }
.mock__value { font-size: 16px; font-weight: 700; letter-spacing: -0.02em; margin: 2px 0; }
.mock__sub { font-size: 9px; color: var(--subtle); }
.mock__profile { display: flex; gap: 8px; align-items: center; margin-bottom: 6px; }
.mock__avatar { width: 32px; height: 32px; border-radius: 999px; overflow: hidden; outline: 2px solid var(--blue); outline-offset: 1px; }
.mock__avatar img { width: 100%; height: 100%; }

/* AI chat mock */
.chat {
  display: flex; flex-direction: column; gap: 10px;
  font-size: 12.5px;
}
.chat__row { display: flex; gap: 10px; align-items: flex-end; }
.chat__row--me { flex-direction: row-reverse; }
.chat__avatar {
  width: 28px; height: 28px; border-radius: 999px;
  background: var(--blue); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 700;
  flex-shrink: 0;
}
.chat__avatar--me { background: var(--bg-muted); color: var(--ink); }
.chat__bubble {
  padding: 8px 12px; border-radius: 14px;
  background: var(--bg-muted); color: var(--ink-3);
  max-width: 75%;
  line-height: 1.4;
}
.chat__row--me .chat__bubble { background: var(--blue); color: #fff; }
.chat__row--ai .chat__bubble { border-radius: 14px 14px 14px 4px; }
.chat__row--me .chat__bubble { border-radius: 14px 14px 4px 14px; }

.chat__typing { display: flex; gap: 3px; align-items: center; padding: 4px 0; }
.chat__typing span {
  width: 5px; height: 5px; border-radius: 999px; background: var(--muted);
  animation: dot 1.2s infinite var(--ease);
}
.chat__typing span:nth-child(2) { animation-delay: .15s; }
.chat__typing span:nth-child(3) { animation-delay: .30s; }
@keyframes dot { 0%, 60%, 100% { opacity: .35; transform: translateY(0); } 30% { opacity: 1; transform: translateY(-2px); } }

/* Occupancy / chart mock */
.chart-mock { padding: 4px; }
.chart-mock__row { display: flex; justify-content: space-between; align-items: baseline; }
.chart-mock__row strong { font-size: 22px; font-weight: 900; letter-spacing: -0.02em; }
.chart-mock__row em { font-style: normal; font-size: 11px; color: var(--green); font-weight: 700; }
.chart-mock__bars {
  display: grid; grid-template-columns: repeat(12, 1fr); gap: 3px;
  align-items: end;
  height: 80px; margin-top: 10px;
}
.chart-mock__bars > i {
  background: var(--blue-soft);
  border-radius: 2px;
  display: block;
}
.chart-mock__bars > i.is-hi { background: var(--blue); }
.chart-mock__axis {
  display: flex; justify-content: space-between; font-size: 9px; color: var(--subtle);
  margin-top: 6px;
}

/* Lease doc mock */
.doc-mock { font-size: 11px; line-height: 1.4; }
.doc-mock__head {
  display: flex; justify-content: space-between; align-items: center;
  padding-bottom: 8px; border-bottom: 1px solid var(--line-subtle); margin-bottom: 10px;
}
.doc-mock__head strong { font-size: 12px; }
.doc-mock__line {
  height: 5px; background: var(--bg-muted); border-radius: 3px; margin: 4px 0;
}
.doc-mock__line.is-short { width: 60%; }
.doc-mock__line.is-mid   { width: 85%; }
.doc-mock__sig {
  margin-top: 14px; padding: 10px;
  border: 1px dashed var(--blue);
  border-radius: 8px;
  background: var(--blue-soft);
  font-size: 11px; color: var(--blue); font-weight: 700;
  display: flex; align-items: center; gap: 8px;
}

/* Maintenance ticket mock */
.ticket-mock { font-size: 12px; }
.ticket-mock__row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid var(--line-subtle);
}
.ticket-mock__row:last-child { border-bottom: 0; }
.ticket-mock__left { display: flex; align-items: center; gap: 8px; }
.ticket-mock__dot { width: 8px; height: 8px; border-radius: 999px; background: var(--amber); }
.ticket-mock__dot.is-done { background: var(--green); }
.ticket-mock__dot.is-new { background: var(--blue); }
.ticket-mock__title { font-size: 12px; font-weight: 500; }
.ticket-mock__meta { font-size: 10px; color: var(--muted); }

/* Resident app mock (phone-style) */
.phone-mock {
  position: relative;
  width: 240px; max-width: 100%;
  background: #fff;
  border: 1px solid var(--line-subtle);
  border-radius: 36px;
  box-shadow: var(--shadow-lg);
  padding: 16px;
  display: flex; flex-direction: column; gap: 10px;
  margin: 0 auto;
}
.phone-mock::before {
  content: "";
  position: absolute; top: 8px; left: 50%; transform: translateX(-50%);
  width: 60px; height: 4px; background: var(--bg-muted); border-radius: 999px;
}
.phone-mock__greet { font-size: 12px; color: var(--muted); margin-top: 8px; }
.phone-mock__h { font-size: 22px; font-weight: 900; letter-spacing: -0.02em; line-height: 1.1; }
.phone-mock__h .accent { color: var(--blue); }
.phone-mock__tiles { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.phone-mock__tile {
  background: var(--bg-muted); border-radius: 12px; padding: 10px;
  font-size: 11px; font-weight: 500;
  display: flex; flex-direction: column; gap: 8px;
  min-height: 64px;
}
.phone-mock__tile--pay { background: var(--blue); color: #fff; }
.phone-mock__tile-icon {
  width: 22px; height: 22px; border-radius: 6px;
  background: rgba(255,255,255,.18);
  display: inline-flex; align-items: center; justify-content: center;
}
.phone-mock__voice {
  margin-top: auto;
  display: flex; align-items: center; gap: 10px;
  padding: 10px 14px; border-radius: 999px;
  background: var(--ink); color: #fff;
}
.phone-mock__voice-pulse {
  width: 28px; height: 28px; border-radius: 999px;
  background: var(--blue);
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: 0 0 0 0 rgba(0,87,255,.5);
  animation: pulse 2s infinite var(--ease);
}
.phone-mock__voice-text { font-size: 12px; }
.phone-mock__voice-text small { display: block; color: var(--subtle); font-size: 10px; }
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(0,87,255,.6); }
  50% { box-shadow: 0 0 0 10px rgba(0,87,255,0); }
}

/* Rocket / no lock-in mock */
.launchpad {
  position: relative; padding: 16px;
  display: flex; flex-direction: column; gap: 10px;
}
.launchpad__row {
  display: flex; align-items: center; gap: 10px;
  padding: 8px 10px;
  background: #fff; border: 1px solid var(--line-subtle);
  border-radius: 10px;
  font-size: 12px;
}
.launchpad__row.is-done { background: var(--green-soft); border-color: transparent; }
.launchpad__check {
  width: 18px; height: 18px; border-radius: 999px;
  background: var(--ink); color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.launchpad__row.is-done .launchpad__check { background: var(--green); }
.launchpad__row.is-pending .launchpad__check { background: var(--bg-muted); color: var(--muted); }
.launchpad__sub { font-size: 10px; color: var(--muted); margin-left: auto; }

/* Money / NOI panel */
.money {
  padding: 4px;
}
.money__big {
  display: flex; align-items: baseline; gap: 10px;
  margin-bottom: 12px;
}
.money__big strong { font-size: 38px; font-weight: 900; letter-spacing: -0.025em; }
.money__big em { font-style: normal; font-size: 13px; font-weight: 700; color: var(--green); }
.money__label { font-size: 11px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 12px; }
.money__lines {
  display: flex; flex-direction: column; gap: 8px;
  font-size: 12px;
}
.money__line { display: flex; justify-content: space-between; }
.money__line span:first-child { color: var(--muted); }
.money__line strong { font-weight: 700; }

/* Map / dashboard chart with sparkline */
.dash-multi {
  display: grid; grid-template-columns: 1fr 1fr; gap: 8px;
}
.dash-card {
  background: #fff; border: 1px solid var(--line-subtle); border-radius: 10px;
  padding: 12px;
  position: relative;
}
.dash-card__label { font-size: 10px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.04em; }
.dash-card__val { font-size: 22px; font-weight: 900; letter-spacing: -0.02em; margin: 4px 0 8px; }
.dash-card svg.spark { width: 100%; height: 32px; }

/* Sparkle */
.sparkle::after { content: " ✦"; color: var(--blue); font-weight: 700; }

/* Section number badge */
.sec-num {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: "Roboto Mono", monospace;
  font-size: 12px; color: var(--muted);
  margin-bottom: 14px;
}
.sec-num strong { color: var(--ink); }

/* Util */
.center { text-align: center; }
.muted { color: var(--muted); }
.flex { display: flex; }
.gap-12 { gap: 12px; }

/* ───────────────────── Responsive ───────────────────── */
@media (max-width: 1080px) {
  .hero h1 { font-size: 64px; }
  .hero__grid { grid-template-columns: 1fr; gap: 32px; }
  .hero__art { margin-top: 16px; padding-bottom: 32px; }
  .logos { grid-template-columns: 1fr; text-align: center; }
  .solutions { grid-template-columns: 1fr; }
  .cap-row { grid-template-columns: 1fr !important; padding: 36px; gap: 32px; }
  .cap-row:nth-child(even) .cap-row__copy { order: 0; }
  .cap-row:nth-child(even) .cap-row__art { order: 0; }
  .owner-grid { grid-template-columns: 1fr; }
  .services { grid-template-columns: 1fr 1fr; }
  .resources { grid-template-columns: 1fr; }
  .intelligent { grid-template-columns: 1fr; padding: 36px; gap: 32px; }
  .cta-band { grid-template-columns: 1fr; padding: 40px; }
  .cta-band__actions { justify-content: flex-start; }
  .stats-strip { grid-template-columns: 1fr 1fr; }
  .stats-strip__value { font-size: 40px; }
  .footer__top { grid-template-columns: 1fr 1fr; }
  .footer__mega-h { grid-column: 1 / -1; font-size: 56px; }
  .testimonial { grid-template-columns: 1fr; gap: 16px; }
}
@media (max-width: 720px) {
  .section__head h2 { font-size: 36px; }
  .hero h1 { font-size: 48px; }
  .nav__links { display: none; }
  .services { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr; }
  .stats-strip { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0s !important; transition-duration: 0s !important; }
}
