@charset "UTF-8";
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: #111111;
  background: #F7F7F3;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

*:focus {
  outline: 3px solid #ffd800;
  outline-offset: 3px;
}

::selection {
  background: #1646D8;
  color: white;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.animate-fade-in {
  opacity: 0;
  animation: fadeIn 800ms cubic-bezier(0.23, 1, 0.32, 1) 0ms forwards;
}

.animate-fade-up {
  opacity: 0;
  transform: translateY(40px);
  animation: fadeUp 800ms cubic-bezier(0.23, 1, 0.32, 1) 0ms forwards;
}

.animate-fade-up-delay-1 {
  opacity: 0;
  transform: translateY(40px);
  animation: fadeUp 800ms cubic-bezier(0.23, 1, 0.32, 1) 100ms forwards;
}

.animate-fade-up-delay-2 {
  opacity: 0;
  transform: translateY(40px);
  animation: fadeUp 800ms cubic-bezier(0.23, 1, 0.32, 1) 200ms forwards;
}

.animate-fade-up-delay-3 {
  opacity: 0;
  transform: translateY(40px);
  animation: fadeUp 800ms cubic-bezier(0.23, 1, 0.32, 1) 300ms forwards;
}

.animate-fade-up-delay-4 {
  opacity: 0;
  transform: translateY(40px);
  animation: fadeUp 800ms cubic-bezier(0.23, 1, 0.32, 1) 400ms forwards;
}

.animate-stagger > *:nth-child(1) {
  animation-delay: 100ms;
}
.animate-stagger > *:nth-child(2) {
  animation-delay: 200ms;
}
.animate-stagger > *:nth-child(3) {
  animation-delay: 300ms;
}
.animate-stagger > *:nth-child(4) {
  animation-delay: 400ms;
}
.animate-stagger > *:nth-child(5) {
  animation-delay: 500ms;
}
.animate-stagger > *:nth-child(6) {
  animation-delay: 600ms;
}
.animate-stagger > *:nth-child(7) {
  animation-delay: 700ms;
}
.animate-stagger > *:nth-child(8) {
  animation-delay: 800ms;
}
.animate-stagger > *:nth-child(9) {
  animation-delay: 900ms;
}
.animate-stagger > *:nth-child(10) {
  animation-delay: 1000ms;
}
.animate-stagger > *:nth-child(11) {
  animation-delay: 1100ms;
}
.animate-stagger > *:nth-child(12) {
  animation-delay: 1200ms;
}
.animate-stagger > *:nth-child(13) {
  animation-delay: 1300ms;
}
.animate-stagger > *:nth-child(14) {
  animation-delay: 1400ms;
}
.animate-stagger > *:nth-child(15) {
  animation-delay: 1500ms;
}
.animate-stagger > *:nth-child(16) {
  animation-delay: 1600ms;
}
.animate-stagger > *:nth-child(17) {
  animation-delay: 1700ms;
}
.animate-stagger > *:nth-child(18) {
  animation-delay: 1800ms;
}
.animate-stagger > *:nth-child(19) {
  animation-delay: 1900ms;
}
.animate-stagger > *:nth-child(20) {
  animation-delay: 2000ms;
}

.animate-fade-in,
.animate-fade-up,
.animate-fade-up-delay-1,
.animate-fade-up-delay-2,
.animate-fade-up-delay-3,
.animate-fade-up-delay-4 {
  will-change: transform, opacity;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}
.section-header__title {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin: 0 0 16px 0;
  color: #111111;
}
.section-header__subtitle {
  font-size: 20px;
  color: #555555;
  margin: 0;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}
@media (max-width: 768px) {
  .section-header__subtitle {
    font-size: 18px;
  }
}

.footer {
  background: #111111;
  color: white;
  padding: 80px 0 32px 0;
}
.footer__container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}
.footer__main {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  margin-bottom: 64px;
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
@media (max-width: 768px) {
  .footer__main {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}
.footer__brand {
  max-width: 320px;
}
.footer__logo {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}
.footer__logo svg {
  width: 22px;
  height: 22px;
  color: white;
}
.footer__brand-text {
  font-size: 20px;
  font-weight: 700;
  color: white;
  letter-spacing: -0.02em;
}
.footer__tagline {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  margin: 0 0 24px 0;
}
.footer__social {
  display: flex;
  gap: 16px;
}
.footer__social-link {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: saturate(180%) blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 0;
  color: white;
  text-decoration: none;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.footer__social-link svg {
  width: 18px;
  height: 18px;
}
.footer__social-link:hover {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: saturate(180%) blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.footer__social-link:focus {
  outline: 3px solid #ffd800;
  outline-offset: 3px;
}
.footer__nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}
@media (max-width: 768px) {
  .footer__nav {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}
.footer__column-title {
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 16px 0;
  color: white;
}
.footer__links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer__link {
  display: block;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  padding: 4px 0;
  font-size: 15px;
  transition: color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.footer__link:hover {
  color: white;
}
.footer__link:focus {
  outline: 3px solid #ffd800;
  outline-offset: 3px;
}
.footer__link--disabled {
  position: relative;
  color: rgba(255, 255, 255, 0.4);
  cursor: not-allowed;
}
.footer__link--disabled:hover {
  color: rgba(255, 255, 255, 0.4);
  cursor: not-allowed;
}
.footer__coming-soon {
  position: absolute;
  top: 1px;
  left: 120px;
  background: rgba(255, 193, 7, 0.2);
  color: #ffc107;
  font-size: 8px;
  font-weight: 600;
  padding: 1px 4px;
  border-radius: 0;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  border: 1px solid rgba(255, 193, 7, 0.3);
  white-space: nowrap;
}
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}
@media (max-width: 768px) {
  .footer__bottom {
    flex-direction: column;
    text-align: center;
  }
}
.footer__bottom-left {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
@media (max-width: 768px) {
  .footer__bottom-left {
    align-items: center;
  }
}
.footer__copyright {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}
.footer__attribution {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
}
.footer__attribution a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.footer__attribution a:hover {
  color: white;
}
.footer__attribution a:focus {
  outline: 3px solid #ffd800;
  outline-offset: 3px;
}
.footer__badges {
  display: flex;
  gap: 16px;
}
.footer__badge {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 16px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 0;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.footer__badge::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.05) 50%, transparent 70%);
  border-radius: 0;
  opacity: 0;
  transition: opacity 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.footer__badge:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.25);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.footer__badge:hover::before {
  opacity: 1;
}
.footer__badge svg {
  width: 14px;
  height: 14px;
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 11px 18px;
  border: 1px solid #111;
  border-radius: 0;
  background: #fff;
  color: #111;
  font-family: inherit;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  transition: background-color 120ms ease, color 120ms ease, transform 120ms ease;
}
.btn:hover {
  background: #f0f0eb;
}
.btn:focus-visible {
  outline: 3px solid #ffd800;
  outline-offset: 3px;
}
.btn:active {
  transform: translateY(1px);
}
.btn__icon {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}
.btn--primary {
  background: #111;
  color: #fff;
}
.btn--primary:hover {
  background: #1646d8;
}
.btn--secondary, .btn--google {
  background: #fff;
  color: #111;
}
.btn--google {
  width: 100%;
}
.btn--danger {
  border-color: #a52222;
  background: #fff;
  color: #a52222;
}
.btn--danger:hover {
  background: #a52222;
  color: #fff;
}
.btn--sm {
  min-height: 34px;
  padding: 7px 12px;
  font-size: 13px;
}

.navbar {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  width: 100%;
  border-bottom: 1px solid #111;
  background: #f7f7f3;
}
.navbar__container {
  width: min(100% - 48px, 1380px);
  min-height: 72px;
  margin: 0 auto;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.navbar__brand {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #111;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.04em;
  text-decoration: none;
}
.navbar__logo {
  width: 21px;
  height: 21px;
  flex: 0 0 auto;
  color: currentColor;
}
.navbar__text {
  white-space: nowrap;
}
.navbar__right, .navbar__landing-right, .navbar__menu, .navbar__actions, .navbar__store-links, .navbar__account-links {
  display: flex;
  align-items: center;
}
.navbar__right, .navbar__landing-right {
  gap: 28px;
}
.navbar__menu, .navbar__store-links {
  gap: 22px;
}
.navbar__actions, .navbar__account-links {
  gap: 8px;
}
.navbar__account-links {
  padding-left: 24px;
  border-left: 1px solid #b8b8b3;
}
.navbar__link, .navbar__store-link, .navbar__account-link {
  color: #111;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  border-bottom: 1px solid transparent;
}
.navbar__link, .navbar__store-link, .navbar__account-link:not(.navbar__account-button) {
  padding: 5px 0;
}
.navbar__link:hover, .navbar__store-link:hover, .navbar__account-link:hover {
  border-bottom-color: currentColor;
}
.navbar__link:focus-visible, .navbar__store-link:focus-visible, .navbar__account-link:focus-visible, .navbar__brand:focus-visible {
  outline: 3px solid #ffd800;
  outline-offset: 4px;
}
.navbar__greeting {
  color: #555;
  font-size: 14px;
}
.navbar__logout-form {
  margin: 0;
  display: inline-flex;
}
.navbar__account-button {
  margin: 0;
  padding: 5px 0;
  border: 0;
  border-bottom: 1px solid transparent;
  border-radius: 0;
  background: transparent;
  cursor: pointer;
  font-family: inherit;
}
.navbar .btn {
  min-width: auto;
  border: 1px solid #111;
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
}
.navbar .btn--primary {
  background: #111;
  color: #fff;
}
.navbar .btn--secondary {
  background: transparent;
  color: #111;
}

@media (max-width: 900px) {
  .navbar__menu {
    display: none;
  }
}
@media (max-width: 720px) {
  .navbar__container {
    width: min(100% - 32px, 1380px);
    min-height: 62px;
  }
  .navbar__brand {
    font-size: 18px;
  }
  .navbar__landing-right {
    gap: 14px;
  }
  .navbar__store-links {
    display: none;
  }
  .navbar__account-links {
    padding-left: 0;
    border-left: 0;
  }
  .navbar__greeting,
  .navbar__actions .btn--secondary {
    display: none;
  }
}
.feature-box {
  height: 100%;
  padding: 24px 32px;
  border-radius: 0;
  background: white;
  border: 1px solid #e5e7eb;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}
.feature-box:hover {
  border-color: #d1d5db;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}
.feature-box__icon {
  width: 40px;
  height: 40px;
  padding: 8px;
  background: #f3f4f6;
  border-radius: 0;
  color: #111111;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.feature-box__icon svg {
  width: 20px;
  height: 20px;
}
.feature-box__title {
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 8px 0;
  color: #111111;
  line-height: 1.3;
}
.feature-box__description {
  font-size: 14px;
  line-height: 1.5;
  color: #555555;
  margin: 0;
}

.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 48px;
  max-width: 800px;
  margin: 0 auto;
}
.stats__item {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: saturate(180%) blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 32px;
  border-radius: 0;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.04), 0 1px 2px -1px rgba(0, 0, 0, 0.04);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.stats__item:hover {
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: saturate(180%) blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -4px rgba(0, 0, 0, 0.08);
}
@media (max-width: 768px) {
  .stats__item {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
.stats__icon {
  width: 32px;
  height: 32px;
  color: #1646D8;
}
.stats__number {
  font-size: 32px;
  font-weight: 700;
  color: #111111;
  letter-spacing: -0.02em;
  line-height: 1;
}
.stats__label {
  font-size: 15px;
  font-weight: 500;
  color: #555555;
}

.flash {
  position: fixed;
  top: 120px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1100;
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: min(420px, 100% - 40px);
}

.flash__message {
  padding: 8px 16px;
  border-radius: 0;
  font-weight: 500;
  font-size: 14px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.06), 0 2px 4px -2px rgba(0, 0, 0, 0.06);
  background: rgba(17, 24, 39, 0.85);
  color: white;
  text-align: center;
}
.flash__message--notice {
  background: rgba(16, 185, 129, 0.9);
}
.flash__message--success {
  background: rgba(34, 197, 94, 0.9);
}
.flash__message--alert, .flash__message--error {
  background: rgba(239, 68, 68, 0.9);
}

.main-info, .main-info:hover {
  backdrop-filter: none !important;
  transform: none !important;
  transition: none !important;
  border-radius: 0 !important;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1) !important;
  background: white !important;
  border: 1px solid #e6e6e6 !important;
}
.main-info {
  font-family: "Source Sans 3", Helvetica, Arial, sans-serif !important;
  line-height: 1.6 !important;
  -webkit-font-smoothing: antialiased !important;
  -webkit-text-size-adjust: 100% !important;
  color: #1a1f2c !important;
  font-size: 1em !important;
  display: block !important;
  width: 392px !important;
  max-width: 392px !important;
  min-width: 392px !important;
  border: 1px solid #e6e6e6 !important;
  padding: 16px 16px 8px !important;
  border-radius: 0 !important;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1) !important;
  margin-block-start: 1em !important;
  margin-block-end: 1em !important;
}
.main-info ul {
  margin: 0 !important;
  padding: 0 !important;
}
.main-info a.incognito,
.main-info a.incognito:visited {
  color: #1a1f2c !important;
  text-decoration: none !important;
}
.main-info a:not(.realest-score) {
  line-height: 1.6 !important;
  font-size: 1em !important;
  list-style: none !important;
  color: #1876db !important;
  text-decoration: none !important;
}

.main-info a:not(.realest-score) {
  line-height: 1.6;
  font-size: 1em;
  list-style: none;
  color: #1876db;
  text-decoration: none;
}

.main-info .building-title {
  border: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  color: #000 !important;
  font-size: 30px !important;
  font-weight: 300 !important;
  line-height: 30px !important;
  margin-bottom: 8px !important;
  margin-top: 0 !important;
  text-transform: none !important;
}

.incognito {
  font-size: 30px;
  font-weight: 300;
  line-height: 30px;
  text-transform: none;
  text-decoration: none;
  color: #1a1f2c;
}

.main-info .details {
  line-height: 1.6 !important;
  color: #1a1f2c !important;
  font-size: 1em !important;
}

.main-info .details_info_price {
  line-height: 1.6 !important;
  color: #1a1f2c !important;
  font-size: 1em !important;
  display: flex !important;
  flex-wrap: wrap !important;
  margin-bottom: 8px !important;
}

.main-info .price {
  line-height: 1.6 !important;
  color: #1a1f2c !important;
  margin-top: 3px !important;
  font-size: 27px !important;
  font-weight: bold !important;
  white-space: nowrap !important;
}

.main-info .secondary_text {
  line-height: 1.6 !important;
  font-weight: bold !important;
  white-space: nowrap !important;
  color: #62646a !important;
  font-size: 12px !important;
  text-transform: uppercase !important;
}

.main-info .price .secondary_text {
  color: #62646a !important;
}

.main-info .details_info {
  line-height: 1.6 !important;
  color: #1a1f2c !important;
  font-size: 1em !important;
  border-top: 1px solid #e6e6e6 !important;
  margin-bottom: 3px !important;
  margin-top: 3px !important;
  padding: 3px !important;
}

.main-info .detail_cell {
  line-height: 1.6 !important;
  color: #1a1f2c !important;
  font-size: 1em !important;
  list-style: none !important;
  border: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  border-right: 1px solid #e6e6e6 !important;
  display: inline-block !important;
  padding-left: 10px !important;
  padding-right: 10px !important;
}

.main-info .first_detail_cell {
  padding-left: 0 !important;
}

.main-info .last_detail_cell {
  border-right: 0 !important;
}

.main-info .horizontal_list {
  color: #1a1f2c !important;
  font-size: 1em !important;
  list-style: none !important;
  border: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  display: inline-block !important;
}

.main-info .nobreak {
  line-height: 1.6 !important;
  color: #1a1f2c !important;
  font-size: 1em !important;
  list-style: none !important;
  white-space: nowrap !important;
}

.realest-score {
  display: inline-flex !important;
  align-items: center !important;
  gap: 4px !important;
  width: max-content !important;
  margin: 0px 0px 8px !important;
  font-family: Helvetica, Arial, sans-serif !important;
  font-size: 14px !important;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1) !important;
  border: 1px solid rgb(8, 8, 8) !important;
  border-radius: 0 !important;
  overflow: hidden !important;
  text-decoration: none !important;
}
.realest-score .label {
  padding: 4px 8px 2px !important;
  background-color: rgb(8, 8, 8) !important;
  color: rgb(255, 255, 255) !important;
  font-weight: bold !important;
  letter-spacing: -0.5px !important;
}
.realest-score .score {
  padding: 4px 8px 2px !important;
  font-weight: bold !important;
  color: #27a131 !important;
}

.main-info .realest-score {
  display: inline-flex !important;
  align-items: center !important;
  gap: 4px !important;
  width: max-content !important;
  margin: 0px 0px 8px !important;
  font-family: Helvetica, Arial, sans-serif !important;
  font-size: 14px !important;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1) !important;
  border: 1px solid rgb(8, 8, 8) !important;
  border-radius: 0 !important;
  overflow: hidden !important;
  text-decoration: none !important;
}
.main-info .realest-score .label {
  padding: 4px 8px 2px !important;
  background-color: rgb(8, 8, 8) !important;
  color: rgb(255, 255, 255) !important;
  font-weight: bold !important;
  letter-spacing: -0.5px !important;
}
.main-info .realest-score .score {
  padding: 4px 8px 2px !important;
  font-weight: bold !important;
  color: #27a131 !important;
}

.hero__visual .main-info,
.hero__container .main-info,
.hero .main-info {
  position: static !important;
  z-index: auto !important;
  all: initial !important;
  box-sizing: border-box !important;
  font-family: "Source Sans 3", Helvetica, Arial, sans-serif !important;
  line-height: 1.6 !important;
  -webkit-font-smoothing: antialiased !important;
  -webkit-text-size-adjust: 100% !important;
  color: #1a1f2c !important;
  font-size: 1em !important;
  display: block !important;
  width: 392px !important;
  border: 1px solid #e6e6e6 !important;
  padding: 16px 16px 8px !important;
  border-radius: 0 !important;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1) !important;
  margin-block-start: 1em !important;
  margin-block-end: 1em !important;
  background: white !important;
}
@media (max-width: 768px) {
  .hero__visual .main-info,
  .hero__container .main-info,
  .hero .main-info {
    width: 100% !important;
  }
}
.hero__visual .main-info:hover,
.hero__container .main-info:hover,
.hero .main-info:hover {
  transform: none !important;
  backdrop-filter: none !important;
  background: white !important;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1) !important;
  border: 1px solid #e6e6e6 !important;
}
.hero__visual .main-info ul,
.hero__container .main-info ul,
.hero .main-info ul {
  margin: 0 !important;
  padding: 0 !important;
  display: block !important;
}
.hero__visual .main-info a.incognito,
.hero__visual .main-info a.incognito:visited,
.hero__container .main-info a.incognito,
.hero__container .main-info a.incognito:visited,
.hero .main-info a.incognito,
.hero .main-info a.incognito:visited {
  color: #1a1f2c !important;
  text-decoration: none !important;
}
.hero__visual .main-info a:not(.realest-score),
.hero__container .main-info a:not(.realest-score),
.hero .main-info a:not(.realest-score) {
  line-height: 1.6 !important;
  font-size: 1em !important;
  list-style: none !important;
  text-decoration: none !important;
}

