*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Libre Baskerville', serif;
  background-color: #f8f6f1;
  color: #111;
  min-height: 100vh;
}

.page {
  position: relative;
  min-height: 100vh;
}

.copy {
  position: absolute;
  top: clamp(3rem, 8vw, 6rem);
  left: clamp(3rem, 10vw, 8rem);
  z-index: 10;
}

.copy h1 {
  margin: 0 0 1rem;
  font-size: clamp(2.4rem, 4.5vw, 3.2rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.copy p {
  margin: 0;
  font-size: clamp(1rem, 1.9vw, 1.25rem);
  font-style: italic;
  line-height: 1.65;
  max-width: 28ch;
}

.eye {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}

.eye-container {
  position: relative;
  width: clamp(280px, 26vw, 380px);
  aspect-ratio: 8 / 5;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  overflow: hidden;
}

.eye-canvas {
  width: 100%;
  height: 100%;
  cursor: none;
}

@media (max-width: 768px) {
  .copy {
    top: 2.5rem;
    left: 2.5rem;
  }

  .copy h1 {
    font-size: clamp(2rem, 7vw, 2.8rem);
  }

  .copy p {
    font-size: clamp(0.95rem, 4.5vw, 1.15rem);
  }

  .eye-container {
    width: clamp(260px, 45vw, 350px);
  }
}

@media (max-width: 540px) {
  .copy {
    top: 2rem;
    left: 2rem;
  }

  .copy h1 {
    font-size: clamp(1.8rem, 8vw, 2.4rem);
  }

  .copy p {
    font-size: clamp(0.9rem, 4.5vw, 1.05rem);
  }

  .eye-container {
    width: clamp(240px, 65vw, 320px);
  }
}
