﻿:root {
  color-scheme: dark;
  --bg: #10161b;
  --bg-2: #151c22;
  --panel: #131b21;
  --panel-2: #0d1318;
  --line: rgba(255, 255, 255, 0.1);
  --line-strong: #303b43;
  --text: #f5f7f8;
  --soft: #aeb9bf;
  --dim: #6d777e;
  --orange: #ff5a1f;
  --orange-2: #ff7a22;
  --green: #08ef84;
  --blue: #65b7ff;
  --shadow: rgba(0, 0, 0, 0.38);
}

* { box-sizing: border-box; }
html { background: var(--bg); }
body {
  margin: 0;
  min-width: 320px;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}
button, a, input { font: inherit; }
button, a { min-height: 44px; }
a { color: inherit; }

.landing-shell {
  width: 100%;
  min-height: 100vh;
  overflow: visible;
  background:
    radial-gradient(900px 560px at 80% 4%, rgba(255, 90, 31, 0.16), transparent 62%),
    linear-gradient(180deg, #151c22 0%, #10161b 52%, #12191e 100%);
}

.landing-topbar,
.hero-panel,
.growth-suburbs-panel,
.pathway-section,
.market-section,
.benefit-section,
.insight-section,
.landing-footer {
  padding-inline: clamp(20px, 5vw, 72px);
}

.landing-topbar {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(16, 22, 27, 0.84);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(16px);
}

.public-spa-view {
  display: block;
}

.server-seo-page {
  min-height: calc(100vh - 74px);
  padding: clamp(54px, 9vw, 110px) clamp(20px, 5vw, 72px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 26px;
}

.server-seo-page h1 {
  max-width: 900px;
  margin: 0;
  color: #fff;
  font-size: clamp(3rem, 7vw, 6.8rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.server-seo-lede {
  max-width: 760px;
  margin: 0;
  color: rgba(245, 247, 248, 0.78);
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
  line-height: 1.55;
}

.server-seo-grid,
.server-seo-faq {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 1120px;
}

.server-seo-faq {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.server-seo-page article {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
}

.server-seo-page article h2 {
  margin: 0 0 8px;
  color: #fff;
  font-size: 1rem;
  line-height: 1.25;
}

.server-seo-page article p {
  margin: 0;
  color: rgba(245, 247, 248, 0.68);
  font-size: 0.94rem;
  line-height: 1.5;
}

.landing-nav a {
  position: relative;
}

.landing-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 2px;
  border-radius: 999px;
  background: var(--orange);
  opacity: 0;
  transform: scaleX(0.35);
  transition: opacity 160ms ease, transform 160ms ease;
}

.landing-nav a:hover::after,
.landing-nav a:focus-visible::after,
.landing-nav a.is-active::after {
  opacity: 1;
  transform: scaleX(1);
}

.landing-nav a.is-active {
  color: #fff;
}

.brand-mark,
.modal-logo,
.landing-footer strong {
  position: relative;
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  color: var(--text);
  font-size: 1.6rem;
  font-weight: 850;
  line-height: 1;
  text-decoration: none;
}
.brand-mark::before,
.modal-logo::before,
.landing-footer strong::before {
  content: "";
  position: absolute;
  left: -5px;
  top: -6px;
  width: 4px;
  height: 4px;
  background: var(--orange);
}
.brand-mark span,
.landing-footer strong span { color: var(--orange); font-size: 0.72em; }

.landing-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(10px, 2vw, 22px);
  flex-wrap: wrap;
}
.landing-nav a,
.nav-cta,
.text-action {
  color: var(--text);
  text-decoration: none;
  font-size: 0.93rem;
  font-weight: 750;
}
.nav-cta {
  min-height: 40px;
  border: 1px solid var(--orange);
  border-radius: 999px;
  background: var(--orange);
  padding: 0 16px;
  cursor: pointer;
}

.hero-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: clamp(28px, 6vw, 88px);
  align-items: center;
  min-height: calc(100vh - 74px);
  padding-top: clamp(38px, 6vw, 84px);
  padding-bottom: clamp(44px, 7vw, 90px);
  border-bottom: 1px solid var(--line);
}
.eyebrow {
  margin: 0 0 14px;
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}
h1, h2, h3, p { margin-top: 0; }
h1 {
  max-width: 760px;
  margin: 0;
  color: var(--text);
  font-size: clamp(3.4rem, 7vw, 7.2rem);
  line-height: 0.92;
  font-weight: 760;
  letter-spacing: 0;
}
h1::first-line { color: var(--orange); }
.hero-lede {
  max-width: 670px;
  margin: 26px 0 0;
  color: var(--soft);
  font-size: clamp(1.02rem, 1.6vw, 1.24rem);
  line-height: 1.62;
}
.hero-actions,
.cta-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}
.primary-action,
.secondary-action,
.modal-submit {
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  font-weight: 850;
  cursor: pointer;
  text-decoration: none;
}
.primary-action,
.modal-submit {
  border: 1px solid var(--orange);
  background: var(--orange);
  color: white;
}
.secondary-action {
  border: 1px solid var(--orange);
  background: transparent;
  color: white;
}
.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}
.trust-strip span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 13px;
  color: var(--soft);
  font-size: 0.84rem;
}
.trust-strip strong { color: var(--text); margin-right: 4px; }

.growth-suburbs-panel {
  padding-top: clamp(22px, 3.5vw, 42px);
  padding-bottom: clamp(28px, 4vw, 52px);
  background: #10161b;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.growth-suburbs-panel::before {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  margin-bottom: clamp(28px, 4vw, 46px);
  background: rgba(255, 255, 255, 0.12);
}

.growth-suburbs-heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: clamp(22px, 3vw, 34px);
}

.growth-suburbs-heading h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(1.35rem, 2.4vw, 2.15rem);
  line-height: 1.05;
}

.growth-suburbs-heading h2 span {
  color: rgba(245, 247, 248, 0.16);
  white-space: nowrap;
}

.growth-suburbs-heading a {
  flex: 0 0 auto;
  color: var(--orange);
  font-size: clamp(0.95rem, 1.8vw, 1.35rem);
  font-weight: 850;
  text-decoration: none;
}

.growth-suburbs-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(10px, 2vw, 24px);
}

.growth-suburb-card {
  min-height: clamp(86px, 10vw, 108px);
  display: grid;
  place-items: center;
  align-content: center;
  gap: 6px;
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  background: rgba(13, 19, 24, 0.88);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  text-align: center;
}

.growth-suburb-card h3 {
  margin: 0;
  color: #fff;
  font-size: clamp(1.1rem, 2.4vw, 2rem);
  line-height: 1.05;
}

.growth-suburb-card strong {
  color: #20f486;
  font-size: clamp(1.65rem, 3.6vw, 3rem);
  line-height: 1;
}

.growth-suburb-card.is-featured {
  border-color: rgba(8, 239, 132, 0.18);
  background: #008f36;
}

.growth-suburb-card.is-featured strong {
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
  color: #fff;
}

.growth-suburb-card.is-featured span {
  color: rgba(255, 255, 255, 0.58);
  font-weight: 650;
}

.hero-preview {
  position: relative;
  min-height: 520px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
  background:
    linear-gradient(180deg, rgba(255, 90, 31, 0.11), transparent 36%),
    linear-gradient(145deg, rgba(255,255,255,.06), rgba(255,255,255,.025));
  box-shadow: 0 28px 80px var(--shadow);
  overflow: hidden;
}
.preview-topline {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  gap: 14px;
  color: var(--soft);
  font-size: 0.82rem;
}
.preview-topline strong { color: var(--text); }
.hero-visual {
  position: relative;
  width: 100%;
  height: 330px;
  margin: 26px 0;
}
.chart-platform {
  position: absolute;
  inset: 94px 6% 58px 8%;
  border-radius: 18px;
  transform: skewX(-18deg) rotate(-7deg);
  background:
    linear-gradient(90deg, rgba(255,90,31,.26) 1px, transparent 1px) 0 0 / 18px 18px,
    linear-gradient(0deg, rgba(101,183,255,.2) 1px, transparent 1px) 0 0 / 18px 18px,
    linear-gradient(135deg, #172932, #0d1419);
  box-shadow: 0 18px 38px rgba(0,0,0,0.44);
}
.chart-bars {
  position: absolute;
  right: 21%;
  bottom: 112px;
  display: flex;
  align-items: flex-end;
  gap: 8px;
  transform: rotate(-8deg);
}
.chart-bars i {
  display: block;
  width: 22px;
  border-radius: 12px 12px 5px 5px;
  background: linear-gradient(180deg, #d9ef5b, #ff5a1f);
  box-shadow: 0 0 16px rgba(255,90,31,0.22);
}
.chart-bars i:nth-child(1){height:38px}.chart-bars i:nth-child(2){height:54px}.chart-bars i:nth-child(3){height:72px}.chart-bars i:nth-child(4){height:94px}.chart-bars i:nth-child(5){height:122px}.chart-bars i:nth-child(6){height:152px}
.growth-arrow {
  position: absolute;
  right: 26%;
  top: 24px;
  width: 112px;
  height: 144px;
  border-right: 8px solid var(--blue);
  border-top: 8px solid var(--blue);
  transform: skewY(-22deg) rotate(18deg);
  filter: drop-shadow(0 8px 8px rgba(101,183,255,.2));
}
.growth-arrow::after {
  content:"";
  position:absolute;
  right:-16px;
  top:-14px;
  border-left: 17px solid transparent;
  border-right: 17px solid transparent;
  border-bottom: 28px solid var(--blue);
  transform: rotate(44deg);
}
.preview-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}
.preview-grid article,
.insight-card,
.benefit-grid article,
.pathway-card {
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  background: rgba(13, 19, 24, 0.9);
}
.preview-grid article { padding: 14px 10px; }
.preview-grid span,
.preview-grid strong { display: block; }
.preview-grid span { color: var(--soft); font-size: 0.76rem; }
.preview-grid strong { color: var(--green); font-size: 1.22rem; }

.pathway-section,
.market-section,
.benefit-section,
.insight-section {
  padding-top: clamp(56px, 7vw, 96px);
  padding-bottom: clamp(56px, 7vw, 96px);
  border-bottom: 1px solid var(--line);
}
.section-copy,
.section-heading {
  max-width: 1180px;
  margin: 0 auto 26px;
}
.section-copy h2,
.section-heading h2 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1.02;
}
.section-copy > p:not(.eyebrow) {
  max-width: 680px;
  margin-top: 18px;
  color: var(--soft);
  font-size: 1.04rem;
  line-height: 1.58;
}
.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}
.section-heading a {
  color: var(--orange);
  font-weight: 850;
  text-decoration: none;
  white-space: nowrap;
}
.pathway-grid,
.opportunity-grid,
.benefit-grid,
.insight-grid {
  width: min(100%, 1180px);
  margin: 0 auto;
  display: grid;
  gap: 16px;
}
.pathway-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.pathway-card {
  min-height: 260px;
  padding: 28px;
  text-align: left;
  color: var(--text);
  text-decoration: none;
  cursor: pointer;
}
button.pathway-card { font: inherit; }
.pathway-card span { color: var(--orange); font-size: 0.82rem; font-weight: 900; }
.pathway-card h3 { margin: 34px 0 10px; font-size: 1.8rem; }
.pathway-card p { color: var(--soft); line-height: 1.55; }
.pathway-card strong { color: var(--orange); }
.pathway-card--account { background: linear-gradient(145deg, rgba(255,90,31,.2), rgba(13,19,24,.95)); }

.opportunity-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.property-card {
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  background: #0d1318;
  overflow: hidden;
}
.property-card img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}
.property-card-body { padding: 20px; }
.property-card h3 { margin: 0 0 4px; font-size: 1.4rem; }
.property-card p { margin: 0 0 18px; color: var(--soft); }
.property-card dl {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 0 0 18px;
}
.property-card dt { color: var(--dim); font-size: 0.76rem; }
.property-card dd { margin: 0; font-weight: 850; }
.property-card a { color: var(--orange); font-weight: 850; text-decoration: none; }

.benefit-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.benefit-grid article { min-height: 190px; padding: 22px; }
.benefit-grid h3 { margin: 0 0 10px; color: var(--orange); font-size: 1.08rem; }
.benefit-grid p { margin: 0; color: var(--soft); line-height: 1.52; }

.insight-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.insight-card { min-height: 190px; padding: 20px; }
.mini-chart {
  height: 72px;
  margin-bottom: 16px;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
  background: #121b21;
}
.mini-chart.rental::before,
.mini-chart.vacancy::before {
  content: "";
  position: absolute;
  inset: 18px 14px;
  border-bottom: 3px solid var(--orange);
  border-left: 3px solid transparent;
  transform: skewY(-17deg);
  box-shadow: 24px -8px 0 -1px var(--orange), 48px -3px 0 -1px var(--orange), 72px -15px 0 -1px var(--orange), 96px -22px 0 -1px var(--orange);
}
.mini-chart.vacancy::before {
  border-bottom-color: #cbd0d2;
  box-shadow: 24px 6px 0 -1px #cbd0d2, 48px 10px 0 -1px #cbd0d2, 72px -8px 0 -1px #cbd0d2, 96px -2px 0 -1px #cbd0d2;
}
.insight-card strong,
.insight-card span,
.insight-card em,
.insight-card small { display: block; }
.insight-card strong { font-size: 1.06rem; }
.insight-card span { color: var(--soft); margin-top: 4px; }
.insight-card em { margin-top: 8px; color: var(--green); font-size: 1.7rem; font-style: normal; font-weight: 850; }
.insight-card small { color: var(--dim); }
.insight-card--copy p { color: var(--soft); line-height: 1.55; }
.insight-card--copy a { color: var(--orange); font-weight: 850; text-decoration: none; }

