/* =========================================================
   PropertyCoreOS Landing — Forest Gold
   Palette: bg #0F1F1A · surface #16302A · accent #D4AF37
   Typography: Satoshi (Fontshare)
   ========================================================= */

*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Satoshi', 'General Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  font-feature-settings: "ss01", "ss02", "tnum";
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; background: none; border: 0; color: inherit; cursor: pointer; }
::selection { background: rgba(212,175,55,0.30); color: #F5F2EB; }

:root {
  /* Forest Gold palette — mandatory */
  --bg: #0F1F1A;
  --surface: #16302A;
  --sidebar: #16302A;
  --border: #2A4F45;
  --border-soft: rgba(42,79,69,0.55);
  --text: #F5F2EB;
  --muted: #9DAD9F;
  --dim: #6E8478;
  --gold: #D4AF37;
  --gold-2: #C09C2C;
  --gold-hi: #E6C453;
  --burnt: #FF8B5A;
  --success: #84CC16;
  --danger: #DC2626;

  --max: 1180px;
  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --shadow: 0 10px 40px -10px rgba(0,0,0,0.5), 0 0 0 1px rgba(42,79,69,0.4);
  --shadow-gold: 0 20px 50px -20px rgba(212,175,55,0.35);
  --grad-gold: linear-gradient(135deg, #D4AF37 0%, #E6C453 60%, #C09C2C 100%);
  --grad-hero: radial-gradient(1200px 600px at 80% -10%, rgba(212,175,55,0.18), transparent 60%),
               radial-gradient(900px 500px at -10% 30%, rgba(255,139,90,0.10), transparent 60%),
               linear-gradient(180deg, #0F1F1A 0%, #142822 100%);
}

.container {
  width: 100%;
  max-width: var(--max);
  padding: 0 clamp(20px, 4vw, 40px);
  margin: 0 auto;
}

/* -------- Typography -------- */
h1, h2, h3, h4, h5 {
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.1;
  color: var(--text);
}
h1 { font-size: clamp(36px, 6vw, 64px); letter-spacing: -0.035em; }
h2 { font-size: clamp(28px, 4.2vw, 44px); letter-spacing: -0.03em; }
h3 { font-size: clamp(20px, 2.4vw, 24px); letter-spacing: -0.02em; }
h4 { font-size: 13px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); font-weight: 600; }
.eyebrow-text { font-size: 13px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold-hi); font-weight: 700; margin-bottom: 12px; }
p { color: var(--muted); }
.lead { font-size: clamp(17px, 1.6vw, 19px); color: var(--text); opacity: 0.85; line-height: 1.55; }

.grad-gold {
  background: var(--grad-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.tabular { font-variant-numeric: tabular-nums; }

/* -------- Buttons -------- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 22px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 12px;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease, color .18s ease;
  white-space: nowrap;
  letter-spacing: -0.005em;
  border: 1px solid transparent;
}
.btn-lg { padding: 16px 28px; font-size: 16px; border-radius: 14px; }
.btn-primary {
  background: var(--grad-gold);
  color: #0F1F1A;
  box-shadow: 0 8px 24px -6px rgba(212,175,55,0.5), inset 0 1px 0 rgba(255,255,255,0.25);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 36px -8px rgba(212,175,55,0.65), inset 0 1px 0 rgba(255,255,255,0.3); }
.btn-secondary {
  background: transparent;
  color: var(--gold);
  border-color: rgba(212,175,55,0.5);
}
.btn-secondary:hover { border-color: var(--gold); background: rgba(212,175,55,0.08); }
.btn-ghost { color: var(--text); border-color: var(--border); }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }
.btn-arrow svg { transition: transform .18s ease; }
.btn:hover .btn-arrow svg { transform: translateX(3px); }

/* -------- Header -------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  background: rgba(15,31,26,0.6);
  border-bottom: 1px solid transparent;
  transition: background .2s ease, border-color .2s ease;
}
.site-header.scrolled {
  background: rgba(15,31,26,0.92);
  border-bottom-color: var(--border);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.brand {
  display: inline-flex; align-items: center; gap: 10px;
  font-weight: 700; letter-spacing: -0.02em;
  color: var(--text);
}
.brand-logo {
  width: 32px; height: 32px;
  background: var(--bg);
  border-radius: 8px;
  display: grid; place-items: center;
  border: 1px solid var(--border);
}
.brand-logo svg { width: 22px; height: 22px; }
.brand-name { font-size: 17px; }
.brand-name b { color: var(--gold); font-weight: 700; }

.nav-links {
  display: flex; align-items: center; gap: 4px;
}
.nav-links a {
  font-size: 14px; color: var(--muted);
  padding: 8px 14px; border-radius: 8px;
  transition: color .15s, background .15s;
}
.nav-links a:hover { color: var(--text); background: rgba(255,255,255,0.04); }
.nav-cta { display: flex; align-items: center; gap: 10px; }

.menu-toggle {
  display: none;
  width: 40px; height: 40px;
  border: 1px solid var(--border);
  border-radius: 10px;
  position: relative;
}
.menu-toggle span {
  position: absolute; left: 10px; right: 10px; height: 2px;
  background: var(--text); border-radius: 2px;
  transition: transform .2s ease, opacity .2s ease;
}
.menu-toggle span:nth-child(1) { top: 13px; }
.menu-toggle span:nth-child(2) { top: 19px; }
.menu-toggle span:nth-child(3) { top: 25px; }
.menu-toggle.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.mobile-menu {
  display: none;
  flex-direction: column;
  padding: 16px 20px 24px;
  gap: 4px;
  border-top: 1px solid var(--border);
  background: var(--bg);
}
.mobile-menu a {
  padding: 12px 14px; border-radius: 10px;
  color: var(--text); font-size: 15px;
}
.mobile-menu a:hover { background: rgba(255,255,255,0.04); }
.mobile-menu .btn { margin-top: 8px; justify-content: center; }

/* -------- Hero -------- */
.hero {
  position: relative;
  padding: clamp(72px, 12vw, 130px) 0 clamp(64px, 10vw, 110px);
  background: var(--grad-hero);
  overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(212,175,55,0.08) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: radial-gradient(800px 500px at 50% 10%, #000 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(800px 500px at 50% 10%, #000 30%, transparent 80%);
  pointer-events: none;
}
.hero-inner { position: relative; text-align: center; max-width: 900px; margin: 0 auto; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 13px; font-weight: 500;
  color: var(--gold);
  background: rgba(212,175,55,0.08);
  border: 1px solid rgba(212,175,55,0.25);
  margin-bottom: 24px;
}
.eyebrow .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 4px rgba(212,175,55,0.15); }

.hero h1 { margin-bottom: 22px; }
.hero h1 .accent { color: var(--gold); }
.hero p.lead { max-width: 720px; margin: 0 auto 36px; }
.hero-ctas { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-bottom: 28px; }
.trust-line {
  font-size: 13px; color: var(--dim);
  display: inline-flex; gap: 14px; flex-wrap: wrap; justify-content: center;
}
.trust-line span { display: inline-flex; align-items: center; gap: 6px; }
.trust-line svg { width: 14px; height: 14px; color: var(--gold); }

/* Dashboard visual */
.hero-visual {
  margin: 56px auto 0;
  max-width: 1000px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-gold), var(--shadow);
  position: relative;
}
.hero-visual::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(15,31,26,0) 70%, rgba(15,31,26,0.75) 100%);
  pointer-events: none; z-index: 1;
}
.hv-bar {
  display: flex; align-items: center; gap: 6px;
  padding: 12px 16px; border-bottom: 1px solid var(--border);
  background: rgba(0,0,0,0.2);
}
.hv-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--border); }
.hv-dot:nth-child(2) { background: var(--gold); opacity: .6; }
.hv-dot:nth-child(3) { background: var(--success); opacity: .6; }
.hv-url {
  margin-left: 12px; padding: 4px 12px; border-radius: 6px;
  background: rgba(255,255,255,0.04);
  font-size: 12px; color: var(--muted);
  font-family: ui-monospace, SFMono-Regular, monospace;
}
.hv-body { padding: clamp(20px, 3vw, 36px); }
.hv-grid {
  display: grid; grid-template-columns: 220px 1fr; gap: 20px;
}
.hv-side {
  background: rgba(0,0,0,0.15); border: 1px solid var(--border-soft);
  border-radius: 14px; padding: 16px;
  display: flex; flex-direction: column; gap: 6px;
}
.hv-side .nav-item {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 12px; border-radius: 8px;
  font-size: 13px; color: var(--muted);
}
.hv-side .nav-item.active { background: rgba(212,175,55,0.10); color: var(--gold); }
.hv-side .nav-item .ico { width: 16px; height: 16px; border-radius: 4px; background: currentColor; opacity: .35; }
.hv-main { display: flex; flex-direction: column; gap: 16px; }
.hv-kpis {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px;
}
.hv-kpi {
  background: rgba(0,0,0,0.15); border: 1px solid var(--border-soft);
  border-radius: 12px; padding: 14px 16px;
}
.hv-kpi .label { font-size: 11px; text-transform: uppercase; letter-spacing: .08em; color: var(--dim); }
.hv-kpi .value { font-size: 22px; font-weight: 700; color: var(--text); margin-top: 4px; font-variant-numeric: tabular-nums; }
.hv-kpi .delta { font-size: 12px; color: var(--success); margin-top: 2px; }
.hv-chart {
  height: 160px; border-radius: 12px;
  background: rgba(0,0,0,0.15); border: 1px solid var(--border-soft);
  position: relative; overflow: hidden;
  padding: 12px 16px;
}
.hv-chart-title { font-size: 12px; color: var(--muted); margin-bottom: 6px; }
.hv-chart svg { width: 100%; height: 110px; }

