/* MAIN LAYOUT */
main {
  position: relative;
  z-index: 1;
  padding: 160px 20px 80px;
  max-width: 800px;
  margin: 0 auto;
}

.hero {
  text-align: center;
  margin-bottom: 80px;
}

.hero h1 {
  font-size: 40px;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.hero p {
  font-size: 16px;
  color: #ccc;
}

.section {
  margin-bottom: 80px;
}

.section h2 {
  font-size: 22px;
  margin-bottom: 16px;
  letter-spacing: 1px;
}

.section p {
  font-size: 15px;
  line-height: 1.7;
  color: #ddd;
  margin-bottom: 14px;
}

/* FOOTER */
.footer {
  text-align: center;
  padding: 40px 0 20px;
  font-size: 13px;
  color: #777;
}

/* EYE */
.eye-wrapper {
  position: fixed;
  top: 50%;
  left: 50%;
  width: 600px;
  height: 340px;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 0;
}

.eye-outline {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.iris {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: radial-gradient(circle, #222, #000);
  border: 3px solid rgba(255,255,255,0.4);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  justify-content: center;
  align-items: center;
}

.pupil {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #fff;
  transition: transform 0.08s linear;
}

.glow {
  position: absolute;
  width: 60px;
  height: 60px;
  background: radial-gradient(circle, rgba(255,255,255,0.9), rgba(255,255,255,0));
  border-radius: 50%;
  opacity: 0.55;
  transition: transform 0.1s linear;
}

.eyelid {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0%;
  background: #000;
  z-index: 3;
  animation: wink 8s infinite;
}

@keyframes wink {
  0%, 85% { height: 0%; }
  90% { height: 60%; }
  95% { height: 0%; }
}
