/* ============================================
   All(about)ID — Design Tokens
   ============================================ */
:root {
  --black: #0a0a0a;
  --white: #f5f5f2;
  --gray-900: #141414;
  --gray-700: #1c1c1c;
  --gray-500: #6b6b6b;
  --gray-400: #8a8a8a;
  --gray-300: #3a3a3a;
  --gray-200: #2a2a2a;
  --logo-red: #ff0b36;
  --logo-magenta: #c41189;

  --font-system: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
  --font-mono: "SF Mono", "Roboto Mono", Consolas, monospace;

  --container: 1280px;
  --gutter: clamp(24px, 5vw, 64px);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-system);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

img {
  display: block;
  max-width: 100%;
}

button {
  font-family: inherit;
  cursor: pointer;
}

:focus-visible {
  outline: 2px solid var(--white);
  outline-offset: 3px;
}

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

/* ============================================
   Nav
   ============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px var(--gutter);
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.nav__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.nav__brand img {
  width: 22px;
  height: 22px;
}

.nav__links {
  display: flex;
  gap: clamp(20px, 3vw, 40px);
  font-size: 14px;
  letter-spacing: 0.01em;
}

.nav__links a {
  position: relative;
  padding-bottom: 4px;
  opacity: 0.85;
  transition: opacity 0.2s ease;
}

.nav__links a:hover,
.nav__links a[aria-current="page"] {
  opacity: 1;
}

.nav__links a[aria-current="page"]::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: currentColor;
}

.nav__menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--white);
}

/* ============================================
   Hero (home page)
   ============================================ */
.hero {
  position: relative;
  width: 100%;
  height: 88vh;
  min-height: 520px;
  overflow: hidden;
  background: var(--black);
}

.hero__fallback-bg {
  position: absolute;
  inset: 0;
  background: var(--black) url("assets/hero-fallback.jpg") center/cover no-repeat;
  filter: grayscale(1) contrast(1.05);
}

.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.05);
  opacity: 0.85;
}

.hero__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10, 10, 10, 0.05) 0%,
    rgba(10, 10, 10, 0.1) 50%,
    rgba(10, 10, 10, 0.9) 100%
  );
}

.hero__logo {
  position: absolute;
  bottom: clamp(28px, 5vw, 56px);
  left: var(--gutter);
  width: clamp(44px, 5vw, 68px);
  z-index: 2;
}

.hero__caption {
  position: absolute;
  bottom: clamp(28px, 5vw, 56px);
  right: var(--gutter);
  z-index: 2;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-400);
  text-align: right;
}

/* ============================================
   Floating images strip
   ============================================ */
.float-zone {
  position: relative;
  width: 100%;
  background: var(--black);
}

.float-zone--upper {
  height: clamp(500px, 60vw, 800px);
  overflow: visible;
  z-index: 2;
}

.float-zone--lower {
  height: clamp(480px, 56vw, 780px);
  overflow: hidden;
  z-index: 1;
}

.float-img {
  position: absolute;
  --mx: 0px;
  --my: 0px;
  will-change: transform;
  transform: translate(var(--mx), var(--my));
}

.float-img__inner {
  border: 1px solid var(--gray-300);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
  will-change: transform;
}

.float-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* upper zone */
.float-img--1 {
  width: clamp(312px, 38vw, 552px);
  top: 6%;
  left: 12%;
}
.float-img--1 .float-img__inner {
  animation: drift1 26s ease-in-out infinite;
  border: none;
}

.float-img--2 {
  width: clamp(480px, 57vw, 870px);
  top: 72%;
  left: 48%;
}
.float-img--2 .float-img__inner {
  animation: drift2 32s ease-in-out infinite;
  border: none;
}

/* lower zone */
.float-img--3 {
  width: clamp(255px, 28.5vw, 420px);
  top: calc(8% - 4.2vw);
  left: 18%;
}
.float-img--3 .float-img__inner {
  animation: drift3 29s ease-in-out infinite;
}

.float-img--4 {
  width: clamp(351px, 42vw, 632px);
  top: 20%;
  left: calc(46% + 6.3vw);
}
.float-img--4 .float-img__inner {
  animation: drift1 34s ease-in-out infinite reverse;
}

@keyframes drift1 {
  0%   { transform: translate(0, 0) rotate(0deg); }
  25%  { transform: translate(18px, 26px) rotate(1.2deg); }
  50%  { transform: translate(-12px, 40px) rotate(-0.8deg); }
  75%  { transform: translate(-22px, 10px) rotate(0.6deg); }
  100% { transform: translate(0, 0) rotate(0deg); }
}

