:root {
  --navy: #091428;
  --ink: #121722;
  --muted: #5c6474;
  --line: #eadde4;
  --white: #fff;
  --soft: #fff7fb;
  --pink: #ed1976;
  --rose: #ff66a9;
  --gold: #c99022;
  --teal: #13b8b4;
  --blue: #1d9bf0;
  --lime: #73b72b;
  --shadow: 0 24px 70px rgba(9, 20, 40, 0.14);
  /* Legacy token retained for compatibility; Erin Rose Real Estate uses sans-only typography. */
  --serif: var(--market-sans, "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif);
  --script: "Brush Script MT", "Segoe Script", cursive;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: #fff;
  font-family: Arial, Helvetica, sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  min-height: 76px;
  padding: 12px clamp(20px, 4vw, 64px);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(234, 221, 228, 0.84);
  backdrop-filter: blur(18px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 190px;
}

.rose-mark {
  display: grid;
  place-items: center;
  width: 46px;
  aspect-ratio: 1;
  color: white;
  background: var(--pink);
  border: 2px solid var(--gold);
  border-radius: 50%;
  font-weight: 900;
  letter-spacing: 0;
}

.brand strong {
  display: block;
  color: var(--navy);
  font-size: 24px;
  font-weight: 900;
  line-height: 0.95;
  text-transform: uppercase;
}

.brand em {
  display: block;
  color: var(--pink);
  font-family: var(--script);
  font-size: 20px;
  line-height: 1;
}

nav {
  display: flex;
  justify-content: center;
  gap: clamp(14px, 2.4vw, 34px);
  color: var(--navy);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

nav a {
  padding: 12px 0;
  border-bottom: 2px solid transparent;
}

nav a:hover {
  color: var(--pink);
  border-color: var(--pink);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.login-link,
.book-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.login-link {
  color: var(--navy);
}

.book-link {
  color: white;
  background: var(--pink);
  box-shadow: 0 12px 30px rgba(237, 25, 118, 0.24);
}

.hero {
  position: relative;
  min-height: min(760px, calc(100vh - 76px));
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: clamp(42px, 6vw, 90px) clamp(20px, 6vw, 92px);
  border-bottom: 4px solid var(--pink);
}

.hero-image {
  object-fit: cover;
  object-position: 69% center;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.93) 38%, rgba(255, 255, 255, 0.46) 66%, rgba(255, 255, 255, 0.18) 100%),
    linear-gradient(0deg, rgba(255, 247, 251, 0.82), rgba(255, 255, 255, 0.1));
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(760px, 100%);
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--pink);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  display: grid;
  gap: 2px;
  margin-bottom: 6px;
  color: var(--navy);
  font-family: var(--serif);
  font-size: clamp(48px, 7vw, 92px);
  line-height: 0.92;
  letter-spacing: 0;
}

h2 {
  color: var(--navy);
  font-family: var(--serif);
  font-size: clamp(34px, 4.5vw, 62px);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  color: var(--navy);
  font-size: 20px;
  line-height: 1.15;
}

.script-line {
  margin: 0 0 24px;
  color: var(--pink);
  font-family: var(--script);
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1;
}

.script-line.small {
  margin-bottom: 18px;
  font-size: clamp(30px, 4vw, 48px);
}

.hero-copy,
.section-heading p,
.about-copy p,
.erinos-feature p,
.connect-section p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.62;
}

.hero-copy {
  max-width: 620px;
}

.button-row,
.connect-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.button.primary {
  color: white;
  background: var(--pink);
  box-shadow: 0 16px 36px rgba(237, 25, 118, 0.26);
}

.button.secondary {
  color: var(--pink);
  border-color: var(--pink);
  background: white;
}

.button.dark {
  color: white;
  background: var(--navy);
}

.proof-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.proof-strip li,
.pill-grid span,
.proof-grid span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  font-weight: 800;
}

.section {
  padding: clamp(58px, 8vw, 112px) clamp(20px, 5vw, 80px);
}

.section-heading {
  max-width: 920px;
  margin: 0 auto 34px;
  text-align: center;
}

.intent-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.intent-card,
.ecosystem-card,
.list-panel,
.about-copy,
.resource-grid a {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: 0 18px 60px rgba(9, 20, 40, 0.08);
}

.intent-card {
  min-height: 330px;
  display: flex;
  flex-direction: column;
  padding: 22px;
  border-top: 5px solid var(--pink);
}

.intent-card p,
.ecosystem-card p,
.ecosystem-card small {
  color: var(--muted);
  line-height: 1.5;
}

.card-links {
  display: grid;
  gap: 8px;
  margin-top: auto;
  padding-top: 18px;
}

.card-links a,
.ecosystem-card a,
.resource-grid a {
  color: var(--navy);
  font-weight: 900;
}

.card-links a::after,
.ecosystem-card a::after,
.resource-grid a::after {
  content: " ->";
  color: var(--pink);
}

.accent-pink { border-top-color: var(--pink); }
.accent-gold { border-top-color: var(--gold); }
.accent-teal { border-top-color: var(--teal); }
.accent-blue { border-top-color: var(--blue); }
.accent-lime { border-top-color: var(--lime); }
.accent-navy { border-top-color: var(--navy); }

.erinos-feature {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1fr);
  gap: 32px;
  align-items: center;
  margin: 0 clamp(20px, 5vw, 80px);
  padding: clamp(32px, 5vw, 64px);
  border-radius: 8px;
  color: white;
  background: var(--navy);
  overflow: hidden;
}

.erinos-feature h2,
.erinos-feature .eyebrow,
.erinos-feature .script-line,
.erinos-feature p {
  color: white;
}

.erinos-feature img {
  width: 100%;
  height: min(440px, 52vw);
  object-fit: cover;
  object-position: center;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.ecosystem-section {
  background: var(--soft);
}

.ecosystem-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.ecosystem-card {
  min-height: 292px;
  display: flex;
  flex-direction: column;
  padding: 22px;
  border-top: 5px solid var(--pink);
}

.card-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 12px;
}

.card-topline span {
  color: var(--pink);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.card-topline i {
  width: 24px;
  height: 2px;
  background: currentColor;
}

.ecosystem-card small {
  display: block;
  margin-top: auto;
  padding-top: 18px;
  font-weight: 800;
}

.ecosystem-card a {
  margin-top: 14px;
}

.about-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1fr);
  gap: 28px;
  align-items: stretch;
  padding: clamp(58px, 8vw, 112px) clamp(20px, 5vw, 80px);
  background: var(--navy);
}

.about-copy {
  padding: clamp(28px, 4vw, 54px);
}

.about-copy h2,
.about-copy p {
  color: white;
}

.about-copy p {
  color: rgba(255, 255, 255, 0.78);
}

.about-portrait {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border-radius: 8px;
}

.about-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 47% center;
}

.dual-panels {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: clamp(58px, 8vw, 112px) clamp(20px, 5vw, 80px);
}

.list-panel {
  padding: clamp(26px, 4vw, 44px);
}

.pill-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.resources-section {
  background: var(--soft);
}

.resource-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.resource-grid a {
  min-height: 96px;
  display: flex;
  align-items: center;
  padding: 20px;
}

.proof-section {
  padding-top: clamp(34px, 5vw, 72px);
}

.proof-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.connect-section {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) auto;
  gap: 24px;
  align-items: center;
  margin: 0 clamp(20px, 5vw, 80px) clamp(58px, 8vw, 112px);
  padding: clamp(32px, 5vw, 60px);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.connect-section h2 {
  margin-bottom: 0;
}

.footer {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  padding: 28px clamp(20px, 5vw, 80px);
  color: white;
  background: var(--navy);
}

.footer .brand strong,
.footer .brand em {
  color: white;
}

.footer div {
  display: grid;
  gap: 4px;
}

.footer span {
  color: rgba(255, 255, 255, 0.72);
}

.footer-links {
  display: flex !important;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.market-header .brand {
  min-width: 250px;
}

.market-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
  gap: clamp(22px, 4vw, 52px);
  align-items: stretch;
  padding: clamp(48px, 7vw, 92px) clamp(20px, 5vw, 80px);
  background:
    linear-gradient(135deg, rgba(255, 247, 251, 0.96), rgba(255, 255, 255, 0.82)),
    url("/images/market-intelligence-request-bg.svg") center / cover;
  border-bottom: 1px solid var(--line);
}

.hero-copy-panel {
  max-width: 880px;
  padding: clamp(22px, 4vw, 46px) 0;
}

.hero-copy-panel h1 {
  display: block;
  max-width: 800px;
  margin-bottom: 18px;
  font-size: clamp(46px, 6vw, 82px);
}

.hero-copy-panel p,
.market-brief p,
.market-section .section-heading p,
.option-card p,
.library-panel p,
.property-card p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.58;
}

.market-brief {
  display: flex;
  min-height: 420px;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow);
}

.market-brief span,
.property-card span,
.library-panel a span {
  color: var(--pink);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.market-brief strong {
  display: block;
  margin: 16px 0 10px;
  color: var(--navy);
  font-family: var(--serif);
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1;
}

.market-section {
  padding: clamp(54px, 7vw, 96px) clamp(20px, 5vw, 80px);
}

.market-section:nth-of-type(odd) {
  background: #fff;
}

.market-section:nth-of-type(even) {
  background: #fbfcfd;
}

.section-heading.left {
  max-width: 980px;
  margin: 0 0 28px;
  text-align: left;
}

.section-heading.left h2 {
  max-width: 880px;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 18px;
}

.metric-card,
.trend-panel,
.signal-card,
.option-card,
.library-panel,
.property-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: 0 16px 48px rgba(9, 20, 40, 0.07);
}

.metric-card {
  min-height: 156px;
  padding: 24px;
  border-top: 5px solid var(--blue);
}

.metric-card span {
  color: var(--navy);
  font-size: 15px;
  font-weight: 800;
}

.metric-card strong {
  display: block;
  margin: 10px 0 8px;
  color: var(--blue);
  font-size: clamp(34px, 4vw, 48px);
  line-height: 1;
}

.metric-card p {
  margin: 0;
  color: #9aa4b2;
  font-size: 14px;
}

.metric-card small {
  display: block;
  margin-top: 16px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.35;
}

.metric-card.tone-teal {
  border-top-color: var(--teal);
}

.metric-card.tone-teal strong {
  color: #008f8d;
}

.metric-card.tone-pink {
  border-top-color: var(--pink);
}

.metric-card.tone-pink strong {
  color: #a9247e;
}

.metric-card.tone-navy {
  border-top-color: var(--navy);
}

.metric-card.tone-navy strong {
  color: #00446c;
}

.trend-panel {
  padding: clamp(22px, 4vw, 34px);
}

.trend-header {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: flex-start;
  margin-bottom: 22px;
}

.trend-header h2 {
  margin-bottom: 0;
  font-size: clamp(30px, 4vw, 48px);
}

