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

body {
  font-family: Arial, sans-serif;
}

/* SPLIT LAYOUT */
.split {
  display: flex;
  height: 100vh;
  width: 100vw;
}

/* SIDE PANELS */
.side {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

/* LEFT SIDE */
.left {
  background: #313131;
  color: white;
}

/* RIGHT SIDE */
.right {
  background: #ffffff;
  color: #111;
}

/* CONTENT STACK (FIXED ALIGNMENT) */
.content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* LOGO */
.logo {
  width: 120px;
  height: 120px;
  object-fit: contain;
  margin-bottom: 18px;
  display: block;
}

/* CTA BUTTON */
.cta {
  font-size: 16px;
  padding: 10px 18px;
  border: 1px solid currentColor;
  display: inline-block;
}

/* HEADER (DESKTOP) */
.header {
  position: fixed;
  top: 20px;
  left: 0;
  right: 0;
  text-align: center;

  font-size: 2em;
  letter-spacing: 1px;
  font-weight: 500;

  pointer-events: none;
  z-index: 10;

  color: white;
  mix-blend-mode: difference;
}


/* MOBILE LAYOUT */
@media (max-width: 768px) {
  .split {
    flex-direction: column;
  }

  .side {
    height: 50vh;
  }

}

.footer-note {
  position: fixed;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  
  font-size: 11px;
  opacity: 0.6;
  text-align: center;
  padding: 0 16px;
  max-width: 90vw;

  pointer-events: none;
}