/* ============================================================
   TenantIQ marketing — "the surveyor's document", brand palette
   Paper #F8F9FB · Ink #0F172A · Primary #0060AC · Gold #FABD34 · Cyan #22D3EE
   Display: Bricolage Grotesque · Body: Instrument Sans · Data: Spline Sans Mono
   ============================================================ */

:root {
  /* TenantIQ brand — product "Clinical Clarity" palette (tailwind.config.js)
     + old-site blues. primary #0060ac · gold tertiary #fabd34 · logo cyan #22d3ee */
  --paper: #F8F9FB;
  --paper-2: #EEF2F7;
  --ink: #0F172A;
  --ink-60: rgba(15, 23, 42, 0.64);
  --ink-40: rgba(15, 23, 42, 0.42);
  --hair: #E1E6EE;
  --hair-dark: rgba(245, 248, 252, 0.14);
  --accent: #0060AC;
  --accent-deep: #004F8D;
  --accent-soft: rgba(0, 96, 172, 0.08);
  --gold: #FABD34;
  --gold-text: #B8860B;
  --cyan: #22D3EE;
  --cyan-deep: #0891B2;
  --field: #0A0F1A;
  --field-2: #131C2E;
  --paper-on-field: #F2F6FA;
  --disp: "Bricolage Grotesque", "Instrument Sans", sans-serif;
  --body: "Instrument Sans", -apple-system, sans-serif;
  --mono: "Spline Sans Mono", ui-monospace, monospace;
  --shell: 1200px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}

body {
  font-family: var(--body);
  background: var(--paper);
  color: var(--ink);
  font-size: 1.0625rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.shell { max-width: var(--shell); margin-inline: auto; padding-inline: 24px; }
.mono { font-family: var(--mono); }

/* ---------- type ---------- */
.h2 {
  font-family: var(--disp);
  font-weight: 700;
  font-size: clamp(1.7rem, 3.4vw, 2.6rem);
  line-height: 1.12;
  letter-spacing: -0.01em;
  margin-bottom: 0.75rem;
}
.section-sub { color: var(--ink-60); max-width: 46rem; }

.eyebrow {
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: var(--ink-60);
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 1.1rem;
}
.eyebrow__tick { width: 22px; height: 2px; background: var(--accent); flex: none; }
.eyebrow--light { color: rgba(242, 246, 250, 0.66); }
.eyebrow--light .eyebrow__tick { background: var(--gold); }

/* ---------- buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--body);
  font-weight: 600;
  font-size: 0.98rem;
  padding: 0.85rem 1.5rem;
  border: 1.5px solid transparent;
  border-radius: 4px;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn--accent { background: var(--accent); color: #fff; box-shadow: 0 1px 0 rgba(15,23,42,.2), 0 6px 18px rgba(0,96,172,.28); }
.btn--accent:hover { background: var(--accent-deep); }
.btn--ink { background: var(--ink); color: var(--paper); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--hair); }
.btn--ghost:hover { border-color: var(--ink-40); }
.btn--sm { padding: 0.55rem 1rem; font-size: 0.88rem; }
.btn--full { width: 100%; text-align: center; }
:focus-visible { outline: 2.5px solid var(--accent); outline-offset: 2px; }

/* ---------- nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(248, 249, 251, 0.88);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--hair);
}
.nav__inner { display: flex; align-items: center; gap: 2rem; height: 64px; }
.nav__logo {
  font-family: var(--disp); font-weight: 800; font-size: 1.25rem;
  color: var(--ink); text-decoration: none; letter-spacing: -0.02em;
  display: flex; align-items: center;
}
.nav__logo img { width: 26px; height: 26px; border-radius: 6px; margin-right: 0.5rem; }
.nav__logo span { color: var(--accent); }
.nav__links { display: flex; gap: 1.6rem; margin-inline: auto; }
.nav__links a {
  color: var(--ink-60); text-decoration: none; font-size: 0.95rem; font-weight: 500;
}
.nav__links a:hover { color: var(--ink); }
.nav__right { display: flex; align-items: center; gap: 1.1rem; }
.nav__login { color: var(--ink-60); text-decoration: none; font-size: 0.93rem; font-weight: 500; }
.nav__login:hover { color: var(--ink); }
.nav__burger { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav__burger span { display: block; width: 22px; height: 2px; background: var(--ink); margin: 5px 0; }

/* ---------- hero ---------- */
.hero {
  border-bottom: 1px solid var(--hair);
  background:
    linear-gradient(180deg, rgba(3, 105, 161, 0.05), rgba(3, 105, 161, 0) 40%),
    repeating-linear-gradient(0deg, transparent 0 63px, rgba(15,23,42,0.03) 63px 64px),
    repeating-linear-gradient(90deg, transparent 0 63px, rgba(15,23,42,0.03) 63px 64px),
    var(--paper);
}
.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: 3.5rem;
  align-items: center;
  padding-block: 4.5rem 4rem;
}
.hero__h1 {
  font-family: var(--disp);
  font-weight: 800;
  font-size: clamp(2.2rem, 4.6vw, 3.6rem);
  line-height: 1.04;
  letter-spacing: -0.022em;
  margin-bottom: 1.4rem;
}
.hero__h1 em {
  font-style: normal;
  color: var(--accent);
  position: relative;
  white-space: nowrap;
}
.hero__h1 em::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: 0.04em;
  height: 0.09em; background: var(--accent); opacity: 0.35;
}
.hero__sub { color: var(--ink-60); max-width: 34rem; margin-bottom: 1.8rem; }
.hero__sub strong { color: var(--ink); }
.hero__ctas { display: flex; gap: 0.9rem; flex-wrap: wrap; margin-bottom: 1.4rem; }
.hero__foot { font-size: 0.7rem; letter-spacing: 0.12em; color: var(--ink-40); }