@keyframes drift2 {
  0%   { transform: translate(0, 0) rotate(0deg); }
  30%  { transform: translate(-24px, -18px) rotate(-1deg); }
  60%  { transform: translate(16px, -32px) rotate(1.1deg); }
  100% { transform: translate(0, 0) rotate(0deg); }
}

@keyframes drift3 {
  0%   { transform: translate(0, 0) rotate(0deg); }
  20%  { transform: translate(-16px, 22px) rotate(0.9deg); }
  55%  { transform: translate(-30px, -10px) rotate(-1.2deg); }
  80%  { transform: translate(10px, -24px) rotate(0.5deg); }
  100% { transform: translate(0, 0) rotate(0deg); }
}

/* ============================================
   Wordmark section
   ============================================ */
.wordmark-section {
  position: relative;
  padding: clamp(60px, 10vw, 140px) var(--gutter);
  background: transparent;
  overflow: visible;
  z-index: 5;
}

.wordmark {
  font-size: clamp(16vw, 18vw, 260px);
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: -0.02em;
  color: var(--white);
  white-space: nowrap;
  width: 100%;
  text-align: center;
  will-change: transform;
}

.wordmark span.accent {
  color: var(--gray-500);
}

.tagline {
  max-width: 640px;
  margin: clamp(28px, 5vw, 48px) auto 0;
  text-align: center;
  font-size: clamp(15px, 1.6vw, 19px);
  line-height: 1.6;
  color: var(--gray-400);
}

.cta-row {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 36px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.01em;
  border: 1px solid var(--gray-300);
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.btn:hover {
  border-color: var(--white);
  transform: translateY(-1px);
}

.btn--primary {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
}

.btn--primary:hover {
  background: var(--gray-400);
  border-color: var(--gray-400);
}

/* ============================================
   Closing paragraph (above footer)
   ============================================ */
.closing {
  position: relative;
  z-index: 10;
  padding: clamp(32px, 4vw, 48px) var(--gutter) clamp(60px, 8vw, 100px);
  background: var(--black);
}

.closing__inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 0 clamp(32px, 4vw, 64px);
  align-items: start;
}

.closing__label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  padding-top: 4px;
}

.closing__body {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.closing__text {
  font-size: clamp(16px, 1.6vw, 20px);
  line-height: 1.65;
  color: var(--white);
  font-weight: 500;
  text-align: left;
}

.closing__text--second {
  margin-top: 0;
}

/* ============================================
   Footer
   ============================================ */
.footer {
  background: var(--white);
  color: var(--black);
  padding: clamp(40px, 6vw, 64px) var(--gutter) 32px;
}

.footer__top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  max-width: var(--container);
  margin: 0 auto;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(10, 10, 10, 0.12);
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer__brand img {
  width: 36px;
  height: 36px;
}

.footer__brand-name {
  font-size: 17px;
  font-weight: 600;
}

.footer__nav {
  display: flex;
  gap: clamp(24px, 4vw, 48px);
}

.footer__nav a {
  font-size: 14px;
  font-weight: 500;
  position: relative;
}

.footer__nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  height: 1px;
  width: 0;
  background: var(--black);
  transition: width 0.2s ease;
}

.footer__nav a:hover::after {
  width: 100%;
}

.footer__social {
  display: flex;
  gap: 18px;
}

.footer__social a {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(10, 10, 10, 0.18);
  border-radius: 50%;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.footer__social a:hover {
  background: var(--black);
  border-color: var(--black);
}

.footer__social a:hover svg {
  stroke: var(--white);
  fill: var(--white);
}

.footer__social svg {
  width: 16px;
  height: 16px;
  stroke: var(--black);
  fill: var(--black);
  transition: stroke 0.2s ease, fill 0.2s ease;
}

.footer__bottom {
  max-width: var(--container);
  margin: 24px auto 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12.5px;
  color: rgba(10, 10, 10, 0.55);
}

/* ============================================
   Demos page
   ============================================ */
.page-header {
  padding: clamp(140px, 16vw, 200px) var(--gutter) clamp(40px, 6vw, 64px);
  border-bottom: 1px solid var(--gray-200);
}

.page-header__eyebrow {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gray-500);
  margin-bottom: 14px;
}

.page-header h1 {
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 18px;
}

.page-header p {
  max-width: 560px;
  color: var(--gray-400);
  font-size: clamp(15px, 1.6vw, 17px);
  line-height: 1.6;
}

.category {
  padding: clamp(48px, 6vw, 80px) var(--gutter);
  max-width: var(--container);
  margin: 0 auto;
  border-bottom: 1px solid var(--gray-200);
}

.category:last-of-type {
  border-bottom: none;
}