.home-page {
  background: #f7f7f3;
  color: #111;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.home-page .navbar--landing {
  position: absolute;
}

.navbar__store-link:focus-visible,
.landing a:focus-visible {
  outline: 3px solid #ffd800;
  outline-offset: 4px;
}

.landing {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding-top: 72px;
}

.landing__hero {
  width: min(100% - 48px, 1380px);
  margin: auto;
  padding: clamp(56px, 7vw, 106px) 0 clamp(42px, 6vw, 78px);
  display: grid;
  grid-template-columns: minmax(310px, 0.78fr) minmax(570px, 1.22fr);
  align-items: center;
  gap: clamp(48px, 7vw, 112px);
}

.landing__copy {
  max-width: 520px;
}

.landing__introduction {
  max-width: 360px;
  margin: 0 0 24px;
  padding-left: 14px;
  border-left: 4px solid #ffd800;
  color: #343434;
  font-size: 15px;
  line-height: 1.45;
}

.landing__title {
  margin: 0;
  color: #090909;
  font-family: "Arial Black", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: clamp(54px, 6.2vw, 96px);
  font-weight: 900;
  letter-spacing: -0.07em;
  line-height: 0.88;
}

.landing__title span {
  display: inline-block;
  margin-top: 10px;
  color: #1646d8;
}

