:root {
  --bg: #050608;
  --surface: #0c0f13;
  --surface-2: #11161c;
  --text: #eef2f6;
  --muted: #97a2ad;
  --muted-2: #737f8c;
  --accent: #8ccdf5;
  --accent-strong: #a7dcfb;
  --line: rgba(238, 242, 246, 0.1);
  --line-soft: rgba(238, 242, 246, 0.065);
  --max: 1220px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--bg);
  overflow-x: clip;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 50% -12%, rgba(140, 205, 245, 0.14), transparent 38rem),
    linear-gradient(180deg, #050608 0%, #080a0d 42%, #050608 100%);
  color: var(--text);
  font-family:
    Inter,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  letter-spacing: 0;
  overflow-x: hidden;
}

body,
.site-header,
main,
section,
footer {
  max-width: 100vw;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(rgba(238, 242, 246, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(238, 242, 246, 0.018) 1px, transparent 1px);
  background-size: 96px 96px;
  mask-image: linear-gradient(to bottom, black 0%, black 34%, transparent 86%);
}

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

img,
svg {
  display: block;
}

section,
footer {
  scroll-margin-top: 104px;
}

.container {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
}

.section {
  padding: clamp(96px, 13vw, 172px) 0;
}

.section-full {
  position: relative;
  padding: clamp(108px, 13vw, 178px) 0;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 30;
  display: grid;
  width: 100%;
  height: 98px;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 max(24px, calc((100vw - var(--max)) / 2));
  border-bottom: 1px solid transparent;
  transition:
    background 220ms ease,
    border-color 220ms ease,
    height 220ms ease;
}

.site-header.is-scrolled {
  height: 80px;
  border-color: var(--line-soft);
  background: rgba(5, 6, 8, 0.82);
  backdrop-filter: blur(20px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 17px;
  min-width: 0;
  width: max-content;
  color: var(--text);
}

.brand-initials {
  width: 58px;
  height: 58px;
  object-fit: contain;
}

.brand-name {
  color: var(--text);
  font-size: 1.18rem;
  font-weight: 750;
  line-height: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.brand-full-logo {
  width: 150px;
  height: 96px;
  object-fit: contain;
  object-position: left center;
}

.footer-logo {
  width: 136px;
  height: 84px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(38px, 4vw, 64px);
  color: rgba(238, 242, 246, 0.72);
  font-size: 1.1rem;
  font-weight: 650;
}

.nav-links a,
.footer-links a,
.lang-toggle {
  transition: color 180ms ease;
}

.nav-links a:hover,
.footer-links a:hover {
  color: var(--text);
}

.nav-cta {
  justify-self: end;
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  border: 1px solid rgba(140, 205, 245, 0.26);
  border-radius: 7px;
  background: rgba(140, 205, 245, 0.1);
  color: var(--accent-strong);
  font-size: 0.94rem;
  font-weight: 700;
  padding: 0 17px;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    color 180ms ease;
}

.nav-cta:hover {
  border-color: rgba(140, 205, 245, 0.42);
  background: rgba(140, 205, 245, 0.16);
  color: var(--text);
}

.header-actions {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.lang-toggle {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  gap: 4px;
  border: 1px solid rgba(238, 242, 246, 0.14);
  border-radius: 7px;
  background: rgba(238, 242, 246, 0.035);
  color: rgba(238, 242, 246, 0.58);
  cursor: pointer;
  font: inherit;
  font-size: 0.84rem;
  font-weight: 750;
  padding: 0 8px;
}

.lang-toggle span {
  border-radius: 5px;
  padding: 5px 7px;
}

html[lang="en"] [data-lang-option="en"],
html[lang="ru"] [data-lang-option="ru"] {
  background: rgba(140, 205, 245, 0.16);
  color: var(--accent-strong);
}

.lang-toggle:hover {
  border-color: rgba(238, 242, 246, 0.24);
  color: var(--text);
}

.hero {
  display: grid;
  min-height: 92vh;
  place-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--line-soft);
}

.hero::before {
  position: absolute;
  top: 43%;
  left: 50%;
  width: min(1120px, 92vw);
  height: 620px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(140, 205, 245, 0.15), rgba(140, 205, 245, 0.042) 42%, transparent 72%);
  content: "";
  filter: blur(10px);
  opacity: 0.78;
  transform: translate(-50%, -50%);
}

.hero-depth {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(115deg, transparent 0 39%, rgba(140, 205, 245, 0.072) 39.1%, transparent 39.4% 100%),
    linear-gradient(65deg, transparent 0 58%, rgba(238, 242, 246, 0.05) 58.1%, transparent 58.4% 100%),
    radial-gradient(circle at 50% 43%, rgba(140, 205, 245, 0.13), transparent 29rem),
    linear-gradient(90deg, rgba(238, 242, 246, 0.038) 1px, transparent 1px),
    linear-gradient(rgba(238, 242, 246, 0.038) 1px, transparent 1px);
  background-size:
    auto,
    auto,
    auto,
    128px 128px,
    128px 128px;
  mask-image: radial-gradient(circle at 50% 40%, black 0 18rem, transparent 44rem);
  opacity: 0.78;
}

.hero-depth::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(5, 6, 8, 0.08), rgba(5, 6, 8, 0.72) 88%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1040px;
  opacity: 1;
  overflow-wrap: break-word;
  transform: none;
  text-align: center;
}

.eyebrow {
  margin: 0;
  color: var(--accent);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  line-height: 1.4;
  overflow-wrap: anywhere;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 0;
  margin-top: 18px;
  color: var(--text);
  font-size: clamp(4.2rem, 10vw, 9rem);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 0.92;
}

h1 span {
  display: block;
  max-width: 100%;
  overflow-wrap: normal;
}

.hero-copy {
  width: min(820px, 100%);
  margin: 30px auto 0;
  color: rgba(238, 242, 246, 0.79);
  font-size: clamp(1.2rem, 1.78vw, 1.45rem);
  line-height: 1.72;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 40px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  border-radius: 7px;
  padding: 0 24px;
  font-size: 0.98rem;
  font-weight: 750;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

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

.button-primary {
  border: 1px solid rgba(140, 205, 245, 0.72);
  background: rgba(140, 205, 245, 0.88);
  color: #061018;
}

.button-primary:hover {
  background: var(--accent-strong);
}

.button-secondary {
  border: 1px solid rgba(238, 242, 246, 0.18);
  background: rgba(238, 242, 246, 0.035);
  color: var(--text);
}

.button-secondary:hover {
  border-color: rgba(238, 242, 246, 0.32);
  background: rgba(238, 242, 246, 0.06);
}

.philosophy {
  border-bottom: 1px solid var(--line-soft);
}

.philosophy-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.72fr);
  gap: clamp(48px, 8vw, 122px);
  align-items: start;
}