/* the compression viz */
.hero__viz { min-width: 0; }
.viz__frame {
  position: relative;
  background: #fff;
  border: 1px solid var(--hair);
  border-radius: 8px;
  box-shadow: 0 1px 2px rgba(15,23,42,.05), 0 18px 50px -12px rgba(15,23,42,.18);
  overflow: hidden;
}
.viz__head {
  display: flex; justify-content: space-between; gap: 1rem;
  padding: 0.7rem 1rem;
  border-bottom: 1px solid var(--hair);
  font-size: 0.66rem; letter-spacing: 0.1em; color: var(--ink-60);
}
.viz__count b { color: var(--accent); font-weight: 600; }
#fieldCanvas { display: block; width: 100%; height: auto; }
.viz__sheet {
  position: absolute;
  right: 14px; top: 56px;
  width: 252px;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(6px);
  border: 1px solid var(--hair);
  border-left: 3px solid var(--accent);
  border-radius: 6px;
  padding: 0.8rem 0.95rem;
  box-shadow: 0 10px 30px -8px rgba(15,23,42,.25);
  opacity: 0;
  transform: translateX(10px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.viz__sheet.on { opacity: 1; transform: none; }
.viz__sheet-head { font-size: 0.62rem; letter-spacing: 0.12em; color: var(--accent); font-weight: 600; margin-bottom: 0.45rem; }
.viz__sheet ol { list-style: none; counter-reset: sheet; }
.viz__sheet li {
  counter-increment: sheet;
  font-size: 0.8rem; font-weight: 500;
  padding: 0.22rem 0;
  border-bottom: 1px dashed var(--hair);
  display: flex; gap: 0.5rem; align-items: baseline;
  opacity: 0; transform: translateY(4px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}
.viz__sheet li.on { opacity: 1; transform: none; }
.viz__sheet li::before {
  content: counter(sheet, decimal-leading-zero);
  font-family: var(--mono); font-size: 0.62rem; color: var(--ink-40);
}
.viz__sheet li:last-child { border-bottom: none; }
.viz__sheet-foot { font-size: 0.56rem; letter-spacing: 0.1em; color: var(--ink-40); margin-top: 0.5rem; }
.viz__cap { font-size: 0.64rem; letter-spacing: 0.12em; color: var(--ink-40); margin-top: 0.7rem; text-align: right; }

/* ---------- ticker ---------- */
.ticker {
  border-bottom: 1px solid var(--hair);
  background: var(--paper-2);
  overflow: hidden;
  white-space: nowrap;
  padding-block: 0.55rem;
}
.ticker__track {
  display: inline-block;
  animation: ticker 60s linear infinite;
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  color: var(--ink-60);
}
.ticker__track b { color: var(--accent); font-weight: 600; }
.ticker__track .sep { margin-inline: 1.6rem; color: var(--ink-40); }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- stats ---------- */
.stats { border-bottom: 1px solid var(--hair); }
.stats__grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
}
.stat {
  padding: 2rem 1.5rem;
  border-left: 1px solid var(--hair);
}
.stat:first-child { border-left: none; }
.stat__n {
  display: block;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.stat__l { color: var(--ink-60); font-size: 0.9rem; }

/* ---------- doors ---------- */
.doors { padding-block: 5rem 5.5rem; border-bottom: 1px solid var(--hair); }
.doors__grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem;
  margin-top: 2.4rem;
}
.door {
  display: block;
  background: #fff;
  border: 1px solid var(--hair);
  border-radius: 8px;
  padding: 2.2rem 2.2rem 2rem;
  text-decoration: none;
  color: var(--ink);
  position: relative;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}
.door:hover {
  transform: translateY(-3px);
  border-color: var(--accent);
  box-shadow: 0 20px 44px -14px rgba(15,23,42,.22);
}
.door__kicker { font-size: 0.66rem; letter-spacing: 0.13em; color: var(--accent); font-weight: 600; margin-bottom: 1rem; }
.door__h { font-family: var(--disp); font-weight: 700; font-size: 1.7rem; letter-spacing: -0.015em; margin-bottom: 0.6rem; }
.door__p { color: var(--ink-60); margin-bottom: 1.2rem; }
.door__list { list-style: none; margin-bottom: 1.6rem; }
.door__list li {
  padding: 0.42rem 0 0.42rem 1.4rem;
  border-top: 1px dashed var(--hair);
  font-size: 0.95rem;
  position: relative;
}
.door__list li::before {
  content: "—"; position: absolute; left: 0; color: var(--accent); font-weight: 600;
}
.door__cta { font-weight: 600; font-size: 0.98rem; }
.door__cta .arrow { display: inline-block; transition: transform 0.18s ease; }
.door:hover .door__cta .arrow { transform: translateX(4px); }

/* ---------- platform ---------- */
.platform { padding-block: 5rem; border-bottom: 1px solid var(--hair); background: var(--paper-2); }
.plat__grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem;
  margin-top: 2.4rem;
}
.plat__card {
  background: #fff; border: 1px solid var(--hair); border-radius: 8px;
  padding: 1.6rem 1.4rem;
}
.plat__num {
  width: 30px; height: 30px;
  display: grid; place-items: center;
  border: 1.5px solid var(--accent);
  border-radius: 50%;
  color: var(--accent);
  font-size: 0.8rem; font-weight: 600;
  margin-bottom: 1rem;
}
.plat__card h3 { font-family: var(--disp); font-size: 1.08rem; font-weight: 700; margin-bottom: 0.4rem; }
.plat__card p { color: var(--ink-60); font-size: 0.92rem; line-height: 1.55; }

/* ---------- proof ---------- */
.proof {
  background:
    radial-gradient(ellipse 90% 60% at 70% -10%, rgba(96, 165, 250, 0.13), transparent),
    var(--field);
  color: var(--paper-on-field);
  padding-block: 5.5rem 5rem;
}
.proof__h {
  font-family: var(--disp);
  font-weight: 700;
  font-size: clamp(1.6rem, 3.2vw, 2.5rem);
  line-height: 1.18;
  letter-spacing: -0.012em;
  max-width: 56rem;
  margin-bottom: 3rem;
}
.proof__h em { font-style: normal; color: var(--gold); }
.proof__big, .proof__x { color: var(--gold); font-weight: 600; }
.proof__cols {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
  gap: 3.5rem;
  align-items: start;
}
.proof__body p { color: rgba(242, 246, 250, 0.78); margin-bottom: 1.1rem; }
.proof__body strong, .proof__body b { color: #fff; }
.proof__list { list-style: none; margin: 1.4rem 0 2rem; }
.proof__list li {
  padding: 0.65rem 0 0.65rem 1.5rem;
  border-top: 1px solid var(--hair-dark);
  color: rgba(242, 246, 250, 0.78);
  position: relative;
  font-size: 0.98rem;
}
.proof__list li::before { content: "—"; position: absolute; left: 0; color: var(--gold); }
.proof__meaning {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.6rem;
  border-top: 2px solid var(--gold);
  padding-top: 1.4rem;
}
.proof__mkick { font-size: 0.66rem; letter-spacing: 0.13em; color: var(--gold); font-weight: 600; margin-bottom: 0.5rem; }
.proof__meaning p:last-child { font-size: 0.94rem; }

.proof__table {
  background: var(--field-2);
  border: 1px solid rgba(242, 246, 250, 0.12);
  border-radius: 8px;
  padding: 1.4rem 1.4rem 1.1rem;
}
.proof__tkick { font-size: 0.66rem; letter-spacing: 0.13em; color: var(--gold); font-weight: 600; margin-bottom: 0.8rem; }
.proof__table table { width: 100%; border-collapse: collapse; font-size: 0.92rem; }
.proof__table th {
  text-align: left; font-family: var(--mono); font-weight: 500;
  font-size: 0.62rem; letter-spacing: 0.1em;
  color: rgba(242, 246, 250, 0.5);
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(242, 246, 250, 0.16);
}
.proof__table th:nth-child(2), .proof__table th:nth-child(3),
.proof__table td:nth-child(2), .proof__table td:nth-child(3) { text-align: right; }
.proof__table td {
  padding: 0.44rem 0;
  border-bottom: 1px solid rgba(242, 246, 250, 0.07);
  color: rgba(242, 246, 250, 0.85);
}
.proof__table tr:last-child td { border-bottom: none; }
.proof__table .hot { color: var(--gold); font-weight: 600; }
.proof__tfoot { font-size: 0.56rem; letter-spacing: 0.1em; color: rgba(242,246,250,0.4); margin-top: 0.8rem; }
.proof__fine {
  margin-top: 3rem;
  font-size: 0.82rem;
  color: rgba(242, 246, 250, 0.45);
  max-width: 52rem;
}

/* ---------- coverage ---------- */
.coverage { padding-block: 5rem; border-bottom: 1px solid var(--hair); }
.cov__grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.9rem;
  margin-top: 2.2rem;
}
.cov__tile {
  border: 1px solid var(--hair);
  border-radius: 6px;
  background: #fff;
  padding: 1rem 1.1rem;
  display: flex; flex-direction: column; gap: 0.15rem;
}
.cov__tile b { font-family: var(--disp); font-weight: 700; font-size: 1.02rem; }
.cov__tile span { font-size: 0.62rem; letter-spacing: 0.08em; color: var(--ink-40); }
.cov__tile--ask { border-style: dashed; border-color: var(--accent); background: var(--accent-soft); }
.cov__tile--ask span { color: var(--accent); font-weight: 600; }

/* ---------- social ---------- */
.social { padding-block: 4.5rem; border-bottom: 1px solid var(--hair); background: var(--paper-2); }
.social__grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 3rem; align-items: center; }
.social__quote p {
  font-family: var(--disp);
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 1rem;
}
.social__quote cite { font-style: normal; font-size: 0.68rem; letter-spacing: 0.12em; color: var(--ink-60); }
.social__logos p { font-size: 0.66rem; letter-spacing: 0.13em; color: var(--ink-40); margin-bottom: 1rem; }
.social__row { display: flex; gap: 2rem; align-items: center; }
.social__row img { height: 26px; width: auto; opacity: 0.75; filter: grayscale(1); }
.social__row img.tall { height: 44px; }

