/* MUSIXQUARE about page. */

main {
  padding-top: var(--header-h);
}

.lp-section {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 140px var(--pad-x);
  min-height: calc(100vh - var(--header-h));
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.lp-hero {
  padding-top: 80px;
  padding-bottom: 80px;
  display: grid;
  grid-template-columns: 1fr;
  align-content: center;
  gap: 48px;
}

.lp-hero__copy .lp-lead,
.lp-hero__copy .lp-btn-row {
  max-width: 620px;
}

@media (min-width: 1024px) {
  .lp-hero {
    grid-template-columns: minmax(0, 1.38fr) minmax(260px, 0.62fr);
    gap: 0 clamp(32px, 5vw, 72px);
    align-items: center;
  }

  .lp-hero__copy {
    grid-column: 1;
    max-width: 720px;
  }

  .lp-hero__visual {
    grid-column: 2;
    justify-self: center;
  }
}

.lp-hero__visual {
  display: flex;
  justify-content: center;
  align-items: center;
  perspective: 1600px;
  width: 100%;
}

.lp-phone-3d {
  width: clamp(220px, 20vw, 300px);
  aspect-ratio: 9 / 19.5;
  position: relative;
  transform: rotateY(-14deg) rotateX(6deg);
  transform-origin: center center;
  transform-style: preserve-3d;
  transition: transform 800ms var(--ease-out);
  will-change: transform;
}

.lp-phone-3d[data-phone-tilt] {
  transition: transform 120ms linear;
}

.lp-phone-3d__frame {
  position: absolute;
  inset: 0;
  transform: translateZ(14px);
  border: 1px solid var(--surface-3);
  border-radius: 36px;
  overflow: hidden;
  background: #000;
}

.lp-phone-3d__frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lp-phone-3d__side {
  position: absolute;
  top: 36px;
  bottom: 36px;
  right: -14px;
  width: 28px;
  transform: rotateY(90deg);
  transform-origin: center center;
  background: linear-gradient(to right,
      #3a3a3a 0%,
      #1a1a1a 20%,
      #050505 50%,
      #1a1a1a 80%,
      #3a3a3a 100%);
}

@media (max-width: 1023px) {
  .lp-hero__visual {
    margin-top: 32px;
    width: 100%;
    justify-content: center;
  }

  .lp-phone-3d {
    width: clamp(220px, 70vw, 320px);
    transform: rotateY(-8deg) rotateX(3deg);
  }
}

.lp-divider {
  max-width: var(--max-w);
  margin: 0 auto;
  border: 0;
  border-top: 1px solid var(--surface-2);
  height: 0;
}

.lp-array {
  display: grid;
  grid-template-columns: 1fr 3fr 1fr;
  align-items: end;
  justify-items: center;
  gap: clamp(16px, 3.2vw, 48px);
  margin: 48px auto 0;
  padding: 24px 0;
  width: 100%;
  max-width: 1060px;
}

.lp-dev {
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(12px, 1.6vw, 24px);
  width: 100%;
}

.lp-dev__frame {
  width: 100%;
  border: 1px solid var(--surface-3);
  border-radius: var(--radius-s);
  background: #000;
  overflow: hidden;
  display: block;
}

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

.lp-dev--phone .lp-dev__frame {
  aspect-ratio: 1179 / 2556;
  border-radius: 18px;
}

.lp-dev--laptop .lp-dev__frame {
  aspect-ratio: 3 / 2;
  border-radius: 6px;
}

.lp-dev--laptop .lp-dev__hinge {
  width: 108%;
  height: 3px;
  background: var(--surface-3);
  border-radius: 0 0 4px 4px;
  margin-top: -1px;
}

.lp-dev figcaption {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  color: var(--text-muted);
  font-variant-numeric: tabular-nums;
}

.lp-section--split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
  align-items: center;
}

@media (min-width: 1024px) {
  .lp-section--split {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 440px);
    gap: clamp(40px, 5vw, 80px);
  }
}

.lp-split__copy {
  min-width: 0;
}

.lp-split__aside {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
}