.landing__summary {
  max-width: 500px;
  margin: 34px 0 0;
  color: #272727;
  font-size: clamp(18px, 1.7vw, 23px);
  line-height: 1.45;
  letter-spacing: -0.015em;
}

.landing__downloads {
  display: flex;
  align-items: stretch;
  gap: 12px;
  margin-top: 32px;
}

.landing__download {
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  padding: 14px 18px;
  border: 2px solid #111;
  border-radius: 0;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  transition: transform 120ms ease, box-shadow 120ms ease;
}

.landing__download:hover {
  transform: translate(-2px, -2px);
}

.landing__download--primary {
  flex: 1 1 auto;
  background: #111;
  color: #fff;
  box-shadow: 6px 6px 0 #ffd800;
}

.landing__download--primary:hover {
  box-shadow: 8px 8px 0 #ffd800;
}

.landing__download--secondary {
  flex: 0 0 auto;
  background: transparent;
  color: #111;
}

.landing__download--secondary:hover {
  background: #fff;
  box-shadow: 4px 4px 0 #111;
}

.landing__download-icon {
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
}

.landing__download-arrow {
  width: 20px;
  height: 20px;
  margin-left: auto;
}

.landing__fine-print {
  margin: 20px 0 0;
  color: #656565;
  font-size: 13px;
  line-height: 1.5;
}

