:root {
  --paper: #f1f0eb;
  --paper-deep: #e7e5de;
  --ink: #111312;
  --muted: #686b67;
  --line: rgba(17, 19, 18, .17);
  --lime: #d8ff52;
  --blue: #315cff;
  --cyan: #8eeaff;
  --white: #fff;
  --max-width: 1320px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: "Noto Sans KR", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  word-break: keep-all;
}

body.menu-open {
  overflow: hidden;
}

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

button {
  color: inherit;
  font: inherit;
}

svg {
  display: block;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 9999;
  padding: 11px 15px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--white);
  font-size: 12px;
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.section-shell,
.header-inner,
.hero-inner {
  width: min(calc(100% - 64px), var(--max-width));
  margin-inline: auto;
}

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1000;
  border-bottom: 1px solid transparent;
  transition: background 180ms ease, border-color 180ms ease, backdrop-filter 180ms ease;
}

.site-header.scrolled {
  border-color: rgba(17, 19, 18, .09);
  background: rgba(241, 240, 235, .84);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  height: 92px;
  align-items: center;
  justify-content: space-between;
}

.site-logo {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.logo-mark {
  position: relative;
  font-family: "Manrope", sans-serif;
  font-size: 21px;
  font-weight: 800;
  letter-spacing: -.07em;
  line-height: 1;
}

.logo-mark i {
  position: absolute;
  right: -8px;
  bottom: 1px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--lime);
}

.logo-caption {
  padding-left: 14px;
  border-left: 1px solid var(--line);
  color: #5c605c;
  font-family: "Manrope", sans-serif;
  font-size: 7px;
  font-weight: 800;
  letter-spacing: .17em;
  line-height: 1.45;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 38px;
  font-family: "Manrope", "Noto Sans KR", sans-serif;
  font-size: 11px;
  font-weight: 800;
}

.site-nav > a:not(.product-count) {
  position: relative;
  padding-block: 11px;
  text-transform: uppercase;
}

.site-nav > a:not(.product-count)::after {
  position: absolute;
  right: 0;
  bottom: 5px;
  left: 0;
  height: 1px;
  background: var(--ink);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.site-nav > a:not(.product-count):hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.product-count {
  display: flex;
  min-width: 135px;
  height: 42px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 0 8px 0 17px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--white);
}

.product-count span {
  opacity: .7;
  font-size: 9px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.product-count b {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 50%;
  background: var(--lime);
  color: var(--ink);
  font-size: 9px;
}

.menu-button {
  display: none;
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  padding-top: 92px;
  background-color: var(--paper);
  background-image: linear-gradient(rgba(17, 19, 18, .04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 19, 18, .04) 1px, transparent 1px);
  background-size: 72px 72px;
}

.hero::before {
  position: absolute;
  top: 0;
  right: -13vw;
  width: min(53vw, 780px);
  height: min(53vw, 780px);
  border: 1px solid rgba(17, 19, 18, .08);
  border-radius: 50%;
  box-shadow: inset 0 0 0 8vw rgba(255, 255, 255, .11), inset 0 0 0 15vw rgba(255, 255, 255, .08);
  content: "";
}

.hero::after {
  position: absolute;
  top: 17%;
  right: 8%;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 7px rgba(216, 255, 82, .22);
  content: "";
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: calc(100svh - 156px);
  flex-direction: column;
  justify-content: space-between;
  padding: 56px 0 60px;
}

.hero-eyebrow {
  display: flex;
  justify-content: space-between;
  color: #6a6d69;
  font-family: "Manrope", sans-serif;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .16em;
}

.hero h1 {
  max-width: 1220px;
  margin: auto 0;
  padding-block: 52px 44px;
  font-size: clamp(58px, 8.6vw, 132px);
  font-weight: 900;
  letter-spacing: -.075em;
  line-height: .98;
}

.hero h1 em {
  position: relative;
  display: inline-block;
  color: transparent;
  font-style: normal;
  -webkit-text-stroke: 1.5px var(--ink);
}

.hero h1 em::after {
  position: absolute;
  right: -34px;
  bottom: 12%;
  width: clamp(13px, 1.4vw, 21px);
  height: clamp(13px, 1.4vw, 21px);
  border-radius: 50%;
  background: var(--lime);
  content: "";
  -webkit-text-stroke: 0;
}

.hero-bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding-top: 29px;
  border-top: 1px solid var(--line);
}

.hero-bottom p {
  margin: 0;
  color: #575b57;
  font-size: 14px;
  line-height: 1.85;
}

.circle-link {
  display: grid;
  width: 62px;
  height: 62px;
  place-items: center;
  border: 1px solid var(--ink);
  border-radius: 50%;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.circle-link:hover {
  background: var(--ink);
  color: var(--white);
  transform: translateY(4px);
}

.circle-link svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.product-marquee {
  position: relative;
  z-index: 2;
  overflow: hidden;
  border-block: 1px solid var(--ink);
  background: var(--lime);
}

.marquee-track {
  display: flex;
  width: max-content;
  height: 63px;
  align-items: center;
  animation: marquee 30s linear infinite;
}

.marquee-track span {
  padding-inline: 35px;
  font-family: "Manrope", sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .11em;
}

.marquee-track i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--ink);
}

@keyframes marquee {
  to { transform: translateX(-50%); }
}

.products {
  padding-block: 145px 155px;
}

.section-heading {
  display: grid;
  grid-template-columns: .7fr 1.3fr;
  gap: 60px;
  margin-bottom: 78px;
}

.section-label {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin: 10px 0 0;
  color: #61645f;
  font-family: "Manrope", sans-serif;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .14em;
}

.section-label span {
  display: grid;
  width: 30px;
  height: 30px;
  margin-top: -9px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--ink);
  font-size: 8px;
  letter-spacing: 0;
}

