:root {
  --ink: #282a2f;
  --ink-soft: #5d616a;
  --muted: #858992;
  --line: #e8e9ec;
  --paper: #ffffff;
  --wash: #f7f7f8;
  --teal: #008f79;
  --teal-dark: #006d5d;
  --teal-light: #dff4ee;
  --coral: #ff3a48;
  --coral-dark: #db2534;
  --gold: #f4bd4f;
  --shadow: 0 18px 50px rgb(37 40 47 / 9%);
  --page: calc(100% - 96px);
  --ease: 180ms ease;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

button,
input {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  border: 0;
  cursor: pointer;
}

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

button:focus-visible,
a:focus-visible,
input:focus-visible {
  outline: 3px solid rgb(0 143 121 / 35%);
  outline-offset: 3px;
}

.page-width {
  width: var(--page);
  max-width: 1320px;
  margin-inline: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.announcement-bar {
  color: #3d414a;
  background: #eff7f5;
  font-size: 12px;
  font-weight: 600;
}

.announcement-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 35px;
  gap: 20px;
}

.announcement-content p {
  margin: 0;
}

.announcement-content a {
  color: var(--teal-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  background: rgb(255 255 255 / 94%);
  border-bottom: 1px solid rgb(232 233 236 / 88%);
  backdrop-filter: blur(18px);
}

.header-content {
  display: flex;
  align-items: center;
  min-height: 72px;
  gap: 30px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--ink);
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -1.2px;
  white-space: nowrap;
}

.brand-mark {
  display: inline-grid;
  width: 23px;
  height: 23px;
  place-items: center;
  color: var(--coral);
  font-size: 20px;
  line-height: 1;
}

.brand-mark svg {
  width: 100%;
  height: 100%;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 1.65vw, 27px);
  margin-right: auto;
  font-size: 13px;
  font-weight: 650;
  white-space: nowrap;
}

.primary-nav a {
  position: relative;
  color: #484c54;
  transition: color var(--ease);
}

.primary-nav a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  background: var(--coral);
  content: "";
  opacity: 0;
  transform: scaleX(.4);
  transition: opacity var(--ease), transform var(--ease);
}

.primary-nav a:hover {
  color: var(--ink);
}

.primary-nav a:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
}

.text-button {
  padding: 7px 2px;
  color: #4b4f57;
  background: transparent;
}

.text-button:hover {
  color: var(--teal-dark);
}

.sell-button {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 38px;
  padding: 0 15px;
  color: #fff;
  background: var(--coral);
  border-radius: 7px;
  box-shadow: 0 6px 13px rgb(255 58 72 / 24%);
  font-weight: 750;
  transition: transform var(--ease), background var(--ease), box-shadow var(--ease);
}

.sell-button span {
  font-size: 19px;
  font-weight: 400;
  line-height: 0;
}

.sell-button:hover {
  background: var(--coral-dark);
  box-shadow: 0 9px 18px rgb(255 58 72 / 30%);
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  width: 38px;
  padding: 8px 5px;
  background: transparent;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 100%;
  height: 2px;
  margin: 4px 0;
  background: var(--ink);
  border-radius: 99px;
}

.hero-section {
  padding: 25px 0 0;
}

.hero-card {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 492px;
  overflow: hidden;
  isolation: isolate;
  padding: 66px clamp(36px, 7vw, 104px);
  color: #fff;
  background: #223638 url("https://images.unsplash.com/photo-1558618666-fcd25c85cd64?auto=format&fit=crop&w=1900&q=90") center/cover;
  border-radius: 18px;
}

.hero-card::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(90deg, rgb(16 25 31 / 91%) 0%, rgb(18 29 34 / 73%) 41%, rgb(14 31 34 / 15%) 74%, rgb(14 31 34 / 26%) 100%);
  content: "";
}

.hero-card::after {
  position: absolute;
  z-index: -1;
  right: -65px;
  bottom: -180px;
  width: 510px;
  height: 510px;
  background: rgb(80 190 171 / 20%);
  border: 1px solid rgb(255 255 255 / 20%);
  border-radius: 50%;
  box-shadow: 0 0 0 85px rgb(80 190 171 / 9%), 0 0 0 170px rgb(80 190 171 / 6%);
  content: "";
}

.hero-content {
  position: relative;
  max-width: 675px;
}

