/* ============================================================
   LobbyOS — Homepage styles  (depends on tokens.css)
   Apple-grade marketing rhythm: centered heroes, big type,
   product UI as imagery, hairline structure, soft elevation.
   ============================================================ */

body { background: var(--paper); overflow-x: hidden; }

.wrap { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--pad-x); }
.wrap-wide { max-width: var(--max-w-wide); margin: 0 auto; padding: 0 var(--pad-x); }

/* density tweak */
:root[data-density="compact"]  { --sy: clamp(56px, 7vw, 104px); }
:root[data-density="regular"]  { --sy: clamp(80px, 11vw, 160px); }
:root[data-density="spacious"] { --sy: clamp(104px, 14vw, 220px); }
:root { --sy: clamp(80px, 11vw, 160px); }

section { padding: var(--sy) 0; }

/* ---------------------------------------------------------------
   HEADER
   --------------------------------------------------------------- */
header.site {
  position: fixed; top: 0; left: 0; right: 0; z-index: var(--z-header);
  height: 56px;
  display: flex; align-items: center;
  transition: background var(--dur) var(--ease), border-color var(--dur) var(--ease), backdrop-filter var(--dur) var(--ease);
  border-bottom: 1px solid transparent;
}
header.site.scrolled {
  background: rgba(255,255,255,0.72);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid var(--rule);
}
header.site .wrap-wide { display: flex; align-items: center; gap: var(--s-8); width: 100%; }
.brand { display: inline-flex; align-items: center; gap: 10px; }
.brand svg { width: 26px; height: 26px; }
.brand .wm { font-weight: var(--w-semibold); font-size: 17px; letter-spacing: -0.02em; color: var(--ink); }
.brand .wm .os { color: var(--accent); }
nav.main { display: flex; gap: var(--s-1); margin-left: var(--s-4); }
nav.main a {
  font-size: var(--t-body-sm); color: var(--ink-2); padding: 7px 12px; border-radius: var(--r-pill);
  transition: color var(--dur) var(--ease), background var(--dur) var(--ease); letter-spacing: -0.01em;
}
nav.main a:hover { color: var(--ink); background: var(--gray-100); }
nav.main a.active { color: var(--ink); background: var(--gray-100); }
.header-cta { margin-left: auto; display: flex; align-items: center; gap: var(--s-2); }
.btn {
  font-family: var(--sans); font-weight: var(--w-medium); font-size: var(--t-body-sm); letter-spacing: -0.01em;
  padding: 9px 17px; border-radius: var(--r-pill); transition: all var(--dur) var(--ease);
  display: inline-flex; align-items: center; gap: 7px; white-space: nowrap; border: 1px solid transparent;
}
.btn-primary { background: var(--accent); color: var(--accent-on); }
.btn-primary:hover { background: var(--accent-press); transform: translateY(-1px); box-shadow: var(--sh-accent); }
.btn-dark { background: var(--ink); color: var(--paper); }
.btn-dark:hover { background: #000; transform: translateY(-1px); }
.btn-ghost { color: var(--ink); border-color: var(--rule-strong); background: rgba(255,255,255,0.6); }
.btn-ghost:hover { border-color: var(--ink); }
.btn-text { color: var(--accent); padding: 9px 4px; }
.btn-text:hover { gap: 11px; }
.btn-lg { padding: 13px 26px; font-size: var(--t-body); }
.menu-btn { display: none; }

/* ---------------------------------------------------------------
   HERO
   --------------------------------------------------------------- */
.hero { padding-top: clamp(120px, 16vh, 180px); padding-bottom: 0; text-align: center; position: relative; }
.hero .eyebrow { display: inline-flex; gap: 8px; align-items: center; margin-bottom: var(--s-6); }
.hero .eyebrow::before { content:""; width:6px; height:6px; border-radius:50%; background: var(--accent); box-shadow: 0 0 0 4px var(--accent-soft); }
.hero h1 {
  font-size: var(--t-mega); font-weight: var(--w-semibold); letter-spacing: var(--ls-mega); line-height: 0.98;
  max-width: 14ch; margin: 0 auto;
}
.hero h1 em { font-style: normal; color: var(--accent); display: block; }
.hero .lede {
  margin: var(--s-6) auto 0; max-width: 600px; font-size: var(--t-lede); line-height: 1.45;
  color: var(--ink-2); letter-spacing: -0.015em; font-weight: var(--w-regular);
}
.hero .cta-row { margin-top: var(--s-8); display: flex; gap: var(--s-3); justify-content: center; flex-wrap: wrap; }
.hero-shot-wrap { margin-top: clamp(48px, 7vw, 96px); position: relative; }
.hero-shot-wrap::after {
  content:""; position: absolute; left: 50%; bottom: -1px; transform: translateX(-50%);
  width: 120%; height: 60%;
}

/* product window frame */
.win {
  background: var(--paper); border: 1px solid var(--rule); border-radius: var(--r-xl);
  box-shadow: var(--sh-xl); overflow: hidden;
}
.win-bar {
  height: 40px; display: flex; align-items: center; gap: 8px; padding: 0 16px;
  border-bottom: 1px solid var(--rule-soft); background: var(--gray-50);
}
.win-bar .dots { display: flex; gap: 7px; }
.win-bar .dots i { width: 11px; height: 11px; border-radius: 50%; background: var(--gray-200); }
.win-bar .addr {
  margin: 0 auto; font-family: var(--mono); font-size: var(--t-micro); color: var(--ink-4);
  background: var(--paper); border: 1px solid var(--rule-soft); border-radius: var(--r-pill); padding: 4px 14px;
  display:flex; align-items:center; gap:6px;
}

/* ---------------------------------------------------------------
   OPERATOR DASHBOARD MOCK
   --------------------------------------------------------------- */
.dash { display: grid; grid-template-columns: 210px 1fr; min-height: 480px; background: var(--paper); }
.dash-side { background: var(--gray-50); border-right: 1px solid var(--rule-soft); padding: 18px 14px; display: flex; flex-direction: column; gap: 4px; }
.dash-side .org { display: flex; align-items: center; gap: 9px; padding: 6px 8px 16px; }
.dash-side .org svg { width: 24px; height: 24px; }
.dash-side .org .nm { font-weight: var(--w-semibold); font-size: 14px; letter-spacing: -0.02em; }
.dash-side .org .nm .os { color: var(--accent); }
.dash-nav { display: flex; flex-direction: column; gap: 1px; }
.dash-nav a { display: flex; align-items: center; gap: 11px; padding: 8px 10px; border-radius: var(--r-sm); font-size: 13.5px; color: var(--ink-2); letter-spacing: -0.01em; }
.dash-nav a i { font-size: 17px; color: var(--ink-4); }
.dash-nav a.active { background: var(--paper); color: var(--ink); box-shadow: var(--sh-xs); font-weight: var(--w-medium); }
.dash-nav a.active i { color: var(--accent); }
.dash-nav a .badge { margin-left: auto; font-family: var(--mono); font-size: 10px; background: var(--accent); color:#fff; border-radius: var(--r-pill); padding: 1px 7px; }
.dash-side .seg { margin-top: 18px; padding: 8px 10px 4px; font-family: var(--mono); font-size: 9.5px; letter-spacing: var(--ls-label); text-transform: uppercase; color: var(--ink-4); }
.dash-side .you { margin-top: auto; display: flex; align-items: center; gap: 9px; padding: 8px; border-top: 1px solid var(--rule-soft); }
.dash-side .you .av { width: 26px; height: 26px; border-radius: 50%; background: var(--gray-200); display:grid;place-items:center;font-size:11px;font-weight:600;color:var(--ink-2); }
.dash-side .you .t { font-size: 12px; }
.dash-side .you .t small { display:block; color: var(--ink-4); font-size: 10.5px; }

.dash-main { padding: 22px 26px; display: flex; flex-direction: column; gap: 18px; overflow: hidden; }
.dash-head { display: flex; align-items: center; gap: 14px; }
.dash-head h3 { font-size: 19px; font-weight: var(--w-semibold); letter-spacing: -0.02em; }
.dash-head .date { font-family: var(--mono); font-size: 11px; color: var(--ink-4); }
.dash-head .pill { margin-left: auto; font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.04em; color: var(--ok); border: 1px solid color-mix(in srgb, var(--ok) 28%, transparent); background: var(--ok-bg); border-radius: var(--r-pill); padding: 4px 11px; display:flex;align-items:center;gap:6px; }
.dash-head .pill::before { content:""; width:6px;height:6px;border-radius:50%;background:var(--ok); }

.kpis { display: grid; grid-template-columns: repeat(4,1fr); gap: 12px; }
.kpi { border: 1px solid var(--rule); border-radius: var(--r-md); padding: 13px 14px; }
.kpi .l { font-family: var(--mono); font-size: 9.5px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-4); }
.kpi .v { font-size: 24px; font-weight: var(--w-semibold); letter-spacing: -0.03em; margin-top: 6px; }
.kpi .d { font-size: 11px; color: var(--ok); margin-top: 3px; font-family: var(--mono); }
.kpi .d.flat { color: var(--ink-4); }

.dash-cols { display: grid; grid-template-columns: 1.5fr 1fr; gap: 14px; flex: 1; min-height: 0; }
.panel { border: 1px solid var(--rule); border-radius: var(--r-md); display: flex; flex-direction: column; overflow: hidden; }
.panel-h { display: flex; align-items: center; gap: 8px; padding: 12px 14px; border-bottom: 1px solid var(--rule-soft); }
.panel-h .t { font-size: 12.5px; font-weight: var(--w-semibold); letter-spacing: -0.01em; }
.panel-h .c { margin-left: auto; font-family: var(--mono); font-size: 10px; color: var(--ink-4); }
.feed { display: flex; flex-direction: column; }
.feed-row { display: flex; gap: 11px; padding: 11px 14px; border-bottom: 1px solid var(--rule-soft); align-items: flex-start; }
.feed-row:last-child { border-bottom: none; }
.feed-row .ic { width: 26px; height: 26px; border-radius: var(--r-sm); display:grid;place-items:center; flex:none; font-size: 14px; }
.feed-row .ic.ai { background: var(--accent-soft); color: var(--accent); }
.feed-row .ic.ok { background: var(--ok-bg); color: var(--ok); }
.feed-row .ic.warn { background: var(--warn-bg); color: var(--warn); }
.feed-row .bd { flex: 1; min-width: 0; }
.feed-row .bd .tt { font-size: 12.5px; color: var(--ink); letter-spacing: -0.01em; }
.feed-row .bd .tt b { font-weight: var(--w-semibold); }
.feed-row .bd .mt { font-family: var(--mono); font-size: 10px; color: var(--ink-4); margin-top: 3px; }
.feed-row .tag { font-family: var(--mono); font-size: 9px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink-3); border: 1px solid var(--rule); border-radius: var(--r-pill); padding: 3px 8px; flex:none; }
.feed-row .tag.auto { color: var(--accent); border-color: color-mix(in srgb, var(--accent) 30%, transparent); }