.section-heading > div {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 45px;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(43px, 5.1vw, 72px);
  letter-spacing: -.065em;
  line-height: 1.12;
}

.section-heading > div > p {
  margin: 0 0 5px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.8;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.project {
  min-width: 0;
}

.project-estate {
  grid-column: auto;
}

.project > a {
  display: block;
}

.project-topline {
  display: flex;
  height: 51px;
  align-items: flex-start;
  justify-content: space-between;
  border-top: 1px solid var(--ink);
  padding-top: 15px;
  font-family: "Manrope", sans-serif;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .12em;
}

.status {
  display: flex;
  align-items: center;
  gap: 7px;
}

.status i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #24bb65;
  box-shadow: 0 0 0 4px rgba(36, 187, 101, .13);
}

.status-build i {
  background: var(--blue);
  box-shadow: 0 0 0 4px rgba(49, 92, 255, .13);
}

.status-lab i {
  background: #2ebed9;
  box-shadow: 0 0 0 4px rgba(46, 190, 217, .14);
}

.project-stage {
  position: relative;
  height: 560px;
  overflow: hidden;
  border-radius: 3px;
  isolation: isolate;
  --cursor-x: 50%;
  --cursor-y: 50%;
  --shift-x: 0px;
  --shift-y: 0px;
  --shift-x-opposite: 0px;
  --shift-y-opposite: 0px;
  --tilt-x: 0deg;
  --tilt-y: 0deg;
}

.project-stage::after {
  position: absolute;
  inset: 0;
  z-index: 6;
  background: radial-gradient(circle 260px at var(--cursor-x) var(--cursor-y), rgba(255, 255, 255, .22), transparent 72%);
  content: "";
  opacity: 0;
  pointer-events: none;
  transition: opacity 350ms ease;
}

.project-stage:hover::after {
  opacity: 1;
}

.project-messenger .project-stage,
.project-water .project-stage {
  height: 560px;
}

.stage-grain {
  position: absolute;
  inset: 0;
  opacity: .2;
  background-image: radial-gradient(rgba(255, 255, 255, .8) .7px, transparent .7px);
  background-size: 6px 6px;
}

.estate-stage {
  display: grid;
  place-items: center;
  background: #c8c6bd;
}

.stage-word {
  position: absolute;
  right: 20px;
  bottom: -2.1vw;
  color: rgba(255, 255, 255, .18);
  font-family: "Manrope", sans-serif;
  font-size: clamp(70px, 11vw, 166px);
  font-weight: 800;
  letter-spacing: -.08em;
  line-height: 1;
  pointer-events: none;
  transition: letter-spacing 600ms cubic-bezier(.2, .75, .25, 1), opacity 350ms ease;
}

.project-stage:hover .stage-word {
  letter-spacing: -.045em;
  opacity: .78;
}

.project-cursor {
  display: none;
}

.estate-browser {
  position: relative;
  z-index: 1;
  width: calc(100% - 70px);
  max-width: 580px;
  overflow: hidden;
  border: 1px solid rgba(17, 19, 18, .18);
  border-radius: 15px;
  background: #f7f7f4;
  box-shadow: 0 40px 90px rgba(32, 34, 31, .22);
  transform: perspective(1200px) translate3d(var(--shift-x), var(--shift-y), 0) rotateX(var(--tilt-y)) rotateY(var(--tilt-x)) rotateZ(-1.2deg);
  scale: 1;
  transition: transform 140ms ease-out, scale 500ms cubic-bezier(.2, .75, .25, 1), box-shadow 500ms ease;
  will-change: transform;
}

.project-estate:hover .estate-browser {
  scale: 1.015;
  box-shadow: 0 48px 110px rgba(32, 34, 31, .29);
}

.estate-toolbar {
  display: grid;
  height: 56px;
  grid-template-columns: 1fr auto;
  align-items: center;
  border-bottom: 1px solid rgba(17, 19, 18, .1);
  padding-inline: 21px;
  font-family: "Manrope", "Noto Sans KR", sans-serif;
  font-size: 8px;
  font-weight: 800;
}

.estate-brand {
  font-size: 13px;
  letter-spacing: -.04em;
}

.estate-search {
  display: none;
  justify-self: center;
  width: min(310px, 75%);
  padding: 10px 17px;
  border-radius: 999px;
  background: #ecece7;
  color: #747772;
  font-size: 8px;
  font-weight: 600;
}

.estate-view {
  padding: 7px 10px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--white);
  letter-spacing: .08em;
}

.estate-body {
  display: grid;
  height: 390px;
  grid-template-columns: 125px 1fr;
}

.estate-panel {
  display: flex;
  flex-direction: column;
  padding: 23px 15px;
  border-right: 1px solid rgba(17, 19, 18, .09);
}

.estate-panel small {
  color: #777a75;
  font-family: "Manrope", sans-serif;
  font-size: 7px;
  font-weight: 800;
  letter-spacing: .12em;
}

.estate-panel strong {
  margin-top: 9px;
  font-size: 18px;
  letter-spacing: -.06em;
}

.estate-panel > span {
  color: #8b8e89;
  font-size: 8px;
}

.estate-bars {
  display: flex;
  height: 88px;
  align-items: end;
  gap: 4px;
  margin-block: 22px 20px;
  border-bottom: 1px solid rgba(17, 19, 18, .12);
}

.estate-bars i {
  width: 100%;
  border-radius: 3px 3px 0 0;
  background: #d7d9d3;
}

.estate-bars i:nth-child(1) { height: 31%; }
.estate-bars i:nth-child(2) { height: 49%; }
.estate-bars i:nth-child(3) { height: 42%; }
.estate-bars i:nth-child(4) { height: 68%; }
.estate-bars i:nth-child(5) { height: 59%; }
.estate-bars i:nth-child(6) { height: 88%; background: var(--blue); }

.estate-stat {
  display: flex;
  justify-content: space-between;
  padding-block: 12px;
  border-top: 1px solid rgba(17, 19, 18, .09);
  font-size: 8px;
}