.photo-cta {
  position: relative;
  min-height: 620px;
  display: flex;
  align-items: end;
  padding: clamp(56px, 8vw, 96px) clamp(20px, 5vw, 72px);
  isolation: isolate;
  overflow: hidden;
}
.photo-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: url("/img/propstacproperty2-landing.webp?v=20260625a") center 34% / cover no-repeat;
}
.photo-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, #10161b 0%, rgba(16,22,27,0.14) 32%, rgba(16,22,27,0.92) 100%);
}
.photo-mark {
  position: absolute;
  right: 8%;
  bottom: 84px;
  display: flex;
  align-items: center;
  color: white;
  font-size: clamp(8rem, 17vw, 17rem);
  font-weight: 900;
  line-height: 0.8;
  opacity: 0.98;
}
.photo-mark span { width: 20px; height: 20px; margin-right: -4px; margin-top: 40px; background: var(--orange); }
.photo-copy { position: relative; z-index: 2; width: min(760px, 100%); }
.photo-copy h2 { margin: 0; font-size: clamp(2.8rem, 7vw, 6rem); line-height: 0.98; }
.photo-copy h2 span { color: var(--orange); display: block; }
.text-action { color: var(--text); border-bottom: 1px solid rgba(255,255,255,.42); }

.landing-footer {
  padding-top: 36px;
  padding-bottom: 36px;
  background: #10161b;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px 32px;
  align-items: start;
}
.landing-footer strong { font-size: 1.45rem; }
.landing-footer nav { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 18px; }
.landing-footer a { min-height: auto; color: white; font-size: 0.82rem; text-decoration: none; }
.landing-footer p { margin: 0; color: var(--soft); font-size: 0.76rem; }
.landing-footer p:last-child { grid-column: 1 / -1; display: flex; gap: 14px; flex-wrap: wrap; }

.signup-modal[hidden] { display: none; }
.signup-modal { position: fixed; inset: 0; z-index: 40; display: grid; place-items: center; padding: 18px; }
.modal-backdrop { position: absolute; inset: 0; background: rgba(3, 8, 10, 0.74); backdrop-filter: blur(10px); }
.modal-panel {
  width: min(430px, 100%);
  max-height: min(92vh, 760px);
  overflow: auto;
  position: relative;
  background: #f7fbfd;
  color: #102026;
  border-radius: 8px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.46);
  padding: 30px;
}

#signupModal .modal-panel {
  width: min(780px, calc(100vw - 48px));
}
.modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 40px;
  height: 40px;
  border: 0;
  background: transparent;
  color: #22363d;
  cursor: pointer;
  font-size: 1.8rem;
  line-height: 1;
}
.modal-logo { color: #142025; margin-bottom: 22px; }
.modal-panel h2 { font-size: 1.6rem; margin-bottom: 8px; }
.modal-subcopy, .modal-footer-copy { color: #4a616a; line-height: 1.45; }
.legal-modal-panel {
  width: min(760px, 100%);
  max-height: min(96vh, 900px);
}
.legal-modal-content {
  color: #243c44;
  display: grid;
  gap: 10px;
  line-height: 1.48;
  margin: 14px 0 18px;
}
.legal-modal-content p,
.legal-modal-content ul {
  margin: 0;
}
.legal-modal-content ul {
  padding-left: 20px;
}
.legal-modal-content li + li {
  margin-top: 8px;
}
.legal-modal-content a {
  color: #d54a16;
  font-weight: 800;
  text-decoration: none;
}
.footer-info-modal-panel {
  width: min(560px, 100%);
}
.footer-info-modal-content {
  color: #243c44;
  display: grid;
  gap: 12px;
  line-height: 1.55;
  margin: 18px 0 22px;
}
.footer-info-modal-content p {
  margin: 0;
}
.footer-info-modal-content a {
  color: #d54a16;
  font-weight: 800;
  text-decoration: none;
}
.legal-modal-close {
  display: inline-flex;
  justify-content: center;
  justify-self: start;
  width: auto;
  min-width: 130px;
  padding-left: 22px;
  padding-right: 22px;
}
.signup-name-row { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 10px; margin: 16px 0; }
.signup-name-row .field-group { margin: 0; }
#signupForm .field-group { margin: 12px 0; }
#signupForm .modal-message { min-height: 14px; margin: 2px 0 8px; }
#signupForm textarea {
  min-height: 110px;
  resize: vertical;
}

#signupForm select,
#signupForm textarea {
  width: 100%;
  border: 1px solid rgba(15, 23, 42, 0.16);
  border-radius: 10px;
  background: #ffffff;
  color: #111827;
  padding: 12px 14px;
}

#signupForm select {
  min-height: 46px;
}

#signupForm .modal-message.is-error {
  color: #b42318;
}

