/* Owner and agent expansion — layered over the original PropertyTenant system */
:root {
  --pt-ink: #12372f;
  --pt-ink-deep: #082a23;
  --pt-paper: #f5f0e7;
  --pt-paper-deep: #ebe3d5;
  --pt-white: #fffefb;
  --pt-muted: #5d6c66;
  --pt-line: #d8d1c5;
  --pt-lime: #d9ff62;
  --pt-mint: #c5e7d6;
  --pt-rust: #be6e48;
  --pt-shadow: 0 22px 58px rgba(12, 49, 41, .12);
}

body.growth-site {
  background: var(--pt-paper);
  color: var(--pt-ink);
}

.growth-site h1,
.growth-site h2,
.growth-site h3,
.metric-value,
.dashboard-number {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: -.035em;
}

.growth-site .site-header {
  background: rgba(245, 240, 231, .94);
}

.growth-site .nav {
  min-height: 76px;
}

.growth-site .brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 1.08rem;
}

.growth-site .brand::before {
  width: 24px;
  height: 24px;
  border-radius: 7px;
  background:
    linear-gradient(90deg, transparent 17%, var(--pt-lime) 18% 31%, transparent 32% 43%, var(--pt-lime) 44% 58%, transparent 59% 70%, var(--pt-lime) 71% 84%, transparent 85%),
    var(--pt-ink);
  content: "";
}

.growth-site .nav-links {
  display: flex;
}

.growth-site .nav-cta {
  border-radius: 999px;
  background: var(--pt-ink);
  color: #fff;
  padding: 10px 15px;
}

.owner-hero {
  padding: 82px 0 86px;
}

.owner-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(390px, .78fr);
  align-items: center;
  gap: 76px;
}

.owner-hero h1 {
  max-width: 760px;
  margin-bottom: 22px;
  color: var(--pt-ink);
  font-size: clamp(3.7rem, 6.6vw, 5.7rem);
  line-height: .96;
}

.owner-hero .hero-copy {
  max-width: 690px;
  font-size: 1.18rem;
  line-height: 1.65;
}

.action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.growth-site .button {
  border-radius: 999px;
}

.microcopy {
  margin: 16px 0 0;
  color: var(--pt-muted);
  font-size: .78rem;
}

.founder-inline {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 13px 0 0;
  color: var(--pt-ink);
  font-size: .78rem;
  font-weight: 750;
}

.founder-inline::before {
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--pt-rust);
  content: "";
}

.campaign-preview {
  padding: 25px;
  border: 1px solid rgba(18, 55, 47, .15);
  border-radius: 24px;
  background: var(--pt-white);
  box-shadow: var(--pt-shadow);
  transform: rotate(1deg);
}

.preview-top,
.preview-row,
.dashboard-header,
.demo-banner,
.lane-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.preview-top {
  padding-bottom: 18px;
  border-bottom: 1px solid var(--pt-line);
  color: var(--pt-muted);
  font-size: .72rem;
  font-weight: 800;
}

.live-label::before {
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 8px;
  border-radius: 50%;
  background: #2c9a67;
  box-shadow: 0 0 0 4px rgba(44, 154, 103, .12);
  content: "";
}

.status {
  border-radius: 999px;
  background: #edf6f0;
  color: #276246;
  padding: 6px 9px;
}

.preview-property {
  padding: 24px 0 18px;
}

.preview-property h2 {
  margin-bottom: 7px;
  color: var(--pt-ink);
  font-size: 1.9rem;
}

.preview-property p {
  margin: 0;
  color: var(--pt-muted);
  font-size: .8rem;
}

.preview-rows {
  display: grid;
  gap: 8px;
}

.preview-row {
  border-radius: 10px;
  background: #f1f0ea;
  color: var(--pt-muted);
  padding: 11px 13px;
  font-size: .78rem;
}

.preview-row strong {
  color: var(--pt-ink);
  font-size: 1rem;
}

.preview-row.highlight {
  background: var(--pt-ink);
  color: rgba(255, 255, 255, .7);
}

.preview-row.highlight strong {
  color: var(--pt-lime);
}

.disclosure {
  margin: 13px 0 0;
  color: var(--pt-muted);
  font-size: .68rem;
  line-height: 1.45;
}

.proof-band {
  border-block: 1px solid rgba(18, 55, 47, .12);
  background: var(--pt-paper-deep);
}