.estate-stat span {
  color: #777a75;
}

.estate-map {
  position: relative;
  overflow: hidden;
  background-color: #dfe1db;
  background-image: linear-gradient(rgba(255, 255, 255, .46) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .46) 1px, transparent 1px);
  background-size: 43px 43px;
}

.estate-map > svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  fill: none;
  transition: transform 900ms cubic-bezier(.2, .75, .25, 1);
}

.project-estate:hover .estate-map > svg {
  transform: scale(1.035) translateX(7px);
}

.estate-map .road {
  stroke: rgba(255, 255, 255, .9);
  stroke-width: 15;
}

.estate-map .road.wide {
  stroke-width: 22;
}

.estate-map .river {
  stroke: rgba(116, 190, 212, .24);
  stroke-width: 32;
}

.price-pin {
  position: absolute;
  padding: 9px 12px;
  border-radius: 7px;
  background: var(--blue);
  box-shadow: 0 7px 15px rgba(49, 92, 255, .22);
  color: var(--white);
  font-size: 8px;
  font-weight: 800;
  transition: box-shadow 250ms ease, transform 250ms ease;
}

.pin-a { top: 19%; left: 17%; }
.pin-b { top: 59%; left: 40%; }
.pin-c { top: 31%; right: 18%; }
.pin-d { bottom: 14%; right: 11%; }

.map-location {
  position: absolute;
  top: 49%;
  left: 61%;
  display: flex;
  align-items: center;
  gap: 7px;
  color: #575b57;
  font-family: "Manrope", sans-serif;
  font-size: 6px;
  font-weight: 800;
  letter-spacing: .12em;
}

.map-location i {
  width: 10px;
  height: 10px;
  border: 3px solid var(--white);
  border-radius: 50%;
  background: var(--ink);
  box-shadow: 0 0 0 1px var(--ink);
}

.estate-map-tools {
  position: absolute;
  top: 15px;
  right: 15px;
  display: grid;
  overflow: hidden;
  border: 1px solid rgba(17, 19, 18, .1);
  border-radius: 8px;
  background: rgba(255, 255, 255, .85);
  box-shadow: 0 8px 18px rgba(35, 40, 36, .08);
  backdrop-filter: blur(8px);
}

.estate-map-tools span {
  display: grid;
  width: 28px;
  height: 27px;
  place-items: center;
  color: #5d615c;
  font-family: "Manrope", sans-serif;
  font-size: 12px;
}

.estate-map-tools span + span {
  border-top: 1px solid rgba(17, 19, 18, .08);
}

.estate-focus-card {
  position: absolute;
  bottom: 16px;
  left: 18px;
  min-width: 148px;
  padding: 12px 13px;
  border: 1px solid rgba(17, 19, 18, .1);
  border-radius: 9px;
  background: rgba(255, 255, 255, .88);
  box-shadow: 0 12px 26px rgba(35, 40, 36, .11);
  backdrop-filter: blur(10px);
  transition: transform 350ms cubic-bezier(.2, .75, .25, 1), box-shadow 350ms ease;
}

.estate-focus-card small,
.estate-focus-card b,
.estate-focus-card span {
  display: block;
}

.estate-focus-card small {
  color: #8a8d88;
  font-family: "Manrope", sans-serif;
  font-size: 5px;
  font-weight: 800;
  letter-spacing: .1em;
}

.estate-focus-card b {
  margin-top: 5px;
  font-size: 10px;
}

.estate-focus-card span {
  margin-top: 3px;
  color: #858883;
  font-size: 6px;
}

.project-estate:hover .estate-focus-card {
  box-shadow: 0 16px 34px rgba(35, 40, 36, .16);
  transform: translateY(-6px);
}

.project-estate:hover .price-pin {
  animation: estatePin 1.7s ease-in-out infinite alternate;
  box-shadow: 0 10px 22px rgba(49, 92, 255, .32);
}

.project-estate:hover .pin-b { animation-delay: 110ms; }
.project-estate:hover .pin-c { animation-delay: 220ms; }
.project-estate:hover .pin-d { animation-delay: 330ms; }

@keyframes estatePin {
  to { transform: translateY(-6px); }
}

.project-info {
  position: relative;
  display: grid;
  min-height: 160px;
  grid-template-columns: 1fr auto 55px;
  align-items: center;
  gap: 45px;
  border-bottom: 1px solid var(--line);
}

.project-type {
  margin: 0 0 11px;
  color: #757873;
  font-family: "Manrope", sans-serif;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .13em;
}

.project-info h3 {
  margin: 0;
  font-size: clamp(30px, 3.2vw, 48px);
  letter-spacing: -.06em;
  line-height: 1.15;
}

.project-info > p {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.8;
}

.project-arrow {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border: 1px solid var(--ink);
  border-radius: 50%;
  font-size: 18px;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.project:hover .project-arrow {
  background: var(--ink);
  color: var(--white);
  transform: rotate(45deg);
}

.project-messenger,
.project-water {
  margin-top: 0;
}

.messenger-stage {
  display: grid;
  place-items: center;
  background: #1b2236;
}

.messenger-stage::before {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 18% 22%, rgba(49, 92, 255, .72), transparent 29%),
    radial-gradient(circle at 89% 80%, rgba(102, 76, 255, .34), transparent 35%),
    radial-gradient(rgba(255, 255, 255, .18) .7px, transparent .7px);
  background-size: auto, auto, 16px 16px;
  content: "";
}

.messenger-stage .stage-word {
  color: rgba(255, 255, 255, .12);
}