.product-demo {
  min-width: 0;
  margin: 0;
}

.product-demo__caption {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 10px;
  color: #444;
  font-size: 13px;
}

.product-demo__caption span:last-child {
  color: #1646d8;
  font-weight: 700;
}

.product-demo__window {
  border: 2px solid #111;
  background: #fff;
  box-shadow: 14px 14px 0 #ffd800;
}

.product-demo__tabs {
  min-height: 40px;
  display: flex;
  align-items: flex-end;
  gap: 5px;
  padding: 7px 10px 0;
  background: #ddddda;
}

.product-demo__tab {
  width: min(310px, 70%);
  min-height: 33px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 0 12px;
  border: 1px solid #aaa;
  border-bottom-color: #fff;
  border-radius: 5px 5px 0 0;
  background: #fff;
  color: #333;
  font-size: 12px;
}

.product-demo__tab-close,
.product-demo__new-tab {
  color: #666;
  font-size: 18px;
  line-height: 1;
}

.product-demo__new-tab {
  align-self: center;
  margin: 0 0 2px 8px;
}

.product-demo__address-bar {
  min-height: 42px;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 0 15px;
  border-bottom: 1px solid #111;
  background: #fff;
  color: #6c6c6c;
  font-size: 12px;
}

.product-demo__address-bar svg {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
}