.category__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: clamp(28px, 4vw, 44px);
  flex-wrap: wrap;
}

.category__title {
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 700;
  letter-spacing: -0.01em;
}

.category__count {
  font-size: 13px;
  letter-spacing: 0.06em;
  color: var(--gray-500);
  text-transform: uppercase;
}

.demo-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(28px, 3vw, 40px);
}

.demo-card {
  display: flex;
  flex-direction: column;
}

.demo-card__media {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: var(--gray-700);
  border: 1px solid var(--gray-300);
  border-radius: 8px;
  overflow: hidden;
}

.demo-card__media iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.demo-card__media--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-500);
  font-size: 13px;
  letter-spacing: 0.05em;
}

.demo-card__body {
  padding-top: 16px;
}

.demo-card__title {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 6px;
}

.demo-card__desc {
  font-size: 14px;
  line-height: 1.55;
  color: var(--gray-400);
}

/* ============================================
   Product hero video (demos page)
   ============================================ */
.product-section-heading {
  padding: clamp(48px, 6vw, 80px) var(--gutter) clamp(24px, 3vw, 40px);
}

.product-hero {
  position: relative;
  width: 100%;
  height: 88vh;
  min-height: 520px;
  overflow: hidden;
  background: var(--black);
}

.product-hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: none;
}

.product-hero__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10, 10, 10, 0.05) 0%,
    rgba(10, 10, 10, 0.1) 50%,
    rgba(10, 10, 10, 0.7) 100%
  );
}

/* ============================================
   Product cards
   ============================================ */
.products {
  width: 100%;
  padding: clamp(40px, 6vw, 80px) var(--gutter) 0;
}

.products .product-card {
  max-width: calc(50% - clamp(20px, 2.5vw, 32px) / 2);
}

.product-grid-section {
  padding: clamp(60px, 8vw, 100px) var(--gutter);
  max-width: 100%;
}

.product-grid {
  display: flex;
  flex-direction: column;
  gap: clamp(48px, 7vw, 80px);
  max-width: 720px;
}

.product-card--col {
  display: flex;
  flex-direction: column;
}

.product-card__media {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: clamp(20px, 2.5vw, 32px);
  background: var(--gray-700);
  border: 1px solid var(--gray-300);
}

.product-card__media--placeholder {
  background: var(--gray-700);
}

.product-card--col .product-card__header {
  padding-bottom: 12px;
}

.product-card--col .product-card__cta {
  display: inline-block;
  margin-bottom: 20px;
}

.product-grid--2col {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(40px, 5vw, 64px);
  max-width: 100%;
}

.product-hero__placeholder {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  aspect-ratio: unset;
  border-radius: 0;
  border: none;
  margin: 0;
}

@media (max-width: 860px) {
  .product-grid--2col {
    grid-template-columns: 1fr;
  }

  .products .product-card {
    max-width: 100%;
  }

  .product-section-heading {
    padding-top: calc(65px + clamp(24px, 4vw, 40px));
    padding-bottom: 6px;
  }

  .product-hero {
    height: 56vw;
    min-height: 280px;
    margin-top: 20px;
  }

  .product-grid-section {
    padding: clamp(40px, 8vw, 60px) var(--gutter);
  }
}

.product-card__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 24px;
  flex-wrap: wrap;
}

.product-card__name {
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 4px;
}

.product-card__subtitle {
  font-size: clamp(14px, 1.4vw, 16px);
  color: var(--gray-400);
}

.product-card__cta {
  font-size: 14px;
  font-weight: 600;
  color: var(--logo-magenta);
  text-decoration: underline;
  text-underline-offset: 3px;
  white-space: nowrap;
  transition: opacity 0.2s ease;
}

.product-card__cta:hover {
  opacity: 0.75;
}

.product-card__divider {
  height: 1px;
  background: var(--gray-300);
}

.product-card__accordion {
  padding: 4px 0;
}

.accordion__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  background: none;
  border: none;
  color: var(--white);
  font-size: clamp(15px, 1.5vw, 17px);
  font-weight: 600;
  cursor: pointer;
  text-align: left;
}

.accordion__icon {
  font-size: 22px;
  font-weight: 300;
  line-height: 1;
  transition: transform 0.25s ease;
}

.accordion__trigger[aria-expanded="true"] .accordion__icon {
  transform: rotate(45deg);
}

.accordion__body[hidden] {
  display: none;
}

.accordion__body {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-bottom: 24px;
  font-size: clamp(14px, 1.4vw, 15px);
  line-height: 1.7;
  color: var(--gray-400);
}

.accordion__body p strong {
  color: var(--white);
}