.messenger-window {
  position: relative;
  z-index: 1;
  display: grid;
  width: calc(100% - 70px);
  max-width: 580px;
  height: 390px;
  grid-template-columns: 54px 145px 1fr;
  overflow: hidden;
  border: 1px solid rgba(17, 19, 18, .35);
  border-radius: 13px;
  background: #f7f7f3;
  box-shadow: 0 33px 70px rgba(9, 20, 74, .34);
  color: var(--ink);
  transform: perspective(1100px) translate3d(var(--shift-x), var(--shift-y), 0) rotateX(var(--tilt-y)) rotateY(var(--tilt-x)) rotateZ(1.3deg);
  scale: 1;
  transition: transform 140ms ease-out, scale 450ms cubic-bezier(.2, .75, .25, 1), box-shadow 450ms ease;
  will-change: transform;
}

.project-messenger:hover .messenger-window {
  scale: 1.018;
  box-shadow: 0 42px 88px rgba(6, 13, 45, .45);
}

.message-rail {
  display: flex;
  align-items: center;
  gap: 15px;
  padding-top: 14px;
  background: var(--ink);
  flex-direction: column;
}

.message-rail b,
.message-rail span {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 9px;
  background: var(--lime);
  font-family: "Manrope", sans-serif;
  font-size: 9px;
}

.message-rail i {
  width: 23px;
  height: 23px;
  border: 1px solid rgba(255, 255, 255, .3);
  border-radius: 8px;
  background: rgba(255, 255, 255, .07);
}

.message-rail span {
  margin-top: auto;
  margin-bottom: 14px;
  background: rgba(255, 255, 255, .12);
  color: var(--white);
  font-size: 13px;
}

.message-channels {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 21px 12px;
  border-right: 1px solid rgba(17, 19, 18, .09);
  background: #eeeee9;
}

.message-channels strong {
  margin: 0 5px 23px;
  font-family: "Manrope", sans-serif;
  font-size: 8px;
  letter-spacing: .04em;
}

.message-channels small {
  margin: 12px 6px 5px;
  color: #989a95;
  font-family: "Manrope", sans-serif;
  font-size: 6px;
  font-weight: 800;
  letter-spacing: .1em;
}

.message-channels > span {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 7px 8px;
  border-radius: 5px;
  color: #686b67;
  font-size: 8px;
}

.message-channels > span.active {
  background: var(--white);
  color: var(--ink);
  font-weight: 800;
}

.message-channels > span > i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #a4a6a1;
}

.message-channels > span > i.online {
  background: #31ba68;
}

.message-room {
  position: relative;
  padding: 0 17px;
}

.room-head {
  display: flex;
  height: 50px;
  align-items: center;
  justify-content: space-between;
  margin-inline: -17px;
  padding-inline: 17px;
  border-bottom: 1px solid rgba(17, 19, 18, .09);
  font-size: 9px;
}

.room-head span {
  display: flex;
  align-items: center;
  gap: 3px;
  color: #8b8e89;
  font-size: 6px;
  letter-spacing: .04em;
}

.room-head span i {
  width: 11px;
  height: 11px;
  margin-right: -7px;
  border: 1px solid #f7f7f3;
  border-radius: 50%;
  background: #c9ccc6;
}

.room-head span i:nth-child(2) { background: #1b2236; }
.room-head span i:nth-child(3) { margin-right: 4px; background: var(--lime); }

.project-messenger:hover .message-line {
  animation: messageLift 650ms cubic-bezier(.2, .75, .25, 1) both;
}

.project-messenger:hover .message-line:nth-of-type(4) {
  animation-delay: 90ms;
}

@keyframes messageLift {
  50% { transform: translateY(-5px); }
}

.room-date {
  margin-block: 14px 19px;
  color: #a2a49f;
  font-family: "Manrope", sans-serif;
  font-size: 6px;
  font-weight: 800;
  text-align: center;
}

.message-line {
  display: flex;
  gap: 9px;
  margin-bottom: 22px;
}

.avatar {
  display: grid;
  width: 26px;
  height: 26px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 8px;
  font-family: "Manrope", sans-serif;
  font-size: 8px;
  font-style: normal;
  font-weight: 800;
}

.avatar.dark {
  background: var(--ink);
  color: var(--white);
}

.avatar.lime {
  background: var(--lime);
}

.message-line b {
  display: block;
  font-size: 8px;
}

.message-line b small {
  margin-left: 4px;
  color: #a0a29d;
  font-size: 6px;
  font-weight: 600;
}

.message-line p {
  margin: 5px 0 0;
  font-size: 8px;
  line-height: 1.55;
}

.message-chip {
  display: inline-flex;
  margin-top: 8px;
  padding: 6px 8px;
  border: 1px solid rgba(17, 19, 18, .11);
  border-radius: 5px;
  background: var(--white);
  font-family: "Manrope", sans-serif;
  font-size: 6px;
  font-weight: 800;
}

.message-compose {
  position: absolute;
  right: 14px;
  bottom: 15px;
  left: 14px;
  display: flex;
  height: 41px;
  align-items: center;
  justify-content: space-between;
  padding-left: 13px;
  border: 1px solid rgba(17, 19, 18, .13);
  border-radius: 8px;
  background: var(--white);
  color: #a1a39f;
  font-size: 7px;
}

.message-compose b {
  display: grid;
  width: 27px;
  height: 27px;
  margin-right: 6px;
  place-items: center;
  border-radius: 7px;
  background: var(--blue);
  color: var(--white);
  font-size: 12px;
}

.messenger-presence,
.messenger-notice {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, .18);
  background: rgba(14, 18, 29, .78);
  box-shadow: 0 18px 40px rgba(5, 10, 29, .3);
  color: var(--white);
  backdrop-filter: blur(14px);
  transform: translate3d(var(--shift-x-opposite), var(--shift-y-opposite), 0);
  transition: transform 160ms ease-out, opacity 300ms ease;
}

.messenger-presence {
  right: 17px;
  bottom: 45px;
  gap: 10px;
  padding: 10px 12px 10px 9px;
  border-radius: 13px;
}

