:root {
  --bg: #ffffff;
  --text: #0f172a;
  --muted: #6b7280;
  --muted-dark: #9ca3af;
  --border: #e5e7eb;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  --orange-500: #f97316;
  --orange-600: #ea580c;
  --amber-500: #f59e0b;
  --amber-600: #d97706;
  --green-500: #22c55e;
  --green-600: #16a34a;
  --purple-600: #7c3aed;
  --blue-500: #3b82f6;
  --gray-900: #111827;
  --nav-height: 64px;
  --scroll-offset: calc(var(--nav-height) + 16px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Geist", "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.5;
}

html,
body {
  scroll-snap-type: y mandatory;
  scroll-padding-top: var(--scroll-offset);
}

main {
  padding-top: var(--nav-height);
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  -webkit-tap-highlight-color: transparent;
}

a,
button,
[role="button"] {
  -webkit-tap-highlight-color: transparent;
}

a:focus,
button:focus,
[role="button"]:focus {
  outline: none;
}

a:focus-visible,
button:focus-visible,
[role="button"]:focus-visible {
  outline: 2px solid rgba(249, 115, 22, 0.9);
  outline-offset: 2px;
}

.fa-solid,
.fa-regular,
.fa-brands {
  font-size: 20px;
  line-height: 1;
}

.btn .fa-solid,
.btn .fa-regular,
.btn .fa-brands {
  font-size: 18px;
}

.icon-list__icon .fa-solid,
.icon-list__icon .fa-regular,
.icon-list__icon .fa-brands,
.property-card__icon .fa-solid,
.property-card__icon .fa-regular,
.property-card__icon .fa-brands {
  font-size: 16px;
}

.container {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 16px;
}

@media (min-width: 640px) {
  .container {
    padding: 0 24px;
  }
}

@media (min-width: 1024px) {
  .container {
    padding: 0 32px;
  }
}

.section {
  padding: 80px 0;
}

main > section,
footer {
  min-height: auto;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  scroll-margin-top: var(--scroll-offset);
}

.section--soft-orange {
  background: linear-gradient(to bottom, rgba(255, 237, 213, 0.6), #ffffff);
}

.section--soft-amber {
  background: linear-gradient(to bottom, rgba(254, 243, 199, 0.6), #ffffff);
}

.section--soft-green {
  background: linear-gradient(to bottom, rgba(220, 252, 231, 0.6), #ffffff);
}

.section--download {
  background: linear-gradient(to bottom, var(--orange-500), var(--orange-600), var(--amber-600));
  color: #ffffff;
  padding: 56px 0;
}

main > .section--download {
  min-height: auto;
}

.text-muted {
  color: var(--muted);
}

.text-center {
  text-align: center;
}

.text-white {
  color: #ffffff;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 12px;
  border: 2px solid transparent;
  padding: 12px 22px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  background: #ffffff;
  color: var(--text);
}

.btn-youtube {
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 0;
  gap: 10px;
  color: var(--orange-600);
}

.btn-youtube:hover {
  transform: translateY(-1px);
}

.btn-appstore {
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 0;
  gap: 0;
  color: inherit;
}

.btn-appstore:hover {
  transform: translateY(-1px);
}

.btn-googleplay {
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 0;
  gap: 0;
  color: inherit;
}

.btn-googleplay:hover {
  transform: translateY(-1px);
}

.youtube-icon {
  width: 108px;
  height: 78px;
  display: inline-block;
}

.store-badge {
  height: 78px;
  width: auto;
  display: block;
}

.hero__actions .btn-youtube,
.hero__actions .btn-appstore,
.hero__actions .btn-googleplay,
.download-actions .btn-appstore,
.download-actions .btn-googleplay {
  height: 78px;
  min-width: 220px;
}

.hero__actions .btn-youtube {
  padding: 0 16px;
}

.hero__actions .btn-appstore,
.hero__actions .btn-googleplay,
.download-actions .btn-appstore,
.download-actions .btn-googleplay {
  padding: 0;
}

.hero__actions .store-badge,
.download-actions .store-badge {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.btn-lg {
  padding: 14px 28px;
  font-size: 18px;
  border-radius: 14px;
}

.btn-primary {
  background: linear-gradient(to right, var(--orange-500), var(--amber-500));
  color: #ffffff;
  border-color: transparent;
}

.btn-primary:hover {
  background: linear-gradient(to right, var(--orange-600), var(--amber-600));
}

.btn-outline {
  background: transparent;
  border-color: var(--border);
}

.btn-dark {
  background: #000000;
  color: #ffffff;
  border-color: #000000;
}

.btn-dark:hover {
  background: #111111;
}

.btn-white {
  background: #ffffff;
  color: var(--orange-600);
}

.btn-white:hover {
  background: rgba(255, 255, 255, 0.9);
}

.btn-ghost {
  background: transparent;
  border-color: transparent;
  color: inherit;
}

.btn-icon {
  width: 40px;
  height: 40px;
  padding: 0;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 600;
}

.badge.orange {
  background: #ffedd5;
  color: #c2410c;
  border-color: #fed7aa;
}

.badge.green {
  background: #dcfce7;
  color: #15803d;
  border-color: #bbf7d0;
}

.badge.amber {
  background: #fef3c7;
  color: #b45309;
  border-color: #fde68a;
}

.badge.purple {
  background: #ede9fe;
  color: #7c3aed;
  border-color: #ddd6fe;
}

.badge.white {
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.2);
}

.card {
  background: #ffffff;
  border: 2px solid var(--border);
  border-radius: 20px;
  padding: 24px;
  transition: all 0.2s ease;
}

.card:hover {
  box-shadow: var(--shadow);
}

.card--tight {
  padding: 16px;
}

.card--shadow {
  box-shadow: var(--shadow);
}

.card--image {
  padding: 0;
  overflow: hidden;
}

.grid-2 {
  display: grid;
  gap: 48px;
}

.grid-3 {
  display: grid;
  gap: 32px;
}

.grid-4 {
  display: grid;
  gap: 16px;
}

.grid-7 {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, 1fr);
}

.map-view__grid {
  align-items: center;
}

.map-view__content {
  display: grid;
  gap: 24px;
  justify-items: start;
  align-content: center;
}

.map-view__content .badge {
  justify-self: start;
}

.map-view__title {
  margin: 0;
  font-size: clamp(32px, 3vw, 48px);
  line-height: 1.08;
  max-width: 11ch;
}

.map-view__copy {
  margin: 0;
  font-size: 18px;
  max-width: 34ch;
}

.map-view__visual {
  display: flex;
  justify-content: center;
}

.map-view__image {
  width: min(100%, 520px);
  height: auto;
  display: block;
  filter: drop-shadow(0 24px 42px rgba(15, 23, 42, 0.18));
}

@media (min-width: 640px) {
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid-7 {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 768px) {
  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .grid-7 {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (min-width: 1024px) {
  .grid-2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid-4 {
    grid-template-columns: repeat(4, 1fr);
  }
  .grid-7 {
    grid-template-columns: repeat(7, 1fr);
  }

  .map-view__grid {
    grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.85fr);
    gap: clamp(40px, 5vw, 88px);
  }

  .map-view__visual {
    justify-content: flex-end;
  }
}

@media (max-width: 1023px) {
  .map-view__content {
    justify-items: center;
    text-align: center;
    max-width: 620px;
    margin: 0 auto;
  }

  .map-view__content .badge {
    justify-self: center;
  }

  .map-view__title,
  .map-view__copy {
    max-width: none;
  }
}

.order-1 { order: 1; }
.order-2 { order: 2; }

@media (min-width: 1024px) {
  .lg-order-1 { order: 1; }
  .lg-order-2 { order: 2; }
}

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: all 0.3s ease;
}

.nav.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.08);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

.nav__logo-text {
  font-size: 24px;
  font-weight: 700;
  background: linear-gradient(to right, var(--orange-600), var(--amber-600));
  -webkit-background-clip: text;
  color: transparent;
}

.nav__links {
  display: none;
  align-items: center;
  gap: 32px;
}

.nav__links button,
.nav__links a {
  background: none;
  border: none;
  color: var(--muted);
  font-weight: 600;
  cursor: pointer;
}

.nav__links button:hover,
.nav__links a:hover {
  color: var(--text);
}

.nav__toggle {
  background: none;
  border: none;
  padding: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.nav__toggle .fa-solid,
.nav__toggle .fa-regular,
.nav__toggle .fa-brands {
  font-size: 24px;
}

.nav__toggle .icon-close {
  display: none;
}

.nav__toggle.is-open .icon-menu {
  display: none;
}

.nav__toggle.is-open .icon-close {
  display: inline-flex;
}

.mobile-menu {
  display: none;
  padding: 16px 0;
  border-top: 1px solid var(--border);
}

.mobile-menu.is-open {
  display: block;
}

.mobile-menu button,
.mobile-menu a {
  display: block;
  width: 100%;
  text-align: left;
  padding: 8px 0;
  background: none;
  border: none;
  color: var(--muted);
  font-weight: 600;
}

.mobile-menu .btn {
  width: 100%;
  margin-top: 8px;
}

@media (min-width: 768px) {
  .nav__links {
    display: flex;
  }
  .nav__toggle,
  .mobile-menu {
    display: none !important;
  }
}

.hero {
  position: relative;
  padding-top: 40px;
  padding-bottom: 96px;
  min-height: calc(100svh - var(--nav-height));
  overflow: hidden;
  background-image: url("../assets/asets/backdrop.jpeg");
  background-size: cover;
  background-position: 24% center;
  background-repeat: no-repeat;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(15, 23, 42, 0.42) 0%, rgba(15, 23, 42, 0.16) 36%, rgba(15, 23, 42, 0.42) 100%),
    linear-gradient(180deg, rgba(15, 23, 42, 0.08) 0%, rgba(15, 23, 42, 0.18) 100%);
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero__grid {
  position: relative;
  display: grid;
  gap: 48px;
  align-items: center;
}

@media (max-width: 1023px) {
  .hero__content {
    order: 1;
  }

  .hero__visual--shorts {
    order: 2;
  }
}

.hero__grid--three {
  gap: 36px;
}

.hero__content {
  text-align: center;
  display: grid;
  gap: 24px;
  justify-items: center;
  padding: 28px;
  border-radius: 28px;
  background: rgba(15, 23, 42, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.18);
  backdrop-filter: blur(2px);
}

.hero__visual {
  display: flex;
  justify-content: center;
  align-self: start;
}

.phone-frame {
  position: relative;
  padding: 14px;
  border-radius: 42px;
  background: linear-gradient(145deg, #1a1b21, #0b0b0e);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28), inset 0 0 0 1px rgba(255, 255, 255, 0.06);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.phone-frame::before,
.phone-frame::after {
  content: "";
  position: absolute;
  top: 10px;
  background: #111827;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.phone-frame::before {
  width: 64px;
  height: 6px;
  border-radius: 999px;
  left: 50%;
  transform: translateX(-50%);
}

.phone-frame::after {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  right: 38%;
}

.phone-frame--samsung {
  border-radius: 52px;
  padding: 16px;
  background:
    radial-gradient(circle at 20% 10%, rgba(255, 255, 255, 0.22), transparent 40%),
    linear-gradient(145deg, #3f434b 0%, #1a1d22 45%, #0b0c10 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow:
    0 24px 50px rgba(0, 0, 0, 0.35),
    inset 0 0 0 1px rgba(0, 0, 0, 0.6),
    inset 0 0 18px rgba(255, 255, 255, 0.08);
}

.phone-frame--samsung::before {
  width: 72px;
  height: 6px;
  background: linear-gradient(90deg, #0a0a0c, #1c1c22, #0a0a0c);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.phone-frame--samsung::after {
  right: 43%;
  width: 10px;
  height: 10px;
  background: radial-gradient(circle at 40% 40%, #2a2f38, #0a0b10 60%);
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.08);
}

.phone-frame--samsung .shorts-shell {
  border-radius: 34px;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.05),
    inset 0 0 0 4px rgba(0, 0, 0, 0.65);
}

.phone-frame__side {
  position: absolute;
  top: clamp(90px, 20%, 140px);
  width: 4px;
  height: clamp(36px, 8%, 56px);
  background: linear-gradient(to bottom, #2d3138, #0c0d11);
  border-radius: 999px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
  pointer-events: none;
}

.phone-frame__side--right {
  right: -3px;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.08),
    0 70px 0 0 #15171c;
}

.phone-frame__side--left {
  left: -3px;
  height: clamp(28px, 6%, 44px);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.08),
    0 56px 0 0 #15171c;
}

@media (min-width: 1024px) {
  .hero__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .hero__grid--three {
    grid-template-columns: 1.35fr 1.05fr 0.9fr;
  }
  .hero__content {
    text-align: left;
    justify-items: start;
  }
  .hero__visual {
    justify-content: flex-end;
  }
  .hero__visual--shorts {
    justify-content: center;
  }
}

@media (max-width: 640px) {
  .shorts-shell {
    width: min(88vw, 320px);
    height: auto;
    aspect-ratio: 9 / 19;
    max-height: 70vh;
    border-radius: 26px;
  }

  .shorts-video {
    flex: 1 1 auto;
    height: 100%;
    border-radius: 24px;
  }

  .shorts-bottompanel {
    flex: 0 0 120px;
    min-height: 120px;
    padding: 8px 8px 10px;
    gap: 8px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .shorts-stage--left {
    --info-bottom: clamp(52px, 12%, 86px);
    --filters-bottom: clamp(18px, 5%, 32px);
  }

  .shorts-stage--left .shorts-actions {
    gap: 8px;
    top: 56%;
  }

  .shorts-stage--left .shorts-avatar {
    width: 40px;
    height: 40px;
    font-size: 12px;
  }

  .shorts-stage--left .shorts-action {
    width: 32px;
    height: 32px;
  }

  .shorts-stage--left .shorts-action-text {
    font-size: 8px;
  }

  .shorts-stage--left .shorts-line {
    font-size: 9px;
  }

  .shorts-stage--left .shorts-line.price {
    font-size: 11px;
  }

  .shorts-stage--left .shorts-line.small {
    font-size: 9px;
  }

  .shorts-stage--left .shorts-more {
    font-size: 9px;
    padding: 3px 8px;
  }

  .shorts-stage--left .shorts-search {
    position: static !important;
    max-width: 92%;
    gap: 4px;
  }

  .shorts-stage--left .shorts-search-input {
    min-height: 20px;
    padding: 2px 6px;
  }

  .shorts-stage--left .shorts-search-input input {
    font-size: 8px;
  }

  .shorts-stage--left .shorts-search-btn {
    min-height: 20px;
    padding: 2px 6px;
    font-size: 8px;
  }

  .shorts-stage--left .shorts-bottomnav {
    height: 40px;
    padding: 0 6px 2px;
    margin-top: auto;
  }

  .shorts-stage--left .shorts-nav-item {
    font-size: 7px;
    gap: 2px;
  }

  .shorts-stage--left .shorts-plus {
    width: 28px;
    height: 20px;
    line-height: 20px;
    font-size: 14px;
  }
}

.shorts-shell {
  width: clamp(240px, 20vw, 370px);
  border-radius: 32px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #0b0b0b;
  display: flex;
  flex-direction: column;
  height: clamp(620px, 85vh, 820px);
}

.shorts-stage--left {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 0;
  max-height: none;
  display: flex;
  flex-direction: column;
  --edge: clamp(6px, 1.4%, 12px);
  --info-bottom: clamp(70px, 14%, 110px);
  --filters-bottom: clamp(28px, 6%, 44px);
}

.shorts-video {
  position: relative;
  width: 100%;
  flex: 0 0 90%;
  height: 90%;
  background: #000000;
  border-radius: 28px 28px 22px 22px;
  overflow: hidden;
}

.shorts-bottompanel {
  background: #0b0b0b;
  padding: 6px 8px 6px;
  display: grid;
  gap: 3px;
  border-radius: 0 0 24px 24px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.25);
  min-height: 0;
  flex: 0 0 10%;
}

.shorts-stage--left .shorts-top {
  padding: var(--edge) var(--edge) 4px;
}

.shorts-stage--left .shorts-tabs {
  gap: 12px;
}

.shorts-stage--left .shorts-top-row {
  gap: 8px;
}

.shorts-stage--left .shorts-dot {
  margin-left: auto;
}

.shorts-stage--left .shorts-tab {
  font-size: 10px;
}

.shorts-stage--left .shorts-chips {
  gap: 6px;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 92%;
  margin: 0 auto;
}

.shorts-stage--left .shorts-chip {
  font-size: 9px;
  padding: 3px 6px;
}

.shorts-stage--left .shorts-actions {
  right: var(--edge);
  gap: 10px;
  top: 60%;
  transform: translateY(-50%);
}

.shorts-stage--left .shorts-avatar {
  width: 44px;
  height: 44px;
  font-size: 14px;
}

.shorts-stage--left .shorts-action {
  width: 36px;
  height: 36px;
}

.shorts-stage--left .shorts-info {
  left: var(--edge);
  right: calc(var(--edge) + 72px);
  bottom: var(--info-bottom);
}

.shorts-stage--left .shorts-line {
  font-size: 10px;
  font-weight: 500;
}

.shorts-stage--left .shorts-line.price {
  font-size: 10px;
  font-weight: 500;
}

.shorts-stage--left .shorts-line.small {
  font-size: 10px;
  font-weight: 500;
  opacity: 0.9;
}

.shorts-stage--left .shorts-more {
  padding: 4px 10px;
  font-size: 10px;
}

.shorts-stage--left .shorts-filters {
  right: var(--edge);
  bottom: var(--filters-bottom);
  font-size: 9px;
  padding: 4px 8px;
}

.shorts-stage--left .shorts-search {
  position: relative;
  left: auto;
  right: auto;
  bottom: auto;
  width: 100%;
  max-width: 85%;
  margin: 0 auto;
  gap: 5px;
}

.shorts-stage--left .shorts-search-input {
  padding: 2px 6px;
  min-height: 22px;
}

.shorts-stage--left .shorts-search-input input {
  font-size: 8px;
}

.shorts-stage--left .shorts-search-input .fa-solid,
.shorts-stage--left .shorts-search-input .fa-regular,
.shorts-stage--left .shorts-search-input .fa-brands {
  font-size: 10px;
}

.shorts-stage--left .shorts-search-btn {
  padding: 2px 6px;
  font-size: 8px;
  min-height: 22px;
}

.shorts-stage--left .shorts-bottomnav {
  height: 44px;
}

.shorts-stage--left .shorts-nav-item {
  font-size: 8px;
}

.shorts-stage--left .shorts-plus {
  width: 30px;
  height: 22px;
  line-height: 22px;
  font-size: 16px;
}

.tutorial-card {
  width: min(360px, 100%);
  background: #ffffff;
  border-radius: 24px;
  padding: 18px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 16px;
}

.tutorial-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff7ed;
  color: #c2410c;
  border: 1px solid #fed7aa;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  width: fit-content;
}

.tutorial-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 16;
  border-radius: 18px;
  overflow: hidden;
  background: #0f172a;
}

.tutorial-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.tutorial-meta h3 {
  margin: 0 0 6px;
  font-size: 18px;
}

.tutorial-meta p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.hero__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
}

@media (min-width: 1024px) {
  .hero__logo {
    justify-content: flex-start;
  }
}

.hero__title {
  font-size: 32px;
  font-weight: 700;
  text-align: center;
  color: #ffffff;
  text-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
}

@media (min-width: 640px) {
  .hero__title {
    font-size: 40px;
  }
}

@media (min-width: 1024px) {
  .hero__title {
    font-size: 48px;
    text-align: left;
  }
}

.hero__headline {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.2;
  color: #ffffff;
  text-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
}

.hero__eyebrow {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.88);
  letter-spacing: 0.02em;
  text-transform: none;
}

.hero__copy {
  font-size: 18px;
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
  letter-spacing: 0.01em;
  color: rgba(255, 255, 255, 0.92);
  text-shadow: 0 6px 22px rgba(0, 0, 0, 0.32);
}

@media (min-width: 640px) {
  .hero__headline {
    font-size: 32px;
  }

  .hero__eyebrow {
    font-size: 17px;
  }

  .hero__copy {
    font-size: 19px;
  }
}

@media (min-width: 1024px) {
  .hero__headline {
    font-size: 40px;
  }

  .hero__eyebrow {
    font-size: 18px;
  }

  .hero__copy {
    font-size: 20px;
    margin: 0;
  }
}

.hero__gradient-text {
  background: none;
  -webkit-background-clip: initial;
  color: inherit;
}

.hero__actions {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  align-items: center;
}

@media (min-width: 640px) {
  .hero__actions {
    flex-direction: row;
  }
}

@media (min-width: 1024px) {
  .hero .container {
    display: flex;
    justify-content: flex-end;
  }

  .hero__actions {
    align-items: flex-start;
    justify-content: flex-start;
  }

  .hero {
    padding-top: 24px;
    background-size: auto 100%;
    background-position: left center;
  }

  .hero__grid {
    width: min(100%, 1020px);
    grid-template-columns: minmax(300px, 380px) minmax(480px, 620px);
    justify-content: end;
    align-items: start;
    gap: clamp(20px, 2.6vw, 40px);
    margin-left: auto;
    margin-right: 0;
    transform: translateX(clamp(72px, 8vw, 180px));
  }

  .hero__visual {
    justify-content: center;
    align-self: start;
  }

  .hero__visual--shorts {
    justify-content: center;
    align-self: start;
  }

  .hero__content {
    width: 100%;
    max-width: 700px;
    justify-self: start;
    margin: 0;
    padding: clamp(24px, 2.8vw, 36px);
    transform: none;
  }
}

@media (max-width: 640px) {
  .hero {
    padding-top: 24px;
    padding-bottom: 72px;
    background-position: 34% center;
  }

  .hero::before {
    background:
      linear-gradient(180deg, rgba(15, 23, 42, 0.58) 0%, rgba(15, 23, 42, 0.44) 44%, rgba(15, 23, 42, 0.72) 100%);
  }

  .hero__content {
    padding: 22px 18px;
    border-radius: 22px;
  }

  .hero__actions {
    gap: 12px;
  }

  .btn-youtube {
    font-size: 16px;
  }

  .youtube-icon {
    width: 72px;
    height: 52px;
  }

  .hero__actions .btn-youtube,
  .hero__actions .btn-appstore,
  .hero__actions .btn-googleplay,
  .download-actions .btn-appstore,
  .download-actions .btn-googleplay {
    height: 56px;
    min-width: 190px;
  }

  .hero__actions .store-badge,
  .download-actions .store-badge {
    height: 100%;
  }
}

.phone {
  position: relative;
  width: 288px;
}

@media (min-width: 640px) {
  .phone {
    width: 320px;
  }
}

.phone__shell {
  position: relative;
  background: linear-gradient(to bottom, #111827, #1f2937);
  border-radius: 3rem;
  padding: 12px;
  box-shadow: var(--shadow);
}

.phone__notch {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 128px;
  height: 28px;
  background: #111827;
  border-radius: 0 0 20px 20px;
  z-index: 2;
}

.phone__screen {
  position: relative;
  border-radius: 2.5rem;
  background: #0f172a;
  overflow: hidden;
  aspect-ratio: 9 / 19;
}

.phone__screen iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(124, 45, 18, 0.2), rgba(17, 24, 39, 0.9));
  pointer-events: none;
}

.video-info {
  position: absolute;
  inset: auto 0 0 0;
  z-index: 2;
  padding: 16px;
  color: #ffffff;
  display: grid;
  gap: 12px;
}

.video-info__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.video-info__location {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
}

.video-info__price {
  font-size: 24px;
  font-weight: 700;
}

.video-info__type {
  background: var(--orange-500);
  color: #ffffff;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
}

.video-info__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.video-info__tag {
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 13px;
}

.video-info__button {
  width: 100%;
  background: linear-gradient(to right, var(--orange-500), var(--amber-500));
  color: #ffffff;
  border: none;
  padding: 12px 16px;
  font-weight: 700;
  border-radius: 14px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.2s ease;
}

.video-info__button:hover {
  box-shadow: 0 12px 24px rgba(249, 115, 22, 0.3);
}

.float-card {
  position: absolute;
  background: #ffffff;
  border-radius: 16px;
  padding: 14px 16px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 10px;
}

.float-card--verified {
  top: -16px;
  right: -16px;
  animation: bounce 2s infinite;
}

.float-card--live {
  bottom: -16px;
  left: -16px;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.trust {
  padding: 56px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: linear-gradient(to bottom, rgba(255, 237, 213, 0.5), #ffffff);
}

main > .trust {
  min-height: auto;
}

.neighborhoods {
  position: relative;
}

.neighborhoods__track {
  display: flex;
  align-items: stretch;
  gap: 18px;
  overflow-x: auto;
  padding: 4px 4px 12px;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.neighborhoods__track::-webkit-scrollbar {
  display: none;
}

.neighborhoods__control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 52px;
  height: 52px;
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: rgba(255, 255, 255, 0.96);
  color: var(--text);
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 500;
  line-height: 1;
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.14);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.neighborhoods__control:hover {
  transform: translateY(-50%) scale(1.03);
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.18);
}

.neighborhoods__control--left {
  left: -22px;
}

.neighborhoods__control--right {
  right: -22px;
}

.neighborhood-card {
  position: relative;
  flex: 0 0 220px;
  min-height: 246px;
  border-radius: 22px;
  overflow: hidden;
  background: #cbd5e1;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #ffffff;
  scroll-snap-align: start;
  box-shadow: 0 16px 32px rgba(15, 23, 42, 0.18);
}

.neighborhood-card--tall {
  flex-basis: 240px;
}

.neighborhood-card--medium {
  flex-basis: 220px;
}

.neighborhood-card--short {
  flex-basis: 200px;
}

.neighborhood-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.08) 0%, rgba(15, 23, 42, 0.2) 38%, rgba(15, 23, 42, 0.86) 100%);
  z-index: 0;
}

