*,
*::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);
}
.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 {
  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: #37352f;
  color: white;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
  font-weight: 500;
}
.btn--primary:hover {
  background: #2f2e2a;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.12);
}
.btn--primary:active {
  transform: scale(0.99);
}
.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);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -4px rgba(0, 0, 0, 0.08);
}
.btn--google {
  background: #ffffff;
  color: #37352f;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
  justify-content: center;
  font-weight: 500;
}
.btn--google:hover {
  background: rgba(0, 0, 0, 0.02);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
}
.btn--google:active {
  transform: scale(0.99);
}
.btn--danger {
  background: rgba(220, 38, 38, 0.1);
  color: #991b1b;
  border: 1px solid rgba(220, 38, 38, 0.3);
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.04), 0 1px 2px -1px rgba(0, 0, 0, 0.04);
}
.btn--danger:hover {
  background: rgba(220, 38, 38, 0.15);
  border-color: rgba(220, 38, 38, 0.5);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.06), 0 2px 4px -2px rgba(0, 0, 0, 0.06);
}
.btn--sm {
  padding: 4px 16px;
  font-size: 14px;
  border-radius: 8px;
}
@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: calc(100% - 64px);
  max-width: 1200px;
}
@media (max-width: 1024px) {
  .navbar {
    width: calc(100% - 48px);
    top: 16px;
  }
}
@media (max-width: 768px) {
  .navbar {
    width: calc(100% - 32px);
    max-width: 640px;
    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;
  gap: 24px;
  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: 1024px) {
  .navbar__container {
    padding: 8px 24px;
    gap: 16px;
  }
}
@media (max-width: 768px) {
  .navbar__container {
    padding: 8px 16px;
    gap: 8px;
  }
}
.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);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
}
.navbar__right {
  display: flex;
  align-items: center;
  gap: 32px;
}
@media (max-width: 1024px) {
  .navbar__right {
    gap: 16px;
  }
}
@media (max-width: 768px) {
  .navbar__right {
    gap: 8px;
  }
}
.navbar__brand {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: #0F0F0F;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.02em;
}
@media (max-width: 768px) {
  .navbar__brand {
    font-size: 16px;
    gap: 4px;
  }
}
.navbar__logo {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  display: block;
  color: #0F0F0F;
}
.navbar__text {
  white-space: nowrap;
}
.navbar__menu {
  display: flex;
  align-items: center;
  gap: 24px;
}
@media (max-width: 1024px) {
  .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;
}
.navbar__actions {
  display: flex;
  align-items: center;
  gap: 8px;
}
@media (max-width: 768px) {
  .navbar__actions {
    gap: 4px;
  }
}
.navbar__actions .btn {
  font-size: 14px;
}
@media (max-width: 768px) {
  .navbar__actions .btn {
    font-size: 13px;
    padding: 4px 16px;
  }
}
.navbar__greeting {
  color: #6B7280;
  font-size: 14px;
}
.navbar__logout-form {
  margin: 0;
  display: inline-flex;
}
.navbar__logout-form button {
  cursor: pointer;
}
.navbar__logout-form button.btn {
  min-width: auto;
}

.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);
}
.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);
  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;
}