.mini-list { display: flex; flex-direction: column; padding: 4px 0; }
.mini-row { display: flex; align-items: center; gap: 10px; padding: 9px 14px; }
.mini-row .dot { width: 8px; height: 8px; border-radius: 50%; flex:none; }
.mini-row .nm { font-size: 12px; color: var(--ink); }
.mini-row .vv { margin-left: auto; font-family: var(--mono); font-size: 11px; color: var(--ink-2); }

/* ---------------------------------------------------------------
   GENERIC SECTION HEADS
   --------------------------------------------------------------- */
.sec-eyebrow { display: flex; justify-content: center; margin-bottom: var(--s-5); }
.sec-eyebrow .eyebrow { color: var(--accent); }
.sec-title { text-align: center; font-size: var(--t-display); font-weight: var(--w-semibold); letter-spacing: var(--ls-display); line-height: 1.03; max-width: 16ch; margin: 0 auto; }
.sec-title em { font-style: normal; color: var(--ink-3); }
.sec-sub { text-align: center; max-width: 580px; margin: var(--s-5) auto 0; font-size: var(--t-lede); color: var(--ink-2); line-height: 1.45; letter-spacing: -0.015em; }

/* ---------------------------------------------------------------
   STAKEHOLDERS
   --------------------------------------------------------------- */