.trend-header span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.bar-chart {
  display: grid;
  grid-template-columns: repeat(13, minmax(22px, 1fr));
  gap: clamp(6px, 1vw, 12px);
  align-items: end;
  height: 320px;
  padding-top: 18px;
  border-top: 1px solid #edf0f4;
}

.bar-column {
  display: grid;
  grid-template-rows: 1fr auto;
  gap: 8px;
  height: 100%;
  min-width: 0;
}

.bar-column i {
  align-self: end;
  display: block;
  width: 100%;
  border-radius: 6px 6px 0 0;
  background: linear-gradient(180deg, var(--pink), #be1b7f);
}

.bar-column span {
  writing-mode: vertical-rl;
  justify-self: center;
  color: var(--navy);
  font-size: 12px;
  font-weight: 900;
}

.signal-grid,
.options-grid,
.library-grid,
.property-grid {
  display: grid;
  gap: 14px;
}

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

.signal-card {
  padding: 24px;
  border-left: 5px solid var(--gold);
}

.signal-card span {
  color: var(--navy);
  font-size: 22px;
  font-weight: 900;
}

.signal-card strong {
  display: block;
  color: var(--navy);
  line-height: 1.45;
}

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

.option-card,
.library-panel,
.property-card {
  padding: 24px;
}

.option-card {
  border-top: 5px solid var(--teal);
}

.library-grid {
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
}

.library-panel {
  display: grid;
  align-content: start;
  gap: 14px;
}

.library-panel a {
  display: grid;
  gap: 5px;
  padding: 16px 0;
  border-top: 1px solid #edf0f4;
}

.library-panel a strong,
.property-card > strong {
  color: var(--navy);
  font-size: 22px;
}

.library-panel a p,
.property-card p {
  margin-bottom: 0;
}

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

.property-card {
  display: grid;
  gap: 14px;
  border-top: 5px solid var(--pink);
}

.property-card h3 {
  margin: 8px 0 4px;
  font-size: clamp(26px, 3vw, 38px);
}

.property-card a {
  color: var(--pink);
  font-weight: 900;
}

.property-card a::after {
  content: " ->";
}

.source-note {
  max-width: 720px;
  margin-top: 24px;
  color: #7b8492 !important;
  font-size: 14px !important;
  line-height: 1.5 !important;
}

.question-panel,
.list-home-section {
  margin-top: 18px;
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: 0 16px 48px rgba(9, 20, 40, 0.06);
}

.question-panel h3 {
  margin-bottom: 16px;
  font-size: clamp(24px, 3vw, 34px);
}

.list-home-section {
  background:
    linear-gradient(135deg, rgba(255, 247, 251, 0.96), rgba(255, 255, 255, 1));
}

.list-home-section .button-row {
  margin-bottom: 0;
}

.market-connect {
  margin-top: clamp(24px, 4vw, 52px);
}

.market-connect h2 {
  font-size: clamp(30px, 4vw, 50px);
}

@media (max-width: 1180px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .header-actions {
    grid-column: 2;
    grid-row: 1;
  }

  nav {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 4px;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
  }

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

  nav a {
    flex: 0 0 auto;
    min-width: max-content;
    white-space: nowrap;
    scroll-snap-align: start;
  }

  .intent-grid,
  .ecosystem-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

@media (max-width: 900px) {
  .hero {
    min-height: auto;
    align-items: flex-start;
    padding-top: 58px;
    padding-bottom: 58px;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.92) 58%, rgba(255, 255, 255, 0.58) 100%),
      linear-gradient(0deg, rgba(255, 247, 251, 0.9), rgba(255, 255, 255, 0.3));
  }

  .hero-image {
    object-position: 68% top;
    opacity: 0.42;
  }

  .intent-grid,
  .ecosystem-grid,
  .resource-grid,
  .dual-panels,
  .about-section,
  .erinos-feature,
  .connect-section,
  .market-hero,
  .signal-grid,
  .library-grid,
  .property-grid,
  .footer {
    grid-template-columns: 1fr;
  }

  .market-brief {
    min-height: 280px;
  }

  .erinos-feature img {
    height: 360px;
  }

  .about-portrait {
    min-height: 360px;
  }

  .connect-actions {
    margin-bottom: 0;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .site-header {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px 12px;
    min-height: auto;
    padding: 10px 16px 8px;
  }

  .brand {
    min-width: 0;
  }

  .brand strong {
    font-size: 18px;
  }

  .brand em {
    font-size: 16px;
  }

  .rose-mark {
    width: 38px;
  }

  .header-actions {
    justify-content: flex-end;
  }

  .login-link {
    display: none;
  }

  .book-link {
    min-height: 36px;
    padding: 0 14px;
    font-size: 11px;
  }

  nav {
    width: 100%;
    gap: 20px;
    padding: 8px 0 0;
    font-size: 11px;
    line-height: 1;
  }

  nav a {
    min-width: max-content;
    padding: 8px 0 10px;
    white-space: nowrap;
  }

  .hero {
    padding: 34px 16px 42px;
    border-bottom-width: 3px;
  }

  .hero-image {
    opacity: 0.18;
    object-position: 70% top;
  }

  .hero-shade {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 250, 253, 0.96) 62%, rgba(255, 247, 251, 0.98) 100%);
  }

  .hero-content {
    width: 100%;
  }

  .eyebrow {
    margin-bottom: 8px;
    font-size: 11px;
    line-height: 1.35;
    letter-spacing: 0.13em;
  }

  h1 {
    font-size: clamp(40px, 12vw, 48px);
    line-height: 0.96;
  }

  h2 {
    font-size: 34px;
  }

  .script-line {
    margin-bottom: 18px;
    font-size: 34px;
  }

  .hero-copy,
  .section-heading p,
  .about-copy p,
  .erinos-feature p,
  .connect-section p {
    font-size: 16px;
  }

  .hero-copy {
    line-height: 1.55;
  }

  .button-row,
  .connect-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin: 24px 0;
  }

  .button {
    width: 100%;
    min-height: 52px;
  }

  .proof-strip {
    display: none;
  }

  .pill-grid span,
  .proof-grid span {
    justify-content: center;
    min-height: 38px;
    padding: 0 10px;
    text-align: center;
    font-size: 12px;
  }

  .section,
  .about-section,
  .dual-panels {
    padding: 48px 16px;
  }

  .erinos-feature,
  .connect-section {
    margin-inline: 16px;
    padding: 24px;
  }

  .erinos-feature img {
    height: 240px;
  }

  .about-portrait {
    min-height: 300px;
  }

  .intent-card,
  .ecosystem-card,
  .list-panel,
  .about-copy {
    padding: 20px;
  }

  .resource-grid {
    gap: 10px;
  }

  .resource-grid a {
    min-height: 70px;
  }

  .market-header .brand {
    min-width: 0;
  }

  .market-hero,
  .market-section {
    padding-inline: 16px;
  }

  .metric-grid,
  .options-grid {
    grid-template-columns: 1fr;
  }

  .bar-chart {
    height: 260px;
    overflow-x: auto;
  }

  .bar-column {
    min-width: 28px;
  }
}

/* Real estate market intelligence visual system */
:root {
  --market-navy: #071521;
  --market-blue: #17324a;
  --market-ink: #1e1e1e;
  --market-slate: #4f5868;
  --market-muted: #737985;
  --market-line: #eadde4;
  --market-bg: #fbf8f9;
  --market-card: #ffffff;
  --market-teal: #496b70;
  --market-gold: #b85b7d;
  --market-rose: #d63373;
  --market-rose-deep: #b91d5d;
  --market-rose-soft: #fff4f8;
  --market-sans: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --market-shadow: 0 18px 42px rgba(7, 21, 33, 0.07);
}

body {
  color: var(--market-ink);
  background: var(--market-bg);
  font-family: var(--market-sans);
}

.market-header {
  min-height: 82px;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--market-line);
}

.market-header .brand {
  min-width: 280px;
}

.market-header .rose-mark {
  width: 44px;
  background:
    linear-gradient(135deg, var(--market-navy) 0 72%, var(--market-rose) 72% 100%);
  border: 1px solid var(--market-gold);
  border-radius: 8px;
}

.market-header .brand strong,
.footer .brand strong {
  color: var(--market-navy);
  font-size: 20px;
  letter-spacing: 0.04em;
}