.neighborhood-card--testimonial {
  background: linear-gradient(160deg, #0f3c2b, #0b2a1e);
  color: #f8fafc;
}

.neighborhood-card--testimonial::after {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0.25) 100%);
}

.neighborhood-card__eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.neighborhood-card__sub {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.75);
}

.neighborhood-card--testimonial p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.9);
}

.neighborhood-card__content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 56px 16px 16px;
  justify-content: flex-end;
}

.neighborhood-card__content h3 {
  margin: 0;
  font-size: 18px;
  color: #ffffff;
  text-shadow: 0 8px 16px rgba(0, 0, 0, 0.45);
}

.neighborhood-card__content p {
  margin: 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.94);
}

.neighborhood-card__cta {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.95);
  color: #111827;
  border: none;
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
}

.neighborhood-card--testimonial .neighborhood-card__content {
  position: relative;
  left: auto;
  right: auto;
  bottom: auto;
  justify-content: flex-end;
  padding-top: 16px;
}

@media (min-width: 1024px) {
  .neighborhoods__track {
    padding-inline: 30px;
  }

  .neighborhoods__control {
    display: inline-flex;
  }

  .neighborhood-card {
    flex-basis: 260px;
    min-height: 286px;
  }
}

@media (max-width: 640px) {
  .neighborhoods__track {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 102px;
    gap: 12px;
    overflow: visible;
    scroll-snap-type: none;
    padding: 0;
  }

  .neighborhood-card {
    flex: none;
    min-height: auto;
    grid-row: span 2;
  }

  .neighborhood-card--tall {
    grid-row: span 3;
  }

  .neighborhood-card--medium {
    grid-row: span 2;
  }

  .neighborhood-card--short {
    grid-row: span 1;
  }

  .neighborhood-card__content {
    padding: 12px;
  }

  .neighborhood-card__content h3 {
    font-size: 14px;
  }

  .neighborhood-card__content p {
    font-size: 11px;
  }

  .neighborhood-card__cta {
    font-size: 11px;
    padding: 5px 10px;
  }
}