.messenger-presence > span {
  position: relative;
}

.messenger-presence > span > i {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 9px;
  background: var(--lime);
  color: var(--ink);
  font-family: "Manrope", sans-serif;
  font-size: 8px;
  font-style: normal;
  font-weight: 800;
}

.messenger-presence > span > b {
  position: absolute;
  right: -2px;
  bottom: -2px;
  width: 8px;
  height: 8px;
  border: 2px solid #121725;
  border-radius: 50%;
  background: #39d477;
}

.messenger-presence small,
.messenger-presence strong {
  display: block;
}

.messenger-presence small {
  color: rgba(255, 255, 255, .44);
  font-family: "Manrope", sans-serif;
  font-size: 5px;
  font-weight: 800;
  letter-spacing: .1em;
}

.messenger-presence strong {
  margin-top: 3px;
  font-size: 8px;
}

.messenger-presence em {
  display: grid;
  width: 25px;
  height: 25px;
  margin-left: 4px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 50%;
  color: rgba(255, 255, 255, .7);
  font-family: "Manrope", sans-serif;
  font-size: 6px;
  font-style: normal;
}

.messenger-notice {
  top: 49px;
  left: 21px;
  gap: 7px;
  padding: 8px 9px;
  border-radius: 999px;
  font-family: "Manrope", sans-serif;
  font-size: 6px;
}

.messenger-notice > i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 8px var(--lime);
}

.messenger-notice > b {
  display: grid;
  width: 15px;
  height: 15px;
  place-items: center;
  border-radius: 50%;
  background: var(--blue);
  font-size: 5px;
}

.project-messenger:hover .messenger-presence {
  transform: translate3d(var(--shift-x-opposite), calc(var(--shift-y-opposite) - 7px), 0);
}

.project-messenger:hover .messenger-notice {
  animation: noticePulse 1.6s ease-in-out infinite;
}

@keyframes noticePulse {
  50% {
    box-shadow: 0 20px 45px rgba(5, 10, 29, .48);
    transform: translate3d(var(--shift-x-opposite), calc(var(--shift-y-opposite) - 3px), 0);
  }
}

.water-stage {
  display: grid;
  place-items: center;
  background: #101e25;
}

.water-stage::before {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 23% 18%, rgba(40, 169, 200, .25), transparent 31%),
    radial-gradient(circle at 85% 73%, rgba(86, 116, 255, .2), transparent 37%);
  content: "";
}

.water-orbit {
  position: absolute;
  border: 1px solid rgba(142, 234, 255, .12);
  border-radius: 50%;
}

.orbit-one {
  width: 520px;
  height: 520px;
}

.orbit-two {
  width: 360px;
  height: 360px;
}

.water-stage .stage-word {
  color: rgba(142, 234, 255, .08);
}

.water-dashboard {
  position: relative;
  z-index: 1;
  width: calc(100% - 70px);
  max-width: 580px;
  overflow: hidden;
  border: 1px solid rgba(142, 234, 255, .17);
  border-radius: 13px;
  background: rgba(12, 27, 34, .86);
  box-shadow: 0 35px 80px rgba(0, 7, 13, .4);
  color: #effcff;
  transform: perspective(1100px) translate3d(var(--shift-x), var(--shift-y), 0) rotateX(var(--tilt-y)) rotateY(var(--tilt-x)) rotateZ(-1.2deg);
  scale: 1;
  transition: transform 140ms ease-out, scale 450ms cubic-bezier(.2, .75, .25, 1), box-shadow 450ms ease;
  backdrop-filter: blur(12px);
  will-change: transform;
}

.project-water:hover .water-dashboard {
  scale: 1.018;
  box-shadow: 0 44px 96px rgba(0, 7, 13, .55);
}

.water-head {
  display: flex;
  height: 46px;
  align-items: center;
  gap: 10px;
  padding-inline: 17px;
  border-bottom: 1px solid rgba(142, 234, 255, .12);
  font-family: "Manrope", sans-serif;
  font-size: 7px;
  letter-spacing: .09em;
}

.water-head span {
  margin-left: auto;
  color: rgba(239, 252, 255, .48);
  font-size: 6px;
}

.water-head i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 10px var(--cyan);
}

.water-content {
  padding: 20px 20px 17px;
}

.water-metric small,
.water-stats small {
  display: block;
  color: rgba(239, 252, 255, .42);
  font-family: "Manrope", sans-serif;
  font-size: 6px;
  font-weight: 800;
  letter-spacing: .12em;
}

.water-metric strong {
  display: inline-block;
  margin-top: 3px;
  font-family: "Manrope", sans-serif;
  font-size: 30px;
  letter-spacing: -.06em;
}

.water-metric > span {
  margin-left: 6px;
  color: rgba(239, 252, 255, .45);
  font-size: 7px;
}

.water-chart {
  position: relative;
  height: 205px;
  margin-top: 10px;
  border-block: 1px solid rgba(142, 234, 255, .09);
}

.water-chart svg {
  position: absolute;
  inset: 13px 0 0 23px;
  width: calc(100% - 23px);
  height: calc(100% - 13px);
}

.chart-fill {
  fill: url(#waterFill);
}

.chart-line {
  fill: none;
  stroke: var(--cyan);
  stroke-width: 2;
  vector-effect: non-scaling-stroke;
  stroke-dasharray: 900;
  stroke-dashoffset: 0;
}

.project-water:hover .chart-line {
  animation: drawFlow 1.55s cubic-bezier(.2, .7, .25, 1);
}

@keyframes drawFlow {
  from { stroke-dashoffset: 900; }
  to { stroke-dashoffset: 0; }
}

.chart-label {
  position: absolute;
  left: 0;
  color: rgba(239, 252, 255, .28);
  font-family: "Manrope", sans-serif;
  font-size: 5px;
}

.chart-label.top { top: 14px; }
.chart-label.bottom { bottom: 8px; }

.grid-line {
  position: absolute;
  right: 0;
  left: 23px;
  height: 1px;
  background: rgba(142, 234, 255, .08);
}

.line-one { top: 26%; }
.line-two { top: 51%; }
.line-three { top: 76%; }

.chart-point {
  position: absolute;
  top: 44px;
  right: 3px;
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 5px 7px;
  border: 1px solid rgba(142, 234, 255, .25);
  border-radius: 4px;
  background: #112c34;
  color: var(--cyan);
  font-family: "Manrope", sans-serif;
  font-size: 6px;
}

.chart-point i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 8px var(--cyan);
}