.product-demo__page {
  min-height: 470px;
  overflow: hidden;
  background: #fff;
  font-family: "Source Sans 3", Arial, sans-serif;
}

.product-demo__street-masthead {
  min-height: 44px;
  display: flex;
  align-items: center;
  padding: 0 22px;
  background: #0b236d;
  color: #fff;
}

.product-demo__street-brand {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.035em;
}

.product-demo__street-brand svg {
  width: 21px;
  height: 24px;
}

.product-demo__street-nav {
  min-height: 38px;
  display: flex;
  align-items: center;
  gap: clamp(20px, 4vw, 38px);
  padding: 0 22px;
  border-bottom: 1px solid #dedede;
  color: #222;
  font-size: 12px;
  font-weight: 700;
}

.product-demo__breadcrumbs {
  min-height: 38px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 22px;
  border-bottom: 1px solid #e4e4e4;
  color: #303030;
  font-size: 12px;
}

.product-demo__breadcrumbs svg {
  width: 10px;
  height: 10px;
  color: #1646d8;
}

.product-demo__listing {
  display: grid;
  grid-template-columns: minmax(330px, 1.28fr) minmax(220px, 0.92fr);
  gap: 22px;
  padding: 18px 22px 22px;
}

.street-home-info {
  min-width: 0;
  align-self: start;
  container-type: inline-size;
  color: #1a1f2c;
  font-family: "Source Sans 3", "Source Sans Pro", Helvetica, Arial, sans-serif;
  font-size: 14px;
  line-height: 20px;
}

.street-home-info__address-link {
  color: #1a1f2c;
  text-decoration: none;
}