.market-header .brand em,
.footer .brand em {
  color: var(--market-slate);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.market-header nav {
  color: var(--market-navy);
  font-size: 12px;
  letter-spacing: 0.06em;
}

.market-header nav a:hover {
  color: var(--market-teal);
  border-color: var(--market-teal);
}

.market-header .login-link {
  color: var(--market-navy);
}

.market-header .book-link,
.market-hero .button.primary,
.list-home-section .button.primary {
  color: white;
  background: linear-gradient(135deg, var(--market-navy), #0c2134);
  box-shadow: none;
}

.market-header .book-link {
  border: 1px solid rgba(237, 25, 118, 0.18);
  box-shadow: 0 14px 34px rgba(7, 21, 33, 0.10);
}

.market-header .book-link:hover,
.market-hero .button.primary:hover,
.pricing-lead-section .button.primary:hover,
.pricing-read-hero .button.primary:hover {
  background: linear-gradient(135deg, var(--market-navy), var(--market-blue));
}

.market-hero .button.secondary,
.list-home-section .button.secondary {
  color: var(--market-navy);
  border-color: var(--market-navy);
  background: transparent;
}

.market-hero {
  grid-template-columns: minmax(0, 1.15fr) minmax(360px, 0.85fr);
  min-height: 640px;
  align-items: center;
  background:
    linear-gradient(135deg, rgba(7, 21, 33, 0.94), rgba(18, 48, 71, 0.90)),
    linear-gradient(45deg, rgba(15, 118, 110, 0.18), transparent 55%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.market-hero .eyebrow,
.market-section .eyebrow,
.market-brief span,
.property-card span,
.library-panel a span {
  color: var(--market-gold);
  letter-spacing: 0.16em;
}

.hero-copy-panel h1 {
  max-width: 900px;
  color: white;
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(46px, 5.4vw, 78px);
  font-weight: 900;
  line-height: 0.98;
}

.hero-copy-panel p {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.78);
}

.source-note {
  color: rgba(255, 255, 255, 0.62) !important;
}

.market-brief {
  min-height: 420px;
  justify-content: space-between;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.22);
}

.market-brief strong {
  color: var(--market-navy);
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(32px, 3.6vw, 52px);
  font-weight: 900;
  line-height: 1.03;
}

.market-brief p,
.market-section .section-heading p,
.option-card p,
.library-panel p,
.property-card p {
  color: var(--market-muted);
}

.market-section {
  background: var(--market-bg) !important;
}

.market-section h2,
.trend-header h2,
.property-card h3,
.question-panel h3 {
  color: var(--market-navy);
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 900;
}

.metric-card,
.trend-panel,
.signal-card,
.option-card,
.library-panel,
.property-card,
.question-panel,
.list-home-section {
  border-color: var(--market-line);
  background: var(--market-card);
  box-shadow: var(--market-shadow);
}

.metric-card {
  border-top-color: var(--market-blue);
}

.metric-card strong,
.metric-card.tone-navy strong,
.metric-card.tone-pink strong,
.metric-card.tone-teal strong {
  color: var(--market-navy);
}

.metric-card.tone-teal {
  border-top-color: var(--market-teal);
}

.metric-card.tone-pink {
  border-top-color: var(--market-gold);
}

.source-layer-section {
  border-top: 1px solid var(--market-line);
}

.source-summary-bar {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 18px;
}

.source-summary-item,
.source-stat-card,
.source-queue-panel,
.source-cadence-panel {
  border: 1px solid var(--market-line);
  border-radius: 8px;
  background: var(--market-card);
  box-shadow: var(--market-shadow);
}

.source-summary-item {
  min-height: 132px;
  padding: 18px;
  border-top: 5px solid var(--market-blue);
}

.source-summary-item strong {
  display: block;
  color: var(--market-navy);
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 900;
  line-height: 1;
}

.source-summary-item span,
.source-stat-topline span,
.source-stat-topline em,
.source-cadence-grid span {
  color: var(--market-navy);
  font-size: 12px;
  font-style: normal;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.source-summary-item p,
.source-stat-card p,
.source-queue-grid span,
.source-cadence-grid p {
  color: var(--market-muted);
}

.source-summary-item p {
  margin: 10px 0 0;
  font-size: 13px;
  line-height: 1.45;
}

.source-summary-item.status-verified-public,
.source-stat-card.status-verified-public {
  border-top-color: var(--market-teal);
}

.source-summary-item.status-manual-export,
.source-stat-card.status-manual-export {
  border-top-color: var(--market-gold);
}

.source-summary-item.status-source-pending,
.source-stat-card.status-source-pending {
  border-top-color: var(--market-pink);
}

.source-summary-date {
  border-top-color: var(--market-blue);
}

.source-stat-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.source-stat-card {
  min-height: 360px;
  padding: 22px;
  border-top: 5px solid var(--market-blue);
}

.source-stat-topline {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  min-height: 34px;
}

.source-stat-topline em {
  flex: 0 0 auto;
  max-width: 150px;
  padding: 6px 8px;
  border: 1px solid var(--market-line);
  border-radius: 999px;
  background: #ffffff;
  text-align: center;
}

.source-stat-card h3 {
  margin: 22px 0 8px;
  color: var(--market-navy);
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 900;
  line-height: 1.05;
}

.source-stat-card strong {
  display: block;
  color: var(--market-navy);
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(30px, 3vw, 42px);
  font-weight: 900;
  line-height: 1;
}

.source-stat-change {
  margin: 8px 0 0;
  font-weight: 800;
}

.source-citation {
  margin: 10px 0 0;
  color: #6f7986;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.35;
}

.source-citation a,
.source-citation span {
  color: var(--market-pink);
  font-weight: 900;
  text-decoration: none;
}

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

.source-stat-card dl div {
  min-width: 0;
  padding: 10px;
  border: 1px solid var(--market-line);
  border-radius: 8px;
  background: #fbfcfd;
}

.source-stat-card dt,
.source-stat-card dd {
  margin: 0;
}

.source-stat-card dt {
  color: #8b95a3;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.source-stat-card dd {
  margin-top: 4px;
  color: var(--market-navy);
  font-size: 13px;
  font-weight: 900;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.source-stat-card a,
.source-stat-source {
  display: inline-flex;
  margin-top: 8px;
  color: var(--market-pink);
  font-size: 13px;
  font-weight: 900;
  line-height: 1.35;
  text-decoration: none;
}

.learn-more {
  margin-top: 16px;
}

.learn-more summary {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 12px;
  border: 1px solid var(--market-line);
  border-radius: 999px;
  color: var(--market-navy);
  background: #ffffff;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  list-style: none;
  text-transform: uppercase;
  cursor: pointer;
}

.learn-more summary::-webkit-details-marker {
  display: none;
}

.learn-more summary::before {
  content: "›";
  display: inline-block;
  margin-right: 8px;
  color: var(--market-pink);
  font-size: 18px;
  line-height: 1;
  transform: rotate(0deg);
  transition: transform 160ms ease;
}

.learn-more[open] summary::before {
  transform: rotate(90deg);
}

.learn-more-body {
  margin-top: 12px;
}

.learn-more-body p:first-child {
  margin-top: 0;
}

.source-queue-panel,
.source-cadence-panel {
  margin-top: 16px;
  padding: clamp(20px, 4vw, 30px);
}

.source-queue-panel {
  display: grid;
  grid-template-columns: minmax(220px, 0.75fr) minmax(0, 1.25fr);
  gap: 18px;
  align-items: start;
}

.source-queue-panel h3 {
  margin: 6px 0 0;
  color: var(--market-navy);
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(24px, 2.4vw, 34px);
  font-weight: 900;
  line-height: 1.05;
}

.source-queue-grid,
.source-cadence-grid {
  display: grid;
  gap: 10px;
}

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

.source-cadence-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.source-queue-grid article,
.source-cadence-grid article {
  min-width: 0;
  padding: 14px;
  border: 1px solid var(--market-line);
  border-radius: 8px;
  background: #fbfcfd;
}

.source-queue-grid strong,
.source-cadence-grid strong {
  display: block;
  color: var(--market-navy);
  font-weight: 900;
  line-height: 1.2;
}

.source-queue-grid span,
.source-cadence-grid p {
  display: block;
  margin-top: 6px;
  font-size: 12px;
  line-height: 1.4;
}

.inherited-market-context {
  background: #fbfcfd;
}

.property-inheritance-path {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 18px;
}

.property-inheritance-path span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 12px;
  border: 1px solid var(--market-line);
  border-radius: 999px;
  color: var(--market-navy);
  background: #ffffff;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.property-inheritance-path span::after {
  content: "/";
  margin-left: 10px;
  color: #a8b0bb;
}

.property-inheritance-path span:last-child::after {
  content: "";
  margin-left: 0;
}

.inherited-source-grid {
  margin-top: 0;
}

.bar-column i {
  background: linear-gradient(180deg, var(--market-teal), var(--market-blue));
}

.signal-card {
  border-left-color: var(--market-teal);
}

.takeaway-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  max-width: 1320px;
  margin: -44px auto 0;
  padding: 0 32px;
  position: relative;
  z-index: 2;
}

.takeaway-band article {
  min-height: 190px;
  padding: 34px;
  border: 1px solid var(--market-line);
  background: white;
  box-shadow: var(--market-shadow);
}

.takeaway-band article:first-child {
  border-radius: 8px 0 0 8px;
}

.takeaway-band article:last-child {
  border-radius: 0 8px 8px 0;
}

.takeaway-band span {
  color: var(--market-gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.takeaway-band strong {
  display: block;
  margin-top: 12px;
  color: var(--market-navy);
  font-size: 34px;
  font-weight: 900;
  line-height: 1;
}

.takeaway-band p {
  margin-top: 14px;
  color: var(--market-muted);
  font-size: 16px;
  line-height: 1.55;
}

.plain-english-section {
  border-top: 1px solid var(--market-line);
}

.translation-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.translation-card {
  min-height: 250px;
  padding: clamp(22px, 3vw, 30px);
  border: 1px solid var(--market-line);
  border-radius: 8px;
  background: white;
  box-shadow: var(--market-shadow);
}

.translation-card:nth-child(2) {
  background: linear-gradient(180deg, #ffffff, #f7fbfb);
}

.translation-card span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border: 1px solid rgba(237, 25, 118, 0.22);
  border-radius: 999px;
  color: var(--market-rose);
  background: var(--market-rose-soft);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.translation-card h3 {
  margin: 18px 0 12px;
  color: var(--market-navy);
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 900;
  line-height: 1.12;
}

.translation-card p {
  margin-bottom: 0;
  color: var(--market-muted);
  font-size: 16px;
  line-height: 1.55;
}

.report-path-section {
  background: #fbfcfd;
}

.report-path-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.report-path-card {
  display: grid;
  gap: 22px;
  align-content: space-between;
  min-height: 390px;
  padding: clamp(22px, 3vw, 30px);
  border: 1px solid var(--market-line);
  border-radius: 8px;
  background: white;
  box-shadow: var(--market-shadow);
}

.report-path-card:nth-child(2) {
  border-top: 5px solid var(--market-teal);
}

.report-path-card:nth-child(1) {
  border-top: 5px solid var(--market-rose);
}

.report-path-card:nth-child(3) {
  border-top: 5px solid var(--market-gold);
}

.report-path-card span {
  display: block;
  color: var(--market-navy);
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 950;
  line-height: 1.08;
}

.report-path-card p {
  margin: 14px 0 0;
  color: var(--market-muted);
  font-size: 16px;
  line-height: 1.55;
}

.report-path-card ol {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.report-path-card li {
  display: flex;
  align-items: center;
  min-height: 38px;
  padding: 0 12px;
  border: 1px solid var(--market-line);
  border-radius: 8px;
  color: var(--market-navy);
  background: #f9fafb;
  font-size: 13px;
  font-weight: 900;
}

.report-path-card li::before {
  content: "";
  width: 8px;
  height: 8px;
  margin-right: 10px;
  border-radius: 50%;
  background: var(--market-rose);
}

.report-path-card a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 18px;
  border-radius: 8px;
  color: white;
  background: var(--market-navy);
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
}

.option-card {
  border-top-color: var(--market-blue);
}

.pill-grid span,
.proof-grid span {
  color: var(--market-navy);
  border-color: var(--market-line);
  background: #f9fafb;
}

.property-card {
  border-top-color: var(--market-gold);
}

.property-card a {
  color: var(--market-teal);
}

.list-home-section {
  background: white;
}

.pricing-lead-section {
  padding-top: clamp(38px, 5vw, 72px);
  padding-bottom: clamp(38px, 5vw, 72px);
}

.pricing-lead-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: clamp(22px, 4vw, 54px);
  align-items: center;
  max-width: 1240px;
  margin: 0 auto;
  padding: clamp(28px, 5vw, 56px);
  border: 1px solid var(--market-line);
  border-top: 5px solid var(--market-rose);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 244, 248, 0.86), rgba(255, 255, 255, 0.96) 42%),
    white;
  box-shadow: var(--market-shadow);
}

.pricing-lead-panel h2 {
  color: var(--market-navy);
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(34px, 4.4vw, 58px);
  font-weight: 900;
  line-height: 1;
}

.pricing-lead-panel p {
  max-width: 730px;
  color: var(--market-muted);
  font-size: 18px;
  line-height: 1.6;
}

.lead-checklist {
  display: grid;
  gap: 10px;
}

.lead-checklist span {
  display: flex;
  align-items: center;
  min-height: 54px;
  padding: 0 18px;
  border: 1px solid var(--market-line);
  border-radius: 8px;
  color: var(--market-navy);
  background: white;
  font-size: 15px;
  font-weight: 900;
}

.lead-checklist span::before {
  content: "";
  width: 10px;
  height: 10px;
  margin-right: 12px;
  border-radius: 50%;
  background: var(--market-teal);
}

.pricing-read-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
  gap: clamp(24px, 5vw, 70px);
  align-items: center;
  padding: clamp(60px, 9vw, 118px) clamp(20px, 5vw, 80px);
  background:
    linear-gradient(135deg, rgba(7, 21, 33, 0.96), rgba(18, 48, 71, 0.92)),
    radial-gradient(circle at 78% 18%, rgba(237, 25, 118, 0.18), transparent 30%),
    radial-gradient(circle at 12% 78%, rgba(15, 118, 110, 0.18), transparent 30%);
}

.pricing-read-hero h1 {
  max-width: 940px;
  color: white;
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(44px, 5.6vw, 78px);
  font-weight: 900;
  line-height: 0.98;
}

.pricing-read-hero p {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 19px;
  line-height: 1.62;
}

.pricing-read-hero .button.primary,
.pricing-lead-section .button.primary {
  color: white;
  background: linear-gradient(135deg, var(--market-navy), #0c2134);
}

.pricing-read-hero .button.secondary,
.pricing-lead-section .button.secondary {
  color: var(--market-navy);
  border-color: var(--market-navy);
  background: white;
}

.pricing-read-card {
  min-height: 390px;
  padding: clamp(28px, 4vw, 46px);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.22);
}

.pricing-read-card.form-card {
  min-height: auto;
  padding: clamp(22px, 3vw, 34px);
}

.pricing-read-card span {
  display: block;
  margin-bottom: 28px;
  color: var(--market-gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.pricing-read-card strong {
  display: block;
  color: var(--market-navy);
  font-size: clamp(30px, 3.2vw, 46px);
  font-weight: 900;
  line-height: 1.05;
}

.pricing-read-card p {
  margin-top: 24px;
  color: var(--market-muted);
}

.pricing-read-form {
  display: grid;
  gap: 14px;
}

.pricing-read-form span {
  margin-bottom: 0;
}

.pricing-read-form strong {
  margin-bottom: 8px;
  font-size: clamp(26px, 2.8vw, 38px);
}

.pricing-read-form label {
  display: grid;
  gap: 7px;
  color: var(--market-navy);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pricing-read-form input,
.pricing-read-form select,
.pricing-read-form textarea {
  width: 100%;
  min-height: 46px;
  padding: 0 12px;
  border: 1px solid var(--market-line);
  border-radius: 8px;
  color: var(--market-navy);
  background: #ffffff;
  font: inherit;
  font-size: 15px;
  letter-spacing: 0;
  text-transform: none;
}

.pricing-read-form textarea {
  min-height: 104px;
  padding-top: 12px;
  resize: vertical;
}

.pricing-read-form input:focus,
.pricing-read-form select:focus,
.pricing-read-form textarea:focus {
  outline: 2px solid rgba(15, 118, 110, 0.2);
  border-color: var(--market-teal);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.pricing-read-form > button,
.diagnostic-actions button {
  min-height: 50px;
  border: 0;
  border-radius: 8px;
  color: white;
  background: linear-gradient(135deg, var(--market-navy), #0c2134);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
}

.pricing-read-form button:disabled {
  cursor: progress;
  opacity: 0.72;
}

.diagnostic-form fieldset {
  margin: 0;
  padding: 0;
  border: 0;
}

.diagnostic-form legend {
  margin-bottom: 8px;
  color: var(--market-navy);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.report-type-fieldset {
  padding: 0 0 4px;
}

.report-type-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.report-type-grid button {
  display: grid;
  gap: 8px;
  min-height: 132px;
  padding: 16px;
  border: 1px solid var(--market-line);
  border-radius: 8px;
  color: var(--market-navy);
  background: #ffffff;
  text-align: left;
  cursor: pointer;
}

.report-type-grid button.selected {
  border-color: var(--market-teal);
  box-shadow: 0 0 0 3px rgba(15, 118, 110, 0.13);
  background: #ecfdf5;
}

.report-type-grid span {
  color: var(--market-navy);
  font-size: 14px;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: none;
}

.report-type-grid small {
  color: var(--market-muted);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0;
  text-transform: none;
}

.diagnostic-progress {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 6px;
  padding: 5px;
  border: 1px solid var(--market-line);
  border-radius: 8px;
  background: #f8fafc;
}

.diagnostic-progress button {
  min-height: 36px;
  border: 0;
  border-radius: 6px;
  color: var(--market-muted);
  background: transparent;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
}

.diagnostic-progress button[aria-current="step"] {
  color: white;
  background: var(--market-navy);
}

.diagnostic-step {
  display: grid;
  gap: 14px;
}

.choice-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.choice-grid button {
  min-height: 36px;
  padding: 0 12px;
  border: 1px solid var(--market-line);
  border-radius: 999px;
  color: var(--market-navy);
  background: white;
  font-size: 12px;
  font-weight: 900;
  text-transform: none;
  cursor: pointer;
}

.choice-grid button.selected {
  color: white;
  border-color: var(--market-teal);
  background: var(--market-teal);
}

.diagnostic-actions {
  display: flex;
  gap: 10px;
}

.diagnostic-actions button {
  flex: 1;
}

.diagnostic-actions .ghost-button {
  color: var(--market-navy);
  border: 1px solid var(--market-line);
  background: white;
}

.form-message {
  margin: 0;
  padding: 12px;
  border-radius: 8px;
  font-size: 14px !important;
  line-height: 1.4 !important;
}

.form-message.success {
  color: #0f5132;
  background: #e9f7ef;
}

.form-message.error {
  color: #842029;
  background: #f8d7da;
}

.form-fallback {
  color: var(--market-teal);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.pricing-read-confirmation {
  display: grid;
  gap: 20px;
  min-height: 620px;
  align-content: center;
  padding: clamp(12px, 2vw, 24px) 0;
}

.pricing-read-confirmation span {
  display: inline-flex;
  width: fit-content;
  min-height: 38px;
  align-items: center;
  padding: 0 14px;
  border: 1px solid rgba(15, 118, 110, 0.22);
  border-radius: 999px;
  color: var(--market-teal);
  background: #ecfdf5;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.pricing-read-confirmation strong {
  display: block;
  color: var(--market-navy);
  font-size: clamp(38px, 4.5vw, 62px);
  font-weight: 900;
  line-height: 1.05;
}

.pricing-read-confirmation p {
  margin: 0;
  color: var(--market-muted);
  font-size: 18px;
  line-height: 1.55;
}

.confirmation-list {
  display: grid;
  gap: 10px;
}

.confirmation-list div {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  min-height: 82px;
  padding: 18px;
  border: 1px solid var(--market-line);
  border-radius: 8px;
  background: white;
}

.confirmation-list b {
  display: grid;
  place-items: center;
  width: 38px;
  aspect-ratio: 1;
  border-radius: 50%;
  color: white;
  background: var(--market-navy);
  font-size: 14px;
}

.pricing-read-confirmation .confirmation-note {
  padding: 18px;
  border-left: 4px solid var(--market-gold);
  border-radius: 8px;
  background: #fffaf0;
  color: var(--market-navy);
  font-size: 15px;
}

.pricing-read-confirmation .confirmation-email-note {
  padding: 18px;
  border: 1px solid rgba(15, 118, 110, 0.2);
  border-radius: 8px;
  background: #ecfdf5;
  color: var(--market-navy);
  font-size: 15px;
  font-weight: 800;
}

.confirmation-button {
  display: inline-flex;
  flex: 1;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 0 18px;
  border: 1px solid var(--market-navy);
  border-radius: 8px;
  color: white;
  background: var(--market-navy);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.confirmation-button.ghost {
  color: var(--market-navy);
  background: white;
}

.request-page-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(320px, 0.82fr);
  gap: clamp(24px, 5vw, 68px);
  align-items: stretch;
  padding: clamp(58px, 8vw, 106px) clamp(20px, 5vw, 80px);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.88) 45%, rgba(255, 247, 251, 0.68) 100%),
    url("/images/market-intelligence-request-bg.svg") center / cover;
  border-bottom: 1px solid var(--market-line);
}

.request-page-hero h1 {
  display: block;
  max-width: 900px;
  margin-bottom: 18px;
  color: var(--market-navy);
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(42px, 6vw, 76px);
  font-weight: 950;
  line-height: 0.96;
}

.request-page-hero p {
  max-width: 760px;
  color: var(--market-muted);
  font-size: 18px;
  line-height: 1.62;
}

.request-page-note {
  display: grid;
  align-content: end;
  padding: clamp(24px, 4vw, 40px);
  border: 1px solid var(--market-line);
  border-top: 5px solid var(--market-rose);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--market-shadow);
}

.request-page-note span {
  color: var(--market-rose);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.request-page-note strong {
  display: block;
  margin: 14px 0;
  color: var(--market-navy);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 950;
  line-height: 1.04;
}

.request-page-note p {
  margin-bottom: 0;
  font-size: 16px;
}

.request-form-section {
  background: #fbfcfd;
}

.market-request-form {
  max-width: 1120px;
  margin: 0 auto;
  padding: clamp(24px, 4vw, 44px);
  border: 1px solid var(--market-line);
  border-top: 5px solid var(--market-navy);
  border-radius: 8px;
  background: white;
  box-shadow: var(--market-shadow);
}

.report-type-grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.request-form-grid {
  display: grid;
  gap: 14px;
}

.conditional-panel {
  display: grid;
  gap: 14px;
  padding: 18px !important;
  border: 1px solid var(--market-line) !important;
  border-radius: 8px;
  background: #fbfcfd;
}

.request-confirmation-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 0.74fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: start;
  padding: clamp(42px, 7vw, 90px) clamp(20px, 5vw, 80px);
  background: #fbfcfd;
}

.request-confirmation-copy h1 {
  display: block;
  margin-bottom: 18px;
  color: var(--market-navy);
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(42px, 6vw, 72px);
  font-weight: 950;
  line-height: 0.98;
}

.request-confirmation-copy p {
  color: var(--market-muted);
  font-size: 18px;
  line-height: 1.6;
}

.snapshot-preview {
  width: min(100%, 520px);
  min-height: 672px;
  margin: 0 auto;
  padding: 28px;
  border: 1px solid #d6d6d6;
  border-radius: 8px;
  color: #111111;
  background: #ffffff;
  box-shadow: 0 28px 70px rgba(17, 17, 17, 0.16);
}

.snapshot-preview header {
  padding-bottom: 18px;
  border-bottom: 4px solid #e43392;
}

.snapshot-preview header span {
  color: #e43392;
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.snapshot-preview header strong {
  display: block;
  margin-top: 10px;
  color: #111111;
  font-size: 30px;
  font-weight: 950;
  line-height: 1.03;
}

.snapshot-preview dl {
  display: grid;
  gap: 0;
  margin: 22px 0;
  border: 1px solid #e6e6e6;
}

.snapshot-preview dl div {
  display: grid;
  grid-template-columns: 130px minmax(0, 1fr);
  min-height: 44px;
  border-bottom: 1px solid #e6e6e6;
}

.snapshot-preview dl div:last-child {
  border-bottom: 0;
}

.snapshot-preview dt,
.snapshot-preview dd {
  margin: 0;
  padding: 12px;
  font-size: 13px;
  line-height: 1.35;
}

.snapshot-preview dt {
  color: #ffffff;
  background: #111111;
  font-weight: 900;
}

.snapshot-preview dd {
  color: #333333;
  background: #f3f3f3;
  font-weight: 800;
}

.snapshot-preview section {
  margin-top: 18px;
}

.snapshot-preview h2 {
  margin-bottom: 8px;
  color: #111111;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 18px;
  font-weight: 950;
}

.snapshot-preview p,
.snapshot-preview li,
.snapshot-preview footer {
  color: #333333;
  font-size: 13px;
  line-height: 1.45;
}

.snapshot-preview ul {
  display: grid;
  gap: 6px;
  margin: 0;
  padding-left: 18px;
}

.snapshot-message {
  margin-top: 18px;
  padding: 14px;
  border-left: 4px solid #e43392;
  background: #f3f3f3;
  font-weight: 800;
}

.snapshot-preview footer {
  margin-top: 20px;
  padding-top: 14px;
  border-top: 1px solid #e6e6e6;
  color: #666666;
}

.footer {
  background: var(--market-navy);
}

.footer .brand strong,
.footer .brand em {
  color: white;
}

.login-shell {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 32px 18px;
  background:
    linear-gradient(135deg, rgba(7, 21, 33, 0.94), rgba(18, 48, 71, 0.92)),
    radial-gradient(circle at 18% 12%, rgba(15, 118, 110, 0.28), transparent 32%),
    var(--market-bg);
}

.login-card {
  width: min(560px, 100%);
  padding: clamp(28px, 5vw, 48px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
}

.login-brand {
  margin-bottom: 42px;
}

.login-brand .rose-mark {
  background: var(--market-navy);
  border-radius: 8px;
}

.login-card h1 {
  margin-bottom: 14px;
  color: var(--market-navy);
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(36px, 8vw, 58px);
  font-weight: 900;
  line-height: 0.98;
}

.login-card p {
  color: var(--market-muted);
  font-size: 17px;
  line-height: 1.6;
}

.login-form {
  display: grid;
  gap: 16px;
  margin-top: 30px;
}

.login-form label {
  display: grid;
  gap: 8px;
}

.login-form label span {
  color: var(--market-navy);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.login-form input {
  width: 100%;
  min-height: 54px;
  padding: 0 16px;
  color: var(--market-navy);
  border: 1px solid var(--market-line);
  border-radius: 8px;
  background: #f9fafb;
  font: inherit;
}

.login-form input:focus {
  outline: 3px solid rgba(15, 118, 110, 0.18);
  border-color: var(--market-teal);
  background: white;
}

.login-form button {
  min-height: 56px;
  margin-top: 6px;
  color: white;
  border: 0;
  border-radius: 8px;
  background: var(--market-navy);
  cursor: pointer;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.login-form button:hover {
  background: var(--market-blue);
}

.login-error {
  margin: 0;
  padding: 12px 14px;
  color: #7f1d1d !important;
  border: 1px solid #fecaca;
  border-radius: 8px;
  background: #fef2f2;
  font-size: 14px !important;
}

.login-help {
  margin: 24px 0 0;
  font-size: 14px !important;
}

.property-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.9fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  padding: clamp(44px, 7vw, 96px) clamp(20px, 6vw, 88px);
  color: white;
  background:
    linear-gradient(135deg, rgba(7, 21, 33, 0.97), rgba(18, 48, 71, 0.93)),
    var(--market-navy);
}

.property-hero img,
.property-media-grid img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.26);
}

.property-hero img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.property-hero-copy h1 {
  max-width: 760px;
  margin-bottom: 18px;
  color: white;
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(54px, 7vw, 94px);
  font-weight: 900;
  line-height: 0.96;
}

.property-hero-copy p {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 21px;
  line-height: 1.45;
}

.property-price-row {
  display: inline-grid;
  gap: 4px;
  min-width: min(100%, 420px);
  margin-top: 28px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.property-price-row span,
.price-stack span,
.fact-table span,
.comp-stat-grid span,
.task-list span,
.timeline span {
  color: var(--market-gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.property-price-row strong {
  color: white;
  font-size: 46px;
  line-height: 1;
}

.property-price-row small {
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
}

.property-next-step,
.property-section {
  max-width: 1320px;
  margin: 0 auto;
  padding: clamp(42px, 6vw, 74px) clamp(18px, 4vw, 34px);
}

.property-next-step {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  gap: 34px;
  align-items: start;
  margin-top: -32px;
  border: 1px solid var(--market-line);
  border-radius: 8px;
  background: white;
  box-shadow: var(--market-shadow);
  position: relative;
  z-index: 2;
}

.property-next-step h2,
.property-panel h2,
.property-media-grid h2 {
  color: var(--market-navy);
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 900;
  line-height: 1.03;
}

.property-next-step p,
.property-media-grid p {
  color: var(--market-muted);
  font-size: 18px;
  line-height: 1.65;
}

.property-next-step ol {
  display: grid;
  gap: 12px;
  margin: 0;
  padding-left: 22px;
}

.property-next-step li {
  color: var(--market-navy);
  font-size: 18px;
  font-weight: 800;
  line-height: 1.45;
}

.property-card-grid,
.property-dashboard-grid,
.comp-stat-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

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

.property-panel {
  padding: clamp(26px, 4vw, 40px);
  border: 1px solid var(--market-line);
  border-radius: 8px;
  background: white;
  box-shadow: var(--market-shadow);
}

.price-stack {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

.price-stack div,
.fact-table div,
.task-list div {
  padding: 18px;
  border: 1px solid var(--market-line);
  border-radius: 8px;
  background: #f9fafb;
}

.price-stack strong,
.fact-table strong,
.comp-stat-grid strong {
  display: block;
  margin-top: 7px;
  color: var(--market-navy);
  font-size: 28px;
  font-weight: 900;
  line-height: 1.1;
}

.price-stack small {
  display: block;
  margin-top: 5px;
  color: var(--market-muted);
}

.property-gauge {
  margin-top: 24px;
}

.gauge-track {
  height: 18px;
  overflow: hidden;
  border-radius: 999px;
  background: #e5e7eb;
}

.gauge-track span {
  display: block;
  height: 100%;
  max-width: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--market-teal), var(--market-gold), #b91c1c);
}

.gauge-labels {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 12px;
  color: var(--market-muted);
}

.gauge-labels strong {
  color: var(--market-navy);
}

.property-gauge p {
  margin-top: 16px;
  color: var(--market-muted);
  font-size: 15px;
  line-height: 1.55;
}

.fact-table {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.property-media-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 34px;
  align-items: center;
}

.comp-stat-grid article {
  min-height: 130px;
  padding: 24px;
  border: 1px solid var(--market-line);
  border-radius: 8px;
  background: white;
  box-shadow: var(--market-shadow);
}

.timeline,
.task-list {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

.timeline div {
  padding-left: 18px;
  border-left: 4px solid var(--market-teal);
}

.timeline strong {
  display: block;
  margin-top: 5px;
  color: var(--market-navy);
  font-size: 20px;
}

.timeline p,
.task-list p {
  margin: 7px 0 0;
  color: var(--market-muted);
  line-height: 1.55;
}

.task-list div {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
}

.portal-hero {
  padding: clamp(54px, 8vw, 110px) clamp(20px, 6vw, 88px);
  color: white;
  background:
    linear-gradient(135deg, rgba(7, 21, 33, 0.97), rgba(18, 48, 71, 0.92)),
    var(--market-navy);
}

.portal-hero div {
  max-width: 920px;
}

.portal-hero h1 {
  color: white;
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(48px, 7vw, 88px);
  font-weight: 900;
  line-height: 0.98;
}

.portal-hero p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 20px;
  line-height: 1.55;
}

.portal-list {
  display: grid;
  gap: 18px;
  max-width: 1120px;
  margin: 0 auto;
  padding: clamp(38px, 6vw, 72px) clamp(18px, 4vw, 34px);
}

.portal-property-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 26px;
  align-items: center;
  padding: clamp(24px, 4vw, 40px);
  border: 1px solid var(--market-line);
  border-radius: 8px;
  background: white;
  box-shadow: var(--market-shadow);
}

.portal-property-card span {
  color: var(--market-gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.portal-property-card h2 {
  margin: 10px 0 8px;
  color: var(--market-navy);
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 900;
  line-height: 1;
}

.portal-property-card p {
  margin-bottom: 8px;
  color: var(--market-muted);
  font-size: 17px;
  line-height: 1.55;
}

.portal-property-card a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 22px;
  color: white;
  border-radius: 8px;
  background: var(--market-navy);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.recommendation-center {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.36fr);
  gap: 28px;
  align-items: center;
  margin-top: 34px;
  border: 1px solid var(--market-line);
  border-radius: 8px;
  background: white;
  box-shadow: var(--market-shadow);
}

.recommendation-center h2 {
  color: var(--market-navy);
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(34px, 4.8vw, 60px);
  font-weight: 900;
  line-height: 1;
}

.recommendation-center p,
.estimate-grid p,
.pricing-scenario-grid p,
.pricing-scenario-grid small {
  color: var(--market-muted);
  line-height: 1.58;
}

.recommendation-evidence {
  padding: 24px;
  border-radius: 8px;
  background: #f9fafb;
}

.recommendation-evidence span,
.estimate-grid span,
.pricing-scenario-grid span {
  color: var(--market-gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.recommendation-evidence strong {
  display: block;
  margin: 8px 0 10px;
  color: var(--market-navy);
  font-size: 42px;
  font-weight: 900;
}

.estimate-grid,
.pricing-scenario-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.pricing-scenario-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.estimate-grid article,
.pricing-scenario-grid article {
  min-height: 190px;
  padding: 24px;
  border: 1px solid var(--market-line);
  border-radius: 8px;
  background: white;
  box-shadow: var(--market-shadow);
}

.estimate-grid strong,
.pricing-scenario-grid strong {
  display: block;
  margin: 10px 0 10px;
  color: var(--market-navy);
  font-size: 28px;
  font-weight: 900;
  line-height: 1.05;
}

.norwood-page {
  background: #f7f8fa;
}

.norwood-hero {
  background:
    linear-gradient(135deg, rgba(8, 8, 11, 0.98), rgba(33, 34, 40, 0.94)),
    #08080b;
}

.norwood-badge-row,
.norwood-hero-actions,
.norwood-tabs,
.norwood-verdict-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.norwood-badge-row {
  margin-top: 24px;
}

.norwood-badge-row span,
.norwood-tabs span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 13px;
  border: 1px solid rgba(228, 51, 146, 0.36);
  border-radius: 999px;
  color: white;
  background: rgba(228, 51, 146, 0.12);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.norwood-hero-actions a,
.norwood-report-cta a,
.norwood-lead-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  color: white;
  background: #e43392;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.norwood-hero-actions a:nth-child(2) {
  background: #111827;
}

.norwood-hero-actions a:nth-child(3) {
  color: #071521;
  background: #55bdf2;
}

.norwood-snapshot {
  grid-template-columns: minmax(300px, 0.58fr) minmax(0, 1fr);
}

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

.norwood-fact-table strong {
  font-size: 18px;
}

.norwood-tabs {
  margin: 24px 0 16px;
}

.norwood-tabs span {
  color: #111827;
  border-color: rgba(85, 189, 242, 0.5);
  background: rgba(85, 189, 242, 0.14);
}

.norwood-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--market-line);
  border-radius: 8px;
  background: white;
  box-shadow: var(--market-shadow);
}

.norwood-comp-table {
  width: 100%;
  min-width: 1180px;
  border-collapse: collapse;
}

.norwood-comp-table th,
.norwood-comp-table td {
  padding: 14px 12px;
  border-bottom: 1px solid var(--market-line);
  color: var(--market-navy);
  font-size: 13px;
  line-height: 1.35;
  text-align: left;
  vertical-align: top;
}

.norwood-comp-table th {
  color: white;
  background: #15171c;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.norwood-comp-table tbody tr:nth-child(even) td {
  background: #f9fafb;
}

.norwood-sales-table {
  min-width: 760px;
}

.norwood-verdict-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 16px;
}

.norwood-verdict-grid article,
.norwood-translation-grid article {
  padding: 22px;
  border: 1px solid var(--market-line);
  border-radius: 8px;
  background: white;
  box-shadow: var(--market-shadow);
}

.norwood-verdict-grid span,
.norwood-translation-grid span,
.norwood-lead-form span {
  color: #e43392;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.norwood-verdict-grid strong {
  display: block;
  margin-top: 8px;
  color: var(--market-navy);
  font-size: 19px;
  line-height: 1.2;
}

.norwood-translation-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.norwood-translation-grid article {
  min-height: 260px;
}

.norwood-translation-grid p,
.norwood-list li,
.norwood-lead-form input {
  color: var(--market-muted);
  font-size: 15px;
  line-height: 1.5;
}

.norwood-translation-grid p {
  margin: 12px 0 0;
}

.norwood-translation-grid strong {
  color: var(--market-navy);
}

.norwood-list {
  display: grid;
  gap: 12px;
  margin: 20px 0 0;
  padding-left: 20px;
}

.norwood-list.two-column {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 26px;
}

.norwood-strategy-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.norwood-report-cta .recommendation-evidence a {
  width: 100%;
  margin-top: 14px;
  background: #e43392;
}

.norwood-lead-form {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.norwood-lead-form label {
  display: grid;
  gap: 7px;
}

.norwood-lead-form input {
  width: 100%;
  min-height: 46px;
  padding: 0 12px;
  border: 1px solid var(--market-line);
  border-radius: 8px;
  background: #f9fafb;
}

.norwood-lead-form button {
  width: 100%;
  border: 0;
  cursor: pointer;
}

.radcliff-page {
  background: #f6f2ee;
}

.radcliff-page .property-section,
.radcliff-page .property-next-step {
  max-width: 1180px;
}

.radcliff-hero {
  grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
  align-items: stretch;
  min-height: 560px;
  padding-bottom: clamp(72px, 9vw, 120px);
  background:
    linear-gradient(135deg, rgba(7, 21, 33, 0.98), rgba(16, 40, 58, 0.95)),
    var(--market-navy);
}

.radcliff-hero .property-hero-copy {
  align-self: end;
}

.radcliff-hero .property-hero-copy h1 {
  max-width: 680px;
  margin-top: 12px;
  font-size: clamp(56px, 8vw, 104px);
  letter-spacing: 0;
}

.radcliff-hero .property-hero-copy p {
  max-width: 620px;
}

.radcliff-hero-panel {
  display: grid;
  align-self: end;
  gap: 14px;
  padding: clamp(24px, 4vw, 34px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.22);
}

.radcliff-hero-panel span,
.radcliff-brief-strip span,
.radcliff-thesis-grid span,
.radcliff-photo-audit span {
  color: var(--market-gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.radcliff-hero-panel strong {
  color: white;
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 900;
  line-height: 1.05;
}

.radcliff-hero-panel p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 16px;
  line-height: 1.55;
}

.radcliff-brief-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  max-width: 1180px;
  margin: -52px auto 0;
  padding: 0 clamp(18px, 4vw, 34px);
  position: relative;
  z-index: 3;
}

.radcliff-brief-strip div {
  display: grid;
  gap: 10px;
  min-height: 132px;
  padding: 22px;
  border: 1px solid var(--market-line);
  background: white;
  box-shadow: var(--market-shadow);
}

.radcliff-brief-strip div:first-child {
  border-radius: 8px 0 0 8px;
}

.radcliff-brief-strip div:last-child {
  border-radius: 0 8px 8px 0;
}

.radcliff-brief-strip strong {
  color: var(--market-navy);
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 900;
  line-height: 1.08;
}

.radcliff-review-nav {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  max-width: 1180px;
  margin: 20px auto 0;
  padding: 12px clamp(16px, 3vw, 22px);
  border: 1px solid rgba(228, 51, 146, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 16px 38px rgba(7, 21, 33, 0.08);
  backdrop-filter: blur(18px);
}

.radcliff-review-nav a {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  padding: 0 13px;
  border: 1px solid rgba(7, 21, 33, 0.12);
  border-radius: 999px;
  color: var(--market-navy);
  background: white;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 160ms ease, border-color 160ms ease, color 160ms ease;
}

.radcliff-review-nav a:hover {
  border-color: #e43392;
  color: #e43392;
  transform: translateY(-1px);
}

.radcliff-call-plan {
  padding-top: clamp(34px, 5vw, 58px);
}

.radcliff-call-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
}

.radcliff-call-steps article {
  min-height: 260px;
  padding: 22px;
  border: 1px solid var(--market-line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(250, 250, 250, 0.96)),
    white;
  box-shadow: 0 16px 38px rgba(7, 21, 33, 0.07);
}

.radcliff-call-steps span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 0 10px;
  border-radius: 999px;
  color: white;
  background: #e43392;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.radcliff-call-steps h3 {
  margin: 22px 0 10px;
  color: var(--market-navy);
  font-size: clamp(19px, 2vw, 25px);
  line-height: 1.08;
}

.radcliff-call-steps p {
  margin: 0;
  color: var(--market-muted);
  font-size: 15px;
  line-height: 1.55;
}

.radcliff-executive {
  padding-top: clamp(42px, 6vw, 70px);
}

.radcliff-executive .section-heading {
  max-width: 860px;
}

.radcliff-thesis-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.radcliff-thesis-grid article {
  min-height: 220px;
  padding: 26px;
  border: 1px solid var(--market-line);
  border-radius: 8px;
  background: white;
  box-shadow: var(--market-shadow);
}

.radcliff-thesis-grid p {
  margin: 16px 0 0;
  color: var(--market-navy);
  font-size: 17px;
  font-weight: 760;
  line-height: 1.55;
}

.radcliff-guided-review {
  padding-top: 18px;
}

.guided-question-list {
  display: grid;
  gap: 12px;
  margin-top: 26px;
}

.guided-question-list article {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  padding: 20px;
  border: 1px solid var(--market-line);
  border-radius: 8px;
  background: white;
  box-shadow: 0 14px 34px rgba(7, 21, 33, 0.07);
}

.guided-question-list b {
  display: grid;
  place-items: center;
  width: 54px;
  aspect-ratio: 1;
  border-radius: 8px;
  color: white;
  background: var(--market-navy);
  font-size: 18px;
  font-weight: 900;
}

.guided-question-list h3 {
  margin: 0 0 7px;
  color: var(--market-navy);
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 900;
  line-height: 1.1;
}

.guided-question-list p {
  margin: 0;
  color: var(--market-muted);
  font-size: 16px;
  line-height: 1.55;
}

.radcliff-market-stat-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.radcliff-market-stat-grid article {
  min-height: 220px;
}

.radcliff-live-research .property-panel:first-child {
  color: white;
  background:
    linear-gradient(135deg, rgba(7, 21, 33, 0.96), rgba(16, 40, 58, 0.92)),
    var(--market-navy);
}

.radcliff-live-research .property-panel:first-child h2,
.radcliff-live-research .property-panel:first-child p {
  color: white;
}

.radcliff-live-research .property-panel:first-child p {
  color: rgba(255, 255, 255, 0.76);
}

.report-resource-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  margin: 0 auto;
  padding: clamp(26px, 4vw, 42px);
  border: 1px solid rgba(228, 51, 146, 0.28);
  border-left: 6px solid #e43392;
  border-radius: 8px;
  background: white;
  box-shadow: 0 18px 45px rgba(7, 21, 33, 0.08);
}

.report-resource-section h2 {
  margin: 0;
  color: var(--market-navy);
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.05;
}

.report-resource-section p {
  max-width: 760px;
  margin: 14px 0 0;
  color: var(--market-muted);
  font-size: 17px;
  line-height: 1.6;
}

.print-report-shell {
  min-height: 100vh;
  padding: 26px;
  color: #111111;
  background: #eeeeee;
  font-family: inherit;
}

.print-toolbar {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin: 0 auto 20px;
}

.print-toolbar a,
.print-toolbar span,
.print-cta {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid #111111;
  border-radius: 4px;
  color: #111111;
  background: #ffffff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
}

.print-toolbar span,
.print-cta {
  border-color: #e43392;
  color: #ffffff;
  background: #e43392;
}

.print-page {
  display: flex;
  flex-direction: column;
  width: 8.5in;
  min-height: 11in;
  margin: 0 auto 26px;
  padding: 0.55in;
  border-radius: 2px;
  background: #ffffff;
  box-shadow: 0 16px 50px rgba(17, 17, 17, 0.16);
  break-after: page;
  page-break-after: always;
}

.print-report-header,
.print-report-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.print-report-header {
  padding-bottom: 18px;
  border-bottom: 4px solid #111111;
}

.print-report-header > div:last-child {
  display: grid;
  gap: 4px;
  text-align: right;
}

.print-report-header span,
.print-report-header small,
.print-report-footer span,
.print-cover-meta span,
.print-eyebrow,
.branded-table th,
.key-takeaway-box span,
.pricing-scenario-table span,
.strategy-grid span,
.marketing-message-card span,
.source-status {
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.print-report-header strong {
  color: #111111;
  font-size: 18px;
  line-height: 1.15;
}

.print-report-header span,
.print-report-header small,
.print-report-footer span {
  color: #666666;
}

.print-report-logo {
  display: grid;
  gap: 2px;
  min-width: 180px;
}

.print-report-logo span,
.print-report-logo strong {
  color: #111111;
  font-size: 24px;
  font-weight: 800;
  letter-spacing: 0.32em;
  line-height: 0.95;
  text-transform: uppercase;
}

.print-report-logo strong {
  color: #e43392;
}

.print-report-logo em {
  color: #333333;
  font-size: 9px;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.print-report-footer {
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid #d9d9d9;
}

.print-cover-body {
  display: grid;
  align-content: start;
  gap: 24px;
  padding-top: 58px;
}

.print-eyebrow {
  margin: 0;
  color: #e43392;
}

.print-cover h1 {
  max-width: 720px;
  margin: 0;
  color: #111111;
  font-size: 64px;
  line-height: 0.96;
}

.print-cover h2 {
  max-width: 620px;
  margin: -8px 0 0;
  color: #333333;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.3;
}

.print-cover-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.print-cover-meta div {
  display: grid;
  gap: 6px;
  min-height: 104px;
  padding: 16px;
  border-top: 4px solid #111111;
  background: #f3f3f3;
}

.print-cover-meta strong {
  color: #111111;
  font-size: 20px;
  line-height: 1.15;
}

.print-cover-meta small {
  color: #666666;
  font-size: 13px;
}

.print-purpose {
  max-width: 720px;
  margin: 0;
  color: #333333;
  font-size: 15px;
  line-height: 1.6;
}

.print-section-heading {
  margin: 28px 0 18px;
}

.print-section-heading h2 {
  margin: 8px 0 0;
  color: #111111;
  font-size: 34px;
  line-height: 1.04;
}

.print-section h3 {
  margin: 20px 0 10px;
  color: #111111;
  font-size: 18px;
  line-height: 1.2;
}

.key-takeaway-box {
  margin: 18px 0;
  padding: 16px 18px;
  border-left: 5px solid #e43392;
  background: #f3f3f3;
}

.key-takeaway-box span {
  color: #e43392;
}

.key-takeaway-box p {
  margin: 8px 0 0;
  color: #111111;
  font-size: 15px;
  font-weight: 650;
  line-height: 1.45;
}

.branded-table-wrap {
  overflow: hidden;
  border: 1px solid #d7d7d7;
  border-radius: 4px;
}

.branded-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 11px;
  line-height: 1.35;
}

.branded-table th {
  padding: 10px;
  color: #ffffff;
  background: #111111;
  text-align: left;
  vertical-align: top;
}

.branded-table td {
  padding: 10px;
  border-top: 1px solid #dedede;
  color: #333333;
  vertical-align: top;
}

.branded-table tr:nth-child(even) td {
  background: #f7f7f7;
}

.source-status {
  display: inline-flex;
  width: max-content;
  max-width: 100%;
  padding: 5px 7px;
  border: 1px solid #d8d8d8;
  border-radius: 999px;
  color: #333333;
  background: #ffffff;
  white-space: normal;
}

.source-status-collected {
  border-color: rgba(228, 51, 146, 0.45);
  color: #e43392;
}

.source-status-missing,
.source-status-needs-update,
.source-status-pending {
  border-color: #111111;
  color: #111111;
}

.worksheet-takeaways,
.source-learning-grid,
.marketing-message-grid,
.strategy-grid,
.pricing-scenario-table {
  display: grid;
  gap: 12px;
}

.worksheet-takeaways {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 16px;
}

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

.source-learning-grid article,
.strategy-grid article,
.marketing-message-card,
.pricing-scenario-table article {
  padding: 14px;
  border: 1px solid #d9d9d9;
  border-top: 4px solid #111111;
  background: #ffffff;
}

.source-learning-grid h3,
.marketing-message-card h3 {
  margin: 0 0 8px;
  color: #111111;
}

.source-learning-grid ul,
.seller-question-list {
  margin: 0;
  padding-left: 18px;
  color: #333333;
  font-size: 12px;
  line-height: 1.45;
}

.source-learning-grid p,
.strategy-grid p,
.marketing-message-card p,
.marketing-message-card dd,
.pricing-scenario-table dd {
  margin: 8px 0 0;
  color: #333333;
  font-size: 12px;
  line-height: 1.45;
}

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

.pricing-scenario-table article.highlighted {
  border-color: #e43392;
  border-top-color: #e43392;
  box-shadow: inset 0 0 0 2px rgba(228, 51, 146, 0.16);
}

.pricing-scenario-table strong {
  display: block;
  margin-top: 8px;
  color: #111111;
  font-size: 26px;
  line-height: 1;
}

.pricing-scenario-table dl,
.marketing-message-card dl {
  display: grid;
  gap: 8px;
  margin: 12px 0 0;
}

.pricing-scenario-table dt,
.marketing-message-card dt {
  color: #111111;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.sales-considerations h3 {
  margin-top: 24px;
}

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

.strategy-grid span,
.marketing-message-card span,
.pricing-scenario-table span {
  color: #e43392;
}

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

.seller-question-list {
  display: grid;
  gap: 10px;
  margin-bottom: 20px;
  padding-left: 24px;
  font-size: 15px;
}

@page {
  size: letter portrait;
  margin: 0;
}

@media print {
  body {
    background: #ffffff;
  }

  .site-header,
  .print-toolbar {
    display: none !important;
  }

  .print-report-shell {
    padding: 0;
    background: #ffffff;
  }

  .print-page {
    width: 8.5in;
    min-height: 11in;
    margin: 0;
    box-shadow: none;
    break-after: page;
    page-break-after: always;
  }

  .branded-table-wrap,
  .key-takeaway-box,
  .source-learning-grid article,
  .strategy-grid article,
  .marketing-message-card,
  .pricing-scenario-table article {
    break-inside: avoid;
    page-break-inside: avoid;
  }
}

.radcliff-next-step {
  margin-top: 0;
}

.radcliff-page .property-card-grid {
  gap: 14px;
}

.radcliff-page .signal-card,
.radcliff-page .property-panel,
.radcliff-page .estimate-grid article,
.radcliff-page .pricing-scenario-grid article {
  box-shadow: 0 18px 45px rgba(7, 21, 33, 0.08);
}

.radcliff-page .signal-card {
  min-height: 0;
  padding: 24px;
}

.radcliff-page .signal-card strong {
  display: block;
  margin-top: 14px;
  color: var(--market-navy);
  font-size: 18px;
  line-height: 1.25;
}

.radcliff-marketing-read {
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.7fr);
}

.radcliff-photo-audit {
  display: grid;
  gap: 12px;
  padding: 26px;
  border: 1px solid rgba(185, 28, 28, 0.2);
  border-radius: 8px;
  background: #fff7ed;
}

.radcliff-photo-audit strong {
  color: var(--market-navy);
  font-size: 30px;
  font-weight: 900;
  line-height: 1.06;
}

.radcliff-photo-audit p {
  margin: 0;
  color: var(--market-muted);
  font-size: 16px;
  line-height: 1.55;
}

.radcliff-photo-section {
  padding-top: 30px;
}

.radcliff-photo-strip {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.radcliff-photo-strip .property-panel {
  padding: 14px;
}

.radcliff-photo-strip .property-panel img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center 18%;
  border-radius: 6px;
  box-shadow: none;
}

.radcliff-photo-strip .property-panel h2 {
  margin: 14px 4px 6px;
  font-size: 20px;
  line-height: 1.15;
}

.methodology-grid {
  align-items: stretch;
}

.methodology-grid span {
  display: inline-flex;
  align-items: center;
  min-height: 52px;
}

/* Erin Rose brand cohesion pass for the market intelligence system */
.market-header {
  min-height: 92px;
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid rgba(234, 221, 228, 0.86);
}

.market-header .brand {
  gap: 16px;
  min-width: 330px;
}

.market-header .rose-mark {
  width: 4px;
  height: 48px;
  aspect-ratio: auto;
  overflow: hidden;
  color: transparent;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--market-rose), #f3a4c1);
  box-shadow: none;
}

.market-header .brand strong,
.footer .brand strong,
.login-brand strong {
  color: var(--market-ink);
  font-family: var(--market-sans);
  font-size: clamp(20px, 1.9vw, 27px);
  font-weight: 500;
  letter-spacing: 0.32em;
  line-height: 1;
  text-transform: uppercase;
}

.market-header .brand em,
.footer .brand em,
.login-brand em {
  margin-top: 6px;
  color: var(--market-rose);
  font-family: var(--market-sans);
  font-size: 10px;
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0.2em;
  line-height: 1.2;
  text-transform: uppercase;
}

.market-header nav {
  color: var(--market-navy);
  font-family: var(--market-sans);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-transform: none;
}

.market-header nav a {
  padding: 13px 0 10px;
}

.market-header nav a:hover {
  color: var(--market-rose);
  border-color: var(--market-rose);
}

.market-header .login-link,
.market-header .book-link,
.confirmation-button,
.portal-property-card a {
  font-family: var(--market-sans);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: none;
}

.market-header .book-link,
.market-hero .button.primary,
.pricing-read-hero .button.primary,
.pricing-lead-section .button.primary,
.list-home-section .button.primary,
.pricing-read-form > button,
.diagnostic-actions button,
.confirmation-button,
.login-form button,
.portal-property-card a {
  color: white;
  background: linear-gradient(135deg, var(--market-rose), var(--market-rose-deep));
  box-shadow: 0 14px 30px rgba(214, 51, 115, 0.20);
}

.market-header .book-link {
  border: 1px solid rgba(214, 51, 115, 0.22);
}

.market-header .book-link:hover,
.market-hero .button.primary:hover,
.pricing-read-hero .button.primary:hover,
.pricing-lead-section .button.primary:hover,
.list-home-section .button.primary:hover,
.pricing-read-form > button:hover,
.diagnostic-actions button:hover,
.confirmation-button:hover,
.login-form button:hover,
.portal-property-card a:hover {
  background: linear-gradient(135deg, var(--market-rose-deep), #94134a);
}

.market-header .login-link,
.market-hero .button.secondary,
.pricing-read-hero .button.secondary,
.pricing-lead-section .button.secondary,
.list-home-section .button.secondary,
.diagnostic-actions .ghost-button,
.confirmation-button.ghost {
  color: var(--market-navy);
  border-color: rgba(7, 21, 33, 0.24);
  background: white;
  box-shadow: none;
}

.market-hero,
.pricing-read-hero,
.property-hero,
.portal-hero,
.login-shell {
  background:
    linear-gradient(135deg, rgba(7, 21, 33, 0.97), rgba(23, 50, 74, 0.92)),
    radial-gradient(circle at 76% 18%, rgba(214, 51, 115, 0.18), transparent 34%),
    linear-gradient(45deg, rgba(255, 255, 255, 0.05), transparent 56%);
}

.market-hero {
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.brand-kicker {
  max-width: 760px;
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1.5;
  text-transform: uppercase;
}

.market-hero .eyebrow,
.pricing-read-hero .eyebrow,
.market-section .eyebrow,
.market-brief span,
.pricing-read-card span,
.property-card span,
.library-panel a span,
.takeaway-band span,
.portal-property-card span,
.recommendation-evidence span,
.estimate-grid span,
.pricing-scenario-grid span,
.property-price-row span,
.price-stack span,
.fact-table span,
.comp-stat-grid span,
.task-list span,
.timeline span {
  color: var(--market-rose);
}

.hero-copy-panel h1,
.market-brief strong,
.market-section h2,
.trend-header h2,
.property-card h3,
.question-panel h3,
.translation-card h3,
.pricing-lead-panel h2,
.pricing-read-hero h1,
.pricing-read-card strong,
.pricing-read-confirmation strong,
.login-card h1,
.property-hero-copy h1,
.property-next-step h2,
.property-panel h2,
.property-media-grid h2,
.portal-hero h1,
.portal-property-card h2,
.recommendation-center h2 {
  font-family: var(--market-sans);
}

.hero-copy-panel h1,
.pricing-read-hero h1,
.property-hero-copy h1,
.portal-hero h1 {
  font-weight: 800;
  letter-spacing: 0;
}

.market-brief strong,
.market-section h2,
.trend-header h2,
.property-card h3,
.question-panel h3,
.translation-card h3,
.pricing-lead-panel h2,
.pricing-read-card strong,
.pricing-read-confirmation strong,
.login-card h1,
.property-next-step h2,
.property-panel h2,
.property-media-grid h2,
.portal-property-card h2,
.recommendation-center h2 {
  font-weight: 800;
  letter-spacing: 0;
}

.market-brief,
.pricing-read-card,
.metric-card,
.trend-panel,
.signal-card,
.option-card,
.library-panel,
.property-card,
.question-panel,
.list-home-section,
.takeaway-band article,
.translation-card,
.pricing-lead-panel,
.property-next-step,
.property-panel,
.comp-stat-grid article,
.portal-property-card,
.recommendation-center,
.estimate-grid article,
.pricing-scenario-grid article {
  border-color: rgba(234, 221, 228, 0.92);
  box-shadow: var(--market-shadow);
}

.market-brief,
.pricing-read-card {
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.18);
}

.translation-card:nth-child(2) {
  background: linear-gradient(180deg, #ffffff, #fff7fb);
}

.metric-card {
  border-top-color: var(--market-navy);
}

.metric-card.tone-teal {
  border-top-color: var(--market-blue);
}

.metric-card.tone-pink,
.property-card,
.pricing-lead-panel {
  border-top-color: var(--market-rose);
}

.bar-column i {
  background: linear-gradient(180deg, var(--market-rose), var(--market-blue));
}

.signal-card,
.timeline div {
  border-left-color: var(--market-rose);
}

.lead-checklist span::before,
.choice-grid button.selected {
  background: var(--market-rose);
}

.choice-grid button.selected {
  border-color: var(--market-rose);
}

.property-card a,
.form-fallback {
  color: var(--market-rose);
}

.pricing-read-form input:focus,
.pricing-read-form select:focus,
.pricing-read-form textarea:focus,
.login-form input:focus {
  outline-color: rgba(214, 51, 115, 0.18);
  border-color: var(--market-rose);
}

.pricing-read-confirmation span {
  color: var(--market-rose);
  border-color: rgba(214, 51, 115, 0.22);
  background: var(--market-rose-soft);
}

.pricing-read-confirmation .confirmation-note {
  border-left-color: var(--market-rose);
  background: var(--market-rose-soft);
}

.pricing-read-confirmation .confirmation-email-note {
  border-color: rgba(214, 51, 115, 0.18);
  background: var(--market-rose-soft);
}

.confirmation-list b {
  background: var(--market-rose);
}

.footer {
  background: var(--market-navy);
}

.footer .rose-mark,
.login-brand .rose-mark {
  width: 4px;
  height: 48px;
  aspect-ratio: auto;
  overflow: hidden;
  color: transparent;
  background: linear-gradient(180deg, var(--market-rose), #f3a4c1);
  border: 0;
  border-radius: 999px;
}

.footer .brand strong,
.footer .brand em {
  color: white;
}

.login-brand {
  gap: 16px;
}

.gauge-track span {
  background: linear-gradient(90deg, var(--market-blue), var(--market-rose), #9f233c);
}

/* Closer match to ErinRoseSellsRealEstate.com typography */
.market-header .rose-mark,
.footer .rose-mark,
.login-brand .rose-mark {
  display: none;
}

.market-header .brand,
.login-brand {
  gap: 0;
  min-width: 300px;
}

.footer .brand {
  gap: 0;
}

.market-header .brand strong,
.footer .brand strong,
.login-brand strong {
  display: flex;
  gap: 0.62em;
  color: #232323;
  font-size: clamp(25px, 2.2vw, 34px);
  font-weight: 300;
  letter-spacing: 0.36em;
  line-height: 1.1;
}

.market-header .brand strong span,
.footer .brand strong span,
.login-brand strong span {
  display: inline-block;
}

.market-header .brand .brand-rose,
.login-brand .brand-rose,
.footer .brand .brand-rose {
  color: #ff4f9a;
}

.market-header .brand em,
.footer .brand em,
.login-brand em {
  margin-top: 9px;
  color: #8f929a;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.32em;
}

.market-header nav {
  gap: clamp(16px, 2.2vw, 34px);
  color: #343434;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.02em;
}

.market-header nav a {
  white-space: nowrap;
}

.market-header .login-link,
.market-header .book-link {
  min-height: 44px;
  padding: 0 20px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-copy-panel h1,
.pricing-read-hero h1,
.property-hero-copy h1,
.portal-hero h1 {
  max-width: 960px;
  font-size: clamp(42px, 5vw, 72px);
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1.08;
}

.pricing-read-hero h1 {
  max-width: 820px;
}

.market-brief strong,
.pricing-read-card strong,
.pricing-read-confirmation strong,
.recommendation-center h2 {
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1.15;
}

.market-section h2,
.trend-header h2,
.pricing-lead-panel h2,
.property-next-step h2,
.property-panel h2,
.property-media-grid h2,
.portal-property-card h2,
.property-card h3,
.question-panel h3,
.translation-card h3 {
  font-weight: 500;
  letter-spacing: 0.015em;
  line-height: 1.18;
}

.hero-copy-panel p,
.pricing-read-hero p,
.market-section .section-heading p,
.translation-card p,
.signal-card p,
.option-card p,
.library-panel p,
.property-card p,
.market-brief p,
.pricing-read-card p,
.property-hero-copy p,
.portal-hero p,
.pricing-lead-panel p {
  color: rgba(255, 255, 255, 0.76);
  font-weight: 300;
  letter-spacing: 0.01em;
}

.market-section .section-heading p,
.translation-card p,
.signal-card p,
.option-card p,
.library-panel p,
.property-card p,
.market-brief p,
.pricing-read-card p,
.pricing-lead-panel p {
  color: #777983;
}

.market-hero .eyebrow,
.pricing-read-hero .eyebrow,
.brand-kicker,
.market-section .eyebrow,
.pricing-read-card span,
.takeaway-band span,
.portal-property-card span,
.recommendation-evidence span,
.estimate-grid span,
.pricing-scenario-grid span,
.property-price-row span,
.price-stack span,
.fact-table span,
.comp-stat-grid span,
.task-list span,
.timeline span,
.pricing-read-form label,
.diagnostic-form legend,
.login-form label span {
  font-weight: 400;
  letter-spacing: 0.24em;
}

.brand-kicker {
  color: rgba(255, 255, 255, 0.68);
}

.button,
.pricing-read-form > button,
.diagnostic-actions button,
.confirmation-button,
.login-form button,
.portal-property-card a {
  font-weight: 600;
  letter-spacing: 0.08em;
}

.metric-card strong,
.takeaway-band strong,
.price-stack strong,
.fact-table strong,
.comp-stat-grid strong,
.property-price-row strong,
.recommendation-evidence strong,
.estimate-grid strong,
.pricing-scenario-grid strong {
  font-weight: 500;
  letter-spacing: 0.01em;
}

.pricing-read-form input,
.pricing-read-form select,
.pricing-read-form textarea,
.login-form input {
  color: #343434;
  font-weight: 300;
}

.diagnostic-progress button,
.choice-grid button {
  font-weight: 500;
  letter-spacing: 0.08em;
}

.footer .brand strong {
  color: white;
}

@media (max-width: 760px) {
  .market-header {
    min-height: auto;
  }

  .market-header .brand {
    min-width: 0;
  }

  .market-header .rose-mark {
    height: 40px;
  }

  .market-header .brand strong {
    font-size: 18px;
    letter-spacing: 0.2em;
  }

  .market-header .brand em {
    font-size: 9px;
    letter-spacing: 0.16em;
  }

  .market-header nav {
    font-size: 11px;
    font-weight: 700;
  }
}

@media (max-width: 900px) {
  .market-hero {
    min-height: auto;
  }

  .market-brief {
    min-height: 260px;
  }

  .takeaway-band {
    grid-template-columns: 1fr;
    margin-top: 0;
    padding: 0 16px;
  }

  .takeaway-band article,
  .takeaway-band article:first-child,
  .takeaway-band article:last-child {
    border-radius: 8px;
  }

  .property-hero,
  .property-next-step,
  .property-dashboard-grid,
  .property-card-grid,
  .source-summary-bar,
  .source-stat-grid,
  .source-queue-panel,
  .source-queue-grid,
  .source-cadence-grid,
  .fact-table,
  .property-media-grid,
  .comp-stat-grid,
  .portal-property-card,
  .recommendation-center,
  .estimate-grid,
  .pricing-scenario-grid,
  .translation-grid,
  .pricing-lead-panel,
  .pricing-read-hero,
  .form-row {
    grid-template-columns: 1fr;
  }

  .property-next-step {
    margin-top: 0;
    border-radius: 0;
  }

  .radcliff-hero {
    min-height: auto;
    padding: 46px 20px 74px;
  }

  .radcliff-hero-panel {
    align-self: auto;
  }

  .radcliff-brief-strip,
  .radcliff-thesis-grid,
  .radcliff-photo-strip,
  .radcliff-market-stat-grid,
  .radcliff-call-steps {
    grid-template-columns: 1fr;
  }

  .radcliff-review-nav {
    position: static;
    justify-content: flex-start;
    margin-top: 14px;
    overflow-x: auto;
    flex-wrap: nowrap;
  }

  .radcliff-review-nav a {
    flex: 0 0 auto;
  }

  .radcliff-brief-strip {
    margin-top: -38px;
  }

  .radcliff-brief-strip div,
  .radcliff-brief-strip div:first-child,
  .radcliff-brief-strip div:last-child {
    min-height: 96px;
    border-radius: 8px;
  }

  .radcliff-thesis-grid article {
    min-height: auto;
  }

  .guided-question-list article {
    grid-template-columns: 42px minmax(0, 1fr);
    padding: 16px;
  }

  .guided-question-list b {
    width: 42px;
  }

  .radcliff-marketing-read {
    grid-template-columns: 1fr;
  }

  .norwood-translation-grid,
  .norwood-verdict-grid,
  .norwood-list.two-column {
    grid-template-columns: 1fr;
  }

  .norwood-hero-actions a {
    width: 100%;
  }

  .norwood-translation-grid article,
  .norwood-verdict-grid article {
    min-height: auto;
  }

  .task-list div {
    grid-template-columns: 1fr;
  }
}