.hero-kicker,
.section-kicker {
  margin: 0 0 10px;
  color: var(--teal);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.35px;
}

.hero-kicker {
  color: #a7dfd4;
}

.hero-content h1 {
  max-width: 620px;
  margin: 0;
  color: #fff;
  font-size: clamp(39px, 4vw, 60px);
  font-weight: 760;
  letter-spacing: -2.5px;
  line-height: 1.02;
  text-wrap: balance;
}

.hero-copy {
  max-width: 555px;
  margin: 19px 0 29px;
  color: rgb(255 255 255 / 85%);
  font-size: 16px;
  line-height: 1.55;
}

.search-tabs {
  display: flex;
  width: max-content;
  max-width: 100%;
  gap: 4px;
  padding: 4px;
  margin-bottom: 10px;
  overflow-x: auto;
  background: rgb(11 18 21 / 30%);
  border: 1px solid rgb(255 255 255 / 20%);
  border-radius: 9px;
}

.search-tab {
  padding: 8px 12px;
  color: rgb(255 255 255 / 74%);
  background: transparent;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
  transition: color var(--ease), background var(--ease);
}

.search-tab.is-active {
  color: #223338;
  background: #fff;
}

.hero-search {
  display: flex;
  align-items: center;
  min-height: 58px;
  padding: 5px 5px 5px 17px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 13px 35px rgb(8 13 15 / 22%);
}

.search-icon {
  flex: 0 0 auto;
  width: 22px;
  color: #777c84;
}

.hero-search input {
  width: 100%;
  min-width: 0;
  padding: 12px 14px;
  color: var(--ink);
  background: transparent;
  border: 0;
  outline: 0;
  font-size: 15px;
}

.hero-search input::placeholder {
  color: #989da5;
}

.hero-search button {
  align-self: stretch;
  padding: 0 22px;
  color: #fff;
  background: var(--coral);
  border-radius: 7px;
  font-size: 13px;
  font-weight: 800;
  transition: background var(--ease);
}

.hero-search button:hover {
  background: var(--coral-dark);
}

.trending-searches {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 7px 15px;
  margin-top: 16px;
  color: rgb(255 255 255 / 61%);
  font-size: 12px;
}

.trending-searches button {
  padding: 0;
  color: #fff;
  background: transparent;
  font-weight: 650;
  text-decoration: underline;
  text-decoration-color: rgb(255 255 255 / 38%);
  text-underline-offset: 3px;
}

.hero-detail {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 11px 13px;
  color: #fff;
  background: rgb(26 45 47 / 56%);
  border: 1px solid rgb(255 255 255 / 19%);
  border-radius: 8px;
  backdrop-filter: blur(9px);
  font-size: 12px;
  font-weight: 650;
}

.hero-detail-top {
  top: 26px;
  right: 29px;
}

.hero-detail-bottom {
  right: 29px;
  bottom: 27px;
}

.detail-dot {
  width: 8px;
  height: 8px;
  background: #91e1c1;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgb(145 225 193 / 18%);
}

.avatar-stack {
  display: flex;
  padding-right: 7px;
}

.avatar-stack i {
  display: block;
  width: 17px;
  height: 17px;
  margin-right: -7px;
  background: #e2c5a9;
  border: 1px solid rgb(255 255 255 / 60%);
  border-radius: 50%;
}

.avatar-stack i:nth-child(2) {
  background: #a9c6c2;
}

.avatar-stack i:nth-child(3) {
  background: #d6a9a1;
}

.promo-section {
  padding-top: 24px;
}

.promo-card {
  position: relative;
  display: flex;
  min-height: 278px;
  overflow: hidden;
  padding: 44px 55px;
  color: #fff;
  border-radius: 14px;
  transition: background 300ms ease;
}

.promo-coral {
  background: #f34a53;
}

.promo-teal {
  background: #007d71;
}

.promo-plum {
  background: #5e485c;
}

.promo-copy {
  position: relative;
  z-index: 2;
  width: min(520px, 56%);
}

.promo-copy p {
  margin: 0 0 12px;
  color: rgb(255 255 255 / 75%);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.15px;
}

.promo-copy h2 {
  margin: 0;
  font-size: clamp(27px, 3.1vw, 42px);
  font-weight: 740;
  letter-spacing: -1.7px;
  line-height: 1.08;
  text-wrap: balance;
}