.water-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 16px;
}

.water-stats > div {
  padding-left: 13px;
  border-left: 1px solid rgba(142, 234, 255, .11);
}

.water-stats > div:first-child {
  padding-left: 0;
  border-left: 0;
}

.water-stats b {
  display: block;
  margin-top: 7px;
  font-family: "Manrope", sans-serif;
  font-size: 13px;
}

.water-stats em {
  color: rgba(239, 252, 255, .42);
  font-size: 6px;
  font-style: normal;
}

.water-stats b.normal {
  color: var(--cyan);
  font-size: 8px;
  letter-spacing: .08em;
}

.water-sensor-card,
.water-depth {
  position: absolute;
  z-index: 3;
  border: 1px solid rgba(142, 234, 255, .17);
  background: rgba(8, 24, 31, .74);
  box-shadow: 0 18px 42px rgba(0, 7, 13, .32);
  color: #effcff;
  backdrop-filter: blur(14px);
  transform: translate3d(var(--shift-x-opposite), var(--shift-y-opposite), 0);
  transition: transform 160ms ease-out, box-shadow 350ms ease;
}

.water-sensor-card {
  bottom: 43px;
  left: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 12px;
}

.sensor-ring {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border: 1px solid rgba(142, 234, 255, .35);
  border-radius: 50%;
}

.sensor-ring i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 13px rgba(142, 234, 255, .85);
}

.water-sensor-card small,
.water-sensor-card b {
  display: block;
}

.water-sensor-card small,
.water-depth small {
  color: rgba(239, 252, 255, .42);
  font-family: "Manrope", sans-serif;
  font-size: 5px;
  font-weight: 800;
  letter-spacing: .1em;
}

.water-sensor-card b {
  margin-top: 3px;
  font-size: 8px;
}

.water-sensor-card em {
  margin-left: 7px;
  color: var(--cyan);
  font-family: "Manrope", sans-serif;
  font-size: 7px;
  font-style: normal;
}

.water-depth {
  top: 50px;
  right: 19px;
  min-width: 94px;
  padding: 11px 13px;
  border-radius: 10px;
}

.water-depth small,
.water-depth b {
  display: block;
}

.water-depth b {
  margin-top: 4px;
  font-family: "Manrope", sans-serif;
  font-size: 13px;
}

.water-depth b em {
  color: rgba(239, 252, 255, .4);
  font-size: 6px;
  font-style: normal;
}

.project-water:hover .water-sensor-card {
  box-shadow: 0 23px 50px rgba(0, 7, 13, .48);
  transform: translate3d(var(--shift-x-opposite), calc(var(--shift-y-opposite) - 7px), 0);
}

.project-water:hover .sensor-ring {
  animation: sensorPulse 1.7s ease-in-out infinite;
}

@keyframes sensorPulse {
  50% { box-shadow: 0 0 0 7px rgba(142, 234, 255, .07); }
}

.project-estate .project-info,
.project-messenger .project-info,
.project-water .project-info {
  min-height: 178px;
  grid-template-columns: 1fr 52px;
  gap: 20px;
}

.project-estate .project-info > p,
.project-messenger .project-info > p,
.project-water .project-info > p {
  grid-column: 1 / -1;
  grid-row: 2;
  margin-top: -35px;
}

.future-slot {
  display: grid;
  min-height: 245px;
  grid-column: 1 / -1;
  grid-template-columns: .8fr 1.2fr 145px;
  align-items: center;
  gap: 40px;
  margin-top: 120px;
  padding-inline: 45px;
  border-block: 1px solid var(--ink);
}

.future-slot > div:first-child span,
.future-slot > div:first-child small {
  display: block;
  font-family: "Manrope", sans-serif;
}

.future-slot > div:first-child span {
  font-size: 13px;
  font-weight: 800;
}

.future-slot > div:first-child small {
  margin-top: 9px;
  color: var(--muted);
  font-size: 7px;
  font-weight: 800;
  letter-spacing: .14em;
}

.future-slot > p {
  margin: 0;
  font-size: clamp(26px, 3vw, 43px);
  font-weight: 800;
  letter-spacing: -.055em;
  line-height: 1.27;
}

.future-symbol {
  position: relative;
  width: 125px;
  height: 125px;
  justify-self: end;
  border: 1px solid var(--ink);
  border-radius: 50%;
  transition: background 250ms ease, transform 250ms ease;
}

.future-slot:hover .future-symbol {
  background: var(--lime);
  transform: rotate(90deg);
}

.future-symbol i {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 34px;
  height: 1px;
  background: var(--ink);
  transform: translate(-50%, -50%);
}

.future-symbol i:last-child {
  transform: translate(-50%, -50%) rotate(90deg);
}

.approach {
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}

.approach-inner {
  padding-block: 140px 150px;
}

.section-label.light {
  color: rgba(255, 255, 255, .44);
}

.section-label.light span {
  border-color: rgba(255, 255, 255, .22);
  color: var(--lime);
}

.approach-title {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 55px;
  margin-top: 80px;
}

.approach-title h2 {
  margin: 0;
  font-size: clamp(48px, 6.9vw, 96px);
  letter-spacing: -.075em;
  line-height: 1.03;
}

.approach-title h2 em {
  color: var(--lime);
  font-style: normal;
}

