*,
*::before,
*::after {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  padding: 0;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: #0F0F0F;
  background: #FBF9F7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "cv11", "ss01", "ss02";
  overflow-x: hidden;
}

*:focus {
  outline: 2px solid #D97706;
  outline-offset: 2px;
}

::selection {
  background: #D97706;
  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: #0F0F0F;
}
.section-header__subtitle {
  font-size: 20px;
  color: #6B7280;
  margin: 0;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}
@media (max-width: 768px) {
  .section-header__subtitle {
    font-size: 18px;
  }
}

.footer {
  background: #0F0F0F;
  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: 50%;
  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);
  transform: translateY(-2px);
}
.footer__social-link:focus {
  outline: 2px solid white;
  outline-offset: 2px;
}
.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: 2px solid white;
  outline-offset: 2px;
}
.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: 4px;
  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: 2px solid white;
  outline-offset: 2px;
}
.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: 3px;
  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: 3px;
  opacity: 0;
  transition: opacity 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.footer__badge:hover {
  transform: translateY(-1px);
  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 {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  border: none;
  border-radius: 12px;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}
.btn__text {
  position: relative;
  z-index: 2;
}
.btn__icon {
  width: 18px;
  height: 18px;
  transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 2;
}
.btn:hover .btn__icon {
  transform: translateX(2px);
}
.btn:focus {
  outline: 2px solid #D97706;
  outline-offset: 2px;
}
.btn--primary {
  background: #0F0F0F;
  color: white;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.06), 0 2px 4px -2px rgba(0, 0, 0, 0.06);
}
.btn--primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #8B5CF6 0%, #3B82F6 100%);
  opacity: 0;
  transition: opacity 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
}
.btn--primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
}
.btn--primary:hover::before {
  opacity: 1;
}
.btn--primary:active {
  transform: translateY(-1px);
}
.btn--secondary {
  background: rgba(255, 255, 255, 0.3);
  backdrop-filter: saturate(180%) blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #0F0F0F;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.04), 0 1px 2px -1px rgba(0, 0, 0, 0.04);
}
.btn--secondary:hover {
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: saturate(180%) blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
  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: 480px) {
  .btn {
    padding: 14px 24px;
    font-size: 15px;
  }
}

.navbar {
  position: fixed;
  top: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  width: auto;
  min-width: 600px;
}
@media (max-width: 768px) {
  .navbar {
    min-width: auto;
    width: auto;
    top: 16px;
  }
}
.navbar__container {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: saturate(180%) blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 32px;
  border-radius: 9999px;
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.15);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
@media (max-width: 768px) {
  .navbar__container {
    justify-content: center;
    padding: 8px 24px;
  }
}
.navbar__container:hover {
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: saturate(180%) blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
}
.navbar__brand {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: #0F0F0F;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.02em;
}
.navbar__logo {
  width: 20px;
  height: 20px;
  color: #0F0F0F;
}
.navbar__text {
  white-space: nowrap;
}
.navbar__menu {
  display: flex;
  align-items: center;
  gap: 24px;
}
@media (max-width: 768px) {
  .navbar__menu {
    display: none;
  }
}
.navbar__link {
  color: #6B7280;
  text-decoration: none;
  font-weight: 400;
  font-size: 15px;
  padding: 4px 0;
  transition: color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  white-space: nowrap;
}
.navbar__link:hover {
  color: #0F0F0F;
}
.navbar__link:focus {
  outline: 2px solid rgba(59, 130, 246, 0.5);
  outline-offset: 2px;
  border-radius: 2px;
}

.feature-box {
  height: 100%;
  padding: 24px 32px;
  border-radius: 16px;
  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);
  transform: translateY(-1px);
}
.feature-box__icon {
  width: 40px;
  height: 40px;
  padding: 8px;
  background: #f3f4f6;
  border-radius: 10px;
  color: #0F0F0F;
  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: #0F0F0F;
  line-height: 1.3;
}
.feature-box__description {
  font-size: 14px;
  line-height: 1.5;
  color: #6B7280;
  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: 16px;
  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);
  transform: translateY(-4px);
  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: #D97706;
}
.stats__number {
  font-size: 32px;
  font-weight: 700;
  color: #0F0F0F;
  letter-spacing: -0.02em;
  line-height: 1;
}
.stats__label {
  font-size: 15px;
  font-weight: 500;
  color: #6B7280;
}

.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: 8px !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, .main-info:hover {
  backdrop-filter: none !important;
  transform: none !important;
  transition: none !important;
  border-radius: 8px !important;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1) !important;
  background: white !important;
  border: 1px solid #e6e6e6 !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: 5px !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: 5px !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: 8px !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;
}