.promo-link {
  padding: 0;
  margin-top: 22px;
  color: #fff;
  background: transparent;
  font-size: 13px;
  font-weight: 800;
}

.promo-link span {
  display: inline-block;
  margin-left: 5px;
  transition: transform var(--ease);
}

.promo-link:hover span {
  transform: translateX(4px);
}

.promo-art {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 48%;
  height: 100%;
  overflow: hidden;
}

.promo-orbit {
  position: absolute;
  border: 1px solid rgb(255 255 255 / 27%);
  border-radius: 50%;
}

.orbit-one {
  top: -150px;
  right: -64px;
  width: 435px;
  height: 435px;
}

.orbit-two {
  top: -49px;
  right: 64px;
  width: 280px;
  height: 280px;
  border-color: rgb(255 255 255 / 17%);
}

.promo-object {
  position: absolute;
  filter: drop-shadow(0 19px 14px rgb(44 26 28 / 19%));
}

.object-book {
  right: 91px;
  bottom: 38px;
  width: 123px;
  height: 48px;
  background: #f6c16b;
  border-radius: 3px 7px 7px 3px;
  box-shadow: inset 0 -10px #efaa4e, inset 11px 0 #fff2d5;
  transform: rotate(-10deg);
}

.object-lamp {
  right: 197px;
  bottom: 56px;
  width: 78px;
  height: 129px;
  background: #fbe0a4;
  clip-path: polygon(15% 30%, 85% 30%, 100% 78%, 0 78%);
}

.object-lamp::after {
  position: absolute;
  bottom: -31px;
  left: 35px;
  width: 8px;
  height: 32px;
  background: #5b4244;
  box-shadow: -25px 31px 0 2px #5b4244, 25px 31px 0 2px #5b4244;
  content: "";
}

.object-vase {
  right: 36px;
  bottom: 39px;
  width: 82px;
  height: 101px;
  background: #f0dfe0;
  border-radius: 44% 44% 39% 39% / 27% 27% 59% 59%;
  transform: rotate(8deg);
}

.object-vase::before {
  position: absolute;
  top: -30px;
  left: 33px;
  width: 14px;
  height: 45px;
  background: #98bd77;
  border-radius: 100% 0 100% 0;
  box-shadow: -23px 6px 0 #85a767, 19px -8px 0 #a8c981;
  content: "";
}

.promo-controls {
  position: absolute;
  z-index: 3;
  right: 28px;
  bottom: 21px;
  display: flex;
  align-items: center;
  gap: 9px;
  color: rgb(255 255 255 / 86%);
  font-size: 11px;
  font-weight: 700;
}

.round-control {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  color: #fff;
  background: rgb(255 255 255 / 15%);
  border: 1px solid rgb(255 255 255 / 26%);
  border-radius: 50%;
  font-size: 14px;
  transition: background var(--ease);
}

.round-control:hover {
  background: rgb(255 255 255 / 27%);
}

.content-section {
  padding: 79px 0 0;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 25px;
  margin-bottom: 26px;
}

.compact-heading {
  margin-bottom: 17px;
}

.section-heading h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(25px, 2.5vw, 34px);
  font-weight: 760;
  letter-spacing: -1.4px;
  line-height: 1.1;
}

.arrow-link {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 7px;
  color: var(--teal-dark);
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
}

.arrow-link span {
  font-size: 17px;
  line-height: 1;
  transition: transform var(--ease);
}

.arrow-link:hover span {
  transform: translateX(4px);
}

.button-link {
  padding: 0;
  background: transparent;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

.category-card {
  position: relative;
  display: flex;
  aspect-ratio: 1 / 1.17;
  flex-direction: column;
  justify-content: end;
  overflow: hidden;
  padding: 18px;
  color: #fff;
  text-align: left;
  background: #51686a center/cover;
  border-radius: 10px;
  isolation: isolate;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.category-card::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgb(10 15 17 / 74%) 100%);
  content: "";
}

.category-card::after {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 27px;
  height: 27px;
  color: #fff;
  background: rgb(255 255 255 / 19%);
  border: 1px solid rgb(255 255 255 / 28%);
  border-radius: 50%;
  content: "+";
  font-size: 19px;
  font-weight: 300;
  line-height: 24px;
  text-align: center;
  opacity: 0;
  transform: translateY(5px);
  transition: opacity var(--ease), transform var(--ease);
}

.category-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-5px);
}