.section-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 12px;
}

.section-subtitle {
  font-size: 18px;
}

.step-card {
  border-radius: 24px;
  padding: 32px;
  height: 100%;
}

.step-card.orange {
  background: linear-gradient(to bottom right, #ffedd5, #fed7aa);
}

.step-card.amber {
  background: linear-gradient(to bottom right, #fef3c7, #fde68a);
}

.step-card.green {
  background: linear-gradient(to bottom right, #dcfce7, #bbf7d0);
}

.step-card__badge {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  background: linear-gradient(to bottom right, var(--orange-500), var(--amber-500));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 24px;
  box-shadow: 0 12px 20px rgba(249, 115, 22, 0.3);
}

.icon-list {
  display: grid;
  gap: 16px;
}

.icon-list__item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.icon-list__icon {
  width: 24px;
  height: 24px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 4px;
}

.icon-list__icon.orange {
  background: #ffedd5;
  color: var(--orange-600);
}

.icon-list__icon.green {
  background: #dcfce7;
  color: var(--green-600);
}

.icon-list__icon.purple {
  background: #ede9fe;
  color: var(--purple-600);
}

.property-group {
  display: grid;
  gap: 48px;
}

.property-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 24px;
}

.property-card {
  text-align: center;
  cursor: pointer;
}

.property-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  background: #ffedd5;
  color: var(--orange-600);
  transition: all 0.2s ease;
}

.property-card:hover {
  border-color: #fdba74;
}

.property-card:hover .property-card__icon {
  background: var(--orange-500);
  color: #ffffff;
}

.property-card.green:hover {
  border-color: #86efac;
}

.property-card.green .property-card__icon {
  background: #dcfce7;
  color: var(--green-600);
}

.property-card.green:hover .property-card__icon {
  background: var(--green-500);
  color: #ffffff;
}

.image-frame {
  border-radius: 40px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.feature-card {
  text-align: center;
}

.feature-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  background: linear-gradient(to bottom right, #ffedd5, #fde68a);
  color: var(--orange-600);
  transition: transform 0.2s ease;
}

.feature-card:hover .feature-card__icon {
  transform: scale(1.08);
}

.download-actions {
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: center;
}

@media (min-width: 640px) {
  .download-actions {
    flex-direction: row;
  }
}

.policy-hero {
  padding: 140px 0 60px;
  background: linear-gradient(to bottom, rgba(255, 237, 213, 0.7), #ffffff 60%);
}

.policy-card {
  background: #ffffff;
  border-radius: 24px;
  border: 1px solid #f1f5f9;
  box-shadow: var(--shadow);
  padding: 32px;
  display: grid;
  gap: 16px;
}

.policy-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  color: var(--muted);
  font-size: 14px;
}

.policy-dates {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 14px;
}

.policy-content {
  padding-top: 0;
}

.policy-article {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  gap: 28px;
}

.policy-section {
  display: grid;
  gap: 12px;
}

.policy-section h2 {
  margin: 0;
  font-size: 24px;
}

.policy-section h3 {
  margin: 12px 0 0;
  font-size: 18px;
}

.policy-section h4 {
  margin: 10px 0 0;
  font-size: 16px;
}

.policy-section p,
.policy-section ul,
.policy-section ol {
  margin: 0;
  color: #374151;
}

.policy-section ul,
.policy-section ol {
  padding-left: 18px;
  display: grid;
  gap: 8px;
}

.policy-raw {
  margin: 0;
  white-space: pre-wrap;
  word-break: break-word;
  font: inherit;
  line-height: 1.7;
  color: #374151;
}

.footer {
  background: var(--gray-900);
  color: #d1d5db;
  padding: 64px 0;
}

.footer__grid {
  display: grid;
  gap: 32px;
}

.footer h4 {
  margin: 0 0 16px 0;
  color: #ffffff;
  font-size: 16px;
}

.footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}

.footer button {
  background: none;
  border: none;
  padding: 0;
  color: inherit;
  cursor: pointer;
}

.footer a {
  color: inherit;
}

.footer button:hover {
  color: #ffffff;
}

.footer a:hover {
  color: #ffffff;
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.footer__social {
  display: flex;
  gap: 16px;
  margin-top: 24px;
}

.footer__social .btn-icon {
  color: #d1d5db;
}

.footer__divider {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid #1f2937;
  text-align: center;
  color: #9ca3af;
  font-size: 14px;
}

@media (min-width: 640px) {
  .footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Shorts demo section */

.shorts-section {
  background: #000000;
  color: #ffffff;
  padding: 0;
}

.shorts-stage {
  position: relative;
  width: 100%;
  height: 78vh;
  min-height: 560px;
  max-height: 920px;
  background: #000000;
  overflow: hidden;
}

@media (max-width: 640px) {
  .shorts-stage {
    height: 72vh;
    min-height: 520px;
  }
}

.shorts-iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  aspect-ratio: 9 / 16;
}

.shorts-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.75));
  pointer-events: none;
}