.proof-band-inner {
  display: grid;
  grid-template-columns: 1.05fr 2fr;
  align-items: center;
  gap: 44px;
  min-height: 126px;
}

.proof-context p {
  margin: 0;
  color: var(--pt-muted);
  font-size: .74rem;
}

.proof-context .eyebrow {
  margin-bottom: 7px;
  color: var(--pt-rust);
}

.proof-metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.proof-metric {
  border-left: 1px solid rgba(18, 55, 47, .13);
  padding: 4px 18px;
}

.metric-value {
  display: block;
  color: var(--pt-ink);
  font-size: 2rem;
}

.proof-metric span:last-child {
  color: var(--pt-muted);
  font-size: .68rem;
}

.growth-section {
  padding: 94px 0;
}

.growth-section.dark {
  background: var(--pt-ink);
  color: #fff;
}

.growth-heading {
  max-width: 760px;
  margin-bottom: 38px;
}

.growth-heading.wide {
  display: grid;
  max-width: none;
  grid-template-columns: 1.1fr .7fr;
  align-items: end;
  gap: 70px;
}

.growth-heading h2 {
  margin-bottom: 13px;
  color: inherit;
  font-size: clamp(2.7rem, 4.4vw, 4.2rem);
  line-height: 1;
}

.growth-heading > p:last-child,
.growth-heading.wide > p {
  color: var(--pt-muted);
  line-height: 1.65;
}

.dark .growth-heading > p:last-child {
  color: rgba(255, 255, 255, .65);
}

.audience-grid,
.process-grid,
.case-grid {
  display: grid;
  gap: 18px;
}

.audience-grid {
  grid-template-columns: 1fr 1fr;
}

.audience-card {
  display: grid;
  min-height: 330px;
  align-content: space-between;
  border-radius: 22px;
  padding: 36px;
}

.audience-card.owner {
  background: var(--pt-mint);
}

.audience-card.tenant {
  background: #efc8b2;
}

.audience-card h3 {
  max-width: 480px;
  margin-bottom: 13px;
  color: var(--pt-ink);
  font-size: 2.35rem;
}

.audience-card p {
  max-width: 560px;
  color: var(--pt-muted);
  line-height: 1.6;
}

.process-grid,
.case-grid {
  grid-template-columns: repeat(3, 1fr);
}

.process-card {
  min-height: 270px;
  border: 1px solid var(--pt-line);
  border-radius: 20px;
  background: rgba(255, 255, 255, .35);
  padding: 27px;
}

.process-card .number {
  display: inline-grid;
  width: 36px;
  height: 36px;
  place-items: center;
  margin-bottom: 54px;
  border-radius: 50%;
  background: var(--pt-mint);
  font-size: .72rem;
  font-weight: 900;
}

.process-card h3,
.case-card h3 {
  color: inherit;
  font-size: 1.55rem;
}

.process-card p,
.case-card p {
  color: var(--pt-muted);
  font-size: .86rem;
  line-height: 1.65;
}

.case-card {
  display: flex;
  min-height: 320px;
  flex-direction: column;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 20px;
  background: rgba(255, 255, 255, .05);
  padding: 27px;
}

.case-card p {
  color: rgba(255, 255, 255, .65);
}

.case-result {
  margin-top: auto;
  color: var(--pt-lime);
  font-size: .78rem;
  font-weight: 900;
}

.human-proof {
  background: var(--pt-paper-deep);
}

.founder-story {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  align-items: start;
  gap: 86px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(18, 55, 47, .14);
}

.founder-story h2,
.owner-trust-story h2 {
  color: var(--pt-ink);
  font-size: clamp(2.7rem, 4.5vw, 4.1rem);
  line-height: 1;
}

.founder-copy p,
.owner-trust-story > p:last-child {
  color: var(--pt-muted);
  line-height: 1.75;
}

.founder-copy p:first-child {
  margin-top: 0;
}

.early-user-heading {
  max-width: 720px;
  margin: 52px 0 28px;
}

.early-user-heading h3 {
  margin-bottom: 9px;
  color: var(--pt-ink);
  font-size: 2.25rem;
}

.early-user-heading > p:last-child {
  color: var(--pt-muted);
}

.people-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.person-card {
  min-height: 235px;
  border: 1px solid rgba(18, 55, 47, .14);
  border-radius: 20px;
  background: var(--pt-white);
  padding: 27px;
}