.philosophy h2,
.section-heading h2,
.flagship-copy h2,
.future h2,
.founder h2,
.footer-cta h2 {
  margin: 16px 0 0;
  color: var(--text);
  font-size: clamp(2.45rem, 5.5vw, 5.65rem);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1;
}

.philosophy-copy p,
.section-heading p,
.flagship-copy p,
.future p,
.founder-grid > p,
.footer-cta p {
  color: var(--muted);
  font-size: clamp(1.22rem, 1.68vw, 1.46rem);
  line-height: 1.88;
}

.philosophy-copy p {
  max-width: 570px;
  margin-bottom: 22px;
}

.philosophy-copy p:last-child {
  margin-bottom: 0;
  color: rgba(238, 242, 246, 0.76);
}

.section-heading {
  max-width: 790px;
}

.section-heading p {
  margin-top: 24px;
}

.capability-list {
  margin-top: 58px;
  border-top: 1px solid var(--line);
}

.capability {
  display: grid;
  grid-template-columns: minmax(235px, 0.48fr) minmax(340px, 1fr) minmax(240px, 0.48fr);
  gap: clamp(28px, 4vw, 56px);
  align-items: start;
  border-bottom: 1px solid var(--line);
  padding: 56px 0;
  transition:
    border-color 180ms ease,
    background 180ms ease;
}

.capability h3 {
  margin: 0;
  color: var(--text);
  font-size: clamp(1.5rem, 2.2vw, 2.05rem);
  line-height: 1.18;
}

.capability p {
  margin: 0;
  color: rgba(238, 242, 246, 0.72);
  font-size: clamp(1.22rem, 1.54vw, 1.4rem);
  line-height: 1.78;
}

.capability ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  color: var(--muted-2);
  font-size: 1.1rem;
  font-weight: 650;
  line-height: 1.56;
  list-style: none;
}

.capability li {
  position: relative;
  padding-left: 16px;
}

.capability li::before {
  position: absolute;
  top: 0.68em;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
  content: "";
}

.flagship {
  border-top: 1px solid var(--line-soft);
}

.scroll-reveal {
  --scroll-progress: 0;
  opacity: calc(0.18 + (var(--scroll-progress) * 0.82));
  transform: translate3d(0, calc((1 - var(--scroll-progress)) * -72px), 0);
  will-change: opacity, transform;
}

.scroll-reveal.is-scroll-complete {
  will-change: auto;
}

.flagship-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(500px, 0.96fr);
  gap: clamp(52px, 6vw, 84px);
  align-items: center;
}

.flagship-copy h2 {
  font-size: clamp(2.75rem, 4.7vw, 5.15rem);
}

.flagship-copy p {
  margin-top: 26px;
}

.product-mockup {
  justify-self: end;
  width: min(100%, 820px);
  overflow: hidden;
  border: 1px solid rgba(238, 242, 246, 0.1);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(238, 242, 246, 0.035), transparent 32%),
    #0d1116;
  box-shadow: 0 44px 120px rgba(0, 0, 0, 0.3);
  transition:
    border-color 220ms ease,
    transform 220ms ease;
}

.mockup-topbar {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid var(--line-soft);
  padding: 16px 20px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
}