.shorts-top {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  padding: 18px 24px 10px;
  display: grid;
  gap: 10px;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.55), transparent);
  z-index: 5;
}

.shorts-top-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.shorts-icon-button {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.shorts-tabs {
  display: flex;
  align-items: center;
  gap: 18px;
  flex: 1;
  justify-content: center;
  overflow-x: auto;
  scrollbar-width: none;
}

.shorts-tabs::-webkit-scrollbar {
  display: none;
}

.shorts-tab {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 600;
  font-size: 14px;
  white-space: nowrap;
  cursor: pointer;
  position: relative;
}

.shorts-tab.active {
  color: #ffffff;
}

.shorts-tab.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 2px;
  background: #ffffff;
  border-radius: 2px;
}

.shorts-dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #ef4444;
}

.shorts-chips {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
}

.shorts-chip {
  background: rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  padding: 6px 12px;
  border: 1px solid transparent;
  color: #ffffff;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
}

.shorts-chip.active {
  border-color: #ffffff;
  background: rgba(255, 255, 255, 0.2);
}

.shorts-actions {
  position: absolute;
  right: 24px;
  top: 34%;
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: center;
  z-index: 6;
}

.shorts-action-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.shorts-action-text {
  font-size: 9px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1;
}

.shorts-avatar {
  width: 56px;
  height: 56px;
  border-radius: 999px;
  background: #b91c1c;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-weight: 700;
  font-size: 18px;
  box-shadow: 0 0 0 4px rgba(34, 211, 238, 0.6);
}