.lp-qr {
  width: 100%;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lp-qr svg {
  width: 100%;
  height: 100%;
}

.lp-qr svg path {
  fill: var(--text-main);
  stroke: var(--text-main);
}

.lp-copy-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  height: 56px;
  padding: 0;
  border: 0;
  border-radius: var(--radius-m);
  background: var(--surface-2);
  color: var(--text-sub);
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: background var(--dur-fast) var(--ease-out), transform var(--dur-fast) var(--ease-out);
}

.lp-copy-link svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.lp-copy-link:hover {
  background: var(--surface-3);
}

.lp-copy-link:active {
  background: var(--surface-3);
  transform: scale(0.97);
}

.lp-toast {
  position: fixed;
  bottom: 40px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  pointer-events: none;
  z-index: 200;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.2s cubic-bezier(0.4, 0, 0.6, 1),
    transform 0.2s cubic-bezier(0.4, 0, 0.6, 1);
}

.lp-toast>span {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: #000;
  padding: 14px 28px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
}

.lp-toast.show {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.7s cubic-bezier(0.08, 0.82, 0.17, 1.15),
    transform 0.7s cubic-bezier(0.08, 0.82, 0.17, 1.15);
}

.lp-code {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(10px, 1.6vw, 22px);
  margin: 16px 0 20px;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.1em;
}

.lp-code em {
  font-style: normal;
  font-size: clamp(48px, 8.5vw, 112px);
  font-weight: 800;
  line-height: 1;
  color: var(--text-main);
  transition: color 280ms var(--ease-out), text-shadow 280ms var(--ease-out);
}

.lp-code em.is-lit {
  color: var(--primary);
  text-shadow: 0 0 8px rgba(59, 130, 246, 0.35);
}

.lp-code__caption {
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 0.03em;
  margin: 0;
  font-variant-numeric: tabular-nums;
}

.lp-sync {
  width: 100%;
  padding: 40px 28px;
  background: var(--surface-1);
  border-radius: var(--radius-m);
  display: flex;
  flex-direction: column;
  gap: 32px;
  font-variant-numeric: tabular-nums;
}

.lp-sync__label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 0 0 12px;
}

.lp-sync__timecode {
  font-size: clamp(40px, 5.5vw, 60px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--text-main);
  margin: 0;
  font-variant-numeric: tabular-nums;
}

.lp-sync__timecode em {
  font-style: normal;
  color: var(--primary);
}

.lp-sync__divider {
  height: 1px;
  background: var(--surface-2);
}