/* ---------- book ---------- */
.book { padding-block: 5.5rem; border-bottom: 1px solid var(--hair); }
.book__grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 3.5rem; align-items: start; }
.book__note { margin-top: 1.4rem; font-size: 0.68rem; letter-spacing: 0.1em; color: var(--ink-40); }
.book__form {
  background: #fff;
  border: 1px solid var(--hair);
  border-top: 3px solid var(--accent);
  border-radius: 8px;
  padding: 1.8rem;
  box-shadow: 0 16px 44px -16px rgba(15,23,42,.16);
}
.book__form-kick { font-size: 0.66rem; letter-spacing: 0.13em; color: var(--accent); font-weight: 600; margin-bottom: 1.2rem; }
.book__form label {
  display: block; font-size: 0.82rem; font-weight: 600; margin-bottom: 0.3rem;
}
.book__form input {
  width: 100%;
  font-family: var(--body);
  font-size: 0.95rem;
  padding: 0.7rem 0.85rem;
  border: 1px solid var(--hair);
  border-radius: 4px;
  background: var(--paper);
  margin-bottom: 1rem;
  color: var(--ink);
}
.book__form input:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-soft); }
.book__form input::placeholder { color: var(--ink-40); }
.book__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.book__msg { margin-top: 0.8rem; font-size: 0.88rem; min-height: 1.2em; }
.book__msg.ok { color: #15803D; }
.book__msg.err { color: #B91C1C; }

/* ---------- footer ---------- */
.footer { background: var(--paper); overflow: hidden; }
.footer__meta {
  display: flex; justify-content: space-between; align-items: center; gap: 2rem;
  padding-block: 2rem 1rem;
  flex-wrap: wrap;
}
.footer__links { display: flex; gap: 1.6rem; flex-wrap: wrap; }
.footer__links a { color: var(--ink-60); text-decoration: none; font-size: 0.9rem; }
.footer__links a:hover { color: var(--ink); }
.footer__meta .mono { font-size: 0.62rem; letter-spacing: 0.1em; color: var(--ink-40); }
.footer__mark {
  font-family: var(--disp);
  font-weight: 800;
  font-size: clamp(4rem, 14.5vw, 13rem);
  line-height: 0.78;
  letter-spacing: -0.03em;
  text-align: center;
  color: var(--ink);
  opacity: 0.06;
  user-select: none;
  transform: translateY(0.16em);
}

/* ---------- reveal ---------- */
.reveal { opacity: 0; transform: translateY(14px); transition: opacity 0.55s ease, transform 0.55s ease; }
.reveal.on { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; } }

/* ---------- responsive ---------- */
@media (max-width: 1020px) {
  .hero__grid { grid-template-columns: 1fr; gap: 2.5rem; padding-block: 3.2rem; }
  .hero__viz { max-width: 640px; }
  .stats__grid { grid-template-columns: 1fr 1fr; }
  .stat { border-left: none; border-top: 1px solid var(--hair); }
  .stat:nth-child(-n+2) { border-top: none; }
  .stat:nth-child(even) { border-left: 1px solid var(--hair); }
  .doors__grid, .proof__cols, .book__grid, .social__grid { grid-template-columns: 1fr; }
  .plat__grid { grid-template-columns: 1fr 1fr; }
  .cov__grid { grid-template-columns: repeat(3, 1fr); }
  .proof__cols { gap: 2.5rem; }
}
@media (max-width: 640px) {
  .nav__links, .nav__login { display: none; }
  .nav__burger { display: block; margin-left: auto; }
  .nav__right { margin-left: auto; }
  .nav.open .nav__links {
    display: flex; flex-direction: column; gap: 0;
    position: absolute; top: 64px; left: 0; right: 0;
    background: var(--paper); border-bottom: 1px solid var(--hair);
    padding: 0.5rem 24px 1rem;
  }
  .nav.open .nav__links a { padding: 0.7rem 0; border-top: 1px dashed var(--hair); }
  .plat__grid, .cov__grid, .proof__meaning, .book__row { grid-template-columns: 1fr; }
  .stats__grid { grid-template-columns: 1fr 1fr; }
  .viz__sheet { position: static; width: auto; margin: 0.8rem; opacity: 1; transform: none; }
  .doors, .platform, .coverage, .book, .proof { padding-block: 3.2rem; }
}

/* ============================================================
   persona pages + blog
   ============================================================ */

/* page hero (no canvas) */
.phero {
  border-bottom: 1px solid var(--hair);
  background:
    linear-gradient(180deg, rgba(3, 105, 161, 0.05), rgba(3, 105, 161, 0) 40%),
    repeating-linear-gradient(0deg, transparent 0 63px, rgba(15,23,42,0.03) 63px 64px),
    repeating-linear-gradient(90deg, transparent 0 63px, rgba(15,23,42,0.03) 63px 64px),
    var(--paper);
  padding-block: 4.2rem 3.4rem;
}
.phero__h1 {
  font-family: var(--disp);
  font-weight: 800;
  font-size: clamp(2rem, 4.2vw, 3.2rem);
  line-height: 1.06;
  letter-spacing: -0.02em;
  margin-bottom: 1.2rem;
}
.phero__h1 em { font-style: normal; color: var(--accent); }
.phero__sub { color: var(--ink-60); max-width: 42rem; margin-bottom: 1.7rem; }

.flow-ribbon {
  display: flex; flex-wrap: wrap; align-items: center; gap: 0.6rem;
  margin-top: 2rem;
  font-size: 0.66rem; letter-spacing: 0.1em; color: var(--ink-60);
}
.flow-ribbon span {
  border: 1px solid var(--hair); background: #fff;
  padding: 0.3rem 0.65rem; border-radius: 999px;
}
.flow-ribbon i { font-style: normal; color: var(--accent); }

/* steps */
.steps { padding-block: 4.5rem; border-bottom: 1px solid var(--hair); }
.step {
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: 3rem; align-items: center;
  padding-block: 2.6rem;
}
.step + .step { border-top: 1px dashed var(--hair); }
.step--flip .step__copy { order: 2; }
.step--flip .step__media { order: 1; }
.step__kick { font-size: 0.66rem; letter-spacing: 0.13em; color: var(--accent); font-weight: 600; margin-bottom: 0.7rem; }
.step__h {
  font-family: var(--disp); font-weight: 700;
  font-size: clamp(1.35rem, 2.4vw, 1.8rem);
  letter-spacing: -0.012em; line-height: 1.15;
  margin-bottom: 0.7rem;
}
.step__h--sm { font-size: clamp(1.2rem, 2vw, 1.5rem); }
.step__copy p { color: var(--ink-60); }
.step__copy p em { color: var(--ink); }
.step__list { list-style: none; margin-top: 1rem; }
.step__list li {
  padding: 0.4rem 0 0.4rem 1.4rem;
  border-top: 1px dashed var(--hair);
  font-size: 0.95rem; position: relative;
}
.step__list li::before { content: "—"; position: absolute; left: 0; color: var(--accent); font-weight: 600; }

/* screenshot placeholder frame */
.shot {
  background: #fff; border: 1px solid var(--hair); border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 1px 2px rgba(15,23,42,.05), 0 16px 44px -14px rgba(15,23,42,.16);
}
.shot__bar {
  display: flex; align-items: center; gap: 6px;
  padding: 0.6rem 0.9rem;
  border-bottom: 1px solid var(--hair);
  font-size: 0.64rem; letter-spacing: 0.08em; color: var(--ink-40);
}
.shot__bar span { width: 8px; height: 8px; border-radius: 50%; background: var(--hair); }
.shot__ph {
  aspect-ratio: 16 / 10;
  display: grid; place-items: center; text-align: center;
  font-size: 0.68rem; letter-spacing: 0.1em; color: var(--ink-40); line-height: 1.9;
  background:
    repeating-linear-gradient(0deg, transparent 0 31px, rgba(15,23,42,0.03) 31px 32px),
    repeating-linear-gradient(90deg, transparent 0 31px, rgba(15,23,42,0.03) 31px 32px),
    var(--paper);
}
.shot__ph small { color: var(--ink-40); opacity: 0.7; letter-spacing: 0.06em; }

/* banded section (gray) */
.banded { padding-block: 4.5rem; border-bottom: 1px solid var(--hair); background: var(--paper-2); }
.banded__grid {
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
  gap: 3rem; align-items: center;
}

/* momentum stat band (tenant-rep) */
.moment {
  border: 1px solid var(--hair); border-top: 3px solid var(--gold);
  background: #fff; border-radius: 8px;
  padding: 1.8rem 1.8rem 1.4rem;
  margin-block: 2.6rem;
}
.moment__kick { font-size: 0.66rem; letter-spacing: 0.12em; color: var(--ink-60); font-weight: 600; margin-bottom: 1.2rem; }
.moment__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.moment__card b {
  display: block;
  font-size: clamp(1.6rem, 2.6vw, 2.2rem); font-weight: 600; letter-spacing: -0.02em;
  color: var(--accent);
  margin-bottom: 0.3rem;
}
.moment__card p { color: var(--ink-60); font-size: 0.92rem; line-height: 1.55; }
.moment__foot { margin-top: 1.3rem; padding-top: 1rem; border-top: 1px dashed var(--hair); font-weight: 600; font-size: 0.95rem; }

/* site-selection cards */
.sel__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; margin-top: 2.2rem; }
.sel__card {
  background: #fff; border: 1px solid var(--hair); border-radius: 8px;
  padding: 1.6rem 1.5rem;
}
.sel__k { font-size: 0.66rem; letter-spacing: 0.13em; color: var(--accent); font-weight: 600; margin-bottom: 0.7rem; }
.sel__card p:last-child { color: var(--ink-60); font-size: 0.95rem; }
.sel__card p em { color: var(--ink); }