.category-card:hover::after {
  opacity: 1;
  transform: translateY(0);
}

.category-card span {
  font-size: clamp(19px, 1.8vw, 25px);
  font-weight: 780;
  letter-spacing: -1px;
}

.category-card small {
  display: block;
  margin-top: 5px;
  color: rgb(255 255 255 / 82%);
  font-size: 11px;
  font-weight: 600;
  line-height: 1.3;
}

.category-fashion { background-image: url("https://images.unsplash.com/photo-1490481651871-ab68de25d43d?auto=format&fit=crop&w=700&q=85"); }
.category-tech { background-image: url("https://images.unsplash.com/photo-1498049794561-7780e7231661?auto=format&fit=crop&w=700&q=85"); }
.category-home { background-image: url("https://images.unsplash.com/photo-1555041469-a586c61ea9bc?auto=format&fit=crop&w=700&q=85"); }
.category-cars { background-image: url("https://images.unsplash.com/photo-1503376780353-7e6692767b70?auto=format&fit=crop&w=700&q=85"); }
.category-hobby { background-image: url("https://images.unsplash.com/photo-1513364776144-60967b0f800f?auto=format&fit=crop&w=700&q=85"); }

.filter-row {
  display: flex;
  gap: 9px;
  padding: 1px 0 21px;
  overflow-x: auto;
  scrollbar-width: none;
}

.filter-row::-webkit-scrollbar {
  display: none;
}

.filter-chip {
  flex: 0 0 auto;
  padding: 8px 14px;
  color: #60646c;
  background: #fff;
  border: 1px solid #e5e6e9;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 680;
  transition: border var(--ease), color var(--ease), background var(--ease);
}

.filter-chip:hover,
.filter-chip.is-active {
  color: var(--teal-dark);
  background: var(--teal-light);
  border-color: #bde6db;
}

.listing-row {
  display: grid;
  grid-auto-columns: minmax(210px, 1fr);
  grid-auto-flow: column;
  grid-template-rows: 1fr;
  gap: 17px;
  overflow-x: auto;
  padding: 3px 1px 12px;
  scroll-snap-type: x mandatory;
  scrollbar-color: #d7dade transparent;
  scrollbar-width: thin;
}

.listing-card {
  position: relative;
  min-width: 0;
  overflow: hidden;
  background: #fff;
  border: 1px solid #ebeced;
  border-radius: 10px;
  scroll-snap-align: start;
  transition: border var(--ease), box-shadow var(--ease), transform var(--ease);
}

.listing-card:hover {
  border-color: #d9dcdf;
  box-shadow: 0 12px 28px rgb(42 43 47 / 10%);
  transform: translateY(-3px);
}

.listing-photo {
  position: relative;
  aspect-ratio: 1.2 / 1;
  overflow: hidden;
  background: #e3e4e6 center/cover;
}

.listing-photo::after {
  position: absolute;
  inset: auto 0 0;
  height: 35%;
  background: linear-gradient(transparent, rgb(25 27 29 / 21%));
  content: "";
}

.listing-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 350ms ease;
}

.listing-card:hover .listing-photo img {
  transform: scale(1.045);
}

.listing-tag {
  position: absolute;
  z-index: 1;
  top: 10px;
  left: 10px;
  padding: 5px 8px;
  color: #fff;
  background: rgb(34 38 42 / 76%);
  border-radius: 4px;
  font-size: 10px;
  font-weight: 760;
  letter-spacing: .2px;
}

.save-button {
  position: absolute;
  z-index: 2;
  top: 8px;
  right: 8px;
  display: grid;
  width: 31px;
  height: 31px;
  place-items: center;
  color: #2f3338;
  background: rgb(255 255 255 / 91%);
  border-radius: 50%;
  box-shadow: 0 3px 9px rgb(0 0 0 / 8%);
  font-size: 19px;
  line-height: 1;
  transition: color var(--ease), transform var(--ease);
}

.save-button:hover,
.save-button.is-saved {
  color: var(--coral);
  transform: scale(1.08);
}

.listing-body {
  padding: 13px 13px 14px;
}

.listing-title {
  display: -webkit-box;
  margin: 0;
  overflow: hidden;
  color: #363940;
  font-size: 13px;
  font-weight: 680;
  letter-spacing: -.15px;
  line-height: 1.38;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.listing-price {
  margin: 7px 0 6px;
  color: var(--ink);
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -.35px;
}

.listing-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  color: #848992;
  font-size: 10px;
  font-weight: 600;
}