#signupForm .modal-message.is-success {
  color: #166534;
}
.field-group { display: grid; gap: 7px; margin: 16px 0; }
.field-group label { color: #243c44; font-size: 0.9rem; font-weight: 750; }
.field-optional { color: #6f858d; font-size: 0.78rem; font-weight: 650; }
.field-group input {
  width: 100%;
  min-height: 46px;
  border: 1px solid #b9cbd1;
  border-radius: 8px;
  color: #102026;
  padding: 0 12px;
}
.field-group input:focus { border-color: var(--orange); box-shadow: 0 0 0 3px rgba(255, 90, 31, 0.15); outline: 0; }
.modal-message { min-height: 22px; color: #9b3d0a; font-size: 0.92rem; margin: 8px 0 14px; }
.modal-submit { width: 100%; min-height: 48px; }
#signupForm .modal-submit {
  display: flex;
  justify-content: center;
  justify-self: center;
  width: fit-content;
  min-width: 0;
  margin-left: auto;
  margin-right: auto;
  padding-left: 28px;
  padding-right: 28px;
}

.register-interest-consent {
  margin: 10px 0 0;
  color: #526a72;
  font-size: 0.82rem;
  line-height: 1.38;
}
.legal-modal-panel .legal-modal-close {
  display: flex;
  width: fit-content !important;
  min-width: 130px;
  max-width: max-content;
  margin-left: auto;
  margin-right: auto;
}
.footer-info-modal-panel .footer-info-modal-close {
  display: flex;
  width: fit-content !important;
  min-width: 130px;
  max-width: max-content;
  margin-left: auto;
  margin-right: auto;
}
.modal-footer-copy { margin: 18px 0 0; text-align: center; }
.modal-footer-copy a { color: #d54a16; text-decoration: none; }
.mfa-challenge-panel { display: grid; gap: 9px; margin: 16px 0 6px; }
.mfa-challenge-panel[hidden] { display: none; }
.mfa-challenge-panel label:not(.mfa-trust-device) { color: #243c44; font-size: 0.9rem; font-weight: 750; }
.mfa-challenge-panel input[type="text"] {
  width: 100%;
  min-height: 46px;
  border: 1px solid #b9cbd1;
  border-radius: 8px;
  color: #102026;
  padding: 0 12px;
  background: #ffffff;
  letter-spacing: 0;
}
.mfa-challenge-panel input[type="text"]:focus { border-color: var(--orange); box-shadow: 0 0 0 3px rgba(255, 90, 31, 0.15); outline: 0; }
.mfa-trust-device { display: flex; align-items: center; gap: 8px; color: #385059; font-size: 0.88rem; }
.mfa-trust-device input { width: 16px; height: 16px; accent-color: var(--orange); }
.auth-link-button {
  border: 0;
  background: transparent;
  color: #d54a16;
  cursor: pointer;
  font: inherit;
  font-size: 0.9rem;
  font-weight: 750;
  padding: 4px 0;
  text-align: left;
}

@media (max-width: 920px) {
  .hero-panel { grid-template-columns: 1fr; min-height: auto; }
  .hero-preview { min-height: auto; }
  .hero-visual { height: 250px; }
  .benefit-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .insight-grid { grid-template-columns: 1fr; }
  .server-seo-grid,
  .server-seo-faq {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .landing-topbar { align-items: flex-start; padding-top: 18px; padding-bottom: 18px; }
  .landing-nav { gap: 8px 12px; }
  .landing-nav a { font-size: 0.82rem; }
  .nav-cta { min-height: 36px; padding-inline: 12px; font-size: 0.82rem; }
  h1 { font-size: clamp(3.05rem, 14vw, 4.2rem); }
  .hero-actions, .cta-actions { align-items: stretch; flex-direction: column; }
  .primary-action, .secondary-action { width: 100%; }
  .trust-strip span { width: 100%; justify-content: center; }
  .pathway-grid, .opportunity-grid, .benefit-grid { grid-template-columns: 1fr; }
  .section-heading { align-items: flex-start; flex-direction: column; }
  .preview-grid { grid-template-columns: 1fr; }
  .photo-cta { min-height: 540px; }
  .photo-mark { right: 16px; bottom: 112px; }
  .landing-footer { grid-template-columns: 1fr; }
  .landing-footer nav { justify-content: flex-start; }
}

/* Layout polish pass */
:root {
  --container: 1240px;
  --section-pad-x: clamp(20px, 5vw, 72px);
  --section-pad-y: clamp(58px, 7vw, 96px);
}

.landing-topbar {
  padding-left: max(var(--section-pad-x), calc((100vw - var(--container)) / 2 + var(--section-pad-x)));
  padding-right: max(var(--section-pad-x), calc((100vw - var(--container)) / 2 + var(--section-pad-x)));
}

.hero-panel,
.pathway-section,
.market-section,
.benefit-section,
.insight-section,
.landing-footer {
  padding-left: max(var(--section-pad-x), calc((100vw - var(--container)) / 2 + var(--section-pad-x)));
  padding-right: max(var(--section-pad-x), calc((100vw - var(--container)) / 2 + var(--section-pad-x)));
}

.hero-panel {
  grid-template-columns: minmax(0, 1fr) minmax(390px, 520px);
  column-gap: clamp(36px, 6vw, 84px);
}

.hero-copy-block {
  align-self: center;
}

.hero-actions .primary-action,
.hero-actions .secondary-action,
.cta-actions .primary-action {
  min-width: 190px;
}

.trust-strip {
  max-width: 720px;
}

.trust-strip span {
  white-space: nowrap;
}

.hero-preview {
  align-self: center;
  max-width: 520px;
  justify-self: end;
}

.preview-grid article,
.insight-card,
.benefit-grid article,
.pathway-card,
.property-card {
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.18);
}

.preview-grid article {
  display: grid;
  align-content: center;
  min-height: 76px;
}

.section-copy,
.section-heading,
.pathway-grid,
.opportunity-grid,
.benefit-grid,
.insight-grid {
  width: min(100%, var(--container));
}

.section-heading {
  margin-bottom: 34px;
}

.pathway-grid,
.opportunity-grid,
.benefit-grid,
.insight-grid {
  gap: 20px;
}

.pathway-card,
.benefit-grid article,
.insight-card,
.property-card-body {
  display: flex;
  flex-direction: column;
}

.pathway-card strong,
.property-card a,
.insight-card--copy a {
  margin-top: auto;
}

.pathway-card {
  min-height: 284px;
}

.property-card {
  min-height: 100%;
}

.property-card img {
  aspect-ratio: 16 / 9;
}

.property-card-body {
  min-height: 210px;
}

.property-card dl {
  align-items: start;
}

.benefit-grid article {
  min-height: 210px;
}

.insight-card {
  min-height: 230px;
}

.insight-card--copy p {
  margin-bottom: 18px;
}

.photo-cta {
  padding-left: max(var(--section-pad-x), calc((100vw - var(--container)) / 2 + var(--section-pad-x)));
  padding-right: max(var(--section-pad-x), calc((100vw - var(--container)) / 2 + var(--section-pad-x)));
}

.photo-copy {
  max-width: var(--container);
}

.landing-footer {
  grid-template-columns: minmax(220px, 1fr) minmax(320px, auto);
}

.landing-footer p:nth-of-type(2) {
  text-align: right;
}

@media (min-width: 1180px) {
  .benefit-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 1060px) {
  .landing-nav {
    gap: 10px 16px;
  }

  .hero-panel {
    grid-template-columns: minmax(0, 1fr) minmax(340px, 440px);
  }

  .hero-preview {
    max-width: 440px;
  }

  .benefit-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 920px) {
  .landing-topbar {
    position: relative;
  }

  .hero-preview {
    justify-self: stretch;
    max-width: none;
  }

  .hero-actions .primary-action,
  .hero-actions .secondary-action,
  .cta-actions .primary-action {
    min-width: 0;
  }
}

@media (max-width: 680px) {
  :root {
    --section-pad-x: 18px;
  }

  .landing-topbar {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .landing-nav {
    justify-content: flex-start;
  }

  .landing-nav a,
  .nav-cta {
    font-size: 0.82rem;
  }

  .hero-panel,
  .pathway-section,
  .market-section,
  .benefit-section,
  .insight-section {
    padding-top: 48px;
    padding-bottom: 52px;
  }

  .hero-panel {
    row-gap: 30px;
  }

  .hero-lede {
    margin-top: 20px;
  }

  .trust-strip {
    gap: 8px;
  }

  .trust-strip span {
    white-space: normal;
  }

  .hero-preview {
    padding: 18px;
  }

  .hero-visual {
    height: 220px;
    margin: 18px 0;
  }

  .chart-bars {
    right: 17%;
    bottom: 82px;
    gap: 5px;
  }

  .chart-bars i {
    width: 16px;
  }

  .chart-bars i:nth-child(1){height:30px}.chart-bars i:nth-child(2){height:42px}.chart-bars i:nth-child(3){height:56px}.chart-bars i:nth-child(4){height:72px}.chart-bars i:nth-child(5){height:92px}.chart-bars i:nth-child(6){height:116px}

  .growth-arrow {
    right: 20%;
    top: 22px;
    width: 84px;
    height: 108px;
  }

  .section-heading {
    margin-bottom: 24px;
  }

  .section-copy h2,
  .section-heading h2 {
    line-height: 1.06;
  }

  .pathway-card,
  .benefit-grid article,
  .insight-card,
  .property-card-body {
    min-height: 0;
  }

  .pathway-card {
    padding: 22px;
  }

  .pathway-card h3 {
    margin-top: 26px;
  }

  .property-card-body {
    padding: 18px;
  }

  .photo-cta {
    min-height: 520px;
    padding-bottom: 36px;
  }

  .photo-copy h2 {
    max-width: 360px;
  }

  .photo-mark {
    opacity: 0.72;
  }

  .landing-footer p:nth-of-type(2) {
    text-align: left;
  }
}

/* Header alignment + full-width desktop refinement */
.landing-topbar {
  display: grid;
  grid-template-columns: minmax(180px, 1fr) auto minmax(180px, 1fr);
  align-items: center;
  min-height: 82px;
}

.brand-mark {
  align-items: center;
  gap: 10px;
  width: fit-content;
}

.brand-mark img {
  display: block;
  width: clamp(132px, 12vw, 178px);
  height: auto;
}

.brand-mark span {
  color: var(--orange);
  font-size: clamp(0.92rem, 1.2vw, 1.18rem);
  font-weight: 850;
  line-height: 1;
  transform: translateY(1px);
}

.brand-mark::before {
  display: none;
}

.landing-nav {
  justify-content: center;
  flex-wrap: nowrap;
  gap: clamp(24px, 4vw, 52px);
}

.landing-nav a,
.login-link {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  color: rgba(245, 247, 248, 0.88);
  line-height: 1;
}

.landing-nav a:hover,
.landing-nav a:focus-visible,
.login-link:hover,
.login-link:focus-visible {
  color: #fff;
}

.landing-account-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
}

.landing-account-actions .nav-cta {
  min-width: 126px;
}

@media (min-width: 1440px) {
  :root {
    --container: 1440px;
    --section-pad-x: clamp(56px, 6vw, 104px);
  }

  .hero-panel {
    grid-template-columns: minmax(0, 1fr) minmax(480px, 600px);
    min-height: calc(100vh - 82px);
  }

  .hero-preview {
    max-width: 600px;
  }

  .pathway-grid,
  .opportunity-grid,
  .benefit-grid,
  .insight-grid,
  .section-copy,
  .section-heading {
    width: min(100%, var(--container));
  }
}

@media (max-width: 860px) {
  .landing-topbar {
    grid-template-columns: 1fr auto;
    gap: 14px 18px;
  }

  .landing-nav {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-content: flex-start;
    gap: 18px;
    order: 3;
  }

  .landing-account-actions {
    justify-content: flex-end;
  }
}

@media (max-width: 680px) {
  .landing-topbar {
    display: grid;
    grid-template-columns: 1fr;
    align-items: start;
  }

  .brand-mark img {
    width: 136px;
  }

  .landing-account-actions,
  .landing-nav {
    width: 100%;
    justify-content: flex-start;
  }

  .landing-account-actions {
    order: 2;
  }

  .landing-nav {
    order: 3;
    gap: 16px;
  }
}

/* PropStac One public navigation and modal refinement */
.landing-topbar {
  width: 100%;
  padding-left: clamp(22px, 4vw, 64px) !important;
  padding-right: clamp(22px, 4vw, 64px) !important;
  grid-template-columns: minmax(190px, 1fr) minmax(420px, auto) minmax(210px, 1fr);
}

.landing-nav {
  gap: clamp(20px, 3vw, 42px);
}

.login-link,
.footer-login-link,
.inline-link {
  border: 0;
  background: transparent;
  cursor: pointer;
}

.login-link {
  padding: 0;
}

.footer-login-link {
  min-height: auto;
  padding: 0;
  color: white;
  font-size: 0.82rem;
  text-decoration: none;
}

.inline-link {
  min-height: auto;
  padding: 0;
  color: #d54a16;
  font-weight: 750;
  text-decoration: none;
}

.login-modal .modal-panel {
  width: min(410px, 100%);
}

.login-modal .modal-submit {
  display: flex;
  justify-content: center;
  justify-self: center;
  width: fit-content;
  min-width: 0;
  margin-left: auto;
  margin-right: auto;
  margin-top: 4px;
  padding-left: 28px;
  padding-right: 28px;
}

@media (min-width: 1600px) {
  .landing-topbar {
    padding-left: clamp(64px, 5vw, 112px) !important;
    padding-right: clamp(64px, 5vw, 112px) !important;
  }
}

@media (max-width: 980px) {
  .landing-topbar {
    grid-template-columns: 1fr auto;
  }

  .landing-nav {
    grid-column: 1 / -1;
    justify-content: flex-start;
    flex-wrap: wrap;
  }
}

@media (max-width: 680px) {
  .landing-topbar {
    padding-left: 18px !important;
    padding-right: 18px !important;
  }

  .landing-account-actions {
    flex-wrap: wrap;
  }
}

/* Public brand is PropStac; remove internal app-name companion text from header/footer marks. */
.brand-mark {
  align-items: center;
}

.brand-mark img {
  width: clamp(144px, 13vw, 190px);
}

.landing-footer strong {
  font-size: 1.35rem;
}

/* Mobile-first hero tightening */
@media (max-width: 680px) {
  .landing-shell {
    background:
      radial-gradient(520px 340px at 88% 0%, rgba(255, 90, 31, 0.13), transparent 64%),
      linear-gradient(180deg, #151c22 0%, #10161b 54%, #12191e 100%);
  }

  .landing-topbar {
    position: sticky;
    top: 0;
    grid-template-columns: minmax(0, 1fr) auto !important;
    align-items: center;
    gap: 10px 14px;
    min-height: auto;
    padding-top: 12px;
    padding-bottom: 10px;
  }

  .brand-mark img {
    width: 126px;
  }

  .landing-account-actions {
    order: 0;
    width: auto;
    justify-content: flex-end;
    gap: 10px;
  }

  .login-link,
  .nav-cta {
    min-height: 34px;
    font-size: 0.8rem;
    line-height: 1;
  }

  .nav-cta {
    padding-inline: 12px;
  }

  .landing-nav {
    grid-column: 1 / -1;
    order: 2;
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
    gap: 18px;
    overflow-x: auto;
    padding: 2px 0 4px;
    scrollbar-width: none;
  }

  .landing-nav::-webkit-scrollbar {
    display: none;
  }

  .landing-nav a {
    flex: 0 0 auto;
    min-height: 30px;
    font-size: 0.82rem;
  }

  .hero-panel {
    min-height: auto;
    row-gap: 18px;
    padding-top: 28px;
    padding-bottom: 34px;
  }

  .eyebrow {
    margin-bottom: 8px;
    font-size: 0.7rem;
  }

  h1 {
    max-width: 11ch;
    font-size: clamp(2.35rem, 11vw, 3.2rem);
    line-height: 0.98;
  }

  .hero-lede {
    max-width: 36rem;
    margin-top: 14px;
    font-size: 0.96rem;
    line-height: 1.48;
  }

  .hero-actions,
  .cta-actions {
    gap: 10px;
    margin-top: 18px;
  }

  .primary-action,
  .secondary-action,
  .modal-submit {
    min-height: 44px;
    padding-inline: 18px;
    font-size: 0.93rem;
  }

  .trust-strip {
    margin-top: 14px;
    gap: 8px;
  }

  .trust-strip span {
    width: auto;
    flex: 1 1 calc(50% - 8px);
    justify-content: center;
    min-height: 32px;
    padding-inline: 10px;
    font-size: 0.72rem;
    text-align: center;
  }

  .trust-strip span:last-child {
    flex-basis: 100%;
  }

  .hero-preview {
    width: 100%;
    min-height: 0;
    padding: 14px;
    border-color: rgba(255, 255, 255, 0.12);
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.22);
  }

  .preview-topline {
    align-items: center;
    font-size: 0.74rem;
  }

  .hero-visual {
    display: none;
  }

  .preview-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
    margin-top: 12px;
  }

  .preview-grid article {
    min-height: 58px;
    padding: 9px 6px;
  }

  .preview-grid span {
    font-size: 0.64rem;
    line-height: 1.2;
  }

  .preview-grid strong {
    margin-top: 3px;
    font-size: 1rem;
  }

  .pathway-section,
  .market-section,
  .benefit-section,
  .insight-section {
    padding-top: 44px;
    padding-bottom: 46px;
  }
}

@media (max-width: 420px) {
  .landing-topbar {
    gap: 9px 10px;
  }

  .brand-mark img {
    width: 116px;
  }

  .landing-account-actions {
    gap: 8px;
  }

  .login-link,
  .nav-cta {
    min-height: 32px;
    font-size: 0.76rem;
  }

  .nav-cta {
    padding-inline: 10px;
  }

  .hero-panel {
    padding-top: 24px;
    padding-bottom: 30px;
  }

  h1 {
    max-width: 10.5ch;
    font-size: clamp(2.15rem, 11.5vw, 2.85rem);
  }

  .hero-lede {
    font-size: 0.92rem;
  }

  .trust-strip span {
    flex-basis: 100%;
  }

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

  .preview-grid article {
    min-height: 48px;
    grid-template-columns: 1fr auto;
    align-items: center;
  }

  .preview-grid span,
  .preview-grid strong {
    margin: 0;
  }
}

/* Mobile hero reset: clean, copy-first landing composition. */
@media (max-width: 680px) {
  .hero-panel {
    display: block;
    min-height: auto;
    padding-top: 24px;
    padding-bottom: 32px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .hero-copy-block {
    width: 100%;
  }

  .hero-copy-block .eyebrow {
    max-width: 28ch;
    margin-bottom: 10px;
    line-height: 1.25;
  }

  h1 {
    max-width: 100%;
    font-size: clamp(2.28rem, 10vw, 3rem);
    line-height: 1.02;
    color: var(--text);
  }

  h1::first-line {
    color: var(--text);
  }

  .hero-lede {
    max-width: 100%;
    margin-top: 12px;
    color: rgba(245, 247, 248, 0.78);
    font-size: 0.95rem;
    line-height: 1.46;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 9px;
    margin-top: 18px;
  }

  .hero-actions .primary-action,
  .hero-actions .secondary-action {
    width: 100%;
    min-height: 44px;
    border-radius: 8px;
  }

  .trust-strip {
    display: grid;
    grid-template-columns: 1fr;
    gap: 7px;
    margin-top: 14px;
  }

  .trust-strip span,
  .trust-strip span:last-child {
    width: 100%;
    min-height: 30px;
    justify-content: flex-start;
    border-radius: 8px;
    padding: 7px 10px;
    font-size: 0.76rem;
    text-align: left;
  }

  .hero-preview {
    display: none;
  }
}

@media (max-width: 420px) {
  .hero-panel {
    padding-top: 20px;
    padding-bottom: 28px;
  }

  h1 {
    max-width: 100%;
    font-size: clamp(2.08rem, 10.8vw, 2.6rem);
    line-height: 1.04;
  }

  .hero-lede {
    font-size: 0.91rem;
  }
}

.public-page-hero {
  width: 100%;
  min-height: min(620px, calc(100vh - 96px));
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.55fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: center;
  padding: clamp(42px, 8vw, 108px) clamp(22px, 5vw, 72px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.public-page-hero h1 {
  max-width: 820px;
  margin: 0;
  color: #fff;
  font-size: clamp(42px, 7vw, 92px);
  line-height: 0.96;
  letter-spacing: 0;
}

.public-page-hero p:not(.eyebrow) {
  max-width: 720px;
  margin: 22px 0 0;
  color: rgba(245, 247, 248, 0.78);
  font-size: clamp(17px, 2vw, 23px);
  line-height: 1.5;
}

.public-page-signal {
  display: grid;
  gap: 16px;
  align-content: end;
  min-height: 360px;
  padding: clamp(22px, 3vw, 34px);
  color: #fff;
  background:
    linear-gradient(150deg, rgba(255, 90, 31, 0.22), rgba(16, 22, 27, 0.18)),
    url("/img/15_lynmouth_road_dianella.webp") center / cover;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.24);
}

.public-page-signal span {
  width: fit-content;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(16, 22, 27, 0.72);
  color: rgba(255, 255, 255, 0.82);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.public-page-signal strong {
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1;
}

.public-page-signal small {
  max-width: 320px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
  line-height: 1.45;
}

.public-page-section {
  padding-left: clamp(22px, 5vw, 72px);
  padding-right: clamp(22px, 5vw, 72px);
}

.public-market-card .text-action {
  align-self: flex-start;
  margin-top: 8px;
  min-height: 44px;
  border: 0;
  background: transparent;
  color: var(--orange);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

body[data-public-page="marketplace"] .landing-shell,
body[data-public-page="portfolio"] .landing-shell,
body[data-public-page="research"] .landing-shell,
body[data-public-page="learn"] .landing-shell {
  background:
    radial-gradient(900px 520px at 10% 0%, rgba(255, 90, 31, 0.16), transparent 64%),
    linear-gradient(180deg, #10161b 0%, #14191d 46%, #f4f1ea 46%, #f4f1ea 100%);
}

@media (max-width: 820px) {
  .public-page-hero {
    min-height: 0;
    grid-template-columns: 1fr;
    padding-top: 30px;
    padding-bottom: 34px;
  }

  .public-page-hero h1 {
    font-size: clamp(36px, 12vw, 58px);
  }

  .public-page-hero p:not(.eyebrow) {
    font-size: 16px;
  }

  .public-page-signal {
    min-height: 220px;
  }
}

.hero-tagline {
  max-width: 32ch;
  margin: 18px 0 0;
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0;
  line-height: 1.25;
  text-transform: uppercase;
}

@media (max-width: 680px) {
  .hero-panel {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(112px, 0.62fr);
    column-gap: 14px;
    align-items: center;
    padding-top: 18px;
    padding-bottom: 24px;
  }

  .hero-copy-block {
    min-width: 0;
  }

  .hero-panel h1 {
    max-width: 10ch;
    font-size: clamp(2.05rem, 9.8vw, 3rem);
    line-height: 1;
  }

  .hero-tagline {
    max-width: 24ch;
    margin-top: 10px;
    font-size: 0.7rem;
    line-height: 1.22;
  }

  .hero-lede,
  .trust-strip {
    display: none;
  }

  .hero-actions {
    margin-top: 14px;
  }

  .hero-actions .primary-action,
  .hero-actions .secondary-action {
    min-height: 40px;
    padding-inline: 10px;
    font-size: 0.82rem;
  }

  .hero-preview {
    display: block;
    min-width: 0;
    min-height: 230px;
    padding: 10px;
  }

  .preview-topline {
    display: grid;
    gap: 4px;
    font-size: 0.64rem;
  }

  .hero-visual {
    display: block;
    min-height: 136px;
    margin-top: 8px;
  }

  .preview-grid {
    display: none;
  }
}

@media (max-width: 420px) {
  .hero-panel {
    grid-template-columns: minmax(0, 1fr) minmax(96px, 0.54fr);
    column-gap: 10px;
  }

  .hero-panel h1 {
    font-size: clamp(1.9rem, 9.4vw, 2.45rem);
  }

  .hero-tagline {
    font-size: 0.68rem;
  }

  .hero-actions {
    gap: 7px;
  }

  .hero-preview {
    min-height: 196px;
    padding: 8px;
  }
}

.hero-product-stack {
  height: 360px;
  margin: 26px 0 0;
}

.hero-stack-card {
  position: absolute;
  display: grid;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(13, 19, 24, 0.94);
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.34);
  overflow: hidden;
}

.hero-stack-card span,
.hero-stack-card small {
  color: rgba(245, 247, 248, 0.62);
  font-size: 0.72rem;
  font-weight: 750;
}

.hero-stack-card strong {
  color: #fff;
  font-size: 1.04rem;
  line-height: 1.1;
}

.hero-stack-card em {
  color: var(--green);
  font-size: 2.4rem;
  font-style: normal;
  font-weight: 850;
  line-height: 1;
}

.hero-stack-card--trend {
  left: 0;
  top: 20px;
  width: 52%;
  min-height: 178px;
  padding: 18px;
  transform: rotate(-4deg);
  z-index: 3;
}

.hero-mini-chart {
  display: flex;
  align-items: flex-end;
  gap: 7px;
  min-height: 52px;
  margin-top: 2px;
}

.hero-mini-chart i {
  flex: 1;
  max-width: 24px;
  border-radius: 999px 999px 5px 5px;
  background: linear-gradient(180deg, #d9ef5b, var(--orange));
}

.hero-mini-chart i:nth-child(1) { height: 24px; }
.hero-mini-chart i:nth-child(2) { height: 34px; }
.hero-mini-chart i:nth-child(3) { height: 30px; }
.hero-mini-chart i:nth-child(4) { height: 44px; }
.hero-mini-chart i:nth-child(5) { height: 52px; }

.hero-stack-card--property {
  right: 0;
  top: 76px;
  width: 58%;
  min-height: 204px;
  grid-template-rows: 118px auto;
  transform: rotate(3deg);
  z-index: 2;
}

.hero-stack-card--property img {
  width: 100%;
  height: 118px;
  object-fit: cover;
}

.hero-stack-card--property div {
  display: grid;
  gap: 5px;
  padding: 0 16px 16px;
}

.hero-stack-card--portfolio {
  left: 12%;
  bottom: 8px;
  width: 62%;
  min-height: 150px;
  padding: 18px;
  transform: rotate(-1deg);
  z-index: 4;
}

.hero-line-chart {
  min-height: 64px;
}

.hero-line-chart svg {
  display: block;
  width: 100%;
  height: 76px;
}

.hero-line-chart polyline {
  fill: none;
  stroke: var(--blue);
  stroke-width: 6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-line-chart circle {
  fill: var(--orange);
  stroke: #10161b;
  stroke-width: 3;
}

@media (max-width: 680px) {
  .hero-product-stack {
    height: 180px;
    margin-top: 10px;
  }

  .hero-stack-card {
    border-radius: 7px;
    gap: 4px;
  }

  .hero-stack-card span,
  .hero-stack-card small {
    font-size: 0.56rem;
  }

  .hero-stack-card strong {
    font-size: 0.72rem;
  }

  .hero-stack-card em {
    font-size: 1.38rem;
  }

  .hero-stack-card--trend {
    width: 64%;
    min-height: 82px;
    padding: 9px;
    top: 2px;
    left: 0;
  }

  .hero-mini-chart {
    min-height: 28px;
    gap: 4px;
  }

  .hero-mini-chart i {
    max-width: 12px;
  }

  .hero-mini-chart i:nth-child(1) { height: 12px; }
  .hero-mini-chart i:nth-child(2) { height: 18px; }
  .hero-mini-chart i:nth-child(3) { height: 15px; }
  .hero-mini-chart i:nth-child(4) { height: 22px; }
  .hero-mini-chart i:nth-child(5) { height: 28px; }

  .hero-stack-card--property {
    width: 70%;
    min-height: 104px;
    grid-template-rows: 58px auto;
    top: 48px;
    right: 0;
  }

  .hero-stack-card--property img {
    height: 58px;
  }

  .hero-stack-card--property div {
    padding: 0 8px 8px;
  }

  .hero-stack-card--portfolio {
    width: 72%;
    min-height: 78px;
    padding: 9px;
    left: 6%;
    bottom: 0;
  }

  .hero-line-chart,
  .hero-line-chart svg {
    min-height: 0;
    height: 38px;
  }

  .hero-line-chart polyline {
    stroke-width: 7;
  }
}

.hero-preview {
  min-height: 520px;
  border: 0;
  border-radius: 0;
  padding: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
}

.hero-product-stack {
  position: relative;
  width: 100%;
  height: 520px;
  margin: 0;
  overflow: visible;
}

.hero-product-card {
  position: absolute;
  display: block;
  height: auto;
  border-radius: 8px;
  filter: drop-shadow(0 24px 34px rgba(0, 0, 0, 0.32));
}

.hero-product-card--opportunity {
  width: min(76%, 340px);
  left: 3%;
  top: 28px;
  z-index: 3;
  transform: rotate(-3deg);
}

.hero-product-card--trend {
  width: min(62%, 300px);
  right: 1%;
  top: 128px;
  z-index: 4;
  transform: rotate(3deg);
}

.hero-product-card--portfolio {
  width: min(58%, 306px);
  left: 27%;
  bottom: 6px;
  z-index: 2;
  transform: rotate(-1deg);
}

@media (max-width: 920px) {
  .hero-preview {
    min-height: 440px;
  }

  .hero-product-stack {
    height: 440px;
    max-width: 520px;
    margin-inline: auto;
  }
}

@media (max-width: 680px) {
  .hero-preview {
    min-height: 228px;
    padding: 0;
  }

  .hero-product-stack {
    height: 228px;
    margin-top: 0;
  }

  .hero-product-card {
    border-radius: 6px;
    filter: drop-shadow(0 12px 18px rgba(0, 0, 0, 0.28));
  }

  .hero-product-card--opportunity {
    width: 96%;
    left: -3%;
    top: 6px;
  }

  .hero-product-card--trend {
    width: 84%;
    right: -8%;
    top: 78px;
  }

  .hero-product-card--portfolio {
    width: 70%;
    left: 15%;
    bottom: 0;
  }
}

@media (max-width: 420px) {
  .hero-preview {
    min-height: 196px;
  }

  .hero-product-stack {
    height: 196px;
  }

  .hero-product-card--opportunity {
    width: 104%;
    left: -8%;
  }

  .hero-product-card--trend {
    width: 90%;
    right: -14%;
    top: 68px;
  }

  .hero-product-card--portfolio {
    width: 76%;
    left: 8%;
  }
}

/* Final hero composition: real product cards, balanced across desktop and mobile. */
@media (min-width: 921px) {
  .hero-panel {
    grid-template-columns: minmax(0, 0.88fr) minmax(520px, 1.12fr);
    gap: clamp(44px, 5vw, 92px);
  }

  .hero-preview {
    min-height: 620px;
    align-self: center;
  }

  .hero-product-stack {
    height: 620px;
    max-width: 720px;
    margin-inline: auto;
  }

  .hero-product-card {
    filter: drop-shadow(0 30px 44px rgba(0, 0, 0, 0.34));
  }

  .hero-product-card--opportunity {
    width: min(63%, 400px);
    left: 0;
    top: 28px;
    transform: rotate(-4deg);
    z-index: 4;
  }

  .hero-product-card--trend {
    width: min(51%, 330px);
    right: 2%;
    top: 150px;
    transform: rotate(4deg);
    z-index: 5;
  }

  .hero-product-card--portfolio {
    width: min(46%, 330px);
    left: 35%;
    bottom: 0;
    transform: rotate(-1deg);
    z-index: 3;
  }
}

@media (max-width: 680px) {
  .hero-panel {
    grid-template-columns: minmax(0, 1fr) minmax(118px, 0.68fr);
    grid-template-rows: auto auto;
    column-gap: 12px;
    row-gap: 14px;
    align-items: start;
    padding-top: 20px;
  }

  .hero-copy-block {
    display: contents;
  }

  .hero-copy-block h1,
  .hero-copy-block .hero-tagline,
  .hero-copy-block .hero-lede {
    grid-column: 1;
  }

  .hero-panel h1 {
    max-width: 10.5ch;
  }

  .hero-tagline {
    max-width: 24ch;
  }

  .hero-preview {
    grid-column: 2;
    grid-row: 1 / span 2;
    align-self: start;
    min-height: 210px;
    margin-top: 2px;
  }

  .hero-product-stack {
    height: 210px;
  }

  .hero-product-card--opportunity {
    width: 108%;
    left: -12%;
    top: 0;
  }

  .hero-product-card--trend {
    width: 90%;
    right: -12%;
    top: 72px;
  }

  .hero-product-card--portfolio {
    width: 78%;
    left: 4%;
    bottom: 4px;
  }

  .hero-actions {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    width: 100%;
    margin-top: 0;
  }

  .hero-actions .primary-action,
  .hero-actions .secondary-action {
    width: 100%;
    min-height: 42px;
    border-radius: 8px;
    padding-inline: 8px;
    font-size: 0.82rem;
    white-space: normal;
    text-align: center;
  }
}

@media (max-width: 420px) {
  .hero-panel {
    grid-template-columns: minmax(0, 1fr) minmax(112px, 0.64fr);
    column-gap: 10px;
  }

  .hero-panel h1 {
    max-width: 10ch;
    font-size: clamp(1.88rem, 9.3vw, 2.42rem);
  }

  .hero-preview {
    min-height: 188px;
  }

  .hero-product-stack {
    height: 188px;
  }

  .hero-product-card--opportunity {
    width: 110%;
    left: -14%;
  }

  .hero-product-card--trend {
    width: 92%;
    right: -16%;
    top: 64px;
  }

  .hero-product-card--portfolio {
    width: 78%;
    left: 2%;
  }
}

/* Final hero alignment pass: keep the real card stack inside the viewport. */
@media (min-width: 921px) {
  .hero-panel {
    grid-template-columns: minmax(360px, 0.9fr) minmax(500px, 1.1fr);
    overflow: visible;
  }

  .hero-preview {
    width: 100%;
    min-width: 0;
    overflow: visible;
    transform: translateX(clamp(-72px, -4vw, -28px));
  }

  .hero-product-stack {
    width: min(100%, 650px);
    height: 600px;
    margin-left: 0;
    margin-right: auto;
  }

  .hero-product-card--opportunity {
    width: min(60%, 374px);
    left: 0;
    top: 18px;
  }

  .hero-product-card--trend {
    width: min(49%, 312px);
    right: 6%;
    top: 132px;
  }

  .hero-product-card--portfolio {
    width: min(45%, 312px);
    left: 31%;
    bottom: 8px;
  }
}

@media (max-width: 680px) {
  .hero-panel h1 {
    max-width: 8.7ch;
  }

  .hero-preview {
    transform: translateX(-10px);
  }

  .hero-product-card--opportunity {
    width: 102%;
    left: -18%;
  }

  .hero-product-card--trend {
    width: 86%;
    right: -2%;
  }

  .hero-product-card--portfolio {
    width: 74%;
    left: -4%;
  }
}

@media (max-width: 420px) {
  .hero-panel h1 {
    max-width: 8.3ch;
  }

  .hero-preview {
    transform: translateX(-14px);
  }

  .hero-product-card--opportunity {
    width: 104%;
    left: -22%;
  }

  .hero-product-card--trend {
    width: 88%;
    right: 0;
  }

  .hero-product-card--portfolio {
    width: 76%;
    left: -8%;
  }
}

@media (max-width: 680px) {
  .growth-suburbs-panel {
    padding-top: 18px;
    padding-bottom: 28px;
  }

  .growth-suburbs-panel::before {
    margin-bottom: 22px;
  }

  .growth-suburbs-heading {
    gap: 12px;
    margin-bottom: 18px;
  }

  .growth-suburbs-heading h2 {
    font-size: clamp(1.05rem, 5vw, 1.45rem);
  }

  .growth-suburbs-heading h2 span {
    display: none;
  }

  .growth-suburbs-heading a {
    font-size: clamp(0.86rem, 4vw, 1.08rem);
  }

  .growth-suburbs-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  .growth-suburb-card {
    min-height: 74px;
    gap: 4px;
    border-width: 1px;
    border-radius: 12px;
  }

  .growth-suburb-card h3 {
    font-size: clamp(0.82rem, 3.6vw, 1.02rem);
  }

  .growth-suburb-card strong {
    font-size: clamp(1.18rem, 6vw, 1.72rem);
  }
}

@media (max-width: 380px) {
  .growth-suburbs-grid {
    gap: 6px;
  }

  .growth-suburb-card {
    min-height: 68px;
    border-radius: 10px;
  }

  .growth-suburb-card h3 {
    font-size: 0.76rem;
  }
}

.growth-suburbs-panel::before {
  display: none;
}

html,
body {
  width: 100%;
  max-width: 100%;
}

html {
  overflow-x: clip;
}

body {
  overflow-x: visible;
}

.landing-shell {
  width: 100%;
  max-width: 100%;
  overflow: visible !important;
}

.landing-topbar {
  position: sticky !important;
  top: 0;
  z-index: 100;
}

@media (max-width: 920px) {
  .landing-shell {
    padding-top: var(--mobile-public-header-height, 124px);
  }

  .landing-topbar {
    position: fixed !important;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    max-width: 100vw;
    z-index: 100;
  }
}

@media (max-width: 420px) {
  .landing-shell {
    padding-top: var(--mobile-public-header-height-small, 118px);
  }
}

.landing-nav a::after {
  bottom: 2px;
}

@media (max-width: 920px) {
  .landing-nav a {
    padding-bottom: 6px;
  }

  .landing-nav a::after {
    bottom: 0;
  }
}

/* Landing opportunity rail: real PropStac One style cards. */
.market-section {
  padding-top: clamp(34px, 4.6vw, 64px);
}

.market-section .section-heading {
  margin-bottom: 20px;
}

.market-section .section-heading h2 {
  max-width: 680px;
  font-size: clamp(1.45rem, 3vw, 2.45rem);
}

.opportunity-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 20px);
}

.ps-opportunity-card {
  border-color: rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  background: #11191e;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.22);
}

.ps-opportunity-card--placeholder {
  min-height: 320px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.04)) 0 0 / 220% 100%,
    #11191e;
  animation: ps-card-loading 1.4s ease-in-out infinite;
}

@keyframes ps-card-loading {
  from { background-position: 110% 0, 0 0; }
  to { background-position: -110% 0, 0 0; }
}

.research-feature-section .section-heading h2 {
  font-size: clamp(1.45rem, 3vw, 2.45rem);
}

.research-card-grid {
  width: min(100%, 1180px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 20px);
}

.market-trend-card {
  display: grid;
  gap: 12px;
  min-height: 318px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  padding: 16px;
  background: #11191e;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.22);
}

.market-trend-card h3 {
  margin: 0;
  color: #fff;
  font-size: 1rem;
}

.market-trend-chart {
  height: 98px;
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.015));
}

.market-trend-chart svg {
  display: block;
  width: 100%;
  height: 100%;
}

.market-trend-chart polyline {
  fill: none;
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.market-trend-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.market-trend-badges span {
  min-height: 24px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0 9px;
  background: rgba(8, 239, 132, 0.16);
  color: #d9ffe9;
  font-size: 0.72rem;
  font-weight: 800;
}

.market-trend-card p {
  margin: 0;
  color: rgba(245, 247, 248, 0.72);
  font-size: 0.86rem;
  line-height: 1.45;
}

.market-trend-status {
  align-self: end;
  min-height: 36px;
  display: grid;
  place-items: center;
  border-radius: 0 0 10px 10px;
  margin: 4px -16px -16px;
  color: #fff;
  font-size: 0.78rem;
}

.market-trend-status.is-positive {
  background: #145a46;
}

.market-trend-status.is-neutral {
  background: #303941;
}

.market-trend-card--placeholder {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.04)) 0 0 / 220% 100%,
    #11191e;
  animation: ps-card-loading 1.4s ease-in-out infinite;
}

.ps-opportunity-media {
  position: relative;
  min-height: 178px;
  overflow: hidden;
}

.ps-opportunity-media::after {
  content: "";
  position: absolute;
  inset: 44% 0 0;
  background: linear-gradient(180deg, rgba(17, 25, 30, 0), rgba(17, 25, 30, 0.94));
  pointer-events: none;
}

.ps-opportunity-media img {
  width: 100%;
  height: 190px;
  aspect-ratio: auto;
  object-fit: cover;
}

.ps-opportunity-badge,
.ps-opportunity-time,
.ps-opportunity-save,
.ps-opportunity-media strong {
  position: absolute;
  z-index: 2;
}

.ps-opportunity-badge,
.ps-opportunity-time {
  top: 14px;
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  border-radius: 999px;
  padding: 0 10px;
  background: rgba(13, 19, 24, 0.84);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 850;
  text-transform: uppercase;
}

.ps-opportunity-badge {
  left: 14px;
}

.ps-opportunity-time {
  right: 14px;
}

.ps-opportunity-media strong {
  left: 14px;
  bottom: 16px;
  color: #fff;
  font-size: clamp(1.35rem, 2.2vw, 1.85rem);
  line-height: 1;
}

.ps-opportunity-save {
  right: 14px;
  bottom: 12px;
  width: 42px;
  min-height: 42px;
  border: 0;
  border-radius: 10px;
  background: var(--orange);
  color: #fff;
  font-weight: 900;
  cursor: pointer;
}

.ps-opportunity-card .property-card-body {
  padding: 16px;
}

.ps-opportunity-address {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.ps-opportunity-address h3 {
  margin: 0;
  color: #fff;
  font-size: 1rem;
  line-height: 1.2;
}

.ps-opportunity-address span {
  flex: 0 0 auto;
  color: rgba(245, 247, 248, 0.74);
  font-size: 0.72rem;
  white-space: nowrap;
}

.ps-opportunity-card dl {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin: 0;
}

.ps-opportunity-card dl div {
  min-height: 58px;
  display: grid;
  align-content: center;
  gap: 4px;
  border: 1px solid rgba(8, 239, 132, 0.28);
  border-radius: 8px;
  padding: 8px;
  background: rgba(8, 239, 132, 0.06);
}

.ps-opportunity-card dl div:nth-child(3) {
  border-color: rgba(255, 90, 31, 0.42);
  background: rgba(255, 90, 31, 0.08);
}

.ps-opportunity-card dt {
  color: rgba(245, 247, 248, 0.7);
  font-size: 0.62rem;
  font-weight: 850;
  line-height: 1;
  text-transform: uppercase;
}

.ps-opportunity-card dd {
  color: #fff;
  font-size: 1.08rem;
  line-height: 1;
}

@media (max-width: 760px) {
  .market-section {
    padding-top: 30px;
    padding-bottom: 38px;
  }

  .market-section .section-heading {
    align-items: baseline;
    margin-bottom: 14px;
  }

  .market-section .section-heading h2 {
    font-size: 1.25rem;
  }

  .opportunity-grid {
    width: auto;
    max-width: none;
    margin: 0 calc(clamp(20px, 5vw, 72px) * -1);
    display: flex;
    gap: 14px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: x mandatory;
    padding: 0 clamp(20px, 5vw, 72px) 8px;
    scrollbar-width: none;
  }

  .opportunity-grid::-webkit-scrollbar {
    display: none;
  }

  .ps-opportunity-card {
    flex: 0 0 min(82vw, 330px);
    scroll-snap-align: start;
  }

  .ps-opportunity-media {
    min-height: 168px;
  }

  .ps-opportunity-media img {
    height: 178px;
  }

  .research-card-grid {
    width: auto;
    max-width: none;
    margin: 0 calc(clamp(20px, 5vw, 72px) * -1);
    display: flex;
    gap: 14px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: x mandatory;
    padding: 0 clamp(20px, 5vw, 72px) 8px;
    scrollbar-width: none;
  }

  .research-card-grid::-webkit-scrollbar {
    display: none;
  }

  .market-trend-card {
    flex: 0 0 min(82vw, 330px);
    scroll-snap-align: start;
  }
}

.signup-modal {
  z-index: 1000;
}

.modal-panel {
  z-index: 1;
}

@media (max-width: 680px) {
  .signup-modal {
    display: block;
    padding: 0;
  }

  .signup-modal[hidden] {
    display: none;
  }

  .modal-backdrop {
    background: #10161b;
    backdrop-filter: none;
  }

  .modal-panel,
  .login-modal .modal-panel {
    width: 100%;
    max-width: none;
    min-height: 100dvh;
    height: 100dvh;
    max-height: none;
    border: 0;
    border-radius: 0;
    padding: max(24px, env(safe-area-inset-top)) 20px max(24px, env(safe-area-inset-bottom));
    overflow-y: auto;
  }

  #signupModal .modal-panel {
    width: 100%;
    max-width: none;
  }

  #signupForm .field-group,
  #signupForm .signup-name-row {
    margin: 7px 0;
  }

  #signupForm .signup-name-row {
    gap: 8px;
  }

  #signupForm .field-group {
    gap: 4px;
  }

  #signupForm .field-group label {
    font-size: 0.78rem;
    line-height: 1.2;
  }

  #signupForm .field-group input,
  #signupForm select {
    min-height: 38px;
    padding-top: 8px;
    padding-bottom: 8px;
    font-size: 0.9rem;
  }

  #signupForm .modal-message {
    min-height: 8px;
    margin: 0 0 6px;
    font-size: 0.84rem;
  }

  #signupForm .modal-submit {
    min-height: 40px;
    padding-left: 22px;
    padding-right: 22px;
  }

  .register-interest-consent {
    margin-top: 6px;
    font-size: 0.72rem;
    line-height: 1.3;
  }

  #signupForm + .modal-footer-copy {
    margin-top: 8px;
    font-size: 0.86rem;
  }
}