/* real-run strip (landlord) */
.run { padding-block: 4.5rem; border-bottom: 1px solid var(--hair); }
.run__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; margin-top: 2.2rem; }
.run__card {
  background: #fff; border: 1px solid var(--hair); border-radius: 8px;
  padding: 1.5rem 1.4rem;
}
.run__k { font-size: 0.66rem; letter-spacing: 0.13em; color: var(--accent); font-weight: 600; margin-bottom: 0.6rem; }
.run__card p:last-child { color: var(--ink-60); font-size: 0.94rem; }
.run__cta { margin-top: 2.2rem; }
.run__narrow { max-width: 780px; }

/* blog list */
.bloglist { max-width: 780px; }
.blogcard {
  background: #fff; border: 1px solid var(--hair); border-radius: 8px;
  padding: 1.8rem 1.8rem 1.6rem;
  margin-bottom: 1.2rem;
}
.blogcard__k { font-size: 0.66rem; letter-spacing: 0.13em; color: var(--accent); font-weight: 600; margin-bottom: 0.7rem; }
.blogcard h2 { font-family: var(--disp); font-weight: 700; font-size: 1.35rem; letter-spacing: -0.012em; margin-bottom: 0.5rem; }
.blogcard p:last-child { color: var(--ink-60); }
.bloglist__note { font-size: 0.66rem; letter-spacing: 0.12em; color: var(--ink-40); margin-top: 1.8rem; }