.listing-meta span:last-child {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.discovery-section {
  padding-top: 75px;
}

.recommendation-section {
  padding-top: 80px;
}

.recommendation-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.recommendation-grid .listing-card {
  min-width: 0;
}

.how-it-works-section {
  padding-top: 90px;
}

.how-it-works-panel {
  display: grid;
  grid-template-columns: minmax(240px, .86fr) minmax(0, 1.8fr);
  gap: clamp(34px, 7vw, 106px);
  padding: clamp(37px, 5vw, 70px);
  background: #f2f8f6;
  border-radius: 17px;
}

.how-heading h2 {
  max-width: 420px;
  margin: 0;
  font-size: clamp(29px, 3vw, 42px);
  font-weight: 760;
  letter-spacing: -1.8px;
  line-height: 1.06;
}

.how-heading > p:last-child {
  max-width: 380px;
  margin: 17px 0 0;
  color: #626970;
  font-size: 14px;
  line-height: 1.6;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.benefit-card {
  position: relative;
  padding-top: 37px;
}

.benefit-card::before {
  position: absolute;
  top: 11px;
  left: 0;
  width: 100%;
  height: 1px;
  background: #c9e5dc;
  content: "";
}

.benefit-number {
  position: absolute;
  top: 0;
  left: 0;
  display: grid;
  width: 23px;
  height: 23px;
  place-items: center;
  color: var(--teal-dark);
  background: #d4eee6;
  border-radius: 50%;
  font-size: 9px;
  font-weight: 800;
}

.benefit-card h3 {
  margin: 0;
  font-size: 16px;
  font-weight: 780;
  letter-spacing: -.45px;
}

.benefit-card p {
  margin: 9px 0 0;
  color: #6d737b;
  font-size: 13px;
  line-height: 1.5;
}

.community-section {
  padding-top: 89px;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 17px;
}

.testimonial-card {
  min-height: 203px;
  padding: 22px;
  background: #fff;
  border: 1px solid #e9eaec;
  border-radius: 10px;
}

.stars {
  color: var(--teal);
  font-size: 14px;
  letter-spacing: 1px;
}

.testimonial-card p {
  margin: 18px 0 16px;
  color: #454951;
  font-size: 13px;
  font-weight: 550;
  line-height: 1.56;
}

.testimonial-card span {
  color: #777c84;
  font-size: 11px;
  font-weight: 700;
}

.app-section {
  padding: 91px 0;
}

.app-panel {
  position: relative;
  display: flex;
  min-height: 379px;
  overflow: hidden;
  padding: 55px clamp(36px, 7vw, 102px);
  color: #fff;
  background: #0b3f3d;
  border-radius: 17px;
  isolation: isolate;
}

.app-panel::before,
.app-panel::after {
  position: absolute;
  z-index: -1;
  border: 1px solid rgb(202 247 233 / 18%);
  border-radius: 50%;
  content: "";
}

.app-panel::before {
  top: -416px;
  right: -182px;
  width: 725px;
  height: 725px;
}

.app-panel::after {
  top: -270px;
  right: -39px;
  width: 460px;
  height: 460px;
}

.app-copy {
  max-width: 474px;
}

.app-copy .section-kicker {
  color: #96e6d5;
}

.app-copy h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(31px, 3.3vw, 48px);
  font-weight: 760;
  letter-spacing: -2px;
  line-height: 1.04;
}

.app-copy > p:last-of-type {
  margin: 17px 0 25px;
  color: rgb(255 255 255 / 73%);
  font-size: 14px;
  line-height: 1.55;
}

.store-buttons {
  display: flex;
  gap: 10px;
}

.store-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 137px;
  padding: 8px 12px;
  color: #fff;
  background: #101112;
  border: 1px solid rgb(255 255 255 / 37%);
  border-radius: 7px;
  text-align: left;
  transition: transform var(--ease), background var(--ease);
}

.store-button:hover {
  background: #262a2b;
  transform: translateY(-2px);
}

.store-button svg {
  width: 23px;
  height: 23px;
  flex: 0 0 auto;
}

.store-button span {
  display: grid;
  gap: 0;
  font-size: 15px;
  font-weight: 650;
  line-height: 1.1;
}