/* Featured rails stay on one row at every viewport size. */
.opportunity-grid,
.research-card-grid {
  width: min(100%, 1180px);
  max-width: none;
  margin: 0 auto;
  display: flex;
  grid-template-columns: none;
  gap: clamp(14px, 2vw, 20px);
  overflow-x: auto;
  overflow-y: visible;
  overscroll-behavior-inline: contain;
  scroll-snap-type: x proximity;
  padding: 0 2px 10px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.opportunity-grid::-webkit-scrollbar,
.research-card-grid::-webkit-scrollbar {
  display: none;
}

.ps-opportunity-card,
.market-trend-card {
  flex: 0 0 clamp(270px, calc((100% - 60px) / 4), 335px);
  scroll-snap-align: start;
}

@media (max-width: 760px) {
  .opportunity-grid,
  .research-card-grid {
    width: auto;
    margin: 0 calc(clamp(20px, 5vw, 72px) * -1);
    gap: 14px;
    scroll-snap-type: x mandatory;
    padding: 0 clamp(20px, 5vw, 72px) 8px;
  }

  .ps-opportunity-card,
  .market-trend-card {
    flex-basis: min(82vw, 330px);
  }
}

.section-heading-copy {
  max-width: 760px;
  margin: 8px 0 0;
  color: rgba(245, 247, 248, 0.72);
  font-size: clamp(0.92rem, 1.4vw, 1.04rem);
  line-height: 1.55;
}

/* Public landing uses the authenticated PropStac One card class names. */
.opportunity-grid,
.research-card-grid {
  padding-left: clamp(12px, 2vw, 24px);
  padding-right: clamp(12px, 2vw, 24px);
}

.opportunity-grid .ps-property-card,
.research-card-grid .portal-macro-metric-card,
.research-card-grid .market-report-card {
  flex: 0 0 clamp(270px, calc((100% - 60px) / 4), 335px);
  scroll-snap-align: start;
}

.ps-property-card {
  display: grid;
  background: linear-gradient(180deg, #1c232b 0%, #14191f 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
  overflow: hidden;
  transform: translateZ(0);
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.ps-property-card:hover {
  transform: translateZ(0);
  border-color: rgba(255, 90, 18, 0.45);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.34);
}

.public-marketplace-placeholder {
  min-height: 360px;
  border-color: rgba(255, 255, 255, 0.12);
  background: linear-gradient(110deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.06));
  background-size: 220% 100%;
  animation: publicMarketplacePlaceholder 1.4s ease-in-out infinite;
}

@keyframes publicMarketplacePlaceholder {
  0% { background-position: 100% 0; }
  100% { background-position: -100% 0; }
}

.ps-property-card-media {
  position: relative;
  display: block;
  height: 280px;
  min-height: 280px;
  overflow: hidden;
  isolation: isolate;
  background: #131a21;
}

.ps-property-card-image {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  transform: translateZ(0);
  transform-origin: center center;
  backface-visibility: hidden;
  transition: transform 0.22s ease;
}

.ps-property-card:hover .ps-property-card-image {
  transform: translateZ(0) scale(1.02);
}

.ps-property-card-image-placeholder {
  display: grid;
  gap: 10px;
  align-content: center;
  justify-items: center;
  width: 100%;
  height: 100%;
  min-height: 280px;
  color: rgba(255, 255, 255, 0.72);
  background:
    radial-gradient(circle at 20% 10%, rgba(255, 90, 18, 0.16), transparent 48%),
    linear-gradient(180deg, #1b232c 0%, #121820 100%);
}

.ps-property-card-media-overlay {
  position: absolute;
  inset: auto 0 0 0;
  height: 44%;
  background: linear-gradient(180deg, rgba(8, 12, 16, 0), rgba(8, 12, 16, 0.88));
}

.ps-property-card-media-top,
.ps-property-card-media-bottom {
  position: absolute;
  right: 12px;
  left: 12px;
  display: flex;
  gap: 10px;
}

.ps-property-card-media-top {
  top: 12px;
  align-items: flex-start;
  justify-content: space-between;
}

.ps-property-card-media-bottom {
  bottom: 12px;
  align-items: flex-end;
  justify-content: space-between;
}

.ps-property-card-badge {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 8px;
  border-radius: 10px;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
}

.ps-property-card-badge--status,
.ps-property-card-badge--age {
  color: #fff;
  background: rgba(26, 36, 46, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.ps-property-card-badge--new {
  color: #fff;
  background: #2f80ed;
}

.ps-property-card-badge--purchased {
  color: #fff;
  background: #00d084;
}

.ps-property-card-badge--on-hold {
  color: #fff;
  background: #ff4d4f;
}

.ps-property-card-badge--type {
  color: #fff;
  background: rgba(5, 12, 18, 0.85);
  border: 1px solid rgba(255, 90, 18, 0.45);
}

.ps-property-card-price {
  color: #fff;
  font-size: 1.35rem;
  font-weight: 800;
  line-height: 1;
  text-shadow: 0 10px 24px rgba(0, 0, 0, 0.52);
}

.ps-property-card-media-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.ps-property-card-action {
  width: 30px;
  min-width: 30px;
  height: 30px;
  min-height: 30px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(10, 14, 18, 0.78);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.16s ease, border-color 0.16s ease, color 0.16s ease, transform 0.16s ease;
}

.ps-property-card-action-glyph {
  color: rgba(235, 235, 235, 0.9);
  font-size: 14px;
  font-weight: 700;
  width: 14px;
  height: 14px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.ps-property-card-action:hover,
.ps-property-card-action:focus-visible {
  background: rgba(255, 90, 18, 0.18);
  border-color: #ff5a12;
  color: #ff5a12;
  transform: translateY(-1px);
}

.ps-property-card-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  padding: 10px 10px 11px;
}

.ps-property-card-main {
  min-width: 0;
}

.ps-property-card-main-top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
}

.ps-property-card-main-copy {
  min-width: 0;
}

.ps-property-card-address-line {
  margin: 0;
  color: #fff;
  font-size: 0.83rem;
  font-weight: 600;
  line-height: 1.25;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  white-space: normal;
  overflow: hidden;
}

.ps-property-card-location {
  margin-top: 3px;
  color: #ff5a12;
  font-size: 0.8rem;
  font-weight: 600;
}

.ps-property-card-attributes {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  flex: 0 0 auto;
  padding: 2px 0;
}

.ps-property-card-attribute {
  display: grid;
  gap: 3px;
  min-width: 40px;
  justify-items: center;
  padding-right: 0;
}

.ps-property-card-attribute-main {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.ps-property-card-attribute span {
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
}

.ps-property-card-attribute small {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.62rem;
  text-transform: uppercase;
  line-height: 1;
}

.ps-property-card-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 6px;
  margin-top: 2px;
}

.ps-property-card-metric-chip {
  padding: 6px 7px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.ps-property-card-metric-chip span {
  display: block;
  font-size: 0.62rem;
  text-transform: uppercase;
}

.ps-property-card-metric-chip strong {
  display: block;
  margin-top: 2px;
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
}

.ps-property-card-metric-chip--return {
  background: rgba(22, 84, 82, 0.24);
  border-color: rgba(62, 166, 161, 0.44);
}

.ps-property-card-metric-chip--return span {
  color: rgba(174, 228, 225, 0.95);
}

.ps-property-card-metric-chip--yield {
  background: rgba(38, 92, 51, 0.24);
  border-color: rgba(87, 177, 104, 0.48);
}

.ps-property-card-metric-chip--yield span {
  color: rgba(192, 241, 200, 0.95);
}

.ps-property-card-metric-chip--vacancy {
  background: rgba(114, 65, 22, 0.24);
  border-color: rgba(255, 143, 52, 0.52);
}

.ps-property-card-metric-chip--vacancy span {
  color: rgba(255, 192, 139, 0.98);
}

.portal-macro-metric-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 10px;
  min-height: 260px;
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.045);
  padding: 14px;
}

.portal-macro-metric-card span {
  color: rgba(226, 235, 246, 0.62);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.portal-macro-metric-card strong {
  color: #fff;
  font-size: clamp(1.35rem, 2vw, 1.85rem);
  line-height: 1.12;
}

.portal-macro-metric-card small {
  color: rgba(226, 235, 246, 0.72);
  font-size: 0.8rem;
  line-height: 1.4;
}

@media (max-width: 760px) {
  .opportunity-grid,
  .research-card-grid {
    padding-left: clamp(20px, 5vw, 72px);
    padding-right: clamp(20px, 5vw, 72px);
  }

  .opportunity-grid .ps-property-card,
  .research-card-grid .portal-macro-metric-card,
  .research-card-grid .market-report-card {
    flex-basis: min(82vw, 330px);
  }

  .ps-property-card-media {
    height: 250px;
    min-height: 250px;
  }
}

/* Compact public footer */
.landing-footer {
  display: grid;
  grid-template-columns: minmax(120px, 1fr) minmax(0, 1.4fr);
  grid-template-areas:
    "brand nav"
    "copyright contact"
    "legal contact";
  align-items: center;
  gap: 8px 18px;
  padding-top: 18px;
  padding-bottom: 18px;
  background: #10161b;
}

.footer-brand {
  grid-area: brand;
  width: fit-content;
  min-height: 0;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.footer-brand img {
  display: block;
  width: clamp(116px, 11vw, 154px);
  height: auto;
}

.landing-footer .footer-primary-nav {
  grid-area: nav;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(12px, 2vw, 28px);
  flex-wrap: nowrap;
}

.landing-footer a,
.landing-footer p,
.landing-footer .footer-login-link {
  font-size: 0.68rem;
  line-height: 1.25;
}

.landing-footer .footer-primary-nav a {
  color: #fff;
  font-weight: 750;
  text-decoration: none;
  white-space: nowrap;
}

.landing-footer p {
  margin: 0;
  color: rgba(245, 247, 248, 0.82);
}

.footer-copyright {
  grid-area: copyright;
}

.footer-contact {
  grid-area: contact;
  display: grid;
  justify-content: flex-end;
  justify-items: end;
  gap: 6px;
  text-align: right;
}

.footer-contact p {
  margin: 0;
}

.footer-contact-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px 16px;
  margin-bottom: 4px;
}

.footer-contact-actions button {
  appearance: none;
  border: 0;
  background: transparent;
  color: #ffffff;
  cursor: pointer;
  font: inherit;
  font-size: 0.68rem;
  font-weight: 750;
  line-height: 1.25;
  padding: 0;
  transition: color 160ms ease;
  white-space: nowrap;
}

.footer-contact-actions button:hover,
.footer-contact-actions button:focus-visible {
  color: var(--orange);
  outline: none;
}

.landing-footer .footer-legal {
  grid-area: legal;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.landing-footer .footer-legal a {
  color: #fff;
  text-decoration: none;
  white-space: nowrap;
}

@media (max-width: 680px) {
  .landing-footer {
    grid-template-columns: minmax(92px, auto) minmax(0, 1fr);
    grid-template-areas:
      "brand nav"
      "copyright contact"
      "legal contact";
    gap: 8px 10px;
    padding: 14px 6px 16px;
  }

  .footer-brand img {
    width: 92px;
  }

  .landing-footer .footer-primary-nav {
    justify-content: flex-end;
    gap: 10px;
  }

  .landing-footer a,
  .landing-footer p,
  .landing-footer .footer-login-link {
    font-size: 0.58rem;
  }

  .footer-contact {
    display: grid;
    justify-items: end;
    gap: 4px;
  }

  .landing-footer .footer-legal {
    gap: 8px;
  }
}

@media (max-width: 360px) {
  .landing-footer .footer-primary-nav {
    gap: 8px;
  }

  .landing-footer a,
  .landing-footer p,
  .landing-footer .footer-login-link {
    font-size: 0.54rem;
  }
}

/* Final CTA: desktop icon balance, clean single action. */
.photo-cta {
  align-items: center;
}

.photo-mark {
  right: max(var(--section-pad-x, 72px), calc((100vw - var(--container, 1240px)) / 2 + var(--section-pad-x, 72px)));
  bottom: auto;
  top: 50%;
  width: clamp(180px, 20vw, 300px);
  height: auto;
  opacity: 0.92;
  transform: translateY(-50%);
  filter: drop-shadow(0 28px 58px rgba(0, 0, 0, 0.42));
}

.photo-copy {
  max-width: min(720px, calc(100% - clamp(260px, 28vw, 380px)));
}

.photo-copy .cta-actions {
  margin-top: 28px;
}

@media (max-width: 920px) {
  .photo-mark {
    display: none;
  }

  .photo-copy {
    max-width: 100%;
  }
}

/* Investor operating flow */
.operating-flow-section {
  background: #151b21;
}

.operating-flow {
  width: min(100%, 760px);
  margin: 0 auto;
}

.operating-flow h2 {
  max-width: 640px;
  margin: 0 0 26px;
  color: #f5f7f8;
  font-size: clamp(1.75rem, 3.2vw, 2.45rem);
  font-weight: 850;
  line-height: 1.08;
}

.operating-flow-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px 46px;
}

.operating-flow-grid article {
  min-height: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.operating-flow-grid h3 {
  margin: 0 0 5px;
  color: var(--orange);
  font-size: 1rem;
  font-weight: 850;
  line-height: 1.12;
}

.operating-flow-grid p {
  margin: 0;
  color: #fff;
  font-size: 0.98rem;
  font-weight: 650;
  line-height: 1.18;
}

@media (max-width: 680px) {
  .operating-flow {
    width: 100%;
  }

  .operating-flow h2 {
    margin-bottom: 22px;
    font-size: clamp(1.42rem, 6vw, 1.9rem);
  }

  .operating-flow-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .operating-flow-grid h3 {
    font-size: 0.96rem;
  }

  .operating-flow-grid p {
    max-width: 28rem;
    font-size: 0.94rem;
  }
}

/* Final landing alignment pass */
.market-section .section-heading--topline,
.research-feature-section .section-heading--topline {
  align-items: flex-start;
  flex-direction: row;
}

.market-section .section-heading--topline > a,
.research-feature-section .section-heading--topline > a {
  margin-top: 0.35em;
  margin-left: auto;
}

.market-section .section-heading--topline h2,
.research-feature-section .section-heading--topline h2 {
  line-height: 1;
}

.market-section .opportunity-grid,
.research-feature-section .research-card-grid {
  --rail-pad: var(--section-pad-x, clamp(20px, 5vw, 72px));
  width: auto;
  max-width: none;
  margin-left: calc(0px - var(--rail-pad));
  margin-right: calc(0px - var(--rail-pad));
  padding-left: var(--rail-pad);
  padding-right: var(--rail-pad);
  scroll-padding-left: var(--rail-pad);
  scroll-padding-right: var(--rail-pad);
}

.research-card-grid .portal-macro-metric-card {
  min-height: 92px;
  gap: 8px;
  padding: 14px;
}

.research-card-grid .portal-macro-metric-card strong {
  font-size: 18px;
  line-height: 1.2;
}

.research-card-grid .market-report-card {
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 14px;
  background: rgba(16, 22, 30, 0.96);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.28);
  overflow: hidden;
  cursor: pointer;
  transition: transform 120ms ease, box-shadow 120ms ease, border-color 120ms ease;
  display: flex;
  flex-direction: column;
  min-height: 320px;
  color: #e2e8f0;
}

.research-card-grid .market-report-card:hover,
.research-card-grid .market-report-card:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(255, 90, 18, 0.38);
  outline: none;
}

.research-card-grid .market-report-card-title {
  padding: 10px 12px;
  font-weight: 700;
  font-size: 13px;
  line-height: 1.3;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.research-card-grid .market-report-card-chart {
  height: 120px;
  padding: 8px 10px;
}

.research-card-grid .market-report-card-chart canvas {
  width: 100% !important;
  height: 100% !important;
}

.research-card-grid .market-report-card-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 0 12px 10px 12px;
}

.research-card-grid .market-report-badge {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.35);
  background: rgba(255, 255, 255, 0.1);
  color: #e2e8f0;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.2;
  padding: 4px 7px;
}

.research-card-grid .market-report-badge.badge-good {
  color: #d1fae5;
  border-color: rgba(16, 185, 129, 0.5);
  background: rgba(16, 185, 129, 0.2);
}

.research-card-grid .market-report-badge.badge-bad {
  color: #fee2e2;
  border-color: rgba(239, 68, 68, 0.5);
  background: rgba(239, 68, 68, 0.18);
}

.research-card-grid .market-report-badge.badge-neutral {
  color: #e2e8f0;
  border-color: rgba(148, 163, 184, 0.4);
  background: rgba(148, 163, 184, 0.18);
}

.research-card-grid .market-report-card-summary {
  font-size: 12px;
  line-height: 1.35;
  color: rgba(233, 238, 244, 0.82);
  padding: 0 12px 10px 12px;
}

.research-card-grid .market-report-card-status {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: auto;
  padding: 8px 12px;
  font-size: 12px;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
}

.research-card-grid .market-report-card-status.status-positive {
  color: #d1fae5;
  background: rgba(16, 185, 129, 0.22);
}

.research-card-grid .market-report-card-status.status-negative {
  color: #fee2e2;
  background: rgba(239, 68, 68, 0.2);
}

.research-card-grid .market-report-card-status.status-neutral {
  color: #e2e8f0;
  background: rgba(148, 163, 184, 0.2);
}

/* Public shell finishing pass */
.landing-footer {
  grid-template-columns: minmax(120px, 1fr) minmax(0, 1.4fr);
  grid-template-areas:
    "brand contact"
    "copyright contact"
    "legal legal";
}

.landing-footer .footer-primary-nav {
  display: none;
}

.landing-footer .footer-legal {
  margin-top: 10px;
  justify-content: flex-start;
}

.landing-footer .footer-legal a {
  transition: color 160ms ease;
}

.landing-footer .footer-legal a:hover,
.landing-footer .footer-legal a:focus-visible {
  color: var(--orange);
}

.modal-logo {
  display: inline-flex;
  align-items: center;
  margin-bottom: 22px;
  width: 132px;
  max-width: 60%;
}

.modal-logo::before {
  content: none;
}

.modal-logo img {
  display: block;
  width: 100%;
  height: auto;
}

.field-group input {
  background: #ffffff;
}

@media (max-width: 680px) {
  .landing-footer {
    grid-template-columns: minmax(92px, auto) minmax(0, 1fr);
    grid-template-areas:
      "brand contact"
      "copyright contact"
      "legal legal";
  }

  .landing-footer .footer-legal {
    justify-content: flex-start;
  }
}

.ps-property-card-action.icontooltip .tooltiptext {
  visibility: hidden;
  width: 92px;
  background-color: rgba(0, 0, 0, 0.5);
  color: #ffffff;
  text-align: center;
  border-radius: 6px;
  padding: 5px 7px;
  position: absolute;
  z-index: 5;
  top: 124%;
  left: 50%;
  margin-left: -46px;
  opacity: 0;
  transition: opacity 0.18s ease, visibility 0.18s ease;
  font-size: 0.62rem;
  line-height: 1.2;
  white-space: normal;
  pointer-events: none;
}

.ps-property-card-action.icontooltip .tooltiptext::after {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: transparent transparent rgba(0, 0, 0, 0.5) transparent;
}

.ps-property-card-action.icontooltip:hover .tooltiptext,
.ps-property-card-action.icontooltip:focus-visible .tooltiptext {
  visibility: visible;
  opacity: 1;
}

.ps-property-card-media-bottom .ps-property-card-media-actions .ps-property-card-action.icontooltip .tooltiptext {
  top: auto;
  bottom: 116%;
  right: 0;
  left: auto;
  margin-left: 0;
}

.ps-property-card-media-bottom .ps-property-card-media-actions .ps-property-card-action.icontooltip .tooltiptext::after {
  top: 100%;
  right: 10px;
  bottom: auto;
  left: auto;
  margin-left: 0;
  border-color: rgba(0, 0, 0, 0.5) transparent transparent transparent;
}

.ps-property-card-attribute i {
  color: rgba(255, 255, 255, 0.82);
  font-size: 11px;
  width: 11px;
  text-align: center;
}

.photo-mark {
  display: flex;
  align-items: flex-start;
  gap: 0;
  width: auto;
  color: #fff;
  font-size: clamp(8rem, 16vw, 16rem);
  font-weight: 900;
  line-height: 0.82;
  filter: drop-shadow(0 28px 58px rgba(0, 0, 0, 0.42));
}

.photo-mark span {
  width: clamp(15px, 2.2vw, 28px);
  height: clamp(15px, 2.2vw, 28px);
  margin-top: 0.03em;
  margin-right: -0.05em;
  background: var(--orange);
  flex: 0 0 auto;
}

.photo-mark img {
  display: block;
  width: clamp(120px, 14vw, 190px);
  height: auto;
}

.modal-panel .field-group input,
.login-modal .field-group input,
.signup-modal .field-group input {
  appearance: none;
  background-color: #ffffff !important;
  background-image: none !important;
  box-shadow: none;
}

.modal-panel .field-group input:-webkit-autofill,
.modal-panel .field-group input:-webkit-autofill:hover,
.modal-panel .field-group input:-webkit-autofill:focus,
.login-modal .field-group input:-webkit-autofill,
.login-modal .field-group input:-webkit-autofill:hover,
.login-modal .field-group input:-webkit-autofill:focus {
  -webkit-box-shadow: 0 0 0 1000px #ffffff inset !important;
  -webkit-text-fill-color: #102026 !important;
  caret-color: #102026;
}

@media (max-width: 680px) {
  .market-section .section-heading--topline,
  .research-feature-section .section-heading--topline {
    align-items: flex-start;
    flex-direction: row;
    gap: 12px;
  }

  .market-section .section-heading--topline > a,
  .research-feature-section .section-heading--topline > a {
    margin-top: 0.1em;
    font-size: 0.92rem;
  }

  .market-section .opportunity-grid,
  .research-feature-section .research-card-grid {
    --rail-pad: var(--section-pad-x, 18px);
  }

  .research-feature-section .section-heading-copy {
    max-width: min(72vw, 24rem);
    font-size: 0.82rem;
    line-height: 1.35;
  }
}

@media (max-width: 920px) {
  .photo-mark {
    display: none;
  }
}

/* Desktop/tablet alignment pass */
@media (min-width: 681px) {
  .landing-topbar,
  .hero-panel,
  .growth-suburbs-panel,
  .market-section,
  .benefit-section,
  .insight-section,
  .photo-cta,
  .landing-footer {
    padding-left: max(var(--section-pad-x, 34px), calc((100vw - var(--container, 1240px)) / 2)) !important;
    padding-right: max(var(--section-pad-x, 34px), calc((100vw - var(--container, 1240px)) / 2)) !important;
  }

  .growth-suburbs-heading,
  .growth-suburbs-grid,
  .section-heading,
  .operating-flow {
    width: min(100%, var(--container, 1240px));
    max-width: var(--container, 1240px);
    margin-left: auto;
    margin-right: auto;
  }

  .market-section .opportunity-grid,
  .research-feature-section .research-card-grid {
    width: min(100%, var(--container, 1240px));
    max-width: var(--container, 1240px);
    margin-left: auto;
    margin-right: auto;
    padding-left: 0;
    padding-right: 0;
    scroll-padding-left: 0;
    scroll-padding-right: 0;
  }
}

@media (min-width: 981px) {
  .landing-topbar {
    display: grid !important;
    grid-template-columns: minmax(170px, 1fr) minmax(390px, auto) minmax(170px, 1fr);
    gap: 24px;
    align-items: center;
  }

  .brand-mark {
    justify-self: start;
  }

  .landing-nav {
    justify-self: center;
    justify-content: center;
  }

  .landing-account-actions {
    justify-self: end;
  }
}

@media (min-width: 681px) and (max-width: 980px) {
  .landing-topbar {
    display: grid !important;
    grid-template-columns: minmax(140px, auto) minmax(0, 1fr);
    grid-template-areas:
      "brand actions"
      "nav nav";
    gap: 10px 18px;
    align-items: center;
    min-height: auto;
    padding-top: 14px;
    padding-bottom: 12px;
  }

  .brand-mark {
    grid-area: brand;
    justify-self: start;
  }

  .landing-account-actions {
    grid-area: actions;
    justify-content: flex-end;
    justify-self: end;
  }

  .landing-nav {
    grid-area: nav;
    width: 100%;
    min-width: 0;
    justify-content: flex-start;
    gap: clamp(18px, 4vw, 34px);
    overflow-x: auto;
    scrollbar-width: none;
  }

  .landing-nav::-webkit-scrollbar {
    display: none;
  }

  .landing-nav a {
    white-space: nowrap;
  }
}

@media (min-width: 681px) {
  .hero-tagline {
    max-width: none;
    white-space: nowrap;
  }
}

@media (min-width: 681px) and (max-width: 1100px) {
  .hero-panel {
    grid-template-columns: minmax(0, 1.28fr) minmax(220px, 0.72fr);
    gap: clamp(22px, 3.4vw, 42px);
    min-height: auto;
    align-items: center;
    padding-top: clamp(34px, 5vw, 58px);
    padding-bottom: clamp(38px, 5.6vw, 66px);
  }

  .hero-copy-block {
    min-width: 0;
  }

  .hero-panel h1 {
    max-width: 12.5ch;
    font-size: clamp(3rem, 6.2vw, 4.7rem);
    line-height: 0.96;
  }

  .hero-tagline {
    margin-top: 14px;
    font-size: clamp(0.72rem, 1.25vw, 0.78rem);
  }

  .hero-lede {
    max-width: 36rem;
    margin-top: 18px;
  }

  .hero-preview {
    min-height: clamp(300px, 42vw, 430px);
    transform: none;
  }

  .hero-product-stack {
    width: min(100%, 390px);
    height: clamp(300px, 42vw, 430px);
    margin-left: auto;
    margin-right: 0;
  }

  .hero-product-card {
    filter: drop-shadow(0 18px 28px rgba(0, 0, 0, 0.3));
  }

  .hero-product-card--opportunity {
    width: min(70%, 260px);
    left: 0;
    top: 12px;
  }

  .hero-product-card--trend {
    width: min(58%, 230px);
    right: 0;
    top: clamp(84px, 13vw, 132px);
  }

  .hero-product-card--portfolio {
    width: min(54%, 225px);
    left: 25%;
    bottom: 4px;
  }
}

@media (min-width: 1101px) and (max-width: 1500px) and (max-height: 820px) {
  .hero-panel {
    min-height: calc(100svh - 74px);
    padding-top: clamp(24px, 4vh, 34px);
    padding-bottom: clamp(28px, 4.5vh, 42px);
    grid-template-columns: minmax(360px, 0.98fr) minmax(430px, 1.02fr);
    gap: clamp(34px, 4vw, 64px);
  }

  .hero-panel h1 {
    font-size: clamp(4.1rem, 6.1vw, 5.45rem);
    line-height: 0.94;
  }

  .hero-tagline {
    margin-top: 12px;
  }

  .hero-lede {
    margin-top: 16px;
    font-size: clamp(0.98rem, 1.25vw, 1.08rem);
    line-height: 1.46;
  }

  .hero-actions {
    margin-top: 22px;
  }

  .hero-preview {
    min-height: 500px;
    transform: translateX(clamp(-46px, -3vw, -24px));
  }

  .hero-product-stack {
    width: min(100%, 560px);
    height: 500px;
  }

  .hero-product-card--opportunity {
    width: min(58%, 322px);
    top: 10px;
  }

  .hero-product-card--trend {
    width: min(47%, 266px);
    top: 108px;
  }

  .hero-product-card--portfolio {
    width: min(43%, 260px);
    bottom: 4px;
  }
}

@media (max-width: 680px) {
  .landing-footer {
    gap: 10px 14px;
    padding: 18px max(18px, env(safe-area-inset-left)) 20px max(18px, env(safe-area-inset-right)) !important;
  }

  .landing-footer .footer-legal {
    gap: 9px 12px;
  }
}

/* Public sub-page polish: align Marketplace, Portfolio, Research and Learn with the landing page. */
body[data-public-page="marketplace"] .landing-shell,
body[data-public-page="portfolio"] .landing-shell,
body[data-public-page="research"] .landing-shell,
body[data-public-page="learn"] .landing-shell {
  background:
    radial-gradient(780px 460px at 82% 0%, rgba(255, 90, 31, 0.15), transparent 64%),
    linear-gradient(180deg, #151c22 0%, #10161b 48%, #12191e 100%);
}

.public-page-hero,
.public-page-section {
  padding-left: max(var(--section-pad-x, 34px), calc((100vw - var(--container, 1240px)) / 2)) !important;
  padding-right: max(var(--section-pad-x, 34px), calc((100vw - var(--container, 1240px)) / 2)) !important;
}

.public-page-hero {
  min-height: auto;
  grid-template-columns: minmax(0, 1.06fr) minmax(300px, 0.62fr);
  gap: clamp(28px, 5vw, 76px);
  padding-top: clamp(46px, 7vw, 92px);
  padding-bottom: clamp(42px, 6.2vw, 84px);
  background:
    linear-gradient(180deg, rgba(255, 90, 31, 0.035), rgba(255, 255, 255, 0)),
    #10161b;
}

.public-page-hero h1 {
  max-width: 760px;
  font-size: clamp(3rem, 6.6vw, 6.35rem);
  line-height: 0.94;
}

.public-page-hero p:not(.eyebrow) {
  max-width: 660px;
  margin-top: 20px;
  color: rgba(245, 247, 248, 0.76);
  font-size: clamp(1rem, 1.45vw, 1.22rem);
  line-height: 1.56;
}

.public-page-hero .hero-actions {
  margin-top: 28px;
}

.public-page-signal {
  position: relative;
  min-height: clamp(270px, 30vw, 390px);
  align-content: end;
  border-radius: 8px;
  border-color: rgba(255, 255, 255, 0.1);
  background:
    linear-gradient(145deg, rgba(255, 90, 31, 0.22), rgba(13, 19, 24, 0.88) 42%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px) 0 0 / 22px 22px,
    linear-gradient(0deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px) 0 0 / 22px 22px,
    #11191e;
  box-shadow: 0 24px 58px rgba(0, 0, 0, 0.26);
  overflow: hidden;
}

.public-page-signal::before {
  content: "";
  position: absolute;
  right: clamp(18px, 3vw, 34px);
  top: clamp(18px, 3vw, 34px);
  width: clamp(54px, 7vw, 88px);
  aspect-ratio: 1;
  background: url("/img/icon-propstac-white-orange.svg?v=20260616a") center / contain no-repeat;
  opacity: 0.9;
}

.public-page-signal span {
  border-radius: 6px;
  background: rgba(255, 90, 31, 0.14);
  color: var(--orange);
}

.public-page-signal strong {
  max-width: 9ch;
  font-size: clamp(2rem, 3.8vw, 3.6rem);
}

.public-page-signal small {
  max-width: 300px;
}

.public-page-section {
  padding-top: clamp(38px, 5.6vw, 76px);
  padding-bottom: clamp(40px, 6vw, 84px);
  background: #10161b;
}

.public-page-section + .public-page-section {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.public-page-section .section-heading,
.public-page-section .section-copy,
.public-page-section .benefit-grid,
.public-page-section .insight-grid,
.public-page-section .operating-flow {
  width: min(100%, var(--container, 1240px));
  max-width: var(--container, 1240px);
}

.public-page-section .section-copy {
  margin: 0 auto 24px;
}

.public-page-section .section-heading {
  margin-bottom: 22px;
}

.public-page-section .section-heading h2,
.public-page-section .section-copy h2 {
  font-size: clamp(1.7rem, 3.7vw, 3.6rem);
  line-height: 1.04;
}

.public-page-section .section-copy > p:not(.eyebrow) {
  max-width: 720px;
  color: rgba(245, 247, 248, 0.72);
}

.public-page-section .benefit-grid {
  gap: clamp(12px, 1.8vw, 18px);
}

.public-page-section .benefit-grid article {
  min-height: 176px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.16);
}

.public-page-section .benefit-grid p {
  color: rgba(245, 247, 248, 0.74);
}

.public-page-section .opportunity-grid,
.public-page-section .research-card-grid {
  width: min(100%, var(--container, 1240px));
  max-width: var(--container, 1240px);
  margin-left: auto;
  margin-right: auto;
  padding-left: 0;
  padding-right: 0;
  scroll-padding-left: 0;
  scroll-padding-right: 0;
}

.public-flow-section {
  background: #151b21;
}

.public-flow-section .operating-flow {
  margin-left: auto;
  margin-right: auto;
}

body[data-public-page="portfolio"] .photo-cta {
  min-height: clamp(420px, 46vw, 560px);
}

.mobile-bottom-toolbar {
  display: none;
}

.pwa-install-modal[hidden] {
  display: none;
}

.pwa-install-modal {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  place-items: end center;
  padding: 18px max(18px, env(safe-area-inset-right)) calc(18px + env(safe-area-inset-bottom)) max(18px, env(safe-area-inset-left));
}

.pwa-install-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(10px);
}

.pwa-install-panel {
  position: relative;
  width: min(420px, 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: #10161b;
  color: #ffffff;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.52);
  padding: 24px;
}

.pwa-install-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 40px;
  height: 40px;
  border: 0;
  background: transparent;
  color: #ffffff;
  cursor: pointer;
  font-size: 1.7rem;
  line-height: 1;
}

.pwa-install-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  margin-bottom: 16px;
  border-radius: 8px;
  background: #000000;
  color: var(--orange);
}