.approach-title > p {
  margin: 0 0 8px;
  color: rgba(255, 255, 255, .51);
  font-size: 12px;
  line-height: 1.9;
}

.approach-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin: 115px 0 0;
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, .18);
  list-style: none;
}

.approach-list li {
  min-height: 240px;
  padding: 25px 32px 0 0;
  border-right: 1px solid rgba(255, 255, 255, .18);
}

.approach-list li + li {
  padding-left: 32px;
}

.approach-list li:last-child {
  border-right: 0;
}

.approach-list li > span {
  color: var(--lime);
  font-family: "Manrope", sans-serif;
  font-size: 8px;
  font-weight: 800;
}

.approach-list h3 {
  margin: 58px 0 16px;
  font-family: "Manrope", sans-serif;
  font-size: 27px;
  letter-spacing: -.04em;
}

.approach-list p {
  margin: 0;
  color: rgba(255, 255, 255, .46);
  font-size: 11px;
  line-height: 1.8;
}

.site-footer {
  background: var(--lime);
}

.footer-inner {
  padding-block: 95px 32px;
}

.footer-main {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding-bottom: 85px;
}

.footer-main > p {
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-size: clamp(54px, 8.7vw, 128px);
  font-weight: 800;
  letter-spacing: -.085em;
  line-height: .88;
}

.footer-main > a {
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: "Manrope", sans-serif;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .1em;
}