.person-card.founder-card {
  background: var(--pt-mint);
}

.person-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 23px;
}

.person-mark {
  display: inline-grid;
  width: 43px;
  height: 43px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: var(--pt-ink);
  color: var(--pt-lime);
  font-family: Georgia, serif;
  font-size: 1.2rem;
}

.person-card h3 {
  margin: 0;
  color: var(--pt-ink);
  font-size: 1.45rem;
}

.person-role {
  margin: 3px 0 0;
  color: var(--pt-muted);
  font-size: .72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.person-card > p:last-child {
  color: var(--pt-muted);
  font-size: .86rem;
  line-height: 1.65;
}

.proof-disclosure {
  margin-top: 18px;
}

.owner-trust-band {
  border-block: 1px solid rgba(18, 55, 47, .12);
  background: var(--pt-paper-deep);
  padding: 66px 0;
}

.owner-trust-grid {
  display: grid;
  grid-template-columns: 1fr .9fr;
  align-items: start;
  gap: 72px;
}

.owner-trust-story h2 {
  margin-bottom: 18px;
}

.owner-trust-points {
  overflow: hidden;
  border: 1px solid rgba(18, 55, 47, .14);
  border-radius: 18px;
  background: var(--pt-white);
}

.owner-trust-points > div {
  display: grid;
  gap: 5px;
  border-bottom: 1px solid var(--pt-line);
  padding: 18px 22px;
}

.owner-trust-points > div:last-child {
  border-bottom: 0;
}

.owner-trust-points strong {
  color: var(--pt-ink);
}

.owner-trust-points span {
  color: var(--pt-muted);
  font-size: .8rem;
  line-height: 1.5;
}

.price-layout {
  display: grid;
  grid-template-columns: 1fr .67fr;
  align-items: center;
  gap: 86px;
}

.price-copy h2 {
  color: var(--pt-ink);
  font-size: clamp(2.8rem, 4.5vw, 4.3rem);
}

.price-copy > p:not(.eyebrow) {
  color: var(--pt-muted);
  line-height: 1.7;
}

.offer-card {
  border-radius: 23px;
  background: var(--pt-white);
  box-shadow: var(--pt-shadow);
  padding: 32px;
}

.offer-price {
  display: flex;
  align-items: end;
  gap: 12px;
  margin: 16px 0;
}

.offer-price strong {
  color: var(--pt-ink);
  font-family: Georgia, serif;
  font-size: 3.8rem;
  font-weight: 500;
  line-height: .9;
}

.offer-price span {
  color: var(--pt-muted);
  font-size: .72rem;
}

.offer-note {
  border-bottom: 1px solid var(--pt-line);
  padding-bottom: 18px;
  color: var(--pt-muted);
  font-size: .75rem;
}

.clean-list {
  display: grid;
  gap: 11px;
  margin: 20px 0 24px;
  padding: 0;
  list-style: none;
}

.clean-list li {
  position: relative;
  padding-left: 23px;
  color: var(--pt-muted);
  font-size: .82rem;
}

.clean-list li::before {
  position: absolute;
  left: 0;
  color: #2b7d57;
  font-weight: 900;
  content: "✓";
}

.closing-band {
  background: var(--pt-ink);
  color: #fff;
  padding: 62px 0;
}

.closing-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}

.closing-inner h2 {
  margin-bottom: 8px;
  color: #fff;
  font-size: clamp(2.5rem, 4vw, 3.8rem);
}

.closing-inner p {
  margin: 0;
  color: rgba(255, 255, 255, .65);
}

/* Owner detail and intake */
.owner-page-hero {
  padding: 72px 0 66px;
}

.owner-page-hero h1,
.demo-hero h1,
.application-hero h1 {
  max-width: 930px;
  color: var(--pt-ink);
  font-size: clamp(3.2rem, 6vw, 5rem);
  line-height: .98;
}

.scope-grid,
.expectation-layout,
.application-layout {
  display: grid;
  grid-template-columns: 1fr .72fr;
  gap: 52px;
  align-items: start;
}

.scope-card,
.baseline-card,
.application-aside,
.dashboard-frame {
  border: 1px solid var(--pt-line);
  border-radius: 20px;
  background: var(--pt-white);
  box-shadow: var(--pt-shadow);
}