.pwa-install-panel h2 {
  margin: 0;
  color: #ffffff;
  font-size: 1.45rem;
  line-height: 1.18;
}

.pwa-install-lead {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.45;
}

.pwa-install-steps {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding-left: 22px;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.42;
}

.pwa-install-primary {
  width: 100%;
  min-height: 46px;
  margin-top: 20px;
  border: 0;
  border-radius: 8px;
  background: var(--orange);
  color: #ffffff;
  cursor: pointer;
  font: inherit;
  font-weight: 850;
}

@media (min-width: 981px) {
  .public-page-hero--portfolio {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.52fr);
  }
}

@media (max-width: 980px) {
  .public-page-hero {
    grid-template-columns: 1fr;
  }

  .public-page-signal {
    min-height: 220px;
  }

  .public-page-section .benefit-grid,
  .public-page-section .insight-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .mobile-bottom-toolbar {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 60;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    min-height: calc(66px + env(safe-area-inset-bottom));
    padding: 6px max(8px, env(safe-area-inset-right)) calc(6px + env(safe-area-inset-bottom)) max(8px, env(safe-area-inset-left));
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    background: #000000;
    box-shadow: 0 -12px 34px rgba(0, 0, 0, 0.42);
  }

  body.pwa-installed .mobile-bottom-toolbar {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .mobile-bottom-toolbar a,
  .mobile-bottom-toolbar button {
    appearance: none;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 0;
    min-height: 54px;
    border: 0;
    border-radius: 8px;
    background: transparent;
    color: #ffffff;
    cursor: pointer;
    font: inherit;
    text-decoration: none;
  }

  .mobile-bottom-toolbar i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    color: #ffffff;
    font-size: 18px;
    line-height: 1;
  }

  .mobile-bottom-toolbar span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    white-space: nowrap;
  }

  .mobile-bottom-toolbar a:focus-visible,
  .mobile-bottom-toolbar button:focus-visible,
  .mobile-bottom-toolbar a.is-active,
  .mobile-bottom-toolbar button.is-active {
    outline: none;
    color: var(--orange);
    background: rgba(255, 255, 255, 0.08);
  }

  .mobile-bottom-toolbar a:focus-visible i,
  .mobile-bottom-toolbar button:focus-visible i,
  .mobile-bottom-toolbar a.is-active i,
  .mobile-bottom-toolbar button.is-active i {
    color: var(--orange);
  }

  .mobile-bottom-toolbar button[disabled],
  .mobile-bottom-toolbar button[aria-disabled="true"] {
    opacity: 0.7;
  }

  .public-page-hero,
  .public-page-section {
    padding-left: max(18px, env(safe-area-inset-left)) !important;
    padding-right: max(18px, env(safe-area-inset-right)) !important;
  }

  .public-page-hero {
    padding-top: 26px;
    padding-bottom: 30px;
    gap: 22px;
  }

  .public-page-hero h1 {
    font-size: clamp(2.3rem, 11vw, 3.25rem);
    line-height: 1;
  }

  .public-page-hero p:not(.eyebrow) {
    margin-top: 14px;
    font-size: 0.95rem;
    line-height: 1.44;
  }

  .public-page-hero .hero-actions {
    margin-top: 20px;
  }

  .public-page-signal {
    min-height: 176px;
    padding: 18px;
  }

  .public-page-signal::before {
    width: 52px;
  }

  .public-page-signal strong {
    max-width: 12ch;
    font-size: 1.75rem;
  }

  .public-page-signal small {
    font-size: 0.86rem;
  }

  .public-page-section {
    padding-top: 34px;
    padding-bottom: 38px;
  }

  .public-page-section .section-heading {
    align-items: flex-start;
    gap: 12px;
  }

  .public-page-section .section-heading h2,
  .public-page-section .section-copy h2 {
    font-size: clamp(1.55rem, 7vw, 2.15rem);
  }

  .public-page-section .benefit-grid,
  .public-page-section .insight-grid {
    grid-template-columns: 1fr;
  }

  .public-page-section .benefit-grid article {
    min-height: 0;
    padding: 18px;
  }

  .public-page-section .opportunity-grid,
  .public-page-section .research-card-grid {
    width: auto;
    margin-left: calc(0px - max(18px, env(safe-area-inset-left)));
    margin-right: calc(0px - max(18px, env(safe-area-inset-right)));
    padding-left: max(18px, env(safe-area-inset-left));
    padding-right: max(18px, env(safe-area-inset-right));
    scroll-padding-left: max(18px, env(safe-area-inset-left));
    scroll-padding-right: max(18px, env(safe-area-inset-right));
  }

  body[data-public-page="portfolio"] .photo-cta {
    min-height: 360px;
  }
}