.footer-main > a b {
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  border: 1px solid var(--ink);
  border-radius: 50%;
  font-size: 16px;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.footer-main > a:hover b {
  background: var(--ink);
  color: var(--white);
  transform: translateY(-4px);
}

.footer-bottom {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding-top: 25px;
  border-top: 1px solid rgba(17, 19, 18, .35);
  font-family: "Manrope", sans-serif;
  font-size: 7px;
  font-weight: 800;
  letter-spacing: .11em;
}

.footer-bottom > span:last-child {
  justify-self: end;
}

.footer-logo .logo-mark i {
  background: var(--ink);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(.2, .7, .2, 1);
}

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

@media (hover: hover) and (pointer: fine) {
  .project-cursor {
    position: absolute;
    top: var(--cursor-y);
    left: var(--cursor-x);
    z-index: 8;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 9px 10px 9px 13px;
    border: 1px solid rgba(255, 255, 255, .28);
    border-radius: 999px;
    background: rgba(17, 19, 18, .84);
    box-shadow: 0 10px 26px rgba(17, 19, 18, .18);
    color: var(--white);
    font-family: "Manrope", sans-serif;
    font-size: 6px;
    font-weight: 800;
    letter-spacing: .09em;
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, -50%) scale(.78);
    transition: opacity 180ms ease, transform 180ms ease;
    backdrop-filter: blur(9px);
  }

  .project-cursor b {
    display: grid;
    width: 23px;
    height: 23px;
    place-items: center;
    border-radius: 50%;
    background: var(--lime);
    color: var(--ink);
    font-size: 9px;
  }

  .project-stage:hover .project-cursor {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
}

@media (max-width: 1050px) {
  .hero h1 {
    font-size: clamp(58px, 9.5vw, 98px);
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .estate-browser {
    width: calc(100% - 90px);
  }

  .project-grid {
    grid-template-columns: 1fr;
  }

  .project-estate {
    grid-column: auto;
  }

  .project-messenger,
  .project-water {
    margin-top: 50px;
  }

  .project-estate .project-info,
  .project-messenger .project-info,
  .project-water .project-info {
    min-height: 160px;
    grid-template-columns: 1fr auto 55px;
    gap: 40px;
  }

  .project-estate .project-info > p,
  .project-messenger .project-info > p,
  .project-water .project-info > p {
    grid-column: auto;
    grid-row: auto;
    margin-top: 0;
  }

  .future-slot {
    margin-top: 95px;
  }

  .approach-title {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  .section-shell,
  .header-inner,
  .hero-inner {
    width: min(calc(100% - 38px), var(--max-width));
  }

  .header-inner {
    height: 76px;
  }

  .menu-button {
    position: relative;
    z-index: 3;
    display: grid;
    width: 43px;
    height: 43px;
    padding: 0;
    place-content: center;
    gap: 6px;
    border: 1px solid var(--ink);
    border-radius: 50%;
    background: transparent;
  }

  .menu-button span {
    width: 16px;
    height: 1px;
    background: currentColor;
    transition: transform 180ms ease;
  }

  .menu-button[aria-expanded="true"] span:first-child {
    transform: translateY(3.5px) rotate(45deg);
  }

  .menu-button[aria-expanded="true"] span:last-child {
    transform: translateY(-3.5px) rotate(-45deg);
  }

  .site-nav {
    position: fixed;
    inset: 0;
    z-index: 2;
    display: flex;
    visibility: hidden;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 16px;
    padding: 80px 26px 35px;
    background: var(--lime);
    opacity: 0;
    transition: opacity 180ms ease, visibility 180ms ease;
  }

  .site-nav.is-open {
    visibility: visible;
    opacity: 1;
  }

  .site-nav > a:not(.product-count) {
    font-size: clamp(45px, 13vw, 70px);
    letter-spacing: -.06em;
    line-height: 1;
  }

  .product-count {
    margin-top: 25px;
  }

  .hero {
    min-height: 780px;
    padding-top: 76px;
    background-size: 50px 50px;
  }

  .hero::before {
    top: 13%;
    right: -40vw;
    width: 95vw;
    height: 95vw;
    box-shadow: inset 0 0 0 15vw rgba(255, 255, 255, .1), inset 0 0 0 28vw rgba(255, 255, 255, .07);
  }

  .hero-inner {
    min-height: 640px;
    padding-block: 36px 43px;
  }

  .hero-eyebrow span:last-child {
    display: none;
  }

  .hero h1 {
    padding-block: 55px 45px;
    font-size: clamp(48px, 14.3vw, 78px);
    line-height: 1.04;
  }

  .hero h1 em::after {
    right: -20px;
    bottom: 9%;
  }

  .hero-bottom {
    align-items: flex-start;
  }

  .hero-bottom p {
    max-width: calc(100% - 72px);
    font-size: 12px;
  }

  .circle-link {
    width: 50px;
    height: 50px;
  }

  .marquee-track {
    height: 54px;
  }

  .marquee-track span {
    padding-inline: 24px;
    font-size: 9px;
  }

  .products {
    padding-block: 100px 110px;
  }

  .section-heading {
    margin-bottom: 58px;
  }

  .section-heading > div {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .section-heading h2 {
    font-size: clamp(38px, 10.5vw, 55px);
  }

  .project-stage,
  .project-messenger .project-stage,
  .project-water .project-stage {
    height: 460px;
  }

  .estate-browser {
    width: calc(100% - 36px);
  }

  .estate-toolbar {
    grid-template-columns: 1fr auto;
  }

  .estate-search {
    display: none;
  }

  .estate-body {
    height: 360px;
    grid-template-columns: 145px 1fr;
  }

  .estate-panel {
    padding: 22px 16px;
  }

  .estate-panel strong {
    font-size: 19px;
  }

  .estate-bars {
    margin-block: 20px;
  }

  .project-info,
  .project-messenger .project-info,
  .project-water .project-info {
    min-height: 205px;
    grid-template-columns: 1fr 48px;
    gap: 10px;
  }

  .project-info > p,
  .project-messenger .project-info > p,
  .project-water .project-info > p {
    grid-column: 1 / -1;
    grid-row: 2;
    margin-top: -35px;
    font-size: 10px;
  }

  .project-info h3 {
    font-size: 31px;
  }

  .project-arrow {
    width: 46px;
    height: 46px;
  }

  .messenger-window,
  .water-dashboard {
    width: calc(100% - 36px);
  }

  .messenger-window {
    grid-template-columns: 46px 115px 1fr;
  }

  .message-channels {
    padding-inline: 8px;
  }

  .message-room {
    padding-inline: 13px;
  }

  .room-head {
    margin-inline: -13px;
    padding-inline: 13px;
  }

  .future-slot {
    min-height: 330px;
    grid-template-columns: 1fr 105px;
    gap: 30px;
    margin-top: 75px;
    padding: 45px 7px;
  }

  .future-slot > div:first-child {
    grid-column: 1 / -1;
  }

  .future-slot > p {
    font-size: 29px;
  }

  .future-symbol {
    width: 96px;
    height: 96px;
  }

  .approach-inner {
    padding-block: 100px 110px;
  }

  .approach-title {
    margin-top: 62px;
  }

  .approach-title h2 {
    font-size: clamp(43px, 11.5vw, 62px);
  }

  .approach-list {
    grid-template-columns: 1fr;
    margin-top: 75px;
  }

  .approach-list li,
  .approach-list li + li {
    display: grid;
    min-height: 0;
    grid-template-columns: 38px 1fr 1fr;
    align-items: start;
    gap: 15px;
    padding: 28px 0 32px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .18);
  }

  .approach-list h3 {
    margin: -6px 0 0;
    font-size: 23px;
  }

  .approach-list p {
    margin-top: -3px;
  }

  .footer-inner {
    padding-block: 70px 25px;
  }

  .footer-main {
    display: block;
    padding-bottom: 60px;
  }

  .footer-main > p {
    font-size: clamp(54px, 15vw, 82px);
  }

  .footer-main > a {
    justify-content: flex-end;
    margin-top: 50px;
  }

  .footer-bottom {
    grid-template-columns: 1fr auto;
    row-gap: 22px;
  }

  .footer-bottom > span:first-of-type {
    justify-self: end;
  }

  .footer-bottom > span:last-child {
    grid-column: 1 / -1;
    justify-self: start;
  }
}

@media (max-width: 540px) {
  .logo-caption {
    display: none;
  }

  .hero {
    min-height: 720px;
  }

  .hero-inner {
    min-height: 590px;
  }

  .hero h1 {
    font-size: clamp(45px, 14vw, 68px);
    letter-spacing: -.07em;
  }

  .hero-bottom p br,
  .section-heading > div > p br {
    display: none;
  }

  .project-stage,
  .project-messenger .project-stage,
  .project-water .project-stage {
    height: 380px;
  }

  .estate-browser {
    transform: rotate(-1deg) scale(.96);
  }

  .estate-body {
    height: 305px;
    grid-template-columns: 110px 1fr;
  }

  .estate-panel {
    padding: 18px 12px;
  }

  .estate-panel strong {
    font-size: 15px;
  }

  .estate-panel > span,
  .estate-stat {
    font-size: 6px;
  }

  .estate-bars {
    height: 72px;
    gap: 3px;
  }

  .estate-map .road {
    stroke-width: 21;
  }

  .price-pin {
    padding: 7px 8px;
    font-size: 6px;
  }

  .messenger-window {
    height: 320px;
    grid-template-columns: 42px 1fr;
  }

  .message-channels {
    display: none;
  }

  .message-room {
    padding-inline: 12px;
  }

  .water-dashboard {
    transform: rotate(-1deg) scale(.96);
  }

  .water-chart {
    height: 155px;
  }

  .project-info,
  .project-messenger .project-info,
  .project-water .project-info {
    min-height: 220px;
  }

  .project-info > p br {
    display: none;
  }

  .future-slot {
    grid-template-columns: 1fr 80px;
  }

  .future-slot > p {
    font-size: 25px;
  }

  .future-symbol {
    width: 75px;
    height: 75px;
  }

  .approach-list li,
  .approach-list li + li {
    grid-template-columns: 28px 1fr;
  }

  .approach-list p {
    grid-column: 2;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