.mockup-topbar span:first-child {
  color: var(--text);
}

.mockup-body {
  display: grid;
  gap: 12px;
  padding: 18px;
}

.marketplace-search,
.listing-panel {
  border: 1px solid rgba(238, 242, 246, 0.085);
  border-radius: 8px;
  background: rgba(5, 6, 8, 0.22);
}

.marketplace-search {
  display: grid;
  grid-template-columns: minmax(240px, 0.9fr) minmax(0, 1fr);
  gap: 20px;
  align-items: center;
  padding: 20px;
}

.part-photo {
  position: relative;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  min-height: 300px;
  align-items: center;
  justify-items: center;
  border-radius: 7px;
  padding: 14px;
  background:
    radial-gradient(circle at 52% 42%, rgba(238, 242, 246, 0.12), transparent 32%),
    radial-gradient(circle at 50% 52%, rgba(140, 205, 245, 0.08), transparent 54%),
    linear-gradient(135deg, rgba(238, 242, 246, 0.045), transparent),
    #090d12;
}

.part-photo-label {
  position: relative;
  z-index: 1;
  justify-self: start;
  align-self: start;
  border: 1px solid rgba(238, 242, 246, 0.08);
  border-radius: 999px;
  color: rgba(238, 242, 246, 0.5);
  font-size: 0.68rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  padding: 6px 9px;
  text-transform: uppercase;
}

.part-photo svg {
  width: min(90%, 260px);
  max-height: 250px;
  fill: none;
  overflow: visible;
  stroke: rgba(238, 242, 246, 0.78);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 3;
}

.suspension-shadow ellipse {
  fill: rgba(0, 0, 0, 0.42);
}

.suspension-part {
  animation: suspensionFloat 5.4s ease-in-out infinite;
  transform-origin: 180px 280px;
}

.top-plate,
.cap-lip,
.black-boot,
.damper,
.fork {
  fill: url("#darkCap");
  stroke: rgba(238, 242, 246, 0.22);
}

.stud,
.center-pin,
.nut {
  fill: #14181c;
  stroke: rgba(238, 242, 246, 0.24);
}

.center-pin {
  fill: #d7dde2;
}

.nut {
  fill: #d6d1c4;
}

.silver-can {
  fill: url("#metalBody");
  stroke: rgba(255, 255, 255, 0.28);
  animation: airSpringBreathe 4.8s ease-in-out infinite;
  transform-box: fill-box;
  transform-origin: center;
}

.body-highlight {
  stroke: rgba(255, 255, 255, 0.34);
  stroke-width: 8;
}

.body-shadow {
  stroke: rgba(5, 6, 8, 0.28);
  stroke-width: 9;
}

.lower-collar {
  fill: #11161b;
  stroke: rgba(238, 242, 246, 0.18);
}

.bushing {
  fill: #11161b;
  stroke: rgba(238, 242, 246, 0.28);
  stroke-width: 4;
  animation: bushingPulse 4.8s ease-in-out infinite;
}

.bushing-hole {
  fill: #050608;
  stroke: rgba(140, 205, 245, 0.34);
}

.label-strip {
  fill: #d5ca6d;
  stroke: rgba(255, 255, 255, 0.26);
}

.scan-path {
  stroke: rgba(140, 205, 245, 0.35);
  stroke-dasharray: 8 10;
  stroke-width: 2;
  animation: airLineFlow 6s linear infinite;
}

.scan-dot {
  fill: var(--accent);
  stroke: none;
  opacity: 0.86;
}

.mock-label {
  margin: 0 0 10px;
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.match-header h3,
.listing-heading h3 {
  margin: 0;
  color: var(--text);
  font-size: clamp(1.28rem, 1.75vw, 1.7rem);
  line-height: 1.14;
}

.match-header {
  display: grid;
  gap: 14px;
  justify-items: start;
  min-width: 0;
}

.listing-heading {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 18px;
  min-width: 0;
}

.match-header span,
.listing-heading span {
  flex: 0 0 auto;
  border: 1px solid rgba(140, 205, 245, 0.24);
  border-radius: 999px;
  background: rgba(140, 205, 245, 0.08);
  color: var(--accent-strong);
  font-size: 0.8rem;
  font-weight: 750;
  line-height: 1.2;
  padding: 7px 10px;
  white-space: nowrap;
}

.match-header span {
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
}

.match-summary {
  min-width: 0;
  padding-right: 0;
}

.part-meta {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  margin: 22px 0 0;
  overflow: hidden;
  border: 1px solid var(--line-soft);
  border-radius: 7px;
  background: var(--line-soft);
}

.part-meta div,
.listing-card {
  background: #0a0f14;
}

.part-meta div {
  padding: 14px;
}

.part-meta dt {
  color: var(--muted-2);
  font-size: 0.82rem;
}

.part-meta dd {
  margin: 10px 0 0;
  color: var(--text);
  font-size: 0.98rem;
  font-weight: 750;
  line-height: 1.4;
  overflow-wrap: break-word;
  word-break: normal;
}

.listing-panel {
  padding: 20px;
}

.listing-list {
  display: grid;
  gap: 8px;
  margin-top: 16px;
}

.listing-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(64px, auto) minmax(78px, auto);
  gap: 14px;
  align-items: center;
  border: 1px solid rgba(238, 242, 246, 0.08);
  border-radius: 7px;
  padding: 13px;
  transition:
    border-color 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}