.lp-sync__rows {
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.lp-sync__rows>div {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.lp-sync__rows dt {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 0;
}

.lp-sync__rows dd {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin: 0;
}

.lp-sync__peer-tc {
  font-size: clamp(24px, 3.2vw, 36px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--text-main);
  font-variant-numeric: tabular-nums;
}

.lp-sync__delta {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  font-variant-numeric: tabular-nums;
}

.lp-sync__meta {
  margin: 0;
  padding-top: 22px;
  border-top: 1px dashed var(--surface-2);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--text-muted);
  font-variant-numeric: tabular-nums;
}

.lp-specs {
  margin: 16px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  max-width: 640px;
}

.lp-specs>div {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 24px;
  padding: 18px 0;
  border-bottom: 1px solid var(--surface-2);
  align-items: baseline;
}

.lp-specs>div:first-child {
  border-top: 1px solid var(--surface-2);
}

.lp-specs dt {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 0;
}

.lp-specs dd {
  margin: 0;
  font-size: 16px;
  color: var(--text-main);
  font-weight: 500;
  font-variant-numeric: tabular-nums;
}

.lp-standin {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 0;
}

.lp-standin svg {
  width: 100%;
  max-width: 380px;
  height: auto;
  
  overflow: visible;
}

.lp-standin__notch {
  fill: var(--text-muted);
  fill-opacity: 0.5;
  stroke: none;
}

.lp-standin__computer rect,
.lp-standin__computer path {
  fill: none;
  stroke: var(--text-muted);
  stroke-width: 1.5;
  opacity: 0.55;
}

.lp-standin__mute path {
  fill: var(--text-muted);
  fill-opacity: 0.65;
  stroke: none;
  opacity: 1;
}

.lp-standin__phone > rect:first-child {
  fill: none;
  stroke: var(--primary);
  stroke-width: 1.5;
}

.lp-standin__phone-screen {
  fill: var(--primary);
  fill-opacity: 0.08;
  stroke: none;
}

.lp-standin__eq rect {
  fill: var(--primary);
}

.lp-standin__caption {
  font-family: inherit;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-anchor: middle;
  fill: var(--primary);
  text-transform: uppercase;
}

.lp-standin__caption--muted {
  fill: var(--text-muted);
  opacity: 0.55;
  letter-spacing: 0.22em;
}

.lp-cta {
  align-items: center;
  min-height: 90vh;
  position: relative;
  overflow: hidden;
  justify-content: center;
  padding-top: clamp(180px, 18vw, 280px);
  padding-bottom: clamp(180px, 18vw, 280px);
}

.lp-cta .lp-h2 {
  font-size: clamp(56px, 9vw, 128px);
  line-height: 0.95;
  letter-spacing: -0.03em;
  font-weight: 800;
  margin: 0 0 40px 0;
}

.lp-cta__inner {
  position: relative;
  z-index: 1;
  width: 100%;
}

.lp-cta__wordmark {
  position: absolute;
  width: 150%;
  height: auto;
  display: block;
  fill: none;
  stroke: rgba(255, 255, 255, 0.05);
  stroke-width: 1;
  vector-effect: non-scaling-stroke;
  user-select: none;
  pointer-events: none;
  z-index: 0;
}

.lp-cta__wordmark--top {
  left: 0;
  top: -3vw;
  width: 200%;
  transform: translateX(3vw) !important;
}

.lp-cta__wordmark--bottom {
  right: 0;
  bottom: -5vw;
  width: 200%;
  transform: translateX(3vw) !important;
}

.lp-cta__wordmark polygon,
.lp-cta__wordmark rect,
.lp-cta__wordmark path {
  fill: none;
  stroke: rgba(255, 255, 255, 0.05);
  stroke-width: 1;
  vector-effect: non-scaling-stroke;
}

@media (max-width: 720px) {
  .lp-cta {
    min-height: 75vh;
    padding-top: 140px;
    padding-bottom: 140px;
  }

  .lp-cta__wordmark--top {
    top: -3vw;
  }

  .lp-cta__wordmark--bottom {
    bottom: -5vw;
  }
}

.lp-caveat {
  margin: 16px 0 0;
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.5;
}

.lp-chat {
  position: relative;
  width: 100%;
  padding: 8px 0 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-size: 14px;
  line-height: 1.4;
}

.lp-chat-group {
  display: flex;
  flex-direction: column;
  max-width: 82%;
}

.lp-chat-group--others {
  align-self: flex-start;
  align-items: flex-start;
}

.lp-chat-group--mine,
.lp-chat-group--whisper {
  align-self: flex-end;
  align-items: flex-end;
}

.lp-chat-group--pinned {
  align-self: stretch;
  max-width: 100%;
  margin-bottom: 4px;
}

.lp-chat-sender {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: var(--text-sub);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 6px;
  padding: 0 4px;
}

.lp-chat-sender--whisper {
  color: #b097e5;
}

.lp-chat-crown {
  color: #f5c842;
  flex-shrink: 0;
}

.lp-chat-row {
  display: flex;
  align-items: flex-end;
  gap: 8px;
}

.lp-chat-row + .lp-chat-row {
  margin-top: 6px;
}

.lp-chat-time {
  font-size: 10px;
  color: var(--text-muted);
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}

.lp-chat-ts {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 2px;
  font-weight: 600;
}

.lp-chat-bubble {
  position: relative;
  display: inline-block;
  max-width: 100%;
  padding: 11px 16px 13px;
  border-radius: 18px;
  color: #fff;
  font-weight: 500;
  letter-spacing: -0.01em;
  word-break: break-word;
  transform: rotateX(8deg) rotateY(-10deg);
  transform-origin: center center;
  transition:
    transform 700ms var(--ease-out),
    background 700ms var(--ease-out),
    box-shadow 700ms var(--ease-out),
    border-radius 700ms var(--ease-out),
    padding 700ms var(--ease-out),
    max-width 700ms var(--ease-out),
    border-color 700ms var(--ease-out);
  will-change: transform;
}

.lp-chat-group:hover .lp-chat-bubble {
  transform: rotateX(0) rotateY(0) translateY(-2px);
}

.lp-chat-bubble--others {
  background: linear-gradient(165deg, #3a3a3f 0%, #2a2a2e 55%, #202024 100%);
  box-shadow:
    inset -1px -2px 0 rgba(0, 0, 0, 0.35),
    inset 1px 1px 0 rgba(255, 255, 255, 0.08),
    1px 1px 0 #1e1e22,
    2px 2px 0 #1a1a1e,
    3px 3px 0 #17171a,
    4px 4px 0 #131316,
    5px 5px 0 #0f0f12,
    6px 6px 0 #0b0b0e,
    7px 7px 0 #07070a,
    8px 8px 0 #040406,
    12px 18px 28px -8px rgba(0, 0, 0, 0.6),
    20px 30px 40px -12px rgba(0, 0, 0, 0.4);
}

.lp-chat-bubble--mine {
  background: linear-gradient(165deg, #5a9cff 0%, #3b82f6 55%, #2563eb 100%);
  box-shadow:
    inset -1px -2px 0 rgba(0, 0, 0, 0.18),
    inset 1px 1px 0 rgba(255, 255, 255, 0.25),
    1px 1px 0 #2563eb,
    2px 2px 0 #2159d4,
    3px 3px 0 #1f4fbe,
    4px 4px 0 #1c46a8,
    5px 5px 0 #183d93,
    6px 6px 0 #15347e,
    7px 7px 0 #112b69,
    8px 8px 0 #0e2254,
    12px 18px 28px -8px rgba(0, 0, 0, 0.65),
    20px 30px 40px -12px rgba(0, 0, 0, 0.45);
}

.lp-chat-bubble--whisper {
  background: linear-gradient(165deg, #b8a0e8 0%, #9370db 55%, #7a55c9 100%);
  box-shadow:
    inset -1px -2px 0 rgba(0, 0, 0, 0.22),
    inset 1px 1px 0 rgba(255, 255, 255, 0.2),
    1px 1px 0 #7a55c9,
    2px 2px 0 #6b48b8,
    3px 3px 0 #5d3da3,
    4px 4px 0 #4f338e,
    5px 5px 0 #432a79,
    6px 6px 0 #372264,
    7px 7px 0 #2c1a4f,
    8px 8px 0 #21133a,
    12px 18px 28px -8px rgba(0, 0, 0, 0.65),
    20px 30px 40px -12px rgba(0, 0, 0, 0.45);
}

.lp-chat-bubble--yt {
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: 100%;
  max-width: 240px;
  padding: 13px 16px 15px;
  background: linear-gradient(165deg, #ff3355 0%, #ff0033 55%, #cc0029 100%);
  box-shadow:
    inset -1px -2px 0 rgba(0, 0, 0, 0.25),
    inset 1px 1px 0 rgba(255, 255, 255, 0.2),
    1px 1px 0 #cc0029,
    2px 2px 0 #b30024,
    3px 3px 0 #99001f,
    4px 4px 0 #80001a,
    5px 5px 0 #660015,
    6px 6px 0 #4d0010,
    7px 7px 0 #33000a,
    8px 8px 0 #1a0005,
    12px 18px 28px -8px rgba(255, 0, 40, 0.25),
    20px 30px 40px -12px rgba(0, 0, 0, 0.5);
}

.lp-chat-bubble--pin {
  display: block;
  width: 100%;
  padding: 11px 18px 13px;
  background: linear-gradient(165deg, #ffd75e 0%, #ffc107 55%, #e0a800 100%);
  box-shadow:
    inset -1px -2px 0 rgba(0, 0, 0, 0.2),
    inset 1px 1px 0 rgba(255, 255, 255, 0.35),
    1px 1px 0 #e0a800,
    2px 2px 0 #c49500,
    3px 3px 0 #a88000,
    4px 4px 0 #8c6b00,
    5px 5px 0 #705500,
    6px 6px 0 #544000,
    7px 7px 0 #382b00,
    8px 8px 0 #1c1500,
    12px 18px 28px -8px rgba(255, 193, 7, 0.18),
    20px 30px 40px -12px rgba(0, 0, 0, 0.45);
}

.lp-chat-pin__label {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  margin-bottom: 2px;
}

.lp-chat-pin__text {
  font-size: 13px;
  font-weight: 600;
  line-height: 1.3;
}

.lp-chat-yt__row {
  display: flex;
  align-items: center;
  gap: 6px;
}

.lp-chat-yt__row svg {
  flex-shrink: 0;
}

.lp-chat-yt__label {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: -0.2px;
}

.lp-chat-yt__title {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.4;
  word-break: break-word;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.lp-section--remote .lp-chat > .lp-chat-group {
  opacity: 0;
  transition: opacity 600ms var(--ease-out);
}

.lp-section--remote.is-visible .lp-chat > .lp-chat-group {
  opacity: 1;
}

.lp-section--remote.is-visible .lp-chat > .lp-chat-group:nth-child(1) { transition-delay: 150ms; }
.lp-section--remote.is-visible .lp-chat > .lp-chat-group:nth-child(2) { transition-delay: 340ms; }
.lp-section--remote.is-visible .lp-chat > .lp-chat-group:nth-child(3) { transition-delay: 520ms; }
.lp-section--remote.is-visible .lp-chat > .lp-chat-group:nth-child(4) { transition-delay: 780ms; }
.lp-section--remote.is-visible .lp-chat > .lp-chat-group:nth-child(5) { transition-delay: 960ms; }

.lp-chat--flat .lp-chat-bubble {
  transform: none;
  padding: 9px 13px;
  border-radius: 14px;
  box-shadow: none;
}

.lp-chat--flat .lp-chat-group:hover .lp-chat-bubble {
  transform: none;
}

.lp-chat--flat .lp-chat-bubble--others {
  background: var(--surface-2);
  border-bottom-left-radius: 4px;
}

.lp-chat--flat .lp-chat-bubble--mine {
  background: var(--primary);
  border-bottom-right-radius: 4px;
}

.lp-chat--flat .lp-chat-bubble--whisper {
  background: rgba(147, 112, 219, 0.22);
  border: 1px solid rgba(147, 112, 219, 0.4);
  border-bottom-right-radius: 4px;
}

.lp-chat--flat .lp-chat-bubble--yt {
  display: flex;
  flex-direction: column;
  gap: 7px;
  width: 100%;
  max-width: 260px;
  padding: 14px;
  background: #FF0033;
  border-radius: 14px;
  border-bottom-right-radius: 4px;
  box-shadow: 0 4px 12px rgba(255, 0, 0, 0.15);
}

.lp-chat--flat .lp-chat-bubble--pin {
  padding: 12px 18px;
  background: rgba(255, 193, 7, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-m);
  box-shadow: none;
}

.lp-chat-pin__label {
  transition: color 700ms var(--ease-out);
}

.lp-chat--flat .lp-chat-pin__label {
  color: #ffc107;
}

.lp-chat--flat .lp-chat-row + .lp-chat-row:not(:last-child) .lp-chat-bubble--mine {
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
}

.lp-chat--flat .lp-chat-row + .lp-chat-row:last-child .lp-chat-bubble--mine {
  border-top-right-radius: 4px;
  border-bottom-right-radius: 14px;
}

.lp-chat--flat .lp-chat-row + .lp-chat-row:not(:last-child) .lp-chat-bubble--others {
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
}

.lp-chat--flat .lp-chat-row + .lp-chat-row:last-child .lp-chat-bubble--others {
  border-top-left-radius: 4px;
  border-bottom-left-radius: 14px;
}

.lp-chat--flat .lp-chat-group--mine .lp-chat-row + .lp-chat-row .lp-chat-bubble--yt {
  border-top-right-radius: 4px;
}

.lp-chat--flat .lp-chat-group--mine .lp-chat-row + .lp-chat-row:not(:last-child) .lp-chat-bubble--yt {
  border-bottom-right-radius: 4px;
}

.lp-chat--flat .lp-chat-group--mine .lp-chat-row + .lp-chat-row:last-child .lp-chat-bubble--yt {
  border-bottom-right-radius: 14px;
}

@media (prefers-reduced-motion: reduce) {
  .lp-chat-bubble {
    transform: none;
  }
}

.lp-array>* {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 800ms var(--ease-out), transform 800ms var(--ease-out);
}

[data-animate].is-visible .lp-array>*:nth-child(1) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 320ms;
}

[data-animate].is-visible .lp-array>*:nth-child(2) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 400ms;
}

[data-animate].is-visible .lp-array>*:nth-child(3) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 480ms;
}

.lp-hero__copy>*,
.lp-split__copy>* {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 800ms var(--ease-out), transform 800ms var(--ease-out);
}

[data-animate].is-visible .lp-hero__copy>*:nth-child(1),
[data-animate].is-visible .lp-split__copy>*:nth-child(1) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 40ms;
}

[data-animate].is-visible .lp-hero__copy>*:nth-child(2),
[data-animate].is-visible .lp-split__copy>*:nth-child(2) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 120ms;
}

[data-animate].is-visible .lp-hero__copy>*:nth-child(3),
[data-animate].is-visible .lp-split__copy>*:nth-child(3) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 200ms;
}

[data-animate].is-visible .lp-hero__copy>*:nth-child(4),
[data-animate].is-visible .lp-split__copy>*:nth-child(4) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 280ms;
}