.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: 12px;
  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 {
  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%;
  }
}
.hero__visual .main-info .realest-score {
  position: relative !important;
  overflow: visible !important;
  z-index: 1 !important;
  transition: transform 0.45s ease;
}
.hero__visual .main-info .realest-score::after {
  content: "";
  position: absolute;
  inset: -12px -16px -14px -16px;
  background: rgba(254, 247, 235, 0.88);
  border: 1px solid rgba(241, 190, 105, 0.65);
  border-radius: 18px;
  box-shadow: 0 18px 32px rgba(241, 190, 105, 0.28);
  z-index: -1;
  transform: rotate(-3deg);
  transition: transform 0.45s ease;
  animation: hero-score-glow 6s ease-in-out infinite;
}
.hero__visual .main-info .realest-score:hover::after {
  transform: rotate(-1deg) scale(1.04);
}
.hero__visual-card {
  position: relative;
  z-index: 1;
}
.hero__score-callout {
  position: absolute;
  bottom: -130px;
  right: 16px;
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  gap: 16px;
  pointer-events: none;
  z-index: 4;
}
@media (max-width: 1024px) {
  .hero__score-callout {
    right: -32px;
  }
}
@media (max-width: 768px) {
  .hero__score-callout {
    position: static;
    margin-top: 32px;
    animation: none;
    align-items: center;
    flex-direction: column;
  }
}
.hero__score-callout-note {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
  padding: 24px 32px;
  max-width: 240px;
  border-radius: 22px;
  background: rgba(254, 247, 235, 0.95);
  border: 1px solid rgba(241, 190, 105, 0.55);
  box-shadow: 0 16px 36px rgba(241, 190, 105, 0.28);
  transform: rotate(-2.5deg);
  text-align: center;
  color: #5a4432;
  pointer-events: none;
  z-index: 1;
}
.hero__score-callout-note::before {
  content: "";
  position: absolute;
  top: -14px;
  left: 50%;
  width: 78px;
  height: 22px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.65);
  border: 1px dashed rgba(241, 190, 105, 0.6);
  transform: translateX(-50%) rotate(-3deg);
}
@media (max-width: 768px) {
  .hero__score-callout-note {
    transform: rotate(0deg);
    box-shadow: 0 10px 24px rgba(241, 190, 105, 0.24);
  }
}
.hero__score-callout-kicker {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  color: rgba(90, 68, 50, 0.65);
}
.hero__score-callout-grade {
  font-family: "Caveat", "Inter", sans-serif;
  font-size: 36px;
  line-height: 1;
  font-weight: 600;
  color: #2a8f62;
  text-shadow: 0 4px 14px rgba(42, 143, 98, 0.22);
}
.hero__score-callout-caption {
  font-size: 15px;
  line-height: 1.4;
  color: rgba(90, 68, 50, 0.8);
  font-weight: 500;
}
.hero__score-callout-arrow {
  width: 180px;
  height: 140px;
  filter: drop-shadow(0 8px 18px rgba(241, 190, 105, 0.3));
}
.hero__score-callout-arrow path {
  stroke: rgba(241, 190, 105, 0.85);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}
.hero__score-callout-arrow path:first-child {
  stroke-dasharray: 14 18;
  stroke-dashoffset: 0;
  animation: hero-arrow-dash 8s ease-in-out infinite;
}
@media (max-width: 768px) {
  .hero__score-callout-arrow {
    display: none;
  }
}

.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;
  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;
}

@keyframes hero-callout-float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}
@keyframes hero-score-glow {
  0%, 100% {
    opacity: 0.75;
    box-shadow: 0 18px 32px rgba(241, 190, 105, 0.24);
  }
  50% {
    opacity: 1;
    box-shadow: 0 20px 40px rgba(241, 190, 105, 0.32);
  }
}
@keyframes hero-arrow-dash {
  0%, 100% {
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dashoffset: -32;
  }
}
.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 {
  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;
}
.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;
  }
}