.listing-card:hover {
  border-color: rgba(140, 205, 245, 0.18);
  background: #0c1218;
  transform: translateY(-1px);
}

.listing-card h4 {
  margin: 0;
  color: var(--text);
  font-size: 0.92rem;
  line-height: 1.35;
}

.listing-card p {
  margin: 5px 0 0;
  color: var(--muted-2);
  font-size: 0.78rem;
  line-height: 1.4;
}

.listing-card strong {
  color: var(--text);
  font-size: 0.92rem;
  font-weight: 750;
  text-align: right;
}

.listing-card > span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  text-align: right;
  white-space: nowrap;
}

.property-service {
  border-top: 1px solid var(--line-soft);
  background:
    radial-gradient(circle at 78% 32%, rgba(140, 205, 245, 0.055), transparent 30rem),
    linear-gradient(180deg, rgba(238, 242, 246, 0.012), transparent 48%);
}

.property-service.scroll-reveal {
  opacity: calc(0.2 + (var(--scroll-progress) * 0.8));
  transform: translate3d(0, calc((1 - var(--scroll-progress)) * 48px), 0) scale(calc(0.992 + (var(--scroll-progress) * 0.008)));
}

.property-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(520px, 1fr);
  gap: clamp(54px, 6.5vw, 92px);
  align-items: center;
}

.property-copy h2 {
  max-width: 780px;
  margin: 16px 0 0;
  color: var(--text);
  font-size: clamp(2.6rem, 4.7vw, 5rem);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1;
}

.property-copy > p:not(.eyebrow) {
  max-width: 700px;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: clamp(1.18rem, 1.58vw, 1.36rem);
  line-height: 1.82;
}

.property-copy .property-support {
  margin-top: 18px;
  color: rgba(238, 242, 246, 0.78);
}

.project-feature-list {
  display: grid;
  max-width: 690px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 22px;
  margin: 34px 0 0;
  padding: 0;
  color: rgba(238, 242, 246, 0.78);
  font-size: 1.02rem;
  font-weight: 700;
  line-height: 1.5;
  list-style: none;
}

.project-feature-list li {
  position: relative;
  padding-left: 16px;
}

.project-feature-list li::before {
  position: absolute;
  top: 0.68em;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
  content: "";
}

.project-meta-row,
.tech-stack {
  display: flex;
  max-width: 740px;
  flex-wrap: wrap;
  gap: 8px;
}

.project-meta-row {
  margin-top: 34px;
}

.project-meta-row span,
.tech-stack span {
  border: 1px solid rgba(238, 242, 246, 0.09);
  border-radius: 999px;
  background: rgba(238, 242, 246, 0.028);
  color: rgba(238, 242, 246, 0.68);
  font-size: 0.82rem;
  font-weight: 720;
  line-height: 1.2;
  padding: 8px 10px;
}

.tech-stack {
  margin-top: 16px;
}

.tech-stack span {
  color: var(--muted);
  font-size: 0.78rem;
}

.property-mockup {
  justify-self: end;
  width: min(100%, 840px);
  overflow: hidden;
  border: 1px solid rgba(238, 242, 246, 0.1);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(238, 242, 246, 0.035), transparent 30%),
    #0d1116;
  box-shadow: 0 44px 120px rgba(0, 0, 0, 0.3);
  transition:
    border-color 220ms ease,
    transform 220ms ease;
}

.property-service .property-body {
  opacity: calc(0.34 + (var(--scroll-progress) * 0.66));
  filter: blur(calc((1 - var(--scroll-progress)) * 5px));
  transform: translateY(calc((1 - var(--scroll-progress)) * 26px)) scale(calc(0.985 + (var(--scroll-progress) * 0.015)));
  transform-origin: center;
  transition: filter 160ms ease;
  will-change: opacity, filter, transform;
}

.property-service.is-scroll-complete .property-body {
  will-change: auto;
}

.property-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-bottom: 1px solid var(--line-soft);
  padding: 16px 18px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 750;
}

.property-topbar > div {
  display: flex;
  min-width: 0;
  flex-wrap: wrap;
  align-items: center;
  gap: 9px;
}

.property-topbar > div > span:first-child {
  color: var(--text);
}

.status-pill,
.forecast-chip {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(140, 205, 245, 0.22);
  border-radius: 999px;
  background: rgba(140, 205, 245, 0.08);
  color: var(--accent-strong);
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1.2;
  padding: 6px 9px;
  white-space: nowrap;
}

.forecast-chip {
  color: rgba(238, 242, 246, 0.72);
}

.property-body {
  display: grid;
  gap: 12px;
  padding: 18px;
}