.product-card__secondary-cta {
  font-size: 13px;
  color: var(--gray-400);
  font-style: italic;
  text-decoration: underline;
  text-underline-offset: 3px;
  margin-top: 8px;
  transition: color 0.2s ease;
}

.product-card__secondary-cta:hover {
  color: var(--white);
}

/* ============================================
   Contact page
   ============================================ */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  padding: clamp(140px, 16vw, 200px) var(--gutter) clamp(80px, 10vw, 140px);
  max-width: var(--container);
  margin: 0 auto;
  align-items: start;
}

.contact-info h1 {
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 24px;
}

.contact {
  padding: clamp(140px, 16vw, 200px) var(--gutter) clamp(80px, 10vw, 140px);
  max-width: 760px;
  margin: 0 auto;
}

.contact h1 {
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 24px;
}

.contact p.lead {
  font-size: clamp(15px, 1.6vw, 18px);
  color: var(--gray-400);
  line-height: 1.6;
  margin-bottom: 48px;
  max-width: 520px;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.contact-card {
  padding: 28px;
  border: 1px solid var(--gray-300);
  border-radius: 10px;
}

.contact-card__label {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-500);
  margin-bottom: 10px;
}

.contact-card__value {
  font-size: 17px;
  font-weight: 600;
}

.contact-card__value:hover {
  color: var(--gray-400);
}

/* ============================================
   Contact form
   ============================================ */
.contact-icons {
  display: flex;
  gap: 16px;
  margin-top: 40px;
}

.contact-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gray-300);
  border-radius: 50%;
  color: var(--white);
  transition: background 0.2s ease, border-color 0.2s ease;
}

.contact-icon:hover {
  background: var(--white);
  border-color: var(--white);
  color: var(--black);
}

.contact-icon svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
  stroke: currentColor;
}

.contact-icon:first-child svg {
  fill: none;
}

.contact-form-wrap {
  background: var(--gray-700);
  border: 1px solid var(--gray-300);
  border-radius: 12px;
  padding: clamp(28px, 4vw, 48px);
}

.contact-form__title {
  font-size: clamp(20px, 2.2vw, 26px);
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}

.contact-form__sub {
  font-size: 14px;
  color: var(--gray-400);
  margin-bottom: 32px;
  line-height: 1.5;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.form-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--gray-400);
}

.form-input {
  background: var(--gray-900);
  border: 1px solid var(--gray-300);
  border-radius: 8px;
  color: var(--white);
  font-family: var(--font-system);
  font-size: 14px;
  padding: 12px 14px;
  width: 100%;
  transition: border-color 0.2s ease;
  outline: none;
}

.form-input::placeholder {
  color: var(--gray-500);
}

.form-input:focus {
  border-color: var(--white);
}

.form-select-wrap {
  position: relative;
}

.form-select {
  appearance: none;
  cursor: pointer;
  padding-right: 36px;
}

.form-select option {
  background: var(--gray-900);
  color: var(--white);
}

.form-select-arrow {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: var(--gray-400);
}

.form-textarea {
  resize: vertical;
  min-height: 100px;
}

.form-submit {
  margin-top: 8px;
  padding: 13px 26px;
  background: var(--white);
  color: var(--black);
  border: none;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  align-self: flex-start;
  transition: background 0.2s ease, transform 0.2s ease;
}

.form-submit:hover {
  background: var(--gray-400);
  transform: translateY(-1px);
}

.form-status {
  font-size: 13px;
  margin-top: 4px;
  color: var(--gray-400);
}

.form-status--success { color: #4ade80; }
.form-status--error   { color: #f87171; }

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 860px) {
  .nav__links {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 70vw;
    max-width: 320px;
    background: var(--black);
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 0 var(--gutter);
    gap: 28px;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    mix-blend-mode: normal;
    font-size: 18px;
  }

  .nav__links[data-open="true"] {
    transform: translateX(0);
  }

  .nav__menu-btn {
    display: block;
    z-index: 110;
  }

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

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

  .contact-layout {
    grid-template-columns: 1fr;
  }

  .footer__top {
    flex-direction: column;
  }

  .wordmark {
    font-size: 15vw;
  }

  .float-zone--upper {
    height: clamp(480px, 120vw, 700px);
  }

  .float-zone--lower {
    height: clamp(760px, 200vw, 1100px);
  }

  .closing__inner {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .float-img--1 {
    width: 62vw;
    top: 4%;
    left: 5%;
  }

  .float-img--2 {
    width: 77vw;
    top: 68%;
    left: 28%;
  }

  .float-img--3 {
    width: 58vw;
    top: 6%;
    left: 4%;
  }

  .float-img--4 {
    width: 77vw;
    top: 52%;
    left: 32%;
  }
}