.scope-card,
.baseline-card,
.application-aside {
  padding: 28px;
}

.scope-row {
  display: grid;
  gap: 5px;
  border-bottom: 1px solid var(--pt-line);
  padding: 17px 0;
}

.scope-row:last-of-type {
  border-bottom: 0;
}

.scope-row strong {
  color: var(--pt-ink);
  font-family: Georgia, serif;
  font-size: 1.25rem;
  font-weight: 500;
}

.scope-row span {
  color: var(--pt-muted);
  font-size: .8rem;
  line-height: 1.5;
}

.expectation-layout h2 {
  color: var(--pt-ink);
  font-size: clamp(2.7rem, 4.5vw, 4rem);
}

.expectation-layout > div > p:not(.eyebrow) {
  color: var(--pt-muted);
  line-height: 1.7;
}

.baseline-row {
  display: flex;
  align-items: baseline;
  gap: 13px;
  border-bottom: 1px solid var(--pt-line);
  padding: 13px 0;
}

.baseline-row strong {
  min-width: 68px;
  color: var(--pt-ink);
  font-family: Georgia, serif;
  font-size: 2.1rem;
  font-weight: 500;
}

.baseline-row span {
  color: var(--pt-muted);
  font-size: .78rem;
}

/* Demo dashboard */
.demo-hero {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 48px;
  padding: 68px 0 42px;
}

.demo-hero > div {
  max-width: 840px;
}

.dashboard-frame {
  overflow: hidden;
  margin-bottom: 90px;
}

.demo-banner {
  justify-content: center;
  background: #ffe8a8;
  color: #614a16;
  padding: 10px 18px;
  font-size: .7rem;
}

.dashboard-header {
  border-bottom: 1px solid var(--pt-line);
  padding: 28px;
}

.dashboard-header h2 {
  margin-bottom: 5px;
  color: var(--pt-ink);
  font-size: 2rem;
}

.dashboard-header p {
  margin: 0;
  color: var(--pt-muted);
  font-size: .75rem;
}

.dashboard-metrics {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-bottom: 1px solid var(--pt-line);
}

.dashboard-metric {
  border-right: 1px solid var(--pt-line);
  padding: 21px;
}

.dashboard-metric:last-child {
  border-right: 0;
}

.dashboard-metric span,
.dashboard-metric small {
  display: block;
  color: var(--pt-muted);
  font-size: .64rem;
}

.dashboard-number {
  display: block;
  margin: 8px 0 4px;
  color: var(--pt-ink);
  font-size: 2.2rem;
}

.dashboard-metric.qualified {
  background: var(--pt-ink);
}

.dashboard-metric.qualified span,
.dashboard-metric.qualified small {
  color: rgba(255, 255, 255, .65);
}

.dashboard-metric.qualified .dashboard-number {
  color: var(--pt-lime);
}

.dashboard-body {
  display: grid;
  grid-template-columns: 1.35fr .75fr;
}

.activity-panel,
.lane-panel {
  padding: 28px;
}

.activity-panel {
  border-right: 1px solid var(--pt-line);
}

.activity-row {
  display: grid;
  grid-template-columns: 90px 1fr .68fr;
  align-items: center;
  gap: 14px;
  min-height: 62px;
  border-top: 1px solid var(--pt-line);
  font-size: .72rem;
}

.activity-row time,
.activity-row span,
.lane-head span {
  color: var(--pt-muted);
}

.activity-row div {
  display: grid;
  gap: 3px;
}

.activity-row em {
  justify-self: end;
  border-radius: 999px;
  background: #f1efe8;
  color: var(--pt-muted);
  padding: 5px 8px;
  font-size: .62rem;
  font-style: normal;
}

.lane-panel {
  background: #f7f5ef;
}

.lane {
  margin: 18px 0;
}

.lane-head {
  margin-bottom: 8px;
  font-size: .68rem;
}

.lane-track {
  height: 5px;
  overflow: hidden;
  border-radius: 99px;
  background: #dde0d7;
}

.lane-track i {
  display: block;
  width: var(--lane-width);
  height: 100%;
  background: var(--pt-rust);
}

/* Property application */
.application-hero {
  padding: 65px 0 46px;
}

.application-layout {
  grid-template-columns: 1fr 320px;
  padding-bottom: 90px;
}