.property-overview,
.chart-panel,
.ai-panel,
.deals-panel,
.role-panel {
  border: 1px solid rgba(238, 242, 246, 0.085);
  border-radius: 8px;
  background: rgba(5, 6, 8, 0.24);
}

.property-overview {
  display: grid;
  grid-template-columns: minmax(220px, 0.86fr) minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  padding: 18px;
}

.property-visual {
  display: grid;
  min-height: 250px;
  place-items: center;
  border-radius: 7px;
  background:
    radial-gradient(circle at 48% 42%, rgba(238, 242, 246, 0.12), transparent 36%),
    radial-gradient(circle at 48% 50%, rgba(140, 205, 245, 0.08), transparent 56%),
    #090d12;
}

.property-visual svg {
  width: min(90%, 310px);
  max-height: 214px;
  overflow: visible;
}

.property-signal {
  fill: none;
  stroke: rgba(140, 205, 245, 0.35);
  stroke-dasharray: 6 9;
  stroke-linecap: round;
  animation: propertySignalFlow 7s linear infinite;
}

.property-value-line {
  fill: none;
  stroke: rgba(140, 205, 245, 0.58);
  stroke-dasharray: 7 10;
  stroke-linecap: round;
  stroke-width: 2;
  animation: propertySignalFlow 6s linear infinite;
}

.property-building {
  animation: propertyLift 6.4s ease-in-out infinite;
  transform-origin: 160px 130px;
}

.property-ground {
  fill: rgba(0, 0, 0, 0.42);
  animation: propertyShadow 6.4s ease-in-out infinite;
  transform-origin: 160px 184px;
}

.property-face {
  fill: url("#propertyFace");
  stroke: rgba(255, 255, 255, 0.16);
}

.property-side {
  fill: url("#propertySide");
  stroke: rgba(255, 255, 255, 0.12);
}

.property-roof {
  fill: #141b22;
  stroke: rgba(255, 255, 255, 0.14);
}

.property-roof-line {
  fill: none;
  stroke: rgba(255, 255, 255, 0.18);
  stroke-linecap: round;
}

.property-door {
  fill: rgba(5, 6, 8, 0.58);
  stroke: rgba(238, 242, 246, 0.18);
}

.property-windows rect,
.property-side-windows rect {
  fill: rgba(140, 205, 245, 0.26);
  stroke: rgba(238, 242, 246, 0.2);
}

.property-summary-heading {
  display: grid;
  gap: 14px;
  justify-items: start;
}

.property-summary h3 {
  margin: 0;
  color: var(--text);
  font-size: clamp(1.34rem, 2vw, 1.85rem);
  line-height: 1.14;
}

.valuation-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin: 24px 0 0;
  overflow: hidden;
  border: 1px solid var(--line-soft);
  border-radius: 7px;
  background: var(--line-soft);
}

.valuation-grid div {
  background: #0a0f14;
  padding: 13px;
}

.valuation-grid dt,
.portfolio-strip span,
.ai-metrics dt {
  color: var(--muted-2);
  font-size: 0.78rem;
  line-height: 1.35;
}

.valuation-grid dd {
  margin: 8px 0 0;
  color: var(--text);
  font-size: 0.98rem;
  font-weight: 760;
  line-height: 1.36;
}

.portfolio-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.portfolio-strip div {
  min-width: 0;
  border: 1px solid rgba(238, 242, 246, 0.085);
  border-radius: 7px;
  background: rgba(5, 6, 8, 0.24);
  padding: 14px;
}

.portfolio-strip strong {
  display: block;
  margin-top: 9px;
  color: var(--text);
  font-size: clamp(1.08rem, 1.55vw, 1.32rem);
  line-height: 1.12;
}

.property-analytics {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(230px, 0.78fr);
  gap: 12px;
}

.chart-panel,
.ai-panel,
.deals-panel,
.role-panel {
  padding: 16px;
}

.panel-heading {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 16px;
}

.panel-heading h4 {
  margin: 0;
  color: var(--text);
  font-size: 1rem;
  line-height: 1.25;
}

.panel-heading span {
  color: var(--muted-2);
  font-size: 0.78rem;
  font-weight: 750;
  line-height: 1.35;
  text-align: right;
}

.cashflow-chart {
  width: 100%;
  margin-top: 16px;
  overflow: visible;
}

.chart-grid path {
  stroke: rgba(238, 242, 246, 0.06);
}

.chart-line {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 4;
}

.chart-line-accent {
  stroke: rgba(140, 205, 245, 0.9);
}

.chart-line-muted {
  stroke: rgba(238, 242, 246, 0.28);
}

.chart-points circle {
  fill: var(--accent);
  stroke: #0a0f14;
  stroke-width: 3;
}

.chart-labels text {
  fill: var(--muted-2);
  font-size: 11px;
  font-weight: 700;
}

.chart-legend {
  display: flex;
  gap: 16px;
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 750;
}

.chart-legend span {
  position: relative;
  padding-left: 14px;
}

.chart-legend span::before {
  position: absolute;
  top: 0.52em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  content: "";
}