.stake-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: var(--s-4); margin-top: var(--s-12); }
.stake {
  background: var(--paper); border: 1px solid var(--rule); border-radius: var(--r-xl); padding: var(--s-8);
  display: flex; flex-direction: column; gap: 14px; transition: transform var(--dur) var(--ease-out), box-shadow var(--dur) var(--ease-out), border-color var(--dur) var(--ease);
}
.stake:hover { transform: translateY(-3px); box-shadow: var(--sh-lg); border-color: var(--rule-strong); }
.stake .num { font-family: var(--mono); font-size: var(--t-micro); letter-spacing: var(--ls-label); color: var(--accent); }
.stake h3 { font-size: var(--t-h3); font-weight: var(--w-semibold); letter-spacing: -0.02em; }
.stake p { font-size: var(--t-body-sm); color: var(--ink-2); line-height: 1.55; flex: 1; }
.stake .learn { color: var(--accent); font-size: var(--t-body-sm); font-weight: var(--w-medium); display:inline-flex; gap: 6px; transition: gap var(--dur) var(--ease); }
.stake:hover .learn { gap: 10px; }
.stake .glyph { width: 38px; height: 38px; border-radius: var(--r-md); background: var(--accent-soft); color: var(--accent); display:grid; place-items:center; font-size: 20px; }