.shorts-action {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.35);
  border: none;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
}

.shorts-badge {
  position: absolute;
  bottom: 4px;
  right: 4px;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: #ef4444;
  color: #ffffff;
  font-size: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.shorts-action-group .shorts-badge {
  bottom: auto;
  top: 2px;
}

.shorts-info {
  position: absolute;
  left: 24px;
  right: 160px;
  bottom: 180px;
  display: grid;
  gap: 6px;
  z-index: 6;
  color: #f8fafc;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.65);
}

.shorts-line {
  font-size: 14px;
  font-weight: 500;
}

.shorts-line.price {
  font-size: 22px;
  font-weight: 700;
}

.shorts-line.small {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.85);
}

.shorts-more {
  width: fit-content;
  border: none;
  background: #334155;
  color: #ffffff;
  padding: 8px 18px;
  font-weight: 600;
  border-radius: 999px;
  cursor: pointer;
  margin-top: 6px;
}

.shorts-filters {
  position: absolute;
  right: 24px;
  bottom: 158px;
  background: rgba(0, 0, 0, 0.6);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  padding: 8px 12px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  cursor: pointer;
  z-index: 6;
}

.shorts-search {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 92px;
  display: flex;
  gap: 12px;
  z-index: 6;
}

.shorts-search-input {
  flex: 1;
  background: #ffffff;
  border-radius: 999px;
  padding: 4px 10px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #111827;
}