.street-home-info__address-link:hover {
  color: #1a1f2c;
  text-decoration: none;
}

.street-home-info__address {
  margin: 0;
  color: #1a1f2c;
  font-family: "Source Sans 3", "Source Sans Pro", Helvetica, Arial, sans-serif;
  font-size: clamp(25px, 9.6cqw, 40px);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.25;
}

.street-home-info__price {
  display: flex;
  align-items: baseline;
  gap: clamp(5px, 1.9cqw, 8px);
  margin-top: clamp(5px, 1.9cqw, 8px);
  color: #1a1f2c;
  font-size: clamp(16px, 5.75cqw, 24px);
  font-weight: 700;
  line-height: 1.33;
}

.street-home-info__market {
  color: #62646a;
  font-size: clamp(11px, 3.84cqw, 16px);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.375;
  text-transform: none;
}

.street-home-info__rent-note {
  margin: clamp(3px, 0.96cqw, 4px) 0 0;
  color: #62646a;
  font-size: clamp(11px, 3.36cqw, 14px);
  line-height: 1.43;
}

.street-home-info__rent-note span {
  color: #0041d9;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.product-demo__score {
  position: relative;
  width: max-content;
}

.street-home-info .realest-score {
  gap: 0 !important;
  margin: 8px 0 !important;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1) !important;
}

.street-home-info .realest-score .label,
.street-home-info .realest-score .score {
  padding: 4px 8px 3px !important;
}

.product-demo__cursor {
  position: absolute;
  z-index: 1;
  top: 30px;
  left: 100px;
  width: 25px;
  height: 27px;
  pointer-events: none;
  filter: drop-shadow(1px 2px 1px rgba(0, 0, 0, 0.22));
  animation: product-demo-cursor-hover 1.8s ease-in-out infinite alternate;
}

@keyframes product-demo-cursor-hover {
  to {
    transform: translateY(-2px);
  }
}
@media (prefers-reduced-motion: reduce) {
  .product-demo__cursor {
    animation: none;
  }
}
.street-home-info__facts {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-top: clamp(10px, 3.84cqw, 16px);
  padding: clamp(5px, 1.9cqw, 8px) 0;
  white-space: nowrap;
}

.street-home-info__fact {
  display: flex;
  align-items: center;
  color: #1a1f2c;
  font-size: clamp(10px, 3.36cqw, 14px);
  line-height: 20px;
}

.street-home-info__fact i {
  width: 1px;
  height: clamp(13px, 4.8cqw, 20px);
  margin: 0 clamp(5px, 1.9cqw, 8px);
  border-right: 1px solid #e6e6e6;
}

.street-home-info__fact:last-child i {
  display: none;
}

.street-home-info__summary {
  display: flex;
  flex-wrap: wrap;
  margin: clamp(10px, 3.84cqw, 16px) 0 0;
  padding: 0;
  color: #62646a;
  font-size: clamp(9px, 2.88cqw, 12px);
  line-height: 16px;
  list-style: none;
}

.street-home-info__summary li {
  display: flex;
  align-items: center;
  white-space: nowrap;
}

.street-home-info__summary li::after {
  display: block;
  margin: 0 clamp(5px, 1.9cqw, 8px);
  color: #e6e6e6;
  content: "•";
  font-size: clamp(10px, 3.36cqw, 14px);
  line-height: 22px;
}

.street-home-info__summary li:last-child::after {
  display: none;
}

.street-home-info__summary a {
  padding: 2px;
  color: #62646a;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.product-demo__photo {
  position: relative;
  min-height: 0;
  aspect-ratio: 3/2;
  overflow: hidden;
  border: 1px solid #bbb8ae;
  background: #eee9de;
}

.product-demo__photo-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.product-demo__photo-count {
  position: absolute;
  right: 10px;
  bottom: 10px;
  padding: 4px 7px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  background: rgba(8, 27, 84, 0.88);
  color: #fff;
  font-size: 11px;
  line-height: 1;
}

.product-demo__note {
  max-width: 540px;
  margin: 22px 0 0;
  padding-top: 12px;
  border-top: 1px solid #111;
  color: #333;
  font-size: 14px;
  line-height: 1.45;
}

.landing__footer {
  width: min(100% - 48px, 1380px);
  margin: 0 auto;
  padding: 22px 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid #111;
  color: #5e5e5e;
  font-size: 12px;
}

.landing__footer p {
  margin: 0;
}

.landing__footer nav {
  display: flex;
  gap: 20px;
}

.landing__footer a {
  color: inherit;
  text-decoration-color: #aaa;
  text-underline-offset: 3px;
}

.landing__footer a:hover {
  color: #111;
  text-decoration-color: #111;
}