@media (max-width: 1020px) {
  .step, .banded__grid { grid-template-columns: 1fr; gap: 1.6rem; }
  .step--flip .step__copy { order: 1; }
  .step--flip .step__media { order: 2; }
  .moment__grid, .sel__grid, .run__grid { grid-template-columns: 1fr; gap: 1rem; }
}

/* real app screenshots inside .shot frames */
.shot img { display: block; width: 100%; height: auto; }
.shot img.shot__contain { max-width: 520px; margin-inline: auto; padding: 1.2rem; }

/* ---------- tenant-rep BD: feature stack + screener mock ---------- */
.bd__grid {
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 0.95fr);
  gap: 3rem; align-items: start;
  margin-top: 2.4rem;
}
.bd__feats { display: flex; flex-direction: column; }
.feat { padding-block: 1.4rem; }
.feat + .feat { border-top: 1px dashed var(--hair); }
.feat__k { font-size: 0.66rem; letter-spacing: 0.13em; color: var(--accent); font-weight: 600; margin-bottom: 0.5rem; }
.feat h3 {
  font-family: var(--disp); font-weight: 700;
  font-size: 1.18rem; letter-spacing: -0.01em; margin-bottom: 0.4rem;
}
.feat p:last-child { color: var(--ink-60); font-size: 0.96rem; }
.feat p em { color: var(--ink); }