.auth {
  min-height: 100vh;
  display: flex;
  background: #ffffff;
}
.auth__split {
  display: flex;
  width: 100%;
  min-height: 100vh;
}
.auth__welcome {
  flex: 1;
  background: linear-gradient(135deg, #f8f9fa 0%, #f1f3f5 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 80px;
}
.auth__welcome-content {
  max-width: 520px;
}
.auth__welcome-content h1 {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 16px;
  color: #111111;
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.auth__welcome-content > p {
  font-size: 18px;
  color: rgba(55, 53, 47, 0.7);
  margin-bottom: 48px;
  line-height: 1.6;
}
.auth__benefits {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.auth__benefits li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.auth__benefits strong {
  display: block;
  font-size: 16px;
  font-weight: 600;
  color: #111111;
  margin-bottom: 4px;
}
.auth__benefits p {
  font-size: 14px;
  color: rgba(55, 53, 47, 0.65);
  margin: 0;
  line-height: 1.6;
}
.auth__benefit-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  color: rgba(55, 53, 47, 0.5);
}
.auth__form-side {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 40px;
  background: #ffffff;
}
.auth__form-container {
  width: 100%;
  max-width: 400px;
}
.auth__form-container h2 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 24px;
  color: #111111;
  letter-spacing: -0.01em;
}
.auth__form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 24px;
}
.auth__field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.auth__field-group {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.auth__field-group .auth__field {
  width: 100%;
}
.auth__field label {
  font-weight: 500;
  color: #37352f;
  font-size: 14px;
}
.auth__input {
  width: 100%;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 6px;
  padding: 11px 14px;
  font-size: 15px;
  transition: all 0.15s ease;
  background: #ffffff;
  box-sizing: border-box;
  color: #37352f;
}
.auth__input:hover {
  border-color: rgba(0, 0, 0, 0.16);
}
.auth__input:focus {
  border-color: #37352f;
  background: #ffffff;
  outline: none;
  box-shadow: 0 0 0 1px #37352f;
}
.auth__input::placeholder {
  color: rgba(55, 53, 47, 0.4);
}
.auth__hint {
  margin: 0;
  font-size: 13px;
  color: rgba(55, 53, 47, 0.5);
}
.auth__errors {
  background: #fef2f2;
  border: 1px solid rgba(239, 68, 68, 0.2);
  border-radius: 6px;
  padding: 12px 16px;
  color: #991b1b;
  margin-bottom: 20px;
}
.auth__errors h2 {
  margin: 0 0 8px 0;
  font-size: 14px;
  font-weight: 600;
  color: #991b1b;
}
.auth__errors ul {
  margin: 0;
  padding-left: 20px;
}
.auth__errors ul li {
  font-size: 13px;
  line-height: 1.6;
  color: #7f1d1d;
}
.auth__options {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  color: rgba(55, 53, 47, 0.7);
}
.auth__options a {
  color: #37352f;
  font-weight: 500;
  text-decoration: none;
}
.auth__options a:hover {
  color: #111111;
}
.auth__checkbox {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}
.auth__checkbox input[type=checkbox] {
  width: 16px;
  height: 16px;
}
.auth__actions {
  margin-top: 4px;
}
.auth__actions .btn {
  width: 100%;
  justify-content: center;
  padding: 12px 20px;
  font-size: 15px;
}
.auth__divider {
  margin: 20px 0;
  position: relative;
  text-align: center;
  font-size: 13px;
  color: rgba(55, 53, 47, 0.45);
  font-weight: 400;
  text-transform: lowercase;
}
.auth__divider span {
  background: #ffffff;
  padding: 0 16px;
  position: relative;
  z-index: 1;
}
.auth__divider::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(0, 0, 0, 0.08);
}
.auth__oauth {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}
.auth__oauth .btn {
  width: 100%;
  padding: 12px 20px;
  font-size: 15px;
}
.auth__switch {
  text-align: center;
  font-size: 14px;
  color: rgba(55, 53, 47, 0.65);
}
.auth__switch a {
  margin-left: 4px;
  color: #37352f;
  font-weight: 500;
  text-decoration: none;
}
.auth__switch a:hover {
  color: #111111;
  text-decoration: underline;
}
.auth__danger {
  margin-top: 24px;
  padding: 16px;
  border: 1px solid rgba(220, 38, 38, 0.2);
  border-radius: 6px;
  background: #fef2f2;
}
.auth__danger h3 {
  margin: 0 0 6px 0;
  font-size: 14px;
  font-weight: 600;
  color: #991b1b;
}
.auth__danger p {
  margin: 0 0 12px 0;
  color: #7f1d1d;
  font-size: 13px;
}
.auth__danger .btn {
  width: auto;
}
.auth--centered {
  justify-content: center;
  align-items: center;
  padding: 80px 20px;
  background: #fafafa;
}
.auth__simple-card {
  width: 100%;
  max-width: 460px;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 12px;
  padding: 48px 40px 40px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04), 0 8px 16px rgba(0, 0, 0, 0.04);
}
.auth__simple-card h1 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #111111;
  letter-spacing: -0.01em;
}
.auth__simple-card > p {
  margin: 0 0 32px 0;
  color: rgba(55, 53, 47, 0.7);
  font-size: 15px;
  line-height: 1.5;
}
@media (max-width: 1024px) {
  .auth__welcome {
    padding: 60px 60px;
  }
  .auth__welcome-content h1 {
    font-size: 36px;
  }
  .auth__welcome-content > p {
    font-size: 17px;
  }
}
@media (max-width: 768px) {
  .auth__split {
    flex-direction: column;
  }
  .auth__welcome {
    min-height: auto;
    padding: 80px 40px 60px;
    background: linear-gradient(135deg, #f8f9fa 0%, #f1f3f5 100%);
  }
  .auth__welcome-content {
    max-width: 480px;
  }
  .auth__welcome-content h1 {
    font-size: 32px;
  }
  .auth__welcome-content > p {
    font-size: 16px;
    margin-bottom: 32px;
  }
  .auth__benefits {
    gap: 24px;
  }
  .auth__form-side {
    padding: 40px 20px 80px;
  }
  .auth__form-container {
    max-width: 440px;
  }
  .auth__form-container h2 {
    font-size: 24px;
  }
}

.account-settings {
  min-height: 100vh;
  background: #fafafa;
  padding: 140px 20px 40px;
}
.account-settings__container {
  max-width: 680px;
  margin: 0 auto;
}
.account-settings h1 {
  font-size: 28px;
  font-weight: 600;
  margin: 0 0 24px 0;
  color: #111111;
  letter-spacing: -0.01em;
}
.account-settings__form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 24px;
}
.account-settings__section {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 8px;
  padding: 20px;
}
.account-settings__section h2 {
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 16px 0;
  color: #111111;
  letter-spacing: -0.01em;
}
.account-settings__section p {
  font-size: 14px;
  color: rgba(55, 53, 47, 0.65);
  margin: 0 0 12px 0;
  line-height: 1.5;
}
.account-settings__section--danger {
  border-color: rgba(220, 38, 38, 0.3);
  background: rgba(254, 242, 242, 0.4);
}
.account-settings__section--danger h2 {
  color: #991b1b;
}
.account-settings__field {
  margin-bottom: 16px;
}
.account-settings__field:last-child {
  margin-bottom: 0;
}
.account-settings__field label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: #37352f;
  margin-bottom: 6px;
}
.account-settings__input {
  width: 100%;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 6px;
  padding: 10px 12px;
  font-size: 15px;
  transition: all 0.15s ease;
  background: #ffffff;
  box-sizing: border-box;
  color: #37352f;
}
.account-settings__input:hover {
  border-color: rgba(0, 0, 0, 0.25);
}
.account-settings__input:focus {
  border-color: #37352f;
  background: #ffffff;
  outline: none;
  box-shadow: 0 0 0 1px #37352f;
}
.account-settings__input::placeholder {
  color: rgba(55, 53, 47, 0.4);
}
.account-settings__hint {
  margin: 4px 0 0 0;
  font-size: 13px;
  color: rgba(55, 53, 47, 0.5);
}
.account-settings__notice {
  margin: 8px 0 0 0;
  padding: 10px 12px;
  background: #fff3cd;
  border: 1px solid #ffc107;
  border-radius: 6px;
  font-size: 13px;
  color: #856404;
  line-height: 1.5;
}
.account-settings__notice strong {
  font-weight: 600;
  color: #664d03;
}
.account-settings__notice span {
  font-size: 12px;
  color: #856404;
}
.account-settings__actions {
  display: flex;
  gap: 10px;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}