/* ---------------------------------------------------------------
   METRICS (dark)
   --------------------------------------------------------------- */
.metrics { background: var(--ink-ground); color: var(--on-dark); }
.metrics .sec-title { color: var(--on-dark); }
.metrics .sec-title em { color: var(--on-dark-3); }
.metrics .sec-sub { color: var(--on-dark-2); }
.metrics .sec-eyebrow .eyebrow { color: var(--accent); }
.metric-grid { display: grid; grid-template-columns: repeat(4,1fr); margin-top: var(--s-16); border-top: 1px solid var(--rule-dark); }
.metric { padding: var(--s-8) var(--s-6); border-bottom: 1px solid var(--rule-dark); border-right: 1px solid var(--rule-dark); }
.metric:nth-child(4n) { border-right: none; }
.metric .v { font-size: clamp(40px, 5vw, 64px); font-weight: var(--w-semibold); letter-spacing: -0.04em; line-height: 1; background: linear-gradient(180deg, #fff, var(--on-dark-2)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.metric h4 { font-size: var(--t-h4); font-weight: var(--w-semibold); margin: 16px 0 8px; letter-spacing: -0.02em; color: var(--on-dark); }
.metric p { font-size: var(--t-body-sm); color: var(--on-dark-2); line-height: 1.55; }

/* ---------------------------------------------------------------
   FEATURE ROWS (alternating product showcases)
   --------------------------------------------------------------- */
.feature { display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(40px, 6vw, 96px); align-items: center; }
.feature.flip .feat-copy { order: 2; }
.feat-copy .eyebrow { color: var(--accent); margin-bottom: var(--s-5); display: inline-block; }
.feat-copy h2 { font-size: var(--t-h1); font-weight: var(--w-semibold); letter-spacing: var(--ls-h); line-height: 1.06; }
.feat-copy h2 em { font-style: normal; color: var(--ink-3); }
.feat-copy p { margin-top: var(--s-5); font-size: var(--t-lede); color: var(--ink-2); line-height: 1.5; letter-spacing: -0.015em; max-width: 30ch; }
.feat-list { margin-top: var(--s-8); display: flex; flex-direction: column; gap: 2px; }
.feat-list .fl { display: flex; gap: 13px; padding: 14px 0; border-top: 1px solid var(--rule); align-items: flex-start; }
.feat-list .fl i { color: var(--accent); font-size: 19px; flex: none; margin-top: 1px; }
.feat-list .fl .ft { font-size: var(--t-body-sm); color: var(--ink); line-height: 1.5; }
.feat-list .fl .ft b { font-weight: var(--w-semibold); }
.feat-list .fl .ft span { color: var(--ink-3); }

/* ---- concierge phone mock ---- */
.stage { display: flex; justify-content: center; }
.stage-tint { border-radius: var(--r-2xl); padding: clamp(28px, 4vw, 56px); background: radial-gradient(120% 120% at 50% 0%, var(--accent-soft), var(--ground) 70%); width: 100%; display:flex; justify-content:center; }
.phone {
  width: 300px; background: #0A0A0B; border-radius: 44px; padding: 11px; box-shadow: var(--sh-xl), 0 0 0 1px rgba(0,0,0,0.4);
}
.phone-screen { background: var(--paper); border-radius: 34px; overflow: hidden; height: 600px; display: flex; flex-direction: column; position: relative; }
.phone-notch { position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 120px; height: 26px; background: #0A0A0B; border-radius: 0 0 16px 16px; z-index: 5; }
.chat-top { padding: 30px 18px 12px; border-bottom: 1px solid var(--rule-soft); display: flex; align-items: center; gap: 10px; background: var(--gray-50); }
.chat-top svg { width: 30px; height: 30px; }
.chat-top .who { font-size: 14px; font-weight: var(--w-semibold); letter-spacing: -0.01em; }
.chat-top .who small { display:block; font-family: var(--mono); font-size: 9.5px; color: var(--ok); font-weight: 400; letter-spacing: 0.04em; margin-top:1px;}
.chat-top .who small::before { content:""; display:inline-block; width:5px;height:5px;border-radius:50%;background:var(--ok);margin-right:5px;vertical-align:1px;}
.chat { flex: 1; padding: 16px 14px; display: flex; flex-direction: column; gap: 9px; background: var(--ground-2); overflow: hidden; }
.bubble { max-width: 78%; padding: 9px 13px; font-size: 13px; line-height: 1.4; letter-spacing: -0.01em; border-radius: 17px; }
.bubble.them { background: var(--gray-150); color: var(--ink); align-self: flex-start; border-bottom-left-radius: 5px; }
.bubble.us { background: var(--accent); color: #fff; align-self: flex-end; border-bottom-right-radius: 5px; }
.bubble.us.card { background: var(--paper); color: var(--ink); border: 1px solid var(--rule); padding: 0; overflow: hidden; align-self: flex-end; width: 78%; }
.act-card .ah { display:flex; align-items:center; gap: 8px; padding: 10px 12px; border-bottom: 1px solid var(--rule-soft); }
.act-card .ah i { color: var(--ok); font-size: 16px; }
.act-card .ah .at { font-size: 12px; font-weight: var(--w-semibold); }
.act-card .arow { display:flex; justify-content: space-between; padding: 7px 12px; font-size: 11px; }
.act-card .arow .k { font-family: var(--mono); color: var(--ink-4); font-size: 10px; letter-spacing: 0.04em; text-transform: uppercase; }
.act-card .arow .v2 { color: var(--ink); font-weight: var(--w-medium); }
.chat-time { text-align:center; font-family: var(--mono); font-size: 9px; color: var(--ink-4); letter-spacing: 0.06em; margin: 2px 0; }
.chat-input { padding: 10px 14px 16px; border-top: 1px solid var(--rule-soft); display: flex; gap: 8px; align-items: center; background: var(--paper); }
.chat-input .field { flex: 1; height: 34px; border-radius: var(--r-pill); border: 1px solid var(--rule); display:flex; align-items:center; padding: 0 14px; font-size: 12px; color: var(--ink-4); }
.chat-input .send { width: 34px; height: 34px; border-radius: 50%; background: var(--accent); color:#fff; display:grid;place-items:center; font-size: 15px; }

/* ---- tenant app mock ---- */
.tapp { background: var(--ink-ground); height: 100%; display: flex; flex-direction: column; color: var(--on-dark); }
.tapp-hero { padding: 38px 20px 22px; background: linear-gradient(160deg, color-mix(in srgb, var(--accent) 80%, #000), var(--ink-ground) 75%); }
.tapp-hero .greet-l { font-family: var(--mono); font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase; opacity: 0.75; }
.tapp-hero .greet { font-size: 22px; font-weight: var(--w-semibold); letter-spacing: -0.02em; margin-top: 6px; }
.tapp-hero .bldg { font-size: 12px; opacity: 0.8; margin-top: 4px; }
.tapp-body { flex: 1; background: var(--ground); padding: 16px 16px 0; display: flex; flex-direction: column; gap: 12px; }
.tapp-quick { display: grid; grid-template-columns: repeat(2,1fr); gap: 10px; }
.qa { background: var(--paper); border: 1px solid var(--rule); border-radius: var(--r-lg); padding: 13px; display: flex; flex-direction: column; gap: 8px; }
.qa i { font-size: 20px; color: var(--accent); }
.qa .qt { font-size: 12.5px; font-weight: var(--w-semibold); color: var(--ink); letter-spacing: -0.01em; }
.qa .qs { font-size: 10.5px; color: var(--ink-4); }
.tcard { background: var(--paper); border: 1px solid var(--rule); border-radius: var(--r-lg); padding: 14px; }
.tcard .th { display:flex; align-items:center; gap: 8px; margin-bottom: 10px; }
.tcard .th .tt { font-size: 12.5px; font-weight: var(--w-semibold); color: var(--ink); }
.tcard .th .more { margin-left:auto; font-family: var(--mono); font-size: 9px; color: var(--accent); text-transform: uppercase; letter-spacing: 0.06em; }
.tcard .rentrow { display:flex; align-items: baseline; gap: 8px; }
.tcard .rentrow .amt { font-size: 24px; font-weight: var(--w-semibold); color: var(--ink); letter-spacing: -0.03em; }
.tcard .rentrow .due { font-size: 11px; color: var(--ink-4); font-family: var(--mono); }
.tcard .paybtn { margin-top: 11px; width: 100%; background: var(--accent); color: #fff; border-radius: var(--r-pill); padding: 9px; font-size: 12px; font-weight: var(--w-medium); text-align: center; }
.tcard .amen { display:flex; gap: 10px; align-items: center; }
.tcard .amen .av { width: 40px; height: 40px; border-radius: var(--r-md); background: var(--accent-soft); color: var(--accent); display:grid;place-items:center; font-size: 18px; flex:none;}
.tcard .amen .at { font-size: 12px; font-weight: var(--w-medium); color: var(--ink); }
.tcard .amen .as { font-size: 10.5px; color: var(--ink-4); margin-top:2px;}
.tcard .amen .go { margin-left: auto; color: var(--accent); font-size: 18px; }
.tapp-tab { display:flex; justify-content: space-around; padding: 12px 0 20px; background: var(--paper); border-top: 1px solid var(--rule-soft); }
.tapp-tab i { font-size: 21px; color: var(--ink-4); }
.tapp-tab i.on { color: var(--accent); }

/* ---------------------------------------------------------------
   PROPERTY TYPES
   --------------------------------------------------------------- */
.types { background: var(--ground); }
.type-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: var(--s-3); margin-top: var(--s-12); }
.type {
  background: var(--paper); border: 1px solid var(--rule); border-radius: var(--r-lg); padding: var(--s-6) var(--s-6);
  display: flex; align-items: center; gap: 14px; transition: border-color var(--dur) var(--ease), transform var(--dur) var(--ease-out);
}
.type:hover { border-color: var(--accent); transform: translateY(-2px); }
.type i { font-size: 22px; color: var(--accent); }
.type .tn { font-size: var(--t-body); font-weight: var(--w-medium); letter-spacing: -0.01em; }
.type .ts { font-family: var(--mono); font-size: 10px; color: var(--ink-4); text-transform: uppercase; letter-spacing: 0.06em; margin-top: 3px; }
.type .arrow { margin-left: auto; color: var(--ink-4); transition: color var(--dur) var(--ease), transform var(--dur) var(--ease); }
.type:hover .arrow { color: var(--accent); transform: translateX(3px); }

/* ---------------------------------------------------------------
   CLOSING CTA
   --------------------------------------------------------------- */
.closer { text-align: center; }
.closer h2 { font-size: var(--t-display); font-weight: var(--w-semibold); letter-spacing: var(--ls-display); line-height: 1.02; max-width: 16ch; margin: 0 auto; }
.closer h2 em { font-style: normal; color: var(--accent); }
.closer p { margin: var(--s-6) auto 0; font-size: var(--t-lede); color: var(--ink-2); max-width: 480px; letter-spacing: -0.015em; }
.closer .cta-row { margin-top: var(--s-8); display: flex; gap: var(--s-3); justify-content: center; flex-wrap: wrap; }
.closer .fine { margin-top: var(--s-6); font-family: var(--mono); font-size: var(--t-micro); color: var(--ink-4); letter-spacing: 0.04em; }

/* ---------------------------------------------------------------
   FOOTER
   --------------------------------------------------------------- */
footer.site { background: var(--ink-ground); color: var(--on-dark-2); padding: var(--s-20) 0 var(--s-10); }
.foot-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: var(--s-8); }
.foot-brand .brand .wm { color: var(--on-dark); }
.foot-brand p { margin-top: var(--s-5); font-size: var(--t-body-sm); color: var(--on-dark-3); max-width: 30ch; line-height: 1.55; }
.foot-col h5 { font-family: var(--mono); font-size: var(--t-micro); letter-spacing: var(--ls-label); text-transform: uppercase; color: var(--on-dark-3); margin: 0 0 var(--s-5); }
.foot-col a { display: block; font-size: var(--t-body-sm); color: var(--on-dark-2); padding: 6px 0; transition: color var(--dur) var(--ease); }
.foot-col a:hover { color: var(--on-dark); }
.foot-bottom { margin-top: var(--s-16); padding-top: var(--s-6); border-top: 1px solid var(--rule-dark); display: flex; gap: var(--s-4); align-items: center; font-family: var(--mono); font-size: var(--t-micro); color: var(--on-dark-3); letter-spacing: 0.04em; }
.foot-bottom .sp { margin-left: auto; }

/* ---------------------------------------------------------------
   RESPONSIVE
   --------------------------------------------------------------- */
@media (max-width: 940px) {
  nav.main { display: none; }
  .menu-btn { display: inline-flex; }
  .stake-grid { grid-template-columns: 1fr; }
  .metric-grid { grid-template-columns: 1fr 1fr; }
  .metric:nth-child(2n) { border-right: none; }
  .metric:nth-child(4n) { border-right: 1px solid var(--rule-dark); }
  .feature, .feature.flip .feat-copy { grid-template-columns: 1fr; order: 0; }
  .feat-copy { order: 0 !important; }
  .type-grid { grid-template-columns: 1fr 1fr; }
  .foot-grid { grid-template-columns: 1fr 1fr; gap: var(--s-10); }
  .dash { grid-template-columns: 1fr; }
  .dash-side { display: none; }
}
@media (max-width: 560px) {
  .header-cta .btn-ghost { display: none; }
  .kpis { grid-template-columns: 1fr 1fr; }
  .type-grid { grid-template-columns: 1fr; }
  .metric-grid { grid-template-columns: 1fr; }
  .metric { border-right: none !important; }
  .foot-grid { grid-template-columns: 1fr; }
  .dash-cols { grid-template-columns: 1fr; }
}

/* ===============================================================
   MOBILE NAV DRAWER  (menu-btn opens nav.main on small screens)
   =============================================================== */
@media (max-width: 940px) {
  header.site nav.main.open {
    display: flex; flex-direction: column; gap: 2px;
    position: fixed; top: 56px; left: 0; right: 0; margin: 0;
    padding: var(--s-3) var(--pad-x) var(--s-5);
    background: rgba(255,255,255,0.96);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    backdrop-filter: saturate(180%) blur(20px);
    border-bottom: 1px solid var(--rule);
    box-shadow: var(--sh-md);
    z-index: var(--z-drawer);
  }
  header.site nav.main.open a { padding: 12px 14px; font-size: var(--t-body); }
}

/* ===============================================================
   INNER-PAGE UTILITIES  (shared by owners/operators/tenants/etc.)
   Reuses the homepage system; adds left-aligned page heroes,
   generic card grids, stat bands, prose blocks, and pull-quotes.
   =============================================================== */

/* page hero — left aligned, with breadcrumb eyebrow */
.page-hero { padding-top: clamp(120px, 16vh, 168px); padding-bottom: var(--s-4); }
.page-hero .eyebrow { display: inline-flex; gap: 8px; align-items: center; margin-bottom: var(--s-5); color: var(--accent); }
.page-hero h1 {
  font-size: var(--t-h1); font-weight: var(--w-semibold); letter-spacing: var(--ls-h);
  line-height: 1.04; max-width: 18ch;
}
.page-hero h1 em { font-style: normal; color: var(--ink-3); }
.page-hero .lede {
  margin-top: var(--s-6); max-width: 60ch; font-size: var(--t-lede); line-height: 1.5;
  color: var(--ink-2); letter-spacing: -0.015em;
}
.page-hero .cta-row { margin-top: var(--s-8); display: flex; gap: var(--s-3); flex-wrap: wrap; }

/* stat band — hairline-divided figures */
.stat-band {
  display: grid; grid-template-columns: repeat(3,1fr); margin-top: var(--s-10);
  border: 1px solid var(--rule); border-radius: var(--r-xl); overflow: hidden; background: var(--paper);
}
.stat-band .stat { padding: var(--s-8) var(--s-6); border-right: 1px solid var(--rule); }
.stat-band .stat:last-child { border-right: none; }
.stat-band .stat .v { font-size: clamp(34px, 4vw, 48px); font-weight: var(--w-semibold); letter-spacing: -0.04em; color: var(--accent); line-height: 1; }
.stat-band .stat .l { margin-top: 10px; font-size: var(--t-body-sm); color: var(--ink-2); line-height: 1.45; }

/* generic feature/card grid */
.card-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: var(--s-4); margin-top: var(--s-10); }
.card-grid.cols-2 { grid-template-columns: repeat(2,1fr); }
.card {
  background: var(--paper); border: 1px solid var(--rule); border-radius: var(--r-xl); padding: var(--s-8);
  display: flex; flex-direction: column; gap: 12px;
  transition: transform var(--dur) var(--ease-out), box-shadow var(--dur) var(--ease-out), border-color var(--dur) var(--ease);
}
.card.span-2 { grid-column: span 2; }
.card:hover { transform: translateY(-3px); box-shadow: var(--sh-lg); border-color: var(--rule-strong); }
.card .glyph { width: 38px; height: 38px; border-radius: var(--r-md); background: var(--accent-soft); color: var(--accent); display:grid; place-items:center; font-size: 20px; }
.card .tag { font-family: var(--mono); font-size: var(--t-micro); letter-spacing: var(--ls-label); text-transform: uppercase; color: var(--accent); }
.card h3 { font-size: var(--t-h3); font-weight: var(--w-semibold); letter-spacing: -0.02em; }
.card p { font-size: var(--t-body-sm); color: var(--ink-2); line-height: 1.55; }
.card .learn { color: var(--accent); font-size: var(--t-body-sm); font-weight: var(--w-medium); display:inline-flex; gap: 6px; margin-top: auto; transition: gap var(--dur) var(--ease); }
.card:hover .learn { gap: 10px; }

/* left-aligned section head variant (inner pages) */
.sec-head { max-width: var(--max-w-prose); }
.sec-head .eyebrow { color: var(--accent); display: inline-block; margin-bottom: var(--s-4); }
.sec-head h2 { font-size: var(--t-h2); font-weight: var(--w-semibold); letter-spacing: var(--ls-h); line-height: 1.08; }
.sec-head h2 em { font-style: normal; color: var(--ink-3); }
.sec-head p { margin-top: var(--s-4); font-size: var(--t-lede); color: var(--ink-2); line-height: 1.5; letter-spacing: -0.015em; }

/* pull quote */
.pullquote { text-align: center; max-width: 880px; margin: 0 auto; padding: 0 var(--pad-x); }
.pullquote blockquote { margin: 0; font-size: var(--t-h2); font-weight: var(--w-light); letter-spacing: -0.02em; line-height: 1.3; color: var(--ink); }
.pullquote .cite { margin-top: var(--s-5); font-family: var(--mono); font-size: var(--t-meta); letter-spacing: var(--ls-label); text-transform: uppercase; color: var(--ink-4); }

/* simple two-up step / numbered list */
.steps { display: grid; grid-template-columns: repeat(2,1fr); gap: var(--s-6) var(--s-10); margin-top: var(--s-10); counter-reset: step; }
.step { padding-top: var(--s-5); border-top: 1px solid var(--rule); }
.step .n { font-family: var(--mono); font-size: var(--t-meta); color: var(--accent); letter-spacing: var(--ls-label); }
.step h4 { font-size: var(--t-h4); font-weight: var(--w-semibold); margin: 10px 0 8px; letter-spacing: -0.02em; }
.step p { font-size: var(--t-body-sm); color: var(--ink-2); line-height: 1.55; }

/* pricing tiers */
.tier-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: var(--s-4); margin-top: var(--s-10); align-items: stretch; }
.tier { background: var(--paper); border: 1px solid var(--rule); border-radius: var(--r-xl); padding: var(--s-8); display: flex; flex-direction: column; gap: var(--s-4); }
.tier.featured { border-color: var(--accent); box-shadow: var(--sh-md); position: relative; }
.tier.featured::before { content: "MOST POPULAR"; position: absolute; top: -10px; left: var(--s-8); font-family: var(--mono); font-size: 9.5px; letter-spacing: var(--ls-label); background: var(--accent); color: #fff; padding: 4px 10px; border-radius: var(--r-pill); }
.tier .tier-name { font-size: var(--t-h4); font-weight: var(--w-semibold); letter-spacing: -0.02em; }
.tier .tier-price { font-size: clamp(34px,4vw,44px); font-weight: var(--w-semibold); letter-spacing: -0.04em; line-height: 1; }
.tier .tier-price small { font-size: var(--t-body-sm); font-weight: var(--w-regular); color: var(--ink-4); letter-spacing: -0.01em; }
.tier .tier-sub { font-size: var(--t-body-sm); color: var(--ink-3); }
.tier ul { list-style: none; margin: var(--s-2) 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.tier li { display: flex; gap: 10px; align-items: flex-start; font-size: var(--t-body-sm); color: var(--ink-2); line-height: 1.45; }
.tier li i { color: var(--accent); font-size: 17px; flex: none; margin-top: 1px; }
.tier .btn { margin-top: auto; justify-content: center; }

/* prose block (faq, content) */
.prose { max-width: var(--max-w-prose); }
.prose h3 { font-size: var(--t-h3); font-weight: var(--w-semibold); letter-spacing: -0.02em; margin-top: var(--s-8); }
.prose p { margin-top: var(--s-3); color: var(--ink-2); line-height: 1.6; }
.faq { margin-top: var(--s-8); border-top: 1px solid var(--rule); }
.faq .qa { padding: var(--s-6) 0; border-bottom: 1px solid var(--rule); }
.faq .qa h4 { font-size: var(--t-h4); font-weight: var(--w-semibold); letter-spacing: -0.015em; }
.faq .qa p { margin-top: 8px; font-size: var(--t-body-sm); color: var(--ink-2); line-height: 1.6; }

@media (max-width: 940px) {
  .stat-band { grid-template-columns: 1fr; }
  .stat-band .stat { border-right: none; border-bottom: 1px solid var(--rule); }
  .stat-band .stat:last-child { border-bottom: none; }
  .card-grid, .card-grid.cols-2 { grid-template-columns: 1fr; }
  .card.span-2 { grid-column: span 1; }
  .steps { grid-template-columns: 1fr; }
  .tier-grid { grid-template-columns: 1fr; }
}

/* ===============================================================
   ACCESSIBILITY — honor reduced-motion preferences
   =============================================================== */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
}