[data-animate].is-visible .lp-split__copy>*:nth-child(5) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 360ms;
}

.lp-hero[data-animate] .lp-hero__copy {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 800ms var(--ease-out), transform 800ms var(--ease-out);
}

.lp-hero[data-animate] .lp-hero__copy > *,
.lp-hero[data-animate].is-visible .lp-hero__copy > * {
  opacity: 1;
  transform: none;
  transition: none;
}

.lp-hero[data-animate].is-visible .lp-hero__copy {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 40ms;
}

@media (max-width: 720px) {
  :root {
    --pad-x: 24px;
    --tabs-h: 44px;
  }

  .lp-section {
    padding: 96px var(--pad-x);
  }

  .lp-hero {
    padding-top: 36px;
    padding-bottom: 56px;
  }

  .lp-lead {
    font-size: 16px;
  }

  
  .lp-array {
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "left  right"
      "mid   mid";
    gap: 28px 16px;
    padding: 16px 0;
    align-items: end;
  }

  .lp-dev:nth-child(1) {
    grid-area: left;
  }

  .lp-dev:nth-child(2) {
    grid-area: mid;
  }

  .lp-dev:nth-child(3) {
    grid-area: right;
  }

  .lp-dev {
    gap: 10px;
  }

  .lp-dev--phone {
    max-width: 140px;
  }

  .lp-dev--laptop {
    max-width: 360px;
  }

  .lp-dev--phone .lp-dev__frame {
    border-radius: 14px;
  }

  
  [data-animate].is-visible .lp-array>*:nth-child(1) {
    transition-delay: 320ms;
  }

  [data-animate].is-visible .lp-array>*:nth-child(3) {
    transition-delay: 320ms;
  }

  [data-animate].is-visible .lp-array>*:nth-child(2) {
    transition-delay: 480ms;
  }

  
  .lp-split__aside {
    max-width: 300px;
  }

  
  .lp-section--code .lp-split__aside {
    max-width: 280px;
  }

  
  .lp-sync {
    padding: 28px 22px;
    gap: 22px;
  }

  .lp-sync__rows {
    gap: 16px;
  }

  .lp-sync__meta {
    padding-top: 16px;
  }

  .lp-sync__label {
    margin: 0 0 8px;
  }

  .lp-specs>div {
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 14px 0;
  }

  .lp-footer__inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .lp-footer__nav {
    flex-wrap: wrap;
    row-gap: 14px;
  }

  .lp-footer__nav a,
  .lp-lang-btn {
    white-space: nowrap;
  }

  .lp-lang-divider {
    display: none;
  }
}