.chart-legend span:last-child::before {
  background: rgba(238, 242, 246, 0.35);
}

.ai-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin: 16px 0 0;
  overflow: hidden;
  border: 1px solid var(--line-soft);
  border-radius: 7px;
  background: var(--line-soft);
}

.ai-metrics div {
  background: #0a0f14;
  padding: 12px;
}

.ai-metrics dd {
  margin: 8px 0 0;
  color: var(--text);
  font-size: 1.02rem;
  font-weight: 780;
}

.ai-panel p {
  margin: 15px 0 0;
  color: rgba(238, 242, 246, 0.78);
  font-size: 0.9rem;
  font-weight: 650;
  line-height: 1.56;
}

.property-bottom-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(180px, 0.38fr);
  gap: 12px;
}

.deal-list {
  display: grid;
  gap: 8px;
  margin-top: 14px;
}

.deal-list div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(82px, 0.72fr) minmax(72px, auto) minmax(76px, auto);
  gap: 10px;
  align-items: center;
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(238, 242, 246, 0.07);
  border-radius: 7px;
  background: #0a0f14;
  padding: 12px;
}

.deal-list span:first-child,
.deal-list strong {
  min-width: 0;
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 760;
  overflow-wrap: anywhere;
}

.deal-list span:nth-child(2),
.deal-list em {
  min-width: 0;
  color: var(--muted);
  font-size: 0.78rem;
  font-style: normal;
  font-weight: 700;
  overflow-wrap: anywhere;
}

.deal-list strong,
.deal-list em {
  text-align: right;
  white-space: nowrap;
}

.role-panel {
  align-self: stretch;
}

.role-tags {
  display: grid;
  gap: 8px;
  margin-top: 14px;
}

.role-tags span {
  border: 1px solid rgba(140, 205, 245, 0.2);
  border-radius: 999px;
  color: rgba(238, 242, 246, 0.78);
  font-size: 0.82rem;
  font-weight: 760;
  padding: 8px 10px;
  text-align: center;
}

.future {
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  background:
    radial-gradient(circle at 50% 48%, rgba(140, 205, 245, 0.08), transparent 34rem),
    rgba(238, 242, 246, 0.02);
}

.future-inner {
  max-width: 920px;
  text-align: center;
}

.future p {
  width: min(790px, 100%);
  margin: 28px auto 0;
}

.founder-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1fr);
  gap: clamp(36px, 7vw, 112px);
  align-items: start;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: clamp(88px, 10vw, 132px) 0;
}

.founder h2 {
  max-width: 720px;
  font-size: clamp(2.85rem, 5.15vw, 5.35rem);
}

.founder-role {
  max-width: 620px;
  margin: 28px 0 0;
  color: rgba(238, 242, 246, 0.88);
  font-size: clamp(1.16rem, 1.66vw, 1.42rem);
  font-weight: 750;
  line-height: 1.54;
}

.founder-meta {
  width: max-content;
  max-width: 100%;
  margin: 18px 0 0;
  border-top: 1px solid var(--line);
  color: rgba(238, 242, 246, 0.68);
  font-size: 1.03rem;
  line-height: 1.6;
  padding-top: 16px;
}

.founder-grid > p {
  max-width: 680px;
  margin: 0;
  border-left: 1px solid rgba(140, 205, 245, 0.2);
  color: rgba(238, 242, 246, 0.8);
  font-size: clamp(1.34rem, 1.86vw, 1.62rem);
  line-height: 1.82;
  padding-left: clamp(24px, 3.2vw, 42px);
}

.site-footer {
  padding: clamp(82px, 12vw, 150px) 0 36px;
}

.footer-cta {
  display: grid;
  max-width: 850px;
  gap: 0;
  align-items: start;
}

.footer-cta .eyebrow,
.footer-cta h2,
.footer-cta p,
.contact-points,
.footer-cta .button {
  grid-column: 1;
}

.footer-cta .button {
  width: max-content;
  min-width: 216px;
  min-height: 64px;
  margin-top: 38px;
  border-color: rgba(167, 220, 251, 0.8);
  background:
    linear-gradient(180deg, rgba(167, 220, 251, 0.96), rgba(125, 211, 252, 0.86)),
    var(--accent);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.28);
  padding: 0 42px;
  font-size: 1.08rem;
}

.footer-cta h2 {
  font-size: clamp(2.5rem, 5.4vw, 5.6rem);
}

.footer-cta p {
  width: min(690px, 100%);
  margin: 26px 0 0;
}

.contact-points {
  display: grid;
  width: min(760px, 100%);
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 32px;
}

.contact-points span {
  border-top: 1px solid var(--line);
  color: rgba(238, 242, 246, 0.82);
  font-size: 1rem;
  font-weight: 750;
  line-height: 1.42;
  padding-top: 16px;
}

.footer-bottom {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
  margin-top: 92px;
  border-top: 1px solid var(--line);
  padding-top: 28px;
}

.footer-brand {
  display: grid;
  gap: 12px;
  min-width: 220px;
}