/* -------- Sections -------- */
section { padding: clamp(72px, 10vw, 110px) 0; position: relative; }
.section-head { text-align: center; max-width: 720px; margin: 0 auto clamp(40px, 6vw, 64px); }
.section-head h4 { margin-bottom: 12px; }
.section-head h2 { margin-bottom: 14px; }
.section-head p { font-size: 17px; }

/* -------- Pillars (3 columns) -------- */
.pillars { background: linear-gradient(180deg, #0F1F1A, #11241F); }
.pillars-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.pillar {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  display: flex; flex-direction: column;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.pillar:hover { transform: translateY(-4px); border-color: rgba(212,175,55,0.4); box-shadow: var(--shadow); }
.pillar-icon {
  width: 52px; height: 52px;
  display: grid; place-items: center;
  border-radius: 14px;
  background: rgba(212,175,55,0.10);
  border: 1px solid rgba(212,175,55,0.30);
  color: var(--gold);
  margin-bottom: 22px;
}
.pillar-icon svg { width: 26px; height: 26px; }
.pillar h3 { margin-bottom: 8px; }
.pillar .tagline { color: var(--muted); margin-bottom: 22px; font-size: 15px; }
.pillar ul { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-top: auto; }
.pillar li {
  display: flex; gap: 12px; align-items: flex-start;
  font-size: 14.5px; color: var(--text); line-height: 1.5; opacity: 0.92;
}
.pillar li::before {
  content: ''; flex: 0 0 18px;
  width: 18px; height: 18px; margin-top: 3px;
  border-radius: 50%;
  background: rgba(212,175,55,0.15);
  border: 1px solid rgba(212,175,55,0.4);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23D4AF37' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'><polyline points='3.5 8.5 6.5 11.5 12.5 5.5'/></svg>");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 12px;
}

/* -------- Stats strip (Deal Analyser) -------- */
.stats-strip {
  background: linear-gradient(180deg, #11241F, #0F1F1A);
}
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
  margin-bottom: 28px;
}
.stat {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px 22px;
  text-align: left;
  position: relative;
  overflow: hidden;
}
.stat::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: var(--grad-gold);
  opacity: 0.7;
}
.stat .num {
  font-size: clamp(28px, 3.4vw, 40px);
  font-weight: 800; letter-spacing: -0.03em;
  background: var(--grad-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-variant-numeric: tabular-nums;
  line-height: 1.05;
  margin-bottom: 6px;
}
.stat .label { color: var(--muted); font-size: 14px; }
.stats-sub { text-align: center; max-width: 800px; margin: 0 auto; color: var(--muted); font-size: 14.5px; }
.stats-cta { display: block; text-align: center; margin-top: 22px; color: var(--gold); font-weight: 600; font-size: 15px; }
.stats-cta:hover { text-decoration: underline; text-underline-offset: 4px; }

/* -------- AI Assistant section -------- */
.ai-section { background: linear-gradient(180deg, #0F1F1A, #11241F); }
.ai-cards {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
  max-width: 980px; margin: 0 auto;
}
.ai-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 22px;
  display: flex; gap: 14px; align-items: flex-start;
}
.ai-card .q {
  width: 32px; height: 32px;
  flex: 0 0 32px;
  display: grid; place-items: center;
  border-radius: 10px;
  background: rgba(212,175,55,0.10);
  color: var(--gold);
  border: 1px solid rgba(212,175,55,0.25);
}
.ai-card .q svg { width: 16px; height: 16px; }
.ai-card .text { font-size: 15px; color: var(--text); line-height: 1.5; }
.ai-sub { max-width: 800px; margin: 28px auto 0; text-align: center; color: var(--muted); font-size: 14.5px; }

/* -------- Built for UK -------- */
.uk-strip { background: var(--bg); }
.uk-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px;
  max-width: 980px; margin: 0 auto;
}
.uk-item {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 20px 22px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.uk-item .ico {
  width: 36px; height: 36px; flex: 0 0 36px;
  display: grid; place-items: center;
  border-radius: 10px;
  color: var(--gold);
  background: rgba(212,175,55,0.10);
  border: 1px solid rgba(212,175,55,0.25);
}
.uk-item .ico svg { width: 18px; height: 18px; }
.uk-item .body { display: flex; flex-direction: column; gap: 2px; }
.uk-item .title { font-weight: 600; color: var(--text); font-size: 15px; }
.uk-item .sub { color: #B7C5B9; font-size: 13.5px; line-height: 1.5; }

/* -------- Professionals -------- */
.pros { background: linear-gradient(180deg, #11241F, #0F1F1A); }
.pros-inner {
  max-width: 880px; margin: 0 auto;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(32px, 5vw, 56px);
  text-align: center;
  position: relative; overflow: hidden;
}
.pros-inner::before {
  content: ''; position: absolute; inset: -2px;
  background: radial-gradient(400px 200px at 50% 0%, rgba(212,175,55,0.15), transparent 70%);
  pointer-events: none;
}
.pros-inner > * { position: relative; }
.pros h2 { margin-bottom: 14px; }
.pros p { font-size: 16.5px; color: var(--muted); margin-bottom: 28px; }
.pros .roles {
  list-style: none; display: flex; gap: 8px; flex-wrap: wrap; justify-content: center;
  margin-bottom: 28px;
}
.pros .roles li {
  font-size: 13px; padding: 6px 14px;
  border-radius: 100px;
  background: rgba(212,175,55,0.08);
  border: 1px solid rgba(212,175,55,0.25);
  color: var(--gold);
}

/* -------- Beta CTA -------- */
.cta-band {
  padding: clamp(56px, 9vw, 96px) 0;
  background:
    radial-gradient(800px 400px at 80% -10%, rgba(255,139,90,0.18), transparent 60%),
    linear-gradient(135deg, #16302A 0%, #1B3D34 60%, #16302A 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-align: center;
  position: relative; overflow: hidden;
}
.cta-band::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(700px 350px at 50% 50%, rgba(212,175,55,0.12), transparent 60%);
  pointer-events: none;
}
.cta-band > .container { position: relative; }
.cta-band h2 { font-size: clamp(28px, 4vw, 44px); margin-bottom: 14px; }
.cta-band p { max-width: 640px; margin: 0 auto 28px; font-size: 17px; color: var(--text); opacity: 0.85; }
.cta-band .small { font-size: 13px; color: var(--muted); margin-top: 14px; }

/* -------- Footer -------- */
.site-footer {
  padding: 56px 0 32px;
  background: #0B1815;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 14px;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px;
  margin-bottom: 36px;
}
.footer-col .footer-h {
  font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--gold-hi); margin-bottom: 14px; font-weight: 700;
  display: block;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-col a:hover { color: var(--text); }
.footer-brand p { max-width: 380px; font-size: 14px; line-height: 1.6; margin-top: 12px; }
.footer-brand .ch { font-size: 13px; color: var(--dim); margin-top: 8px; }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 24px; border-top: 1px solid var(--border);
  font-size: 13px; color: var(--dim);
  flex-wrap: wrap; gap: 12px;
}
.social { display: flex; gap: 10px; }
.social a {
  width: 36px; height: 36px;
  display: grid; place-items: center;
  border-radius: 10px;
  border: 1px solid var(--border);
  color: var(--muted);
  transition: color .15s, border-color .15s;
}
.social a:hover { color: var(--gold); border-color: var(--gold); }
.social a svg { width: 16px; height: 16px; }

/* -------- Reveal animations -------- */
.reveal { opacity: 0.001; transform: translateY(20px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  * { animation: none !important; transition: none !important; }
}

/* -------- Sub-pages (about/features/contact) -------- */
.page-hero {
  padding: clamp(80px, 12vw, 130px) 0 clamp(40px, 6vw, 64px);
  background: var(--grad-hero);
  text-align: center;
}
.page-hero h1 { margin-bottom: 16px; }
.page-hero p { max-width: 700px; margin: 0 auto; font-size: 17px; }
.prose {
  max-width: 740px; margin: 0 auto;
  padding: clamp(40px, 6vw, 80px) 0;
}
.prose h2 { margin: 36px 0 16px; font-size: clamp(24px, 3vw, 32px); }
.prose h3 { margin: 24px 0 12px; font-size: 19px; color: var(--gold); }
.prose p { margin-bottom: 16px; color: var(--text); opacity: 0.9; font-size: 16.5px; line-height: 1.7; }
.prose ul { margin: 12px 0 20px 22px; color: var(--text); opacity: 0.9; }
.prose ul li { margin-bottom: 8px; }
.prose a { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; }
.prose a:hover { color: var(--gold-hi); }

.feature-block {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 28px;
  margin-bottom: 18px;
}
.feature-block h3 { color: var(--gold); margin-bottom: 12px; }
.feature-block ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.feature-block li { display: flex; gap: 10px; align-items: flex-start; color: var(--text); opacity: .92; }
.feature-block li::before {
  content: '→'; color: var(--gold); flex: 0 0 18px;
}

.contact-card {
  max-width: 600px; margin: 0 auto;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 36px;
  text-align: center;
}
.contact-card a.email {
  display: inline-block; margin: 12px 0 24px;
  font-size: 22px; font-weight: 600; color: var(--gold);
  text-decoration: none;
}
.contact-card a.email:hover { text-decoration: underline; text-underline-offset: 4px; }

/* =========================================================
   Landlords page — feature emphasis bands
   ========================================================= */

/* Find/Analyse/Verify mini-cards (homepage + landlords) */
.fav-section {
  background: linear-gradient(180deg, #0F1F1A 0%, #11241F 100%);
  padding: clamp(60px, 9vw, 100px) 0;
}
.fav-head { text-align: center; max-width: 760px; margin: 0 auto clamp(32px, 5vw, 56px); }
.fav-head .eyebrow-text { margin-bottom: 12px; }
.fav-head h2 { margin-bottom: 14px; }
.fav-head p { font-size: 17px; }
.fav-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
  max-width: 1080px; margin: 0 auto;
}
.fav-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 26px;
  display: flex; flex-direction: column; gap: 14px;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
  position: relative;
  text-decoration: none;
  color: inherit;
}
.fav-card:hover { transform: translateY(-4px); border-color: rgba(212,175,55,0.45); box-shadow: var(--shadow); }
.fav-card .fav-num {
  font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--gold-hi); font-weight: 700;
}
.fav-card h3 { color: var(--text); font-size: 22px; margin: 0; }
.fav-card .fav-sub {
  color: var(--gold); font-weight: 600; font-size: 14px;
  margin: 0;
}
.fav-card .fav-body { color: var(--muted); font-size: 14.5px; line-height: 1.55; margin: 0; }
.fav-card .fav-arrow {
  margin-top: auto; padding-top: 6px;
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--gold); font-size: 13px; font-weight: 600;
}
.fav-card .fav-arrow svg { width: 14px; height: 14px; transition: transform .18s ease; }
.fav-card:hover .fav-arrow svg { transform: translateX(3px); }

.fav-more {
  display: flex; justify-content: center; margin-top: 28px;
}
.fav-more a {
  font-size: 14.5px; font-weight: 600; color: var(--gold);
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 14px; border-radius: 100px;
  border: 1px solid rgba(212,175,55,0.35);
  background: rgba(212,175,55,0.06);
  transition: background .18s ease, border-color .18s ease, color .18s ease;
}
.fav-more a:hover { background: rgba(212,175,55,0.12); border-color: var(--gold); color: var(--gold-hi); }
.fav-more a svg { width: 14px; height: 14px; transition: transform .18s ease; }
.fav-more a:hover svg { transform: translateX(3px); }

/* Landlords page — hero */
.ll-hero {
  padding: clamp(80px, 12vw, 130px) 0 clamp(48px, 7vw, 80px);
  background: var(--grad-hero);
  text-align: center;
  position: relative; overflow: hidden;
}
.ll-hero::before {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(212,175,55,0.08) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: radial-gradient(800px 500px at 50% 10%, #000 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(800px 500px at 50% 10%, #000 30%, transparent 80%);
  pointer-events: none;
}
.ll-hero > .container { position: relative; }
.ll-hero h1 { margin-bottom: 22px; max-width: 880px; margin-left: auto; margin-right: auto; }
.ll-hero h1 .accent { color: var(--gold); }
.ll-hero p.lead { max-width: 760px; margin: 0 auto 32px; }
.ll-hero-ctas { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* Feature band — alternating surfaces */
.ll-band {
  padding: clamp(64px, 9vw, 96px) 0;
  position: relative;
}
.ll-band--bg { background: var(--bg); }
.ll-band--surface { background: linear-gradient(180deg, #15302A 0%, #1B3A33 100%); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.ll-band--bg + .ll-band--surface,
.ll-band--surface + .ll-band--bg { /* divider handled by border on surface band */ }

.ll-band-inner {
  display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(32px, 5vw, 72px);
  align-items: center;
  max-width: var(--max);
  margin: 0 auto;
}
.ll-band--reverse .ll-band-inner { grid-template-columns: 1.05fr 1fr; }
.ll-band--reverse .ll-band-copy { order: 2; }
.ll-band--reverse .ll-band-visual { order: 1; }

.ll-band-copy .eyebrow-text { margin-bottom: 14px; }
.ll-band-copy h2 { margin-bottom: 16px; font-size: clamp(28px, 3.8vw, 40px); }
.ll-band-copy .ll-lead {
  font-size: clamp(16px, 1.5vw, 18px);
  color: var(--text); opacity: 0.86; line-height: 1.55;
  margin-bottom: 22px; max-width: 540px;
}
.ll-band-copy ul { list-style: none; display: flex; flex-direction: column; gap: 12px; margin: 0 0 24px 0; }
.ll-band-copy li {
  display: flex; gap: 12px; align-items: flex-start;
  font-size: 15px; color: var(--text); line-height: 1.5; opacity: 0.94;
}
.ll-band-copy li::before {
  content: ''; flex: 0 0 20px;
  width: 20px; height: 20px; margin-top: 2px;
  border-radius: 50%;
  background: rgba(212,175,55,0.15);
  border: 1px solid rgba(212,175,55,0.45);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23D4AF37' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'><polyline points='3.5 8.5 6.5 11.5 12.5 5.5'/></svg>");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 13px;
}

/* Visual frame — used for SVG mocks */
.ll-mock {
  background: rgba(15,31,26,0.55);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 18px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}
.ll-mock::after {
  content: ''; position: absolute; inset: -1px;
  pointer-events: none;
  border-radius: var(--radius-lg);
  background: radial-gradient(420px 180px at 80% -10%, rgba(212,175,55,0.10), transparent 70%);
}
.ll-mock svg { display: block; width: 100%; height: auto; border-radius: 10px; }

.ll-mock--surface { background: var(--surface); }

/* Closing CTA on landlords page */
.ll-cta {
  background:
    radial-gradient(800px 400px at 80% -10%, rgba(255,139,90,0.18), transparent 60%),
    linear-gradient(135deg, #16302A 0%, #1B3D34 60%, #16302A 100%);
  border-top: 1px solid var(--border);
  text-align: center;
  padding: clamp(56px, 9vw, 96px) 0;
  position: relative; overflow: hidden;
}
.ll-cta::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(700px 350px at 50% 50%, rgba(212,175,55,0.12), transparent 60%);
  pointer-events: none;
}
.ll-cta > .container { position: relative; }
.ll-cta h2 { font-size: clamp(28px, 4vw, 44px); margin-bottom: 14px; }
.ll-cta p { max-width: 640px; margin: 0 auto 28px; font-size: 17px; color: var(--text); opacity: 0.85; }
.ll-cta .small { font-size: 13px; color: var(--muted); margin-top: 14px; }

/* Active nav highlight */
.nav-links a.is-active { color: var(--gold); background: rgba(212,175,55,0.08); }

/* -------- Responsive -------- */
@media (max-width: 900px) {
  .fav-grid { grid-template-columns: 1fr; }
  .ll-band-inner { grid-template-columns: 1fr; gap: 28px; }
  .ll-band--reverse .ll-band-copy { order: 1; }
  .ll-band--reverse .ll-band-visual { order: 2; }
}
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-cta .btn-secondary { display: none; }
  .menu-toggle { display: block; }
  .nav { height: 64px; }
  .pillars-grid { grid-template-columns: 1fr; gap: 16px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .ai-cards { grid-template-columns: 1fr; }
  .uk-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .hv-grid { grid-template-columns: 1fr; }
  .hv-kpis { grid-template-columns: repeat(3, 1fr); }
  .hv-side { display: none; }
}
@media (max-width: 540px) {
  .hero-ctas .btn { width: 100%; justify-content: center; }
  .hv-kpis { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .nav-cta .btn-primary { padding: 9px 14px; font-size: 13px; }
  .brand-name { font-size: 15px; }
}