@media (max-width: 1050px) {
  .landing__hero {
    grid-template-columns: 1fr;
  }
  .landing__copy {
    max-width: 720px;
  }
  .landing__summary {
    max-width: 620px;
  }
}
@media (max-width: 720px) {
  .home-page .navbar--landing .navbar__container,
  .landing__hero,
  .landing__footer {
    width: min(100% - 32px, 1380px);
  }
  .landing {
    padding-top: 62px;
  }
  .landing__hero {
    padding-top: 44px;
    gap: 54px;
  }
  .landing__title {
    font-size: clamp(48px, 16vw, 72px);
  }
  .landing__downloads {
    flex-direction: column;
  }
  .landing__download {
    width: 100%;
  }
  .product-demo__caption {
    align-items: flex-end;
  }
  .product-demo__page {
    min-height: 0;
  }
  .product-demo__street-nav {
    gap: 20px;
    overflow: hidden;
  }
  .product-demo__listing {
    grid-template-columns: 1fr;
    padding: 16px;
  }
  .product-demo__photo {
    min-height: 220px;
  }
  .product-demo__tab {
    width: 86%;
  }
  .product-demo__note {
    margin-top: 20px;
  }
  .landing__footer {
    align-items: flex-start;
    flex-direction: column;
  }
}
@media (max-width: 430px) {
  .landing__footer nav {
    flex-wrap: wrap;
    gap: 12px 18px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .landing__download {
    transition: none;
  }
}
.auth {
  min-height: 100vh;
  padding-top: 72px;
  background: #f7f7f3;
  color: #111;
}
.auth__split {
  width: min(100%, 1380px);
  min-height: calc(100vh - 72px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(360px, 0.9fr) minmax(440px, 1.1fr);
  border-right: 1px solid #111;
  border-left: 1px solid #111;
}
.auth__welcome, .auth__form-side {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(48px, 7vw, 96px);
}
.auth__welcome {
  border-right: 1px solid #111;
  background: #f0f0eb;
}
.auth__welcome-content {
  width: 100%;
  max-width: 520px;
}
.auth__welcome-content h1 {
  margin: 0;
  color: #111;
  font-size: clamp(44px, 5vw, 72px);
  font-weight: 900;
  letter-spacing: -0.055em;
  line-height: 0.95;
}
.auth__welcome-content > p {
  max-width: 420px;
  margin: 24px 0 44px;
  color: #444;
  font-size: 18px;
  line-height: 1.5;
}
.auth__benefits {
  margin: 0;
  padding: 0;
  border-top: 1px solid #111;
  list-style: none;
}
.auth__benefits li {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 14px;
  padding: 18px 0;
  border-bottom: 1px solid #b8b8b3;
}
.auth__benefits strong {
  display: block;
  margin-bottom: 2px;
  color: #111;
  font-size: 15px;
  font-weight: 700;
}
.auth__benefits p {
  margin: 0;
  color: #555;
  font-size: 14px;
  line-height: 1.45;
}
.auth__benefit-icon {
  width: 22px;
  height: 22px;
  color: #1646d8;
}
.auth__form-side {
  background: #fff;
}
.auth__form-container {
  width: 100%;
  max-width: 440px;
}
.auth__form-container h2 {
  margin: 0 0 30px;
  color: #111;
  font-size: 38px;
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1;
}
.auth__form {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin: 0 0 24px;
}
.auth__field, .auth__field-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.auth__field-group {
  gap: 18px;
}
.auth__field label {
  color: #111;
  font-size: 13px;
  font-weight: 700;
}
.auth__input {
  width: 100%;
  min-height: 46px;
  padding: 11px 12px;
  border: 1px solid #111;
  border-radius: 0;
  background: #fff;
  color: #111;
  font-family: inherit;
  font-size: 15px;
}
.auth__input::placeholder {
  color: #777;
}
.auth__input:focus {
  border-color: #111;
  outline: 3px solid #ffd800;
  outline-offset: 2px;
  box-shadow: none;
}
.auth__hint {
  margin: 0;
  color: #656565;
  font-size: 12px;
}
.auth__errors {
  margin-bottom: 18px;
  padding: 14px;
  border: 1px solid #a52222;
  border-radius: 0;
  background: #fff4f2;
  color: #7b1717;
}
.auth__errors h2 {
  margin: 0 0 6px;
  color: inherit;
  font-size: 14px;
  font-weight: 800;
}
.auth__errors ul {
  margin: 0;
  padding-left: 18px;
}
.auth__options {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: #555;
  font-size: 13px;
}
.auth__checkbox {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}
.auth__checkbox input[type=checkbox] {
  width: 16px;
  height: 16px;
  accent-color: #1646d8;
}
.auth__options a, .auth__switch a {
  color: #1646d8;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.auth__actions {
  margin-top: 4px;
}
.auth__actions .btn {
  width: 100%;
}
.auth__divider {
  position: relative;
  margin: 22px 0;
  color: #656565;
  font-size: 12px;
  text-align: center;
  text-transform: lowercase;
}
.auth__divider::before {
  position: absolute;
  inset: 50% 0 auto;
  height: 1px;
  background: #c8c8c3;
  content: "";
}
.auth__divider span {
  position: relative;
  z-index: 1;
  padding: 0 12px;
  background: #fff;
}
.auth__oauth {
  margin-bottom: 24px;
}
.auth__switch {
  color: #555;
  font-size: 14px;
  text-align: center;
}
.auth__switch a {
  margin-left: 4px;
}
.auth__danger {
  margin-top: 24px;
  padding: 18px;
  border: 1px solid #a52222;
  background: #fff4f2;
}
.auth__danger h3 {
  margin: 0 0 6px;
  color: #7b1717;
  font-size: 15px;
}
.auth__danger p {
  margin: 0 0 14px;
  color: #7b1717;
  font-size: 13px;
}
.auth--centered {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-right: 20px;
  padding-bottom: 64px;
  padding-left: 20px;
}
.auth__simple-card {
  width: 100%;
  max-width: 500px;
  padding: 42px;
  border: 1px solid #111;
  background: #fff;
}
.auth__simple-card h1 {
  margin: 0 0 10px;
  color: #111;
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
}
.auth__simple-card > p {
  margin: 0 0 30px;
  color: #555;
  font-size: 15px;
  line-height: 1.5;
}

@media (max-width: 800px) {
  .auth {
    padding-top: 62px;
  }
  .auth__split {
    min-height: calc(100vh - 62px);
    grid-template-columns: 1fr;
    border: 0;
  }
  .auth__welcome {
    padding: 52px 24px;
    border-right: 0;
    border-bottom: 1px solid #111;
  }
  .auth__welcome-content h1 {
    font-size: clamp(42px, 13vw, 62px);
  }
  .auth__form-side {
    padding: 48px 24px 72px;
  }
  .auth--centered {
    padding-right: 16px;
    padding-left: 16px;
  }
  .auth__simple-card {
    padding: 30px 24px;
  }
}
.account-settings {
  min-height: 100vh;
  padding: 132px 24px 72px;
  background: #f7f7f3;
  color: #111;
}
.account-settings__container {
  width: min(100%, 860px);
  margin: 0 auto;
}
.account-settings h1 {
  margin: 0 0 34px;
  color: #111;
  font-size: clamp(42px, 5vw, 64px);
  font-weight: 900;
  letter-spacing: -0.055em;
  line-height: 0.95;
}
.account-settings__content {
  display: flex;
  flex-direction: column;
}
.account-settings__form {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-top: 64px;
}
.account-settings__section {
  padding: 24px;
  border: 1px solid #111;
  background: #fff;
}
.account-settings__section h2 {
  margin: 0 0 20px;
  color: #111;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.025em;
}
.account-settings__section > p {
  margin: -8px 0 16px;
  color: #555;
  font-size: 14px;
  line-height: 1.5;
}
.account-settings__section--danger {
  margin-top: 32px;
  border-color: #a52222;
  background: #fff4f2;
}
.account-settings__section--danger h2,
.account-settings__section--danger > p {
  color: #7b1717;
}
.account-settings__field {
  margin-bottom: 18px;
}
.account-settings__field:last-child {
  margin-bottom: 0;
}
.account-settings__field label {
  display: block;
  margin-bottom: 7px;
  color: #111;
  font-size: 13px;
  font-weight: 700;
}
.account-settings__input {
  width: 100%;
  min-height: 46px;
  padding: 11px 12px;
  border: 1px solid #111;
  background: #fff;
  color: #111;
  font-family: inherit;
  font-size: 15px;
}
.account-settings__input::placeholder {
  color: #777;
}
.account-settings__input:focus {
  outline: 3px solid #ffd800;
  outline-offset: 2px;
  box-shadow: none;
}
.account-settings__hint {
  margin: 5px 0 0;
  color: #656565;
  font-size: 12px;
}
.account-settings__notice {
  margin-top: 9px;
  padding: 11px 12px;
  border: 1px solid #9c7612;
  background: #fff7cf;
  color: #5f480b;
  font-size: 13px;
  line-height: 1.45;
}
.account-settings__notice strong,
.account-settings__notice span {
  color: inherit;
}
.account-settings__actions {
  display: flex;
  gap: 10px;
  padding-top: 8px;
}
.account-settings__download-buttons {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 18px;
}
.account-settings .download-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 82px;
  padding: 14px;
  border: 1px solid #111;
  background: #fff;
  color: #111;
  text-decoration: none;
}
.account-settings .download-btn:hover:not(.disabled) {
  border-color: #1646d8;
  color: #1646d8;
}
.account-settings .download-btn:focus-visible {
  outline: 3px solid #ffd800;
  outline-offset: 3px;
}
.account-settings .download-btn.disabled {
  color: #777;
  cursor: not-allowed;
}
.account-settings .download-btn .browser-icon {
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
}
.account-settings .download-btn .browser-name {
  font-size: 15px;
  font-weight: 800;
  line-height: 1.2;
}
.account-settings .download-btn .browser-desc {
  margin-top: 2px;
  color: #656565;
  font-size: 12px;
  line-height: 1.2;
}

@media (max-width: 720px) {
  .account-settings {
    padding: 102px 16px 56px;
  }
  .account-settings h1 {
    margin-bottom: 26px;
  }
  .account-settings__section {
    padding: 18px;
  }
  .account-settings__actions {
    flex-direction: column;
  }
  .account-settings__download-buttons {
    grid-template-columns: 1fr;
  }
}