.shorts-search-input .fa-solid,
.shorts-search-input .fa-regular,
.shorts-search-input .fa-brands {
  font-size: 12px;
}

.shorts-search-input input {
  border: none;
  outline: none;
  width: 100%;
  font-size: 9px;
}

.shorts-search-btn {
  background: #ffffff;
  border: none;
  border-radius: 999px;
  padding: 4px 10px;
  font-weight: 600;
  font-size: 9px;
  cursor: pointer;
}

.shorts-bottomnav {
  position: relative;
  left: auto;
  right: auto;
  bottom: auto;
  height: 44px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.98), rgba(0, 0, 0, 0.2));
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  width: 100%;
  padding: 0 14px 3px;
  z-index: 12;
  box-shadow: 0 -10px 18px rgba(0, 0, 0, 0.4);
}

.shorts-nav-item {
  flex: 1;
  min-width: 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  font-size: 8px;
  background: none;
  border: none;
  color: #f8fafc;
  cursor: pointer;
}

.shorts-nav-item i {
  width: 20px;
  height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

.shorts-nav-item span {
  line-height: 1;
}

.shorts-nav-item.active {
  color: #ffffff;
}

.shorts-nav-item.main {
  transform: translateY(-6px);
  align-items: center;
}

.shorts-plus {
  width: 32px;
  height: 24px;
  border-radius: 16px;
  background: #ffffff;
  color: #111827;
  font-size: 16px;
  line-height: 24px;
  text-align: center;
  font-weight: 700;
  box-shadow: 0 10px 20px rgba(255, 45, 85, 0.35);
  border: 2px solid rgba(255, 45, 85, 0.7);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.shorts-stage--phone {
  height: 100%;
  min-height: 0;
  max-height: none;
}

.shorts-stage--phone .shorts-top {
  padding: 12px 12px 6px;
}

.shorts-stage--phone .shorts-tabs {
  gap: 12px;
}

.shorts-stage--phone .shorts-tab {
  font-size: 12px;
}

.shorts-stage--phone .shorts-chips {
  gap: 6px;
}

.shorts-stage--phone .shorts-chip {
  font-size: 10px;
  padding: 4px 8px;
}

.shorts-stage--phone .shorts-actions {
  right: 10px;
  gap: 14px;
}

.shorts-stage--phone .shorts-avatar {
  width: 46px;
  height: 46px;
  font-size: 16px;
}

.shorts-stage--phone .shorts-action {
  width: 40px;
  height: 40px;
}

.shorts-stage--phone .shorts-info {
  left: 12px;
  right: 96px;
  bottom: 140px;
}

.shorts-stage--phone .shorts-line {
  font-size: 12px;
}

.shorts-stage--phone .shorts-line.price {
  font-size: 18px;
}

.shorts-stage--phone .shorts-more {
  padding: 6px 14px;
  font-size: 12px;
}

.shorts-stage--phone .shorts-filters {
  right: 12px;
  bottom: 128px;
  font-size: 10px;
  padding: 6px 10px;
}

.shorts-stage--phone .shorts-search {
  left: 12px;
  right: 12px;
  bottom: 78px;
  gap: 8px;
}

.shorts-stage--phone .shorts-search-input {
  padding: 8px 12px;
}

.shorts-stage--phone .shorts-search-input input {
  font-size: 12px;
}

.shorts-stage--phone .shorts-search-btn {
  padding: 8px 14px;
  font-size: 12px;
}

.shorts-stage--phone .shorts-bottomnav {
  height: 64px;
}

.shorts-stage--phone .shorts-nav-item {
  font-size: 10px;
}

.shorts-stage--phone .shorts-plus {
  width: 40px;
  height: 30px;
  line-height: 30px;
  font-size: 20px;
}

/* Feed page */

.feed-body {
  background: #000000;
  color: #ffffff;
  overflow: hidden;
}

.feed-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.feed-modal {
  position: relative;
  width: min(360px, 92vw);
  aspect-ratio: 9 / 16;
  border-radius: 24px;
  overflow: hidden;
  background: #000000;
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.45);
}

.feed-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 20px;
  z-index: 30;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.35);
}