.hero {
  padding: 128px 0;
  padding-top: calc(128px + 80px);
  position: relative;
  overflow: hidden;
}
@media (max-width: 768px) {
  .hero {
    padding-bottom: 64px;
  }
}
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 20%, rgba(139, 92, 246, 0.08) 0%, transparent 50%), radial-gradient(circle at 70% 80%, rgba(217, 119, 6, 0.06) 0%, transparent 50%);
  pointer-events: none;
}
.hero__container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 64px;
  position: relative;
  z-index: 1;
}
@media (max-width: 768px) {
  .hero__container {
    flex-direction: column;
    gap: 32px;
    text-align: center;
    justify-content: center;
  }
}
.hero__content {
  flex: 0 1 600px;
  max-width: 600px;
}
.hero__badge {
  background: rgba(255, 255, 255, 0.3);
  backdrop-filter: saturate(180%) blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 24px;
  border-radius: 9999px;
  font-size: 14px;
  font-weight: 500;
  color: #6B7280;
  margin-bottom: 32px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.04), 0 1px 2px -1px rgba(0, 0, 0, 0.04);
}
.hero__badge-icon {
  width: 14px;
  height: 14px;
}
.hero__badge-text {
  white-space: nowrap;
}
.hero__title {
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin: 0 0 32px 0;
  color: #0F0F0F;
  font-feature-settings: "ss02";
}
@media (max-width: 768px) {
  .hero__title {
    font-size: clamp(32px, 8vw, 48px);
  }
}
.hero__subtitle {
  font-size: 20px;
  line-height: 1.6;
  color: #6B7280;
  margin: 0 0 48px 0;
  max-width: 540px;
}
@media (max-width: 768px) {
  .hero__subtitle {
    font-size: 18px;
  }
}
.hero__actions {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .hero__actions {
    justify-content: center;
  }
}
@media (max-width: 480px) {
  .hero__actions {
    flex-direction: column;
    width: 100%;
  }
  .hero__actions .btn {
    width: 100%;
    justify-content: center;
  }
}
.hero__download {
  margin-top: 48px;
}
@media (max-width: 768px) {
  .hero__download {
    text-align: center;
    margin-top: 32px;
  }
}
.hero__download-label {
  font-size: 14px;
  font-weight: 500;
  color: #9CA3AF;
  margin: 0 0 16px 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.hero__download-buttons {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .hero__download-buttons {
    justify-content: center;
  }
}
.hero__visual {
  position: relative;
  z-index: 2;
  flex: 0 0 auto;
  width: auto;
}
@media (max-width: 768px) {
  .hero__visual {
    width: 100%;
  }
}

.browser-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 8px 16px;
  border-radius: 12px;
  text-decoration: none;
  color: #6B7280;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(0, 0, 0, 0.08);
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  font-size: 14px;
  font-weight: 500;
  backdrop-filter: saturate(180%) blur(10px);
  position: relative;
}
.browser-link:hover:not(.disabled) {
  background: rgba(255, 255, 255, 0.8);
  border-color: rgba(0, 0, 0, 0.12);
  color: #0F0F0F;
  transform: translateY(-1px);
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.04), 0 1px 2px -1px rgba(0, 0, 0, 0.04);
}
.browser-link.disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.browser-link__icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}
.browser-link__text {
  white-space: nowrap;
}
.browser-link__badge {
  position: absolute;
  top: -6px;
  right: -6px;
  background: #D97706;
  color: white;
  font-size: 10px;
  font-weight: 600;
  padding: 2px 6px;
  border-radius: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.features {
  padding: 128px 0;
  background: #FBF9F7;
  scroll-margin-top: calc(80px + 48px);
}
@media (max-width: 768px) {
  .features {
    scroll-margin-top: calc(60px + 32px);
  }
}
.features__container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}

.features-bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .features-bento {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

.social-proof {
  padding: 128px 0;
  background: linear-gradient(135deg, #fafafa 0%, #f5f5f7 100%);
  position: relative;
  overflow: hidden;
}
@media (max-width: 768px) {
  .social-proof {
    padding-top: 48px;
  }
}
.social-proof::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 20%, rgba(139, 92, 246, 0.02) 0%, transparent 50%), radial-gradient(circle at 80% 80%, rgba(217, 119, 6, 0.015) 0%, transparent 50%);
  pointer-events: none;
}
.social-proof__container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}
.social-proof__header {
  text-align: center;
  margin-bottom: 64px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.social-proof__title {
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin: 0 0 16px 0;
  color: #0F0F0F;
  font-feature-settings: "ss02";
}
.social-proof__subtitle {
  font-size: 20px;
  line-height: 1.5;
  color: #6B7280;
  margin: 0;
  font-weight: 400;
}

.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  max-width: 1000px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .stats {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
.stats__card {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: saturate(180%) blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 24px;
  padding: 48px;
  display: flex;
  align-items: center;
  gap: 32px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05), 0 8px 24px rgba(0, 0, 0, 0.04), inset 0 1px 0 rgba(255, 255, 255, 0.6);
}
.stats__card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
  pointer-events: none;
}
.stats__card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08), 0 16px 32px rgba(0, 0, 0, 0.06), inset 0 1px 0 rgba(255, 255, 255, 0.7);
  border-color: rgba(255, 255, 255, 0.3);
}
@media (max-width: 768px) {
  .stats__card {
    flex-direction: column;
    text-align: center;
    gap: 24px;
    padding: 32px;
  }
}
.stats__icon-container {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, rgba(217, 119, 6, 0.08) 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
}
.stats__icon-container::before {
  content: "";
  position: absolute;
  inset: 1px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.6) 100%);
  border-radius: 15px;
}
.stats__icon {
  width: 28px;
  height: 28px;
  color: rgba(139, 92, 246, 0.8);
  position: relative;
  z-index: 1;
}
.stats__content {
  flex: 1;
  min-width: 0;
}
.stats__number {
  display: block;
  font-size: 36px;
  font-weight: 700;
  line-height: 1;
  color: #0F0F0F;
  margin-bottom: 4px;
  font-feature-settings: "tnum";
  letter-spacing: -0.02em;
}
@media (max-width: 768px) {
  .stats__number {
    font-size: 32px;
  }
}
.stats__label {
  display: block;
  font-size: 16px;
  font-weight: 500;
  color: #6B7280;
  line-height: 1.3;
}