.footer-brand p {
  max-width: 300px;
  margin: 0;
  color: rgba(238, 242, 246, 0.68);
  font-size: 1.03rem;
  line-height: 1.6;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 24px;
  color: rgba(238, 242, 246, 0.7);
  font-size: 1.08rem;
  font-weight: 650;
}

.footer-bottom .brand {
  gap: 14px;
}

.footer-bottom .brand-initials {
  width: 42px;
  height: 42px;
}

.footer-bottom .brand-name {
  font-size: 1rem;
}

.footer-links a:first-child {
  color: rgba(238, 242, 246, 0.86);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 700ms ease,
    transform 700ms ease;
}

.hero-inner.reveal {
  opacity: 1;
  transform: none;
}

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

@media (hover: hover) {
  .capability:hover {
    border-bottom-color: rgba(140, 205, 245, 0.18);
    background: linear-gradient(90deg, transparent, rgba(140, 205, 245, 0.025), transparent);
  }

  .product-mockup:hover {
    border-color: rgba(140, 205, 245, 0.2);
    transform: translateY(-2px);
  }

  .property-mockup:hover {
    border-color: rgba(140, 205, 245, 0.2);
    transform: translateY(-2px);
  }
}

@keyframes airLineFlow {
  from {
    stroke-dashoffset: 0;
  }

  to {
    stroke-dashoffset: -60;
  }
}

@keyframes airSpringBreathe {
  0%,
  100% {
    transform: scaleY(1);
  }

  50% {
    transform: scaleY(1.018);
  }
}

@keyframes bushingPulse {
  0%,
  100% {
    stroke-opacity: 0.28;
  }

  50% {
    stroke-opacity: 0.58;
  }
}