.feed-topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  padding: 16px;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), transparent);
}

.feed-topbar__inner {
  display: grid;
  gap: 12px;
}

.feed-top-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.feed-icon-button {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.feed-tabs {
  display: flex;
  align-items: center;
  gap: 18px;
  overflow-x: auto;
  scrollbar-width: none;
  flex: 1;
}

.feed-tabs::-webkit-scrollbar {
  display: none;
}

.feed-tab {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 600;
  font-size: 14px;
  position: relative;
  white-space: nowrap;
  cursor: pointer;
}

.feed-tab.active {
  color: #ffffff;
}

.feed-tab.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 2px;
  background: #ffffff;
  border-radius: 2px;
}

.feed-dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #ef4444;
}

.feed-chip-row {
  display: flex;
  gap: 8px;
}

.chip {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid transparent;
  color: #ffffff;
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
}

.chip.active {
  border-color: #ffffff;
  background: rgba(255, 255, 255, 0.2);
}

.feed-video {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.video-card {
  position: absolute;
  inset: 0;
  background: #000000;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.video-card.is-transitioning {
  opacity: 0;
  transform: translateY(16px);
}

.video-card iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.video-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.6));
  pointer-events: none;
}

.video-sidebar {
  position: absolute;
  right: 16px;
  top: 22%;
  bottom: 140px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  z-index: 10;
}