.store-button small {
  font-size: 8px;
  font-weight: 600;
  letter-spacing: .15px;
}

.phone-mockup {
  position: absolute;
  right: clamp(52px, 11vw, 176px);
  bottom: -105px;
  width: 209px;
  height: 420px;
  padding: 10px;
  background: #171b1c;
  border: 5px solid #d8e0dd;
  border-bottom: 0;
  border-radius: 29px 29px 0 0;
  box-shadow: 0 -12px 38px rgb(0 0 0 / 24%);
  transform: rotate(6deg);
}

.phone-screen {
  display: flex;
  height: 100%;
  flex-direction: column;
  padding: 10px 12px;
  color: #29302f;
  background: #fcfbf7;
  border-radius: 19px 19px 0 0;
}

.phone-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #272a2b;
  font-size: 7px;
  font-weight: 800;
}

.phone-top i {
  width: 37px;
  height: 8px;
  background: #171919;
  border-radius: 0 0 8px 8px;
}

.phone-top b {
  width: 17px;
  height: 7px;
  border: 1px solid #313434;
  border-radius: 2px;
}

.mini-brand {
  margin-top: 16px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: -.3px;
}

.mini-brand .brand-mark {
  width: 11px;
  height: 11px;
  font-size: 11px;
}

.mini-search {
  padding: 8px;
  margin-top: 13px;
  color: #9b9d9b;
  background: #f0f0ec;
  border-radius: 5px;
  font-size: 7px;
}

.mini-image {
  height: 192px;
  margin-top: 14px;
  background: url("https://images.unsplash.com/photo-1618220179428-22790b461013?auto=format&fit=crop&w=400&q=80") center/cover;
  border-radius: 7px;
}

.phone-screen strong {
  margin-top: 10px;
  font-size: 9px;
}

.mini-price {
  margin-top: 5px;
  font-size: 11px;
  font-weight: 800;
}

.mini-bottom {
  display: flex;
  justify-content: space-around;
  margin-top: auto;
  padding-top: 13px;
  border-top: 1px solid #e6e5e0;
}

.mini-bottom i {
  width: 11px;
  height: 11px;
  background: #d2d5d2;
  border-radius: 50%;
}

.mini-bottom i:first-child {
  background: var(--coral);
}

.site-footer {
  padding: 60px 0 22px;
  background: #f7f7f8;
  border-top: 1px solid #ebebee;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2.2fr repeat(3, 1fr);
  gap: 45px;
  padding-bottom: 51px;
}

.footer-brand p {
  max-width: 260px;
  margin: 15px 0 0;
  color: #6d737b;
  font-size: 12px;
  line-height: 1.6;
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 11px;
}

.footer-column h3 {
  margin: 0 0 4px;
  color: #41444b;
  font-size: 12px;
  font-weight: 800;
}

.footer-column a {
  color: #757a83;
  font-size: 12px;
  font-weight: 600;
}

.footer-column a:hover,
.footer-bottom a:hover {
  color: var(--teal-dark);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  padding-top: 19px;
  color: #90949a;
  border-top: 1px solid #e5e6e8;
  font-size: 11px;
  font-weight: 600;
}

.footer-bottom div {
  display: flex;
  gap: 22px;
}

.mobile-nav {
  display: none;
}

.toast {
  position: fixed;
  z-index: 100;
  right: 24px;
  bottom: 24px;
  max-width: min(360px, calc(100vw - 48px));
  padding: 13px 16px;
  color: #fff;
  background: #292e31;
  border-radius: 8px;
  box-shadow: 0 13px 35px rgb(20 22 25 / 22%);
  font-size: 13px;
  font-weight: 650;
  opacity: 0;
  pointer-events: none;
  transform: translateY(14px);
  transition: opacity var(--ease), transform var(--ease);
}

.toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1160px) {
  :root { --page: calc(100% - 64px); }

  .primary-nav {
    gap: 15px;
  }

  .primary-nav a:nth-child(5) {
    display: none;
  }

  .header-content {
    gap: 22px;
  }

  .category-grid {
    gap: 14px;
  }

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

@media (max-width: 920px) {
  .header-content {
    min-height: 64px;
  }

  .primary-nav {
    gap: 17px;
  }

  .primary-nav a:nth-child(1),
  .primary-nav a:nth-child(2),
  .primary-nav a:nth-child(4) {
    display: none;
  }

  .account-button:first-child {
    display: none;
  }

  .hero-card {
    min-height: 468px;
  }

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

  .category-card {
    aspect-ratio: 1.35 / 1;
  }

  .how-it-works-panel {
    grid-template-columns: 1fr;
  }

  .how-heading > p:last-child {
    max-width: 560px;
  }

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

  .footer-grid {
    grid-template-columns: 1.6fr repeat(3, 1fr);
    gap: 25px;
  }
}

@media (max-width: 700px) {
  :root { --page: calc(100% - 40px); }

  body {
    padding-bottom: 70px;
  }

  .announcement-content {
    justify-content: center;
    min-height: 33px;
  }

  .announcement-content a {
    display: none;
  }

  .site-header {
    position: relative;
  }

  .header-content {
    min-height: 62px;
    justify-content: space-between;
  }

  .brand {
    font-size: 21px;
  }

  .menu-toggle {
    display: block;
    order: 3;
  }

  .primary-nav {
    position: absolute;
    z-index: 19;
    top: 100%;
    right: 0;
    left: 0;
    display: grid;
    gap: 0;
    max-height: 0;
    margin: 0;
    overflow: hidden;
    background: #fff;
    border-bottom: 1px solid transparent;
    box-shadow: 0 18px 28px rgb(29 30 33 / 0%);
    opacity: 0;
    transition: max-height 220ms ease, opacity 220ms ease, border var(--ease), box-shadow var(--ease);
  }

  .nav-open .primary-nav {
    max-height: 390px;
    padding: 10px 20px 18px;
    border-bottom-color: #e7e8ea;
    box-shadow: 0 18px 28px rgb(29 30 33 / 10%);
    opacity: 1;
  }

  .primary-nav a,
  .primary-nav a:nth-child(1),
  .primary-nav a:nth-child(2),
  .primary-nav a:nth-child(4),
  .primary-nav a:nth-child(5) {
    display: block;
    padding: 11px 0;
  }

  .primary-nav a::after {
    display: none;
  }

  .header-actions {
    margin-left: auto;
  }

  .account-button,
  .header-actions .sell-button {
    display: none;
  }

  .hero-section {
    padding-top: 16px;
  }

  .hero-card {
    min-height: 502px;
    padding: 38px 22px 30px;
    border-radius: 12px;
    background-position: 61% center;
  }

  .hero-card::before {
    background: linear-gradient(90deg, rgb(16 25 31 / 90%), rgb(18 29 34 / 64%));
  }

  .hero-content h1 {
    font-size: clamp(35px, 10vw, 49px);
    letter-spacing: -1.9px;
  }

  .hero-copy {
    margin: 16px 0 23px;
    font-size: 14px;
  }

  .hero-search {
    min-height: 54px;
  }

  .hero-search button {
    padding: 0 15px;
  }

  .hero-detail-top {
    top: auto;
    right: auto;
    bottom: 78px;
    left: 22px;
  }

  .hero-detail-bottom {
    display: none;
  }

  .trending-searches {
    padding-right: 5px;
  }

  .promo-section {
    padding-top: 16px;
  }

  .promo-card {
    min-height: 253px;
    padding: 32px 25px;
    border-radius: 11px;
  }

  .promo-copy {
    width: min(100%, 380px);
  }

  .promo-copy h2 {
    max-width: 300px;
    font-size: 29px;
  }

  .promo-art {
    right: -46px;
    width: 49%;
    opacity: .78;
  }

  .object-lamp {
    right: 120px;
    transform: scale(.76);
    transform-origin: bottom;
  }

  .object-book {
    right: 34px;
    transform: scale(.7) rotate(-10deg);
    transform-origin: bottom;
  }

  .object-vase {
    display: none;
  }

  .promo-controls {
    right: 18px;
    bottom: 15px;
  }

  .content-section {
    padding-top: 57px;
  }

  .section-heading {
    align-items: start;
    margin-bottom: 20px;
  }

  .section-heading h2 {
    font-size: 26px;
    letter-spacing: -1.15px;
  }

  .section-kicker {
    margin-bottom: 8px;
  }

  .arrow-link {
    font-size: 11px;
  }

  .category-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .category-card {
    aspect-ratio: 1.18 / 1;
  }

  .category-card:last-child {
    grid-column: span 2;
    aspect-ratio: 2.48 / 1;
  }

  .category-card span {
    font-size: 22px;
  }

  .filter-row {
    padding-bottom: 16px;
  }

  .listing-row {
    grid-auto-columns: minmax(178px, 69vw);
    gap: 12px;
    margin-right: -20px;
    padding-right: 20px;
  }

  .listing-body {
    padding: 11px;
  }

  .listing-title {
    font-size: 12px;
  }

  .listing-price {
    margin: 6px 0;
    font-size: 15px;
  }

  .recommendation-section,
  .discovery-section {
    padding-top: 59px;
  }

  .recommendation-grid {
    gap: 11px;
  }

  .recommendation-grid .listing-photo {
    aspect-ratio: 1 / 1;
  }

  .how-it-works-section {
    padding-top: 61px;
  }

  .how-it-works-panel {
    gap: 30px;
    padding: 31px 23px;
    border-radius: 12px;
  }

  .how-heading h2 {
    font-size: 32px;
  }

  .benefit-grid {
    grid-template-columns: 1fr;
    gap: 23px;
  }

  .benefit-card {
    padding-top: 33px;
  }

  .community-section {
    padding-top: 62px;
  }

  .testimonial-grid {
    grid-template-columns: minmax(220px, 78vw);
    gap: 12px;
    margin-right: -20px;
    overflow-x: auto;
    padding-right: 20px;
    scroll-snap-type: x mandatory;
  }

  .testimonial-card {
    min-height: 188px;
    scroll-snap-align: start;
  }

  .app-section {
    padding: 62px 0;
  }

  .app-panel {
    min-height: 412px;
    padding: 35px 25px;
    border-radius: 12px;
  }

  .app-copy {
    max-width: 270px;
  }

  .app-copy h2 {
    font-size: 34px;
  }

  .store-buttons {
    flex-wrap: wrap;
  }

  .phone-mockup {
    right: -24px;
    bottom: -133px;
    width: 180px;
    height: 361px;
    transform: rotate(7deg);
  }

  .mini-image {
    height: 149px;
  }

  .site-footer {
    padding-top: 43px;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px 22px;
    padding-bottom: 34px;
  }

  .footer-brand {
    grid-column: span 2;
  }

  .footer-bottom {
    display: grid;
    gap: 13px;
  }

  .footer-bottom div {
    gap: 15px;
  }

  .mobile-nav {
    position: fixed;
    z-index: 30;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: space-around;
    height: 69px;
    padding: 5px 12px max(5px, env(safe-area-inset-bottom));
    background: rgb(255 255 255 / 96%);
    border-top: 1px solid #ebeced;
    backdrop-filter: blur(18px);
  }

  .mobile-nav-item {
    display: grid;
    min-width: 43px;
    gap: 3px;
    padding: 1px 0;
    color: #777b84;
    background: transparent;
    font-size: 9px;
    font-weight: 700;
    text-align: center;
  }

  .mobile-nav-item span {
    color: #4e535b;
    font-size: 20px;
    font-weight: 400;
    line-height: 19px;
  }

  .mobile-nav-item.is-active,
  .mobile-nav-item.is-active span {
    color: var(--coral);
  }

  .mobile-sell {
    display: grid;
    width: 55px;
    height: 48px;
    place-items: center;
    gap: 0;
    margin-top: -25px;
    color: #fff;
    background: var(--coral);
    border: 4px solid #fff;
    border-radius: 14px;
    box-shadow: 0 5px 13px rgb(240 46 60 / 28%);
    font-size: 9px;
    font-weight: 800;
  }

  .mobile-sell span {
    margin-bottom: -7px;
    font-size: 23px;
    font-weight: 300;
    line-height: 1;
  }

  .toast {
    right: 16px;
    bottom: 84px;
    max-width: calc(100vw - 32px);
  }
}

@media (max-width: 400px) {
  :root { --page: calc(100% - 32px); }

  .hero-card {
    padding-inline: 18px;
  }

  .hero-detail-top {
    left: 18px;
  }

  .hero-search {
    padding-left: 11px;
  }

  .hero-search input {
    padding-inline: 9px;
  }

  .hero-search button {
    padding: 0 12px;
  }

  .search-tab {
    padding-inline: 10px;
  }

  .promo-card {
    padding-left: 20px;
  }

  .store-button {
    min-width: 125px;
    padding: 7px 9px;
  }
}