.how-it-works {
  padding: 128px 0;
  background: white;
  scroll-margin-top: calc(80px + 48px);
}
@media (max-width: 768px) {
  .how-it-works {
    scroll-margin-top: calc(60px + 32px);
  }
}
.how-it-works__container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}
.how-it-works__title {
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin: 0 0 48px 0;
  color: #0F0F0F;
}

.simple-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .simple-steps {
    flex-direction: column;
    gap: 24px;
  }
}

.simple-step {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px 32px;
  background: white;
  border-radius: 16px;
  border: 1px solid #e9ecef;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.simple-step:hover {
  background: #f1f3f4;
  border-color: #dee2e6;
  transform: translateY(-1px);
}
.simple-step__number {
  width: 32px;
  height: 32px;
  background: #0F0F0F;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  flex-shrink: 0;
}
.simple-step__text {
  font-size: 16px;
  font-weight: 500;
  color: #0F0F0F;
  white-space: nowrap;
}
.simple-step__arrow {
  font-size: 20px;
  color: #9CA3AF;
  font-weight: 300;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .simple-step__arrow {
    transform: rotate(90deg);
  }
}

.about {
  padding: 128px 0;
  background: #F7F5F3;
}
.about .section-header {
  margin-bottom: 0;
}
.about .section-header h2 {
  font-size: clamp(28px, 3.5vw, 42px);
  margin-bottom: 24px;
}
.about-text {
  font-size: 20px;
  line-height: 1.7;
  color: #6B7280;
  max-width: 700px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .about-text {
    font-size: 18px;
    padding: 0 16px;
  }
}
@media (max-width: 480px) {
  .about-text {
    font-size: 16px;
    padding: 0 24px;
  }
}

.disclaimer {
  padding: 128px 0;
  background: #F2EFE8;
  position: relative;
  overflow: hidden;
}
.disclaimer__container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}
.disclaimer-content {
  max-width: 1000px;
  margin: 0 auto;
  padding: 64px;
  position: relative;
  display: flex;
  align-items: center;
  gap: 64px;
}
@media (max-width: 1024px) {
  .disclaimer-content {
    flex-direction: column;
    text-align: center;
    gap: 48px;
  }
}
@media (max-width: 768px) {
  .disclaimer-content {
    padding: 48px 24px;
  }
}
@media (max-width: 480px) {
  .disclaimer-content {
    padding: 32px 16px;
  }
}
.disclaimer-content__background-icon {
  width: 240px;
  height: 240px;
  opacity: 0.08;
  color: #D97706;
  flex-shrink: 0;
  pointer-events: none;
  position: relative;
}
.disclaimer-content__background-icon::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 60%;
  height: 100%;
  background: linear-gradient(to right, #F2EFE8 0%, #F2EFE8 20%, rgba(242, 239, 232, 0.8) 40%, rgba(242, 239, 232, 0.4) 60%, transparent 80%);
  z-index: 1;
  pointer-events: none;
}
.disclaimer-content__background-icon svg {
  width: 100%;
  height: 100%;
  position: relative;
}
@media (max-width: 1024px) {
  .disclaimer-content__background-icon {
    width: 160px;
    height: 160px;
  }
}
.disclaimer-content__main {
  flex: 1;
  min-width: 0;
}
.disclaimer-content__title {
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.025em;
  margin: 0 0 24px 0;
  color: #D97706;
  font-feature-settings: "ss02";
}
.disclaimer-content__text {
  font-size: clamp(17px, 1.5vw, 20px);
  line-height: 1.6;
  color: #6B7280;
  margin: 0;
  font-weight: 400;
  max-width: 600px;
}
@media (max-width: 1024px) {
  .disclaimer-content__text {
    margin: 0 auto;
  }
}
@media (max-width: 768px) {
  .disclaimer-content__text {
    font-size: 16px;
    line-height: 1.7;
    max-width: 100%;
  }
}
@media (max-width: 480px) {
  .disclaimer-content__text {
    font-size: 15px;
    line-height: 1.8;
  }
}