.application-form {
  overflow: hidden;
  border: 1px solid var(--pt-line);
  border-radius: 20px;
  background: var(--pt-white);
}

.application-form .form-section {
  padding: 30px;
}

.application-form .section-heading {
  align-items: start;
  flex-direction: column;
  gap: 5px;
}

.application-form .section-heading p {
  color: var(--pt-muted);
  font-weight: 500;
}

.application-form textarea {
  min-height: 100px;
}

.application-aside {
  position: sticky;
  top: 96px;
}

.application-aside h2 {
  color: var(--pt-ink);
  font-size: 1.6rem;
}

.application-aside ol {
  display: grid;
  gap: 18px;
  padding-left: 22px;
}

.application-aside li {
  color: var(--pt-muted);
  font-size: .8rem;
  line-height: 1.55;
}

.application-aside li strong {
  display: block;
  color: var(--pt-ink);
}

.trust-note {
  border-radius: 12px;
  background: var(--pt-mint);
  padding: 16px;
  color: var(--pt-ink);
  font-size: .75rem;
  line-height: 1.5;
}

@media (max-width: 900px) {
  .owner-hero-grid,
  .proof-band-inner,
  .growth-heading.wide,
  .price-layout,
  .scope-grid,
  .expectation-layout,
  .application-layout,
  .dashboard-body,
  .founder-story,
  .owner-trust-grid {
    grid-template-columns: 1fr;
  }

  .founder-story,
  .owner-trust-grid {
    gap: 38px;
  }

  .owner-hero-grid {
    gap: 50px;
  }

  .campaign-preview {
    max-width: 620px;
    transform: none;
  }

  .process-grid,
  .case-grid,
  .people-grid {
    grid-template-columns: 1fr;
  }

  .case-card {
    min-height: 250px;
  }

  .dashboard-metrics {
    grid-template-columns: repeat(2, 1fr);
  }

  .dashboard-metric:nth-child(2n) {
    border-right: 0;
  }

  .dashboard-metric.qualified {
    grid-column: 1 / -1;
  }

  .activity-panel {
    border-right: 0;
    border-bottom: 1px solid var(--pt-line);
  }

  .application-aside {
    position: static;
  }
}

@media (max-width: 699px) {
  .growth-site .nav {
    align-items: center;
  }

  .growth-site .nav-links {
    display: flex;
    flex-basis: 100%;
    gap: 9px 14px;
  }

  .growth-site .nav-links a {
    font-size: .78rem;
  }

  .growth-site .nav-cta {
    padding: 8px 12px;
  }

  .owner-hero {
    padding: 50px 0 58px;
  }

  .owner-hero h1,
  .owner-page-hero h1,
  .demo-hero h1,
  .application-hero h1 {
    font-size: 2.85rem;
  }

  .proof-metrics {
    grid-template-columns: 1fr 1fr;
    gap: 16px 0;
  }

  .proof-metric:nth-child(3) {
    border-left: 0;
  }

  .growth-section {
    padding: 68px 0;
  }

  .audience-grid {
    grid-template-columns: 1fr;
  }

  .audience-card {
    min-height: 0;
    padding: 28px;
  }

  .audience-card h3 {
    font-size: 2rem;
  }

  .closing-inner,
  .demo-hero {
    align-items: flex-start;
    flex-direction: column;
  }

  .dashboard-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .activity-row {
    grid-template-columns: 72px 1fr;
    padding: 10px 0;
  }

  .activity-row em {
    display: none;
  }

  .application-form .form-section {
    padding: 24px 18px;
  }
}


/* Keep the first owner commitment light while making extra detail easy to add. */
.optional-property-details {
  padding: 0;
  overflow: hidden;
}

.optional-property-details summary {
  cursor: pointer;
  list-style-position: inside;
  padding: 1.35rem 1.5rem;
  color: var(--pt-ink, #123f35);
  font-weight: 750;
}

.optional-property-details summary:hover,
.optional-property-details summary:focus-visible {
  background: rgba(24, 92, 72, 0.06);
}

.optional-property-details[open] summary {
  border-bottom: 1px solid rgba(24, 92, 72, 0.16);
}

.optional-property-details-inner {
  padding: 1.5rem;
}

@media (max-width: 720px) {
  .optional-property-details summary,
  .optional-property-details-inner {
    padding: 1.1rem;
  }
}