.mock {
  position: sticky; top: 88px;
  background: #fff; border: 1px solid var(--hair); border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 1px 2px rgba(15,23,42,.05), 0 18px 50px -12px rgba(15,23,42,.16);
}
.mock__bar {
  display: flex; align-items: center; gap: 6px;
  padding: 0.65rem 0.95rem;
  border-bottom: 1px solid var(--hair);
  font-size: 0.64rem; letter-spacing: 0.1em; color: var(--ink-60);
}
.mock__bar span { width: 8px; height: 8px; border-radius: 50%; background: var(--hair); }
.mock__table { width: 100%; border-collapse: collapse; font-size: 0.74rem; }
.mock__table th {
  text-align: left; font-weight: 500; font-size: 0.6rem; letter-spacing: 0.1em;
  color: var(--ink-40);
  padding: 0.7rem 0.9rem 0.45rem;
  border-bottom: 1px solid var(--hair);
}
.mock__table td {
  padding: 0.62rem 0.9rem;
  border-bottom: 1px solid var(--paper-2);
  white-space: nowrap;
}
.mock__table td:first-child { font-family: var(--body); font-weight: 600; font-size: 0.86rem; }
.mock__table th:nth-child(2), .mock__table td:nth-child(2),
.mock__table th:nth-child(3), .mock__table td:nth-child(3) { text-align: right; }
.mock__table tr.hot td:first-child { color: var(--ink); }
.mock__table tr.dim td { color: var(--ink-40); }
.mock__table tr.dim td:first-child { font-weight: 500; }
.chip {
  display: inline-block;
  font-size: 0.6rem; letter-spacing: 0.06em; font-weight: 600;
  padding: 0.18rem 0.5rem; border-radius: 999px;
  background: var(--accent-soft); color: var(--accent);
}
.chip--hot { background: rgba(250, 189, 52, 0.18); color: var(--gold-text); }
.mock__foot {
  padding: 0.7rem 0.95rem;
  border-top: 1px solid var(--hair);
  font-size: 0.58rem; letter-spacing: 0.1em; color: var(--ink-40);
}