.account-settings__actions .btn {
  padding: 8px 16px;
  font-size: 14px;
}
.account-settings__tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 24px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  padding-bottom: 0;
}
.account-settings__tab {
  background: none;
  border: none;
  padding: 12px 16px;
  font-size: 15px;
  font-weight: 500;
  color: rgba(55, 53, 47, 0.65);
  cursor: pointer;
  transition: all 0.15s ease;
  position: relative;
  border-bottom: 2px solid transparent;
}
.account-settings__tab:hover {
  color: #37352f;
}
.account-settings__tab--active {
  color: #37352f;
  border-bottom-color: #37352f;
}
.account-settings__content {
  position: relative;
}
.account-settings__panel {
  display: none;
}
.account-settings__panel--active {
  display: block;
}
.account-settings__download-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 20px;
}
.account-settings .download-btn {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: saturate(180%) blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px 32px;
  border-radius: 16px;
  text-decoration: none;
  color: #0F0F0F;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  min-width: 200px;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -4px rgba(0, 0, 0, 0.08);
}
.account-settings .download-btn:hover:not(.disabled) {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
  background: rgb(255, 255, 255);
  backdrop-filter: saturate(180%) blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.account-settings .download-btn.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.account-settings .download-btn .browser-icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}
.account-settings .download-btn .browser-name {
  font-weight: 600;
  font-size: 16px;
  line-height: 1.2;
}
.account-settings .download-btn .browser-desc {
  font-size: 13px;
  color: #6B7280;
  line-height: 1.2;
}
@media (max-width: 768px) {
  .account-settings {
    padding: 120px 20px 40px;
  }
  .account-settings h1 {
    font-size: 24px;
    margin-bottom: 20px;
  }
  .account-settings__tabs {
    gap: 4px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .account-settings__tab {
    padding: 10px 12px;
    font-size: 14px;
    white-space: nowrap;
  }
  .account-settings__section {
    padding: 16px;
  }
  .account-settings__section h2 {
    font-size: 15px;
    margin-bottom: 12px;
  }
  .account-settings__field {
    margin-bottom: 12px;
  }
  .account-settings__actions {
    margin-top: 16px;
    padding-top: 12px;
  }
}