@media (max-width: 680px) {
  .photo-cta::before {
    background-position: center 48%;
  }

  .landing-nav {
    justify-content: center;
    text-align: center;
  }

  .landing-nav a {
    text-align: center;
  }
}

@media (max-width: 1100px) {
  .hero-panel h1 .hero-title-accent {
    color: var(--orange) !important;
    display: block;
    font-size: 1.16em;
    line-height: 0.9;
  }
}

@media (max-width: 680px) {
  .hero-panel {
    grid-template-columns: minmax(0, 1fr) minmax(112px, 0.64fr);
    grid-template-rows: auto auto;
    column-gap: 10px;
    row-gap: 14px;
    align-items: start;
  }

  .hero-copy-block {
    display: contents;
  }

  .hero-title-group,
  .hero-copy-block .hero-lede {
    grid-column: 1;
  }

  .hero-title-group {
    min-width: 0;
    transform: translateY(16px);
  }

  .hero-panel h1 {
    max-width: 8.4ch;
    font-size: clamp(1.95rem, 9.4vw, 2.7rem);
    line-height: 0.96;
  }

  .hero-panel h1::first-line {
    color: var(--orange) !important;
  }

  .hero-panel h1 .hero-title-accent {
    color: var(--orange) !important;
    font-size: 1.18em;
    line-height: 0.9;
  }

  .hero-tagline {
    max-width: 24ch;
    margin-top: 8px;
  }

  .hero-preview {
    grid-column: 2;
    grid-row: 1 / span 2;
    justify-self: stretch;
    align-self: start;
    min-height: 188px;
    margin-top: 2px;
    transform: translateX(-10px);
  }

  .hero-product-stack {
    width: 100%;
    height: 188px;
    margin-inline: 0;
  }

  .hero-product-card--opportunity {
    left: -14%;
    width: 108%;
  }

  .hero-product-card--trend {
    right: -12%;
    width: 88%;
    top: 64px;
  }

  .hero-product-card--portfolio {
    left: -4%;
    width: 74%;
  }
}