.sidebar-avatar {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.avatar-circle {
  width: 52px;
  height: 52px;
  border-radius: 999px;
  background: #d946ef;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-weight: 700;
  font-size: 18px;
  box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.6);
}

.sidebar-avatar__img {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  border: 2px solid transparent;
  background: linear-gradient(to bottom right, var(--orange-500), var(--amber-500));
  padding: 2px;
}

.sidebar-avatar__img img {
  width: 100%;
  height: 100%;
  border-radius: 999px;
  object-fit: cover;
  background: #1f2937;
}

.sidebar-verified {
  position: absolute;
  bottom: -4px;
  right: -4px;
  width: 20px;
  height: 20px;
  border-radius: 999px;
  background: var(--blue-500);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 10px;
}

.sidebar-button {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  background: none;
  border: none;
  color: #ffffff;
  cursor: pointer;
  font-size: 12px;
}

.sidebar-button__icon {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease;
  position: relative;
}

.sidebar-button__icon.gradient {
  background: linear-gradient(to bottom right, var(--orange-500), var(--amber-500));
  box-shadow: 0 10px 20px rgba(249, 115, 22, 0.4);
}

.sidebar-button:active .sidebar-button__icon {
  transform: scale(0.9);
}

.sidebar-badge {
  position: absolute;
  bottom: 4px;
  right: 4px;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: #ef4444;
  color: #ffffff;
  font-size: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.video-overlay-info {
  position: absolute;
  left: 16px;
  right: 120px;
  bottom: 170px;
  z-index: 10;
  display: grid;
  gap: 6px;
}

.info-line {
  font-size: 14px;
  font-weight: 500;
}

.info-line.price {
  font-size: 22px;
  font-weight: 700;
}

.info-line.small {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.85);
}

.info-button {
  width: fit-content;
  border: none;
  background: #334155;
  color: #ffffff;
  padding: 8px 18px;
  font-weight: 600;
  border-radius: 999px;
  cursor: pointer;
  margin-top: 6px;
}

.video-loading {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 30;
  background: #000000;
}

.spinner {
  width: 48px;
  height: 48px;
  border: 4px solid var(--orange-500);
  border-top-color: transparent;
  border-radius: 999px;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.swipe-indicator {
  position: absolute;
  left: 50%;
  bottom: 80px;
  transform: translateX(-50%);
  z-index: 10;
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}

.feed-bottomnav {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  height: 72px;
  background: #000000;
  border-top: 1px solid #1f2937;
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 0 8px;
  z-index: 20;
}

.feed-searchbar {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 90px;
  display: flex;
  gap: 12px;
  z-index: 20;
}

.search-input {
  flex: 1;
  background: #ffffff;
  border-radius: 999px;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #111827;
}

.search-input input {
  border: none;
  outline: none;
  width: 100%;
  font-size: 14px;
}

.search-btn {
  background: #ffffff;
  border: none;
  border-radius: 999px;
  padding: 10px 18px;
  font-weight: 600;
  cursor: pointer;
}

.feed-filters {
  position: fixed;
  right: 18px;
  bottom: 158px;
  background: rgba(0, 0, 0, 0.6);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  padding: 8px 12px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  cursor: pointer;
  z-index: 20;
}

.bottomnav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  color: #9ca3af;
  font-size: 12px;
  background: none;
  border: none;
  cursor: pointer;
  text-decoration: none;
}

.bottomnav-item.active {
  color: #ffffff;
}

.bottomnav-item--main {
  transform: translateY(-18px);
}

.plus-pill {
  width: 48px;
  height: 36px;
  border-radius: 16px;
  background: #ffffff;
  color: #111827;
  font-size: 24px;
  line-height: 36px;
  text-align: center;
  font-weight: 700;
  box-shadow: 0 10px 20px rgba(255, 45, 85, 0.35);
  border: 2px solid rgba(255, 45, 85, 0.7);
}

.bottomnav-item span {
  font-size: 11px;
}

.bottomnav-item svg {
  width: 24px;
  height: 24px;
}

@media (max-width: 640px) {
  .shorts-stage--left .shorts-search {
    position: absolute !important;
    left: var(--edge);
    right: var(--edge);
    bottom: 120px;
    max-width: none;
    margin: 0;
  }

  .shorts-stage--left .shorts-bottomnav {
    height: 44px;
    padding: 0 8px 3px;
  }

  .shorts-stage--left .shorts-nav-item {
    font-size: 8px;
    gap: 4px;
  }

  .shorts-stage--left .shorts-plus {
    width: 32px;
    height: 24px;
    line-height: 24px;
    font-size: 16px;
  }

  .shorts-nav-item.main {
    transform: translateY(-4px);
  }
}
