@font-face {
  font-family: "Vietlinker Sans";
  src: url("/demos/realtor/fonts/vietlinker-sans-vietnamese.woff2") format("woff2");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  unicode-range:
    U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0,
    U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
@font-face {
  font-family: "Vietlinker Sans";
  src: url("/demos/realtor/fonts/vietlinker-sans-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  unicode-range:
    U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304,
    U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215,
    U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Vietlinker Serif";
  src: url("/demos/realtor/fonts/vietlinker-serif-normal-vietnamese.woff2") format("woff2");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  unicode-range:
    U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0,
    U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
@font-face {
  font-family: "Vietlinker Serif";
  src: url("/demos/realtor/fonts/vietlinker-serif-normal-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  unicode-range:
    U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304,
    U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215,
    U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Vietlinker Serif";
  src: url("/demos/realtor/fonts/vietlinker-serif-italic-vietnamese.woff2") format("woff2");
  font-style: italic;
  font-weight: 100 900;
  font-display: swap;
  unicode-range:
    U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0,
    U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
@font-face {
  font-family: "Vietlinker Serif";
  src: url("/demos/realtor/fonts/vietlinker-serif-italic-latin.woff2") format("woff2");
  font-style: italic;
  font-weight: 100 900;
  font-display: swap;
  unicode-range:
    U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304,
    U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215,
    U+FEFF, U+FFFD;
}

:root {
  --ink: #10131b;
  --paper: #f6f6f3;
  --line: #dce0e5;
  --muted: #687080;
  --blue: #195cff;
  --deep: #0c111d;
  --ease: cubic-bezier(0.2, 0.7, 0.2, 1);
  --font-sans: "Vietlinker Sans", "Segoe UI", Arial, sans-serif;
  --font-serif: "Vietlinker Serif", Georgia, "Times New Roman", serif;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-sans);
  font-synthesis: none;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
button,
input {
  font: inherit;
}
:focus-visible {
  outline: 3px solid #8fb0ff;
  outline-offset: 3px;
}
.skip {
  position: fixed;
  left: 12px;
  top: -60px;
  z-index: 30;
  background: white;
  padding: 10px;
  color: #000;
}
.skip:focus {
  top: 12px;
}
.demo-bar {
  min-height: 31px;
  padding: 9px 24px;
  background: #dce7ff;
  color: #10204b;
  text-align: center;
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.1em;
  line-height: 1.35;
}
.site-header {
  position: absolute;
  z-index: 5;
  top: 31px;
  left: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px clamp(20px, 4vw, 64px);
  color: white;
}
.site-header.is-scrolled {
  position: fixed;
  top: 0;
  background: rgba(12, 17, 29, 0.9);
  backdrop-filter: blur(12px);
  padding-top: 14px;
  padding-bottom: 14px;
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 9px;
}
.lang-switch {
  padding: 10px 11px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: transparent;
  color: #fff;
  font-size: 10px;
  cursor: pointer;
}
.brand {
  display: flex;
  gap: 10px;
  align-items: center;
  color: inherit;
  text-decoration: none;
  font-size: 10px;
  line-height: 1.1;
  letter-spacing: 0.14em;
}
.brand b {
  letter-spacing: 0.2em;
}
.brand-mark {
  display: grid;
  place-items: center;
  width: 31px;
  height: 31px;
  border-radius: 50%;
  border: 1px solid currentColor;
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 650;
  line-height: 1;
}
.site-header nav {
  display: flex;
  gap: 28px;
}
.site-header nav a {
  color: inherit;
  text-decoration: none;
  font-size: 12px;
}
.header-cta,
.button {
  border: 0;
  border-radius: 0;
  cursor: pointer;
  padding: 14px 18px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.03em;
}
.header-cta {
  background: #fff;
  color: #0b101c;
}
.header-cta span,
.button span {
  margin-left: 16px;
  font-size: 16px;
}
.hero-tour {
  height: 500vh;
  height: 500svh;
  background: #0e131e;
}
.tour-pin {
  position: sticky;
  top: 0;
  height: 100vh;
  height: 100svh;
  overflow: hidden;
  color: white;
}
.tour-scene {
  position: absolute;
  inset: 0;
  background: center/cover no-repeat;
  opacity: 0;
  transform: scale(1.08);
  transition:
    opacity 0.7s var(--ease),
    transform 1.8s var(--ease);
}
.tour-scene.is-active {
  opacity: 1;
  transform: scale(1);
}
.scene-1 {
  background-image:
    linear-gradient(90deg, rgba(6, 11, 20, 0.78), rgba(6, 11, 20, 0.1) 65%),
    url(hero-skyline-home.webp);
}
.scene-2 {
  background-image:
    linear-gradient(90deg, rgba(6, 11, 20, 0.83), rgba(6, 11, 20, 0.12)), url(modern-listing.webp);
}
.scene-3 {
  background-image:
    linear-gradient(90deg, rgba(6, 11, 20, 0.8), rgba(6, 11, 20, 0.15)),
    url(aerial-neighborhood.webp);
}
.scene-4 {
  background-image:
    linear-gradient(90deg, rgba(6, 11, 20, 0.85), rgba(6, 11, 20, 0.15)),
    url(daniel-vo-realtor.webp);
  background-position: center 36%;
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px);
  background-size: 8vw 8vw;
  mask-image: linear-gradient(90deg, #000, transparent 70%);
  opacity: 0.35;
}
.hero-copy {
  position: absolute;
  z-index: 1;
  left: clamp(24px, 7vw, 116px);
  top: 50%;
  width: min(670px, 78vw);
  transform: translateY(-35%);
}
.eyebrow,
.mini-label {
  font-size: 11px;
  letter-spacing: 0.11em;
  line-height: 1.4;
  font-weight: 750;
}
.hero-copy h1,
.search-heading h2,
.market-top h2,
.sold-copy h2,
.value-body h2,
.team-copy h2 {
  font-size: clamp(48px, 6.5vw, 110px);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1;
  margin: 20px 0;
  text-wrap: balance;
}
.hero-copy h1 {
  font-size: clamp(54px, 6.1vw, 102px);
}
.hero-copy em,
.search-heading em,
.market-top em,
.sold-copy em,
.value-body em,
.team-copy em {
  font-family: var(--font-serif);
  font-weight: 400;
  letter-spacing: -0.02em;
}
.hero-lede {
  max-width: 420px;
  line-height: 1.7;
  font-size: 15px;
  color: #e2e6ed;
}
.hero-actions {
  display: flex;
  gap: 24px;
  align-items: center;
  margin-top: 28px;
}
.button.light {
  background: #fff;
  color: #10131b;
}
.text-link {
  padding: 7px 0;
  border: 0;
  border-bottom: 1px solid currentColor;
  background: transparent;
  color: white;
  cursor: pointer;
  font-size: 13px;
}
.text-link span {
  margin-left: 10px;
}
.tour-status {
  position: absolute;
  z-index: 1;
  left: clamp(24px, 7vw, 116px);
  bottom: 35px;
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 10px;
  letter-spacing: 0.1em;
}
.pulse-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #51ff93;
  box-shadow: 0 0 0 5px rgba(81, 255, 147, 0.12);
  animation: pulse 2s infinite;
}
.tour-progress {
  position: absolute;
  z-index: 1;
  right: clamp(24px, 4vw, 64px);
  bottom: 35px;
  height: 2px;
  width: 170px;
  background: rgba(255, 255, 255, 0.35);
}
.tour-progress i {
  display: block;
  width: 25%;
  height: 100%;
  background: white;
  transition: width 0.45s var(--ease);
}
.hero-signal {
  position: absolute;
  right: clamp(24px, 4vw, 64px);
  top: 50%;
  display: grid;
  gap: 12px;
  justify-items: end;
  font-size: 10px;
  letter-spacing: 0.1em;
  writing-mode: vertical-rl;
}
.hero-signal b {
  font-size: 17px;
}
.hero-card {
  position: absolute;
  right: clamp(24px, 7vw, 116px);
  bottom: 70px;
  width: 190px;
  background: rgba(12, 17, 29, 0.78);
  backdrop-filter: blur(10px);
  padding: 17px;
  border-left: 2px solid var(--blue);
}
.hero-card span,
.hero-card p {
  font-size: 9px;
  letter-spacing: 0.12em;
}
.hero-card strong {
  display: block;
  font-size: 35px;
  margin: 8px 0;
  color: #b9ceff;
}
.hero-card p {
  line-height: 1.6;
  margin: 0;
  letter-spacing: 0;
}
.section-kicker {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.1em;
  line-height: 1.4;
}
.section-kicker span {
  font-weight: 800;
  color: var(--blue);
}
.section-kicker p {
  margin: 0;
}
.search-shell {
  padding: clamp(72px, 11vw, 160px) clamp(20px, 7vw, 116px);
}
.search-heading {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  align-items: end;
}
.search-heading h2 {
  margin-bottom: 30px;
  color: #161a22;
}
.search-heading > p {
  max-width: 330px;
  margin: 0 0 35px;
  line-height: 1.7;
  color: var(--muted);
  font-size: 14px;
}
.filters {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 0;
  align-items: center;
  min-height: 76px;
  overflow: auto;
}
.filter,
.map-switch {
  background: transparent;
  border: 0;
  border-right: 1px solid var(--line);
  padding: 13px 22px;
  font-size: 12px;
  color: #333;
  white-space: nowrap;
  cursor: pointer;
}
.filter.selected {
  font-weight: 800;
}
.filter span {
  margin-left: 14px;
}
.filter.more {
  border: 0;
}
.map-switch {
  margin-left: auto;
  border: 1px solid var(--line);
  background: white;
}
.finder {
  display: grid;
  grid-template-columns: minmax(370px, 0.85fr) 1.15fr;
  border: 1px solid var(--line);
  border-top: 0;
  min-height: 620px;
}
.listing-panel {
  padding: 23px;
  background: #fff;
}
.listing-meta {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  margin-bottom: 23px;
}
.listing-meta span {
  color: var(--muted);
  font-size: 11px;
}
.listing-meta button {
  border: 0;
  background: transparent;
  text-decoration: underline;
  cursor: pointer;
}
.listing-card {
  display: grid;
  grid-template-columns: 130px 1fr 22px;
  gap: 14px;
  padding: 12px 0;
  border-top: 1px solid #edf0f3;
  cursor: default;
  transition: 0.25s;
}
.listing-card:hover,
.listing-card.is-selected {
  background: #f0f5ff;
  margin-inline: -9px;
  padding-inline: 9px;
}
.listing-card img,
.listing-visual {
  height: 95px;
  width: 130px;
  object-fit: cover;
  background: #c8d2dc;
}
.visual-2 {
  background: linear-gradient(125deg, #192e40 0 32%, #b8ced7 32% 45%, #7c8e89 45% 62%, #d6d8cc 62%);
}
.visual-3 {
  background: linear-gradient(145deg, #303339 0 28%, #99c0cf 28% 56%, #e2d7c4 56%);
}
.listing-visual span {
  display: inline-block;
  margin: 8px;
  background: #fff;
  padding: 4px;
  font-size: 8px;
  font-weight: 800;
}
.listing-type {
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.13em;
  color: #5e6878;
}
.listing-card h3 {
  margin: 5px 0 4px;
  font-size: 17px;
  letter-spacing: -0.03em;
}
.listing-card p {
  margin: 0;
  font-size: 10px;
  color: var(--muted);
}
.listing-card strong {
  display: block;
  margin-top: 9px;
  font-size: 13px;
}
.listing-card > .save-home {
  border: 0;
  background: none;
  font-size: 17px;
  color: var(--blue);
  align-self: start;
  cursor: pointer;
}
.listing-select {
  margin-top: 8px;
  padding: 3px 0;
  border: 0;
  border-bottom: 1px solid currentColor;
  background: transparent;
  color: var(--blue);
  font-size: 9px;
  font-weight: 700;
  cursor: pointer;
}
.listing-select[aria-pressed='true'] {
  color: var(--ink);
}
.map-panel {
  position: relative;
  overflow: hidden;
  background: #dfe6e6;
  background-image:
    linear-gradient(
      35deg,
      transparent 47%,
      rgba(255, 255, 255, 0.88) 47.4%,
      rgba(255, 255, 255, 0.88) 48.4%,
      transparent 48.8%
    ),
    linear-gradient(
      120deg,
      transparent 47%,
      rgba(255, 255, 255, 0.9) 47.3%,
      rgba(255, 255, 255, 0.9) 48.5%,
      transparent 48.8%
    ),
    linear-gradient(0deg, rgba(18, 32, 42, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(18, 32, 42, 0.12) 1px, transparent 1px);
  background-size:
    auto,
    auto,
    42px 42px,
    42px 42px;
}
.map-water {
  position: absolute;
  width: 45%;
  height: 120%;
  background: #9ecee9;
  transform: rotate(24deg);
  right: -23%;
  top: -14%;
  opacity: 0.88;
}
.map-road {
  position: absolute;
  height: 8px;
  width: 118%;
  background: rgba(255, 255, 255, 0.9);
  transform: rotate(-15deg);
  box-shadow: 0 1px 2px #87939c;
}
.road-a {
  top: 27%;
  left: -15%;
}
.road-b {
  top: 66%;
  left: -9%;
  transform: rotate(15deg);
}
.road-c {
  top: 45%;
  left: -19%;
  transform: rotate(90deg);
}
.place {
  position: absolute;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: #596670;
}
.bellevue {
  top: 44%;
  left: 41%;
}
.kirkland {
  top: 19%;
  left: 27%;
}
.redmond {
  top: 27%;
  right: 15%;
}
.seattle {
  bottom: 14%;
  left: 12%;
}
.map-pin {
  position: absolute;
  z-index: 1;
  border: 0;
  border-radius: 30px;
  background: #1b242e;
  color: #fff;
  padding: 10px 13px;
  font-weight: 800;
  font-size: 11px;
  box-shadow: 0 4px 10px #41546266;
  cursor: pointer;
  transition: 0.2s;
}
.map-pin:after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 45%;
  border: 6px solid transparent;
  border-top-color: #1b242e;
  border-bottom: 0;
}
.map-pin.active {
  background: var(--blue);
  transform: scale(1.1);
}
.map-pin.active:after {
  border-top-color: var(--blue);
}
.pin-a {
  top: 49%;
  left: 47%;
}
.pin-b {
  top: 27%;
  left: 31%;
}
.pin-c {
  top: 34%;
  right: 16%;
}
.map-legend {
  position: absolute;
  bottom: 18px;
  left: 18px;
  display: flex;
  gap: 16px;
  background: #fffffff2;
  padding: 10px 12px;
  font-size: 10px;
}
.map-legend i {
  display: inline-block;
  width: 7px;
  height: 7px;
  background: var(--blue);
  border-radius: 50%;
}
.market-section {
  padding: clamp(72px, 11vw, 150px) clamp(20px, 7vw, 116px);
  background: var(--deep);
  color: white;
}
.inverse {
  color: #98a6bc;
}
.market-top {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 38px;
}
.market-top h2 {
  margin-bottom: 42px;
}
.market-top > p {
  max-width: 350px;
  color: #b8c0cd;
  line-height: 1.8;
  font-size: 14px;
  margin-bottom: 43px;
}
.metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid #3a414e;
  border-bottom: 1px solid #3a414e;
}
.metrics article {
  min-height: 300px;
  padding: 28px;
  border-right: 1px solid #3a414e;
  position: relative;
}
.metrics article:last-child {
  border: 0;
}
.metrics span {
  font-size: 9px;
  letter-spacing: 0.12em;
  color: #aeb9c9;
}
.metrics strong {
  display: block;
  margin-top: 24px;
  font-size: 49px;
  letter-spacing: -0.06em;
}
.metrics strong em {
  font-size: 18px;
  font-style: normal;
  letter-spacing: 0;
}
.metrics p {
  font-size: 12px;
  font-weight: 800;
}
.metrics small {
  font-size: 10px;
  font-weight: 400;
  color: #9ca8b8;
}
.up {
  color: #67e39a;
}
.down {
  color: #9fc2ff;
}
.spark {
  position: absolute;
  bottom: 29px;
  left: 28px;
  right: 28px;
  height: 60px;
  display: flex;
  align-items: end;
  gap: 7px;
}
.spark i {
  display: block;
  height: var(--h);
  flex: 1;
  background: #2f64ff;
}
.spark i:nth-child(1) {
  --h: 22%;
}
.spark i:nth-child(2) {
  --h: 38%;
}
.spark i:nth-child(3) {
  --h: 30%;
}
.spark i:nth-child(4) {
  --h: 58%;
}
.spark i:nth-child(5) {
  --h: 49%;
}
.spark i:nth-child(6) {
  --h: 80%;
}
.spark i:nth-child(7) {
  --h: 100%;
}
.bars {
  position: absolute;
  bottom: 29px;
  left: 28px;
  right: 28px;
  display: flex;
  gap: 8px;
  align-items: end;
  height: 60px;
}
.bars i {
  height: var(--h);
  background: #789aff;
  flex: 1;
}
.bars i:nth-child(1) {
  --h: 100%;
}
.bars i:nth-child(2) {
  --h: 83%;
}
.bars i:nth-child(3) {
  --h: 74%;
}
.bars i:nth-child(4) {
  --h: 58%;
}
.bars i:nth-child(5) {
  --h: 43%;
}
.bars i:nth-child(6) {
  --h: 25%;
}
.donut {
  position: absolute;
  right: 30px;
  bottom: 22px;
  width: 95px;
  height: 95px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: conic-gradient(#2161ff 0 82%, #2c3440 82%);
}
.donut:before {
  content: '';
  position: absolute;
  inset: 11px;
  border-radius: 50%;
  background: var(--deep);
}
.donut b {
  z-index: 1;
  text-align: center;
  font-size: 8px;
  letter-spacing: 0.1em;
}
.market-note {
  margin-top: 32px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.market-note p {
  flex: 1;
  color: #c8d1df;
  font-size: 12px;
  line-height: 1.6;
}
.market-note button {
  background: none;
  border: 0;
  color: white;
  border-bottom: 1px solid white;
  padding: 6px 0;
  cursor: pointer;
  font-size: 11px;
}
.sold-section {
  padding: clamp(72px, 11vw, 150px) clamp(20px, 7vw, 116px);
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 7vw;
}
.sold-copy h2 {
  font-size: clamp(42px, 5.5vw, 84px);
  margin-bottom: 30px;
}
.sold-copy > p {
  line-height: 1.8;
  color: var(--muted);
  max-width: 360px;
  font-size: 14px;
  margin-bottom: 30px;
}
.button.dark {
  background: var(--ink);
  color: white;
}
.sold-gallery {
  display: grid;
  grid-template-columns: 1fr 0.58fr;
  gap: 14px;
  align-items: end;
}
.sold-main {
  position: relative;
  min-height: 470px;
  color: white;
  overflow: hidden;
}
.sold-main:after {
  content: '';
  position: absolute;
  inset: 45% 0 0;
  background: linear-gradient(transparent, #08101a);
}
.sold-main img {
  width: 100%;
  height: 100%;
  position: absolute;
  object-fit: cover;
}
.sold-main div {
  position: absolute;
  z-index: 1;
  left: 25px;
  bottom: 22px;
}
.sold-main span,
.sold-small span {
  font-size: 9px;
  letter-spacing: 0.13em;
  font-weight: 800;
}
.sold-main h3 {
  font-size: 26px;
  letter-spacing: -0.05em;
  margin: 8px 0;
}
.sold-main p {
  margin: 0;
  font-size: 12px;
}
.sold-small {
  padding-bottom: 23px;
}
.sale-home {
  height: 220px;
  margin-bottom: 14px;
  background: linear-gradient(150deg, #26323e 0 32%, #e0cbb6 32% 50%, #778e8a 50% 77%, #22303e 77%);
  position: relative;
}
.sale-home:after {
  content: 'SOLD';
  position: absolute;
  right: 10px;
  top: 10px;
  background: #fff;
  padding: 6px;
  color: #0d111b;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.1em;
}
.sold-small h3 {
  font-size: 19px;
  letter-spacing: -0.04em;
  margin: 7px 0;
}
.value-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #e0eaff;
}
.value-image {
  min-height: 750px;
  background:
    linear-gradient(90deg, rgba(15, 25, 43, 0.26), transparent),
    url(hero-skyline-home.webp) center/cover;
}
.value-body {
  padding: clamp(52px, 7vw, 115px);
  align-self: center;
}
.value-body h2 {
  font-size: clamp(45px, 5.2vw, 82px);
}
.value-body > p {
  color: #435069;
  line-height: 1.75;
  font-size: 14px;
  max-width: 400px;
}
.value-body form {
  margin-top: 31px;
  max-width: 500px;
}
.value-body label {
  display: block;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.09em;
  margin: 12px 0;
}
.value-body input {
  display: block;
  width: 100%;
  background: transparent;
  border: 0;
  border-bottom: 1px solid #71809d;
  padding: 12px 0;
  color: #10131b;
  outline-color: var(--blue);
}
.value-body input::placeholder {
  color: #72809a;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.button.cobalt {
  margin-top: 20px;
  background: var(--blue);
  color: #fff;
}
.value-body small {
  display: block;
  margin-top: 13px;
  color: #68758a;
  font-size: 10px;
}
.team-section {
  padding: clamp(72px, 11vw, 150px) clamp(20px, 7vw, 116px);
  display: grid;
  grid-template-columns: 0.82fr 1fr;
  gap: 8vw;
  background: white;
}
.team-photo {
  height: 590px;
  position: relative;
  overflow: hidden;
  background: #d3dce8;
}
.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: grayscale(15%);
}
.team-photo > span {
  position: absolute;
  bottom: 0;
  right: 0;
  padding: 17px;
  background: var(--blue);
  color: #fff;
  font-family: var(--font-serif);
  font-size: 38px;
  line-height: 1;
}
.team-copy {
  align-self: center;
}
.team-copy h2 {
  font-size: clamp(44px, 5.7vw, 86px);
}
.team-copy > p:not(.eyebrow) {
  max-width: 500px;
  font-family: var(--font-serif);
  font-size: 18px;
  line-height: 1.7;
  color: #40495a;
}
.agent-data {
  display: flex;
  gap: 24px;
  margin: 28px 0;
  border-top: 1px solid var(--line);
  padding-top: 18px;
}
.agent-data span {
  font-size: 10px;
  color: var(--muted);
}
.agent-data b {
  display: block;
  font-size: 18px;
  color: #121722;
  margin-bottom: 4px;
}
.dark-link {
  color: #10131b;
}
footer {
  padding: 45px clamp(20px, 7vw, 116px);
  background: #10131b;
  color: #fff;
  display: grid;
  grid-template-columns: 1fr 1.7fr 1fr;
  align-items: end;
  gap: 30px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  letter-spacing: 0.2em;
}
.footer-brand .brand-mark {
  width: 38px;
  height: 38px;
}
.footer-brand strong {
  line-height: 1.08;
}
.footer-brand p,
footer p {
  font-size: 11px;
  line-height: 1.8;
  color: #bcc5d4;
}
footer > div:last-child {
  display: grid;
  gap: 25px;
  justify-items: end;
  font-size: 10px;
  letter-spacing: 0.1em;
}
footer a {
  color: #fff;
}
.toast {
  position: fixed;
  z-index: 20;
  right: 20px;
  bottom: 20px;
  transform: translateY(130px);
  opacity: 0;
  background: #0d1525;
  color: white;
  max-width: 310px;
  padding: 15px 18px;
  font-size: 12px;
  line-height: 1.5;
  box-shadow: 0 10px 35px #0003;
  transition: 0.35s var(--ease);
}
.toast.show {
  transform: translateY(0);
  opacity: 1;
}
@keyframes pulse {
  50% {
    box-shadow: 0 0 0 9px rgba(81, 255, 147, 0);
  }
}
@media (max-width: 760px) {
  .demo-bar {
    height: auto;
    padding: 8px 14px;
    font-size: 9px;
    letter-spacing: 0.08em;
    line-height: 1.35;
  }
  .site-header {
    top: 45px;
    padding: 16px 20px;
  }
  .site-header nav {
    display: none;
  }
  .header-cta {
    font-size: 10px;
    padding: 11px 12px;
  }
  .header-cta span {
    display: none;
  }
  .lang-switch {
    padding: 8px;
    font-size: 9px;
  }
  .hero-tour {
    height: 500vh;
    height: 500svh;
  }
  .tour-scene {
    background-size: cover;
  }
  .scene-1 {
    background-size: contain;
    background-color: #0b1019;
    background-position: center 30%;
    background-image:
      linear-gradient(0deg, rgba(6, 11, 20, 0.92) 0%, rgba(6, 11, 20, 0.05) 72%),
      url(hero-skyline-home.webp);
  }
  .scene-2 {
    background-position: center;
  }
  .scene-3 {
    background-position: center;
  }
  .scene-4 {
    background-size: cover;
    background-position: center top;
  }
  .hero-copy {
    left: 22px;
    right: 22px;
    width: auto;
    top: auto;
    bottom: 92px;
    transform: none;
  }
  .hero-copy h1 {
    font-size: clamp(46px, 13vw, 68px);
    line-height: 1.04;
    letter-spacing: -0.025em;
    margin: 14px 0;
  }
  .hero-lede {
    font-size: 14px;
    line-height: 1.65;
    width: 90%;
  }
  .hero-actions {
    margin-top: 19px;
    gap: 17px;
  }
  .button {
    padding: 13px 14px;
  }
  .hero-actions .text-link {
    font-size: 11px;
  }
  .tour-status {
    left: 22px;
    bottom: 20px;
    font-size: 9px;
  }
  .tour-progress {
    right: 20px;
    bottom: 23px;
    width: 105px;
  }
  .hero-signal {
    display: none;
  }
  .hero-card {
    top: 112px;
    bottom: auto;
    right: 20px;
    width: 138px;
    padding: 11px;
  }
  .hero-card strong {
    font-size: 26px;
    margin: 4px 0;
  }
  .hero-card p {
    font-size: 9px;
  }
  .hero-grid {
    background-size: 22vw 22vw;
  }
  .search-shell,
  .market-section,
  .sold-section,
  .team-section {
    padding: 76px 20px;
  }
  .search-heading,
  .market-top {
    display: block;
  }
  .search-heading h2,
  .market-top h2 {
    font-size: clamp(44px, 12vw, 58px);
    line-height: 1.05;
    margin: 16px 0 20px;
  }
  .search-heading > p,
  .market-top > p {
    margin: 0 0 26px;
  }
  .filters {
    margin-inline: -20px;
    padding-left: 20px;
    min-height: 62px;
  }
  .filter {
    padding: 10px 15px;
    font-size: 10px;
  }
  .map-switch {
    display: none;
  }
  .finder {
    display: block;
    border-left: 0;
    border-right: 0;
    margin-inline: -20px;
  }
  .listing-panel {
    padding: 18px 20px;
  }
  .listing-card {
    grid-template-columns: 100px 1fr 20px;
  }
  .listing-card img,
  .listing-visual {
    width: 100px;
    height: 82px;
  }
  .map-panel {
    height: 400px;
  }
  .metrics {
    display: block;
  }
  .metrics article {
    min-height: 225px;
    border-right: 0;
    border-bottom: 1px solid #3a414e;
    padding: 22px;
  }
  .metrics strong {
    font-size: 43px;
    margin-top: 16px;
  }
  .spark,
  .bars {
    left: 22px;
    right: 22px;
    bottom: 20px;
    height: 45px;
  }
  .donut {
    right: 22px;
    bottom: 18px;
    width: 78px;
    height: 78px;
  }
  .market-note {
    align-items: start;
    flex-wrap: wrap;
  }
  .market-note button {
    margin-left: 20px;
  }
  .sold-section {
    display: block;
  }
  .sold-copy h2 {
    font-size: clamp(44px, 12vw, 58px);
  }
  .sold-gallery {
    margin-top: 45px;
    grid-template-columns: 1fr 0.52fr;
    gap: 10px;
  }
  .sold-main {
    min-height: 365px;
  }
  .sale-home {
    height: 150px;
  }
  .sold-small h3 {
    font-size: 15px;
  }
  .value-section {
    display: flex;
    flex-direction: column;
  }
  .value-image {
    min-height: 310px;
    background-size: cover;
    background-position: center;
  }
  .value-body {
    padding: 62px 20px;
  }
  .value-body h2 {
    font-size: clamp(44px, 12vw, 58px);
  }
  .form-row {
    display: block;
  }
  .team-section {
    display: flex;
    flex-direction: column-reverse;
  }
  .team-photo {
    height: 460px;
  }
  .team-copy h2 {
    font-size: clamp(44px, 12vw, 58px);
  }
  .team-copy > p:not(.eyebrow) {
    font-size: 17px;
  }
  .agent-data {
    gap: 17px;
  }
  footer {
    display: block;
    padding: 38px 20px;
  }
  footer p {
    margin: 25px 0;
  }
  footer > div:last-child {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .brand-mark {
    width: 29px;
    height: 29px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .hero-tour {
    height: 100vh;
    height: 100svh;
  }
  .tour-scene {
    transition: none;
  }
  .tour-scene:not(.scene-1) {
    display: none;
  }
  .scene-1 {
    opacity: 1;
    transform: none;
  }
  .pulse-dot {
    animation: none;
  }
  .tour-progress {
    display: none;
  }
  .hero-signal {
    display: none;
  }
  * {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