@keyframes suspensionFloat {
  0%,
  100% {
    transform: translateY(0);
  }

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

@keyframes propertyLift {
  0%,
  100% {
    transform: translateY(0);
  }

  32% {
    transform: translateY(7px);
  }

  68% {
    transform: translateY(-9px);
  }

  84% {
    transform: translateY(-5px);
  }
}

@keyframes propertyShadow {
  0%,
  100% {
    opacity: 0.42;
    transform: scaleX(1);
  }

  32% {
    opacity: 0.48;
    transform: scaleX(1.06);
  }

  68% {
    opacity: 0.3;
    transform: scaleX(0.9);
  }
}

@keyframes propertySignalFlow {
  from {
    stroke-dashoffset: 0;
  }

  to {
    stroke-dashoffset: -68;
  }
}

@media (max-width: 980px) {
  .container {
    width: min(var(--max), calc(100% - 64px));
  }

  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav-links {
    display: none;
  }

  .philosophy-grid,
  .flagship-grid,
  .property-grid,
  .founder-grid,
  .footer-cta {
    grid-template-columns: 1fr;
  }

  .philosophy-grid {
    gap: 44px;
  }

  .capability {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 62px 0;
  }

  .capability ul {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 2px;
  }

  .flagship-grid {
    align-items: start;
  }

  .product-mockup {
    justify-self: center;
    width: min(100%, 820px);
  }

  .property-mockup {
    justify-self: center;
    width: min(100%, 840px);
  }

  .footer-cta .button {
    width: max-content;
  }
}

@media (max-width: 720px) {
  section,
  footer {
    scroll-margin-top: 82px;
  }

  .container {
    width: min(var(--max), calc(100% - 36px));
  }

  .site-header {
    height: 78px;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
    padding: 0 18px;
  }

  .site-header.is-scrolled {
    height: 70px;
  }

  .brand-initials {
    width: 38px;
    height: 38px;
    flex: 0 0 auto;
  }

  .brand-name {
    font-size: 0.94rem;
  }

  .nav-cta {
    font-size: 0.82rem;
  }

  .header-actions {
    gap: 8px;
  }

  .lang-toggle {
    min-height: 38px;
    font-size: 0.76rem;
    padding: 0 5px;
  }

  .lang-toggle span {
    padding: 4px 6px;
  }

  .hero {
    min-height: 96vh;
    padding-top: 124px;
    padding-bottom: 78px;
  }

  .hero-inner {
    width: calc(100vw - 36px);
    max-width: calc(100vw - 36px);
  }

  h1 {
    font-size: clamp(3.12rem, 14.4vw, 4.2rem);
    line-height: 0.92;
  }

  html[lang="ru"] h1 {
    font-size: clamp(2.58rem, 12vw, 3.45rem);
    line-height: 0.96;
  }

  html[lang="ru"] .eyebrow {
    font-size: 0.68rem;
    letter-spacing: 0.075em;
  }

  .hero-copy {
    width: 100%;
    max-width: 35ch;
    font-size: clamp(1.24rem, 4.45vw, 1.54rem);
    line-height: 1.68;
  }

  .hero-actions {
    width: 100%;
    max-width: 358px;
    margin-right: auto;
    margin-left: auto;
    flex-direction: column;
    align-items: stretch;
  }

  .button {
    width: 100%;
    min-height: 54px;
  }

  .philosophy-grid {
    gap: 38px;
  }

  .philosophy h2 {
    margin-top: 20px;
  }

  .philosophy-copy p,
  .section-heading p,
  .flagship-copy p,
  .future p,
  .founder-grid > p,
  .footer-cta p {
    font-size: clamp(1.22rem, 4.32vw, 1.42rem);
    line-height: 1.94;
  }

  .philosophy h2,
  .section-heading h2,
  .flagship-copy h2,
  .future h2,
  .founder h2,
  .footer-cta h2 {
    font-size: clamp(2.1rem, 10.8vw, 3.35rem);
  }

  .capability ul {
    grid-template-columns: 1fr;
    gap: 15px;
    margin-top: 8px;
  }

  .capability {
    gap: 30px;
    border-bottom-color: rgba(238, 242, 246, 0.14);
    padding: 76px 0;
  }

  .capability p {
    font-size: clamp(1.2rem, 4.28vw, 1.38rem);
    line-height: 1.88;
  }

  .capability ul {
    font-size: 1.05rem;
    line-height: 1.62;
  }

  .marketplace-search,
  .part-meta {
    grid-template-columns: 1fr;
  }

  .property-copy h2 {
    font-size: clamp(2.1rem, 10.8vw, 3.35rem);
  }

  .property-copy > p:not(.eyebrow) {
    font-size: clamp(1.2rem, 4.28vw, 1.38rem);
    line-height: 1.88;
  }

  .project-feature-list {
    grid-template-columns: 1fr;
    gap: 15px;
    font-size: 1.05rem;
    line-height: 1.62;
  }

  .mockup-body {
    gap: 12px;
    padding: 16px;
  }

  .marketplace-search,
  .listing-panel {
    padding: 18px;
  }

  .part-photo {
    min-height: 330px;
    padding: 14px;
  }

  .part-photo svg {
    width: min(92%, 285px);
    max-height: 285px;
  }

  .part-meta {
    margin-top: 22px;
  }

  .property-body {
    gap: 12px;
    padding: 16px;
  }

  .property-topbar {
    align-items: flex-start;
    flex-direction: column;
    padding: 16px;
  }

  .property-overview,
  .property-analytics,
  .property-bottom-grid {
    grid-template-columns: 1fr;
  }

  .property-overview {
    gap: 16px;
    padding: 16px;
  }

  .property-visual {
    min-height: 260px;
  }

  .portfolio-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .deal-list div {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 8px 12px;
  }

  .deal-list span:nth-child(2),
  .deal-list em {
    text-align: left;
  }

  .deal-list strong,
  .deal-list em {
    text-align: right;
  }

  .role-tags {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .listing-panel {
    display: none;
  }

  .listing-card {
    grid-template-columns: minmax(0, 1fr) auto;
    padding: 16px;
  }

  .listing-card h4 {
    font-size: 1rem;
  }

  .listing-card p,
  .listing-card > span {
    font-size: 0.86rem;
  }

  .listing-card strong {
    font-size: 1rem;
  }

  .listing-card > span {
    grid-column: 1 / -1;
  }

  .footer-cta .button {
    width: 100%;
    min-height: 64px;
  }

  .founder-grid {
    gap: 40px;
    padding: 88px 0;
  }

  .founder-grid > p {
    border-top: 1px solid rgba(140, 205, 245, 0.18);
    border-left: 0;
    padding-top: 34px;
    padding-left: 0;
  }

  .founder-role {
    margin-top: 24px;
    line-height: 1.56;
  }

  .founder-meta {
    margin-top: 18px;
    width: auto;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 24px;
    margin-top: 70px;
  }

  .footer-brand {
    gap: 14px;
  }

  .footer-brand p {
    max-width: 24rem;
    font-size: 1.02rem;
    line-height: 1.62;
  }

  .contact-points {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 36px;
  }

  .contact-points span {
    font-size: 1.05rem;
    line-height: 1.5;
    padding-top: 18px;
  }

  .footer-links {
    display: grid;
    justify-content: start;
    gap: 18px;
    font-size: 1.08rem;
    line-height: 1.58;
  }

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

  .footer-bottom .brand-initials {
    width: 46px;
    height: 46px;
  }

  .footer-bottom .brand-name {
    font-size: 1.06rem;
  }
}

@media (max-width: 430px) {
  .nav-cta {
    display: none;
  }

  .site-header {
    grid-template-columns: 1fr auto;
  }

  .brand {
    gap: 9px;
  }

  .brand-initials {
    width: 31px;
    height: 31px;
  }

  .brand-name {
    font-size: 0.74rem;
    max-width: 150px;
  }

  .lang-toggle {
    min-height: 36px;
  }

  .lang-toggle span {
    padding: 4px 5px;
  }

  .section,
  .section-full {
    padding: 84px 0;
  }

  .hero {
    padding-top: 130px;
    padding-bottom: 80px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
  }

  .scroll-reveal {
    opacity: 1 !important;
    transform: none !important;
  }
}