@media (max-width: 1020px) {
  .bd__grid { grid-template-columns: 1fr; }
  .mock { position: static; max-width: 560px; }
}

/* ---------- depth-on-demand spec sheet ---------- */
.spec {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  margin-top: 2.2rem;
  border: 1px solid var(--hair); border-radius: 8px;
  background: #fff; overflow: hidden;
}
.spec > div {
  padding: 1.2rem 1.4rem;
  border-bottom: 1px solid var(--hair);
}
.spec > div:nth-child(odd) { border-right: 1px solid var(--hair); }
.spec > div:nth-last-child(-n+2) { border-bottom: none; }
.spec dt {
  font-size: 0.64rem; letter-spacing: 0.12em; font-weight: 600;
  color: var(--accent);
  margin-bottom: 0.3rem;
}
.spec dd { color: var(--ink-60); font-size: 0.94rem; line-height: 1.5; }
@media (max-width: 700px) {
  .spec { grid-template-columns: 1fr; }
  .spec > div:nth-child(odd) { border-right: none; }
  .spec > div:nth-last-child(-n+2) { border-bottom: 1px solid var(--hair); }
  .spec > div:last-child { border-bottom: none; }
}

/* ---------- screenshot lightbox ---------- */
.shot { position: relative; }
.shot:has(img) { cursor: zoom-in; }
.shot__hint {
  position: absolute; right: 10px; bottom: 10px;
  font-family: var(--mono); font-size: 0.58rem; letter-spacing: 0.1em; font-weight: 600;
  color: var(--ink); background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--hair); border-radius: 999px;
  padding: 0.3rem 0.65rem;
  opacity: 0; transform: translateY(4px);
  transition: opacity 0.18s ease, transform 0.18s ease;
  pointer-events: none;
  box-shadow: 0 4px 14px rgba(15,23,42,.14);
}
.shot:hover .shot__hint { opacity: 1; transform: none; }
@media (hover: none) { .shot__hint { opacity: 1; transform: none; } }

.lightbox {
  position: fixed; inset: 0; z-index: 200;
  display: flex; align-items: center; justify-content: center;
  padding: 3vh 3vw;
  background: rgba(10, 15, 26, 0.86);
  backdrop-filter: blur(4px);
  opacity: 0; pointer-events: none;
  transition: opacity 0.2s ease;
  cursor: zoom-out;
}
.lightbox.on { opacity: 1; pointer-events: auto; }
.lightbox img {
  max-width: 94vw; max-height: 92vh;
  width: auto; height: auto;
  border-radius: 8px;
  box-shadow: 0 30px 80px rgba(0,0,0,.5);
  transform: scale(0.97);
  transition: transform 0.2s ease;
}
.lightbox.on img { transform: none; }
.lightbox__cap {
  position: absolute; left: 50%; bottom: 18px; transform: translateX(-50%);
  font-family: var(--mono); font-size: 0.62rem; letter-spacing: 0.12em;
  color: rgba(242, 246, 250, 0.75);
  background: rgba(10, 15, 26, 0.6);
  padding: 0.35rem 0.8rem; border-radius: 999px;
  white-space: nowrap;
}

/* ---------- footer contact ---------- */
.footer__contact {
  display: flex; flex-wrap: wrap; gap: 0.5rem 1.4rem;
  font-size: 0.66rem; letter-spacing: 0.1em;
  color: var(--ink-60);
}
.footer__contact a { color: var(--ink-60); text-decoration: none; }
.footer__contact a:hover { color: var(--accent); }
.footer__contact span { color: var(--ink); font-weight: 600; }

/* ---------- nav CTA on small screens ---------- */
.btn { white-space: nowrap; }
.nav__cta-short { display: none; }
@media (max-width: 640px) {
  .nav__cta-long { display: none; }
  .nav__cta-short { display: inline; }
  .nav__cta { padding: 0.5rem 0.85rem; font-size: 0.82rem; }
  .nav__inner { gap: 0.8rem; }
}
